.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #5a6c8c !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #f1d24e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5a6c8c !important;
  border-color: #5a6c8c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #384357 !important;
  border-color: #384357 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #384357 !important;
  border-color: #384357 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f1d24e !important;
  border-color: #f1d24e !important;
  color: #3b3105 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #d7b211 !important;
  border-color: #d7b211 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #3b3105 !important;
  background-color: #d7b211 !important;
  border-color: #d7b211 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #5a6c8c;
  color: #5a6c8c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #384357 !important;
  background-color: transparent!important;
  border-color: #384357 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5a6c8c !important;
  border-color: #5a6c8c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #f1d24e;
  color: #f1d24e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d7b211 !important;
  background-color: transparent!important;
  border-color: #d7b211 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #3b3105 !important;
  background-color: #f1d24e !important;
  border-color: #f1d24e !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #5a6c8c !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #f1d24e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #323c4e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #c9a610 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #5a6c8c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #f1d24e;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5a6c8c;
  border-color: #5a6c8c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #5a6c8c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a2aec3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #5a6c8c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #5a6c8c;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5a6c8c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #5a6c8c;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #5a6c8c;
  border-bottom-color: #5a6c8c;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #5a6c8c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%235a6c8c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tFIExlhQLB {
  background-image: url("../../../assets/images/back-view-woman-having-video-call-work-2000x1333.jpg");
}
.cid-tFIExlhQLB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIExlhQLB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFIExlhQLB .mbr-section-title {
  color: #ffffff;
}
.cid-tFIExlhQLB .mbr-text,
.cid-tFIExlhQLB .mbr-section-btn {
  color: #ffffff;
}
.cid-tFIFkezD3v {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFIFkezD3v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIFkezD3v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tFIFkezD3v .container {
    max-width: 1400px;
  }
}
.cid-tFIFkezD3v .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tFIFkezD3v .card-wrapper {
  margin-top: 3rem;
}
.cid-tFIFkezD3v .row {
  justify-content: center;
}
.cid-tFIFoIwzSU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFIFoIwzSU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIFoIwzSU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tFIFoIwzSU .container {
    max-width: 1400px;
  }
}
.cid-tFIFoIwzSU .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tFIFoIwzSU .card-wrapper {
  margin-top: 3rem;
}
.cid-tFIFoIwzSU .row {
  justify-content: center;
}
.cid-tFIFpn0yCv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFIFpn0yCv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIFpn0yCv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tFIFpn0yCv .container {
    max-width: 1400px;
  }
}
.cid-tFIFpn0yCv .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tFIFpn0yCv .card-wrapper {
  margin-top: 3rem;
}
.cid-tFIFpn0yCv .row {
  justify-content: center;
}
.cid-tFIJxkftPY {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFIJxkftPY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIJxkftPY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFIJxkftPY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFIJxkftPY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tFIJxkftPY .text-wrapper {
    padding: 2rem;
  }
}
.cid-s48upRUlSD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-s48upRUlSD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-s48upRUlSD .row {
  flex-direction: row-reverse;
}
.cid-s48upRUlSD img {
  width: 100%;
}
.cid-tFIOIRUNAV {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFIOIRUNAV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIOIRUNAV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFIOIRUNAV ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tFIOIRUNAV li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tFIOIRUNAV ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #5a6c8c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tFIOIRUNAV .list {
  text-align: left;
}
.cid-tFIQ3eDR8M {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f3f1f1;
}
.cid-tFIQ3eDR8M .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-tFIQ3eDR8M form {
    width: 50%;
  }
}
.cid-tFIQ3eDR8M form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tFIQ3eDR8M form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tFIQfPSKQm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFIQfPSKQm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIQfPSKQm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFIQfPSKQm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFIQfPSKQm .row {
  flex-direction: row-reverse;
}
.cid-tFIQfPSKQm img {
  width: 100%;
}
.cid-tFIRr4HOhX {
  background-image: url("../../../assets/images/12333-1497x995.jpg");
}
.cid-tFIRr4HOhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIRr4HOhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-s48udlf8KU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-s48udlf8KU .mbr-section-title {
  text-align: left;
}
.cid-s48udlf8KU .mbr-section-subtitle {
  text-align: left;
}
.cid-tFISesH6mZ {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFISesH6mZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFISesH6mZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFISesH6mZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFISesH6mZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tFISesH6mZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tFIUURDyvu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFIUURDyvu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIUURDyvu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFIUURDyvu .mbr-section-subtitle {
  text-align: center;
}
.cid-tFIVoTx3rO {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFIVoTx3rO img,
.cid-tFIVoTx3rO .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tFIVoTx3rO .item:focus,
.cid-tFIVoTx3rO span:focus {
  outline: none;
}
.cid-tFIVoTx3rO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tFIVoTx3rO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tFIVoTx3rO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tFIVoTx3rO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tFIVoTx3rO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tFIVoTx3rO .mbr-section-title {
  color: #232323;
}
.cid-tFIVoTx3rO .mbr-text,
.cid-tFIVoTx3rO .mbr-section-btn {
  text-align: left;
}
.cid-tFIVoTx3rO .item-title {
  text-align: left;
  color: #353535;
}
.cid-tFIVoTx3rO .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tFIWKaGTXl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tFIWKaGTXl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIWKaGTXl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFIWKaGTXl .mbr-section-title,
.cid-tFIWKaGTXl .mbr-text,
.cid-tFIWKaGTXl .mbr-section-btn {
  text-align: center;
}
.cid-tFIWKaGTXl .video-wrapper {
  margin: auto;
}
.cid-tFIWKaGTXl .video-wrapper iframe {
  width: 100%;
}
.cid-tFIWKaGTXl .mbr-text,
.cid-tFIWKaGTXl .mbr-section-btn {
  text-align: left;
}
.cid-tFIXirwTww {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tFIXirwTww .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIXirwTww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tFIXirwTww .container {
    max-width: 1400px;
  }
}
.cid-tFIXirwTww .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tFIXirwTww .card-wrapper {
  margin-top: 3rem;
}
.cid-tFIXirwTww .row {
  justify-content: center;
}
.cid-tFIXirwTww .card-text {
  text-align: center;
}
.cid-tFIZqQk5rC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tFIZqQk5rC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIZqQk5rC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFIZqQk5rC .mbr-text {
  color: #c1c1c1;
}
.cid-tFIZqQk5rC H3 {
  text-align: center;
}
.cid-tFIZqQk5rC .mbr-text,
.cid-tFIZqQk5rC .mbr-section-btn {
  text-align: center;
  color: #353535;
}
.cid-tFJ3LeqNTl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uedVZJk7vP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #778eb9;
  overflow: hidden;
}
.cid-tFJ7ScZNbW {
  background-image: url("../../../assets/images/freelance-young-businesswoman-2000x1125.jpg");
}
.cid-tFJ7ScZNbW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJ7ScZNbW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJ7ScZNbW .mbr-section-title {
  color: #ffffff;
}
.cid-tFJ7ScZNbW .mbr-text,
.cid-tFJ7ScZNbW .mbr-section-btn {
  color: #ffffff;
}
.cid-tFJ8Y4AFfj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFJ8Y4AFfj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJ8Y4AFfj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJ8Y4AFfj .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tFJ8Y4AFfj .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFJ8Y4AFfj .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tFJ8Y4AFfj .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tFJ8Y4AFfj .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tFJ8Y4AFfj .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tFJ8Y4AFfj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tFJapTHZul {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFJapTHZul .line {
  background-color: #bbbbbb;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tFJapTHZul .mbr-text {
  color: #0e1265;
  text-align: left;
}
.cid-tFJbF06Rkl {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFJbF06Rkl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJbF06Rkl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJbF06Rkl .mbr-text {
  color: #767676;
}
.cid-tFJbF06Rkl .mbr-section-subtitle {
  color: #767676;
}
.cid-tFJbF06Rkl .title .num {
  width: 100%;
  display: block;
}
.cid-tFJbF06Rkl .title .card-title {
  z-index: 1;
}
.cid-tFJbF06Rkl .num {
  color: #0e1265;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tFJbF06Rkl * {
    text-align: center !important;
  }
  .cid-tFJbF06Rkl .content-column {
    margin-bottom: 2rem;
  }
}
.cid-tFJbF06Rkl .card-text {
  color: #353535;
}
.cid-tFJbF06Rkl .card-title,
.cid-tFJbF06Rkl .card-img {
  text-align: center;
}
.cid-tFJcAf2TSA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFJcAf2TSA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJcAf2TSA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFJcAf2TSA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFJcAf2TSA .row {
  flex-direction: row-reverse;
}
.cid-tFJcAf2TSA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tFJcAf2TSA .text-wrapper {
    padding: 2rem;
  }
}
.cid-tFJdmHtZi8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFJdmHtZi8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJdmHtZi8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJdmHtZi8 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFJdmHtZi8 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFJdmHtZi8 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tFJdmHtZi8 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tFJdmHtZi8 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tFJdmHtZi8 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tFJdmHtZi8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tFJdMN5Ujx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFJdMN5Ujx .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tFJdMN5Ujx form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}
.cid-tFJdMN5Ujx form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}
.cid-uedVZJk7vP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #778eb9;
  overflow: hidden;
}
.cid-tFJfHXTc0u {
  background-image: url("../../../assets/images/mbr-1920x1276.jpg");
}
.cid-tFJfHXTc0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJfHXTc0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJfHXTc0u .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-tFJfHXTc0u .mbr-text,
.cid-tFJfHXTc0u .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-tFJjsezcB2 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFJjsezcB2 .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-tFJkjFA1v7 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFJkjFA1v7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJkjFA1v7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJkjFA1v7 .video-wrapper iframe {
  width: 100%;
}
.cid-tFJkjFA1v7 .mbr-section-title,
.cid-tFJkjFA1v7 .mbr-section-subtitle,
.cid-tFJkjFA1v7 .mbr-text {
  text-align: center;
}
.cid-tFJkClyK0U {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFJkClyK0U .mbr-text {
  text-align: center;
}
.cid-tFJkR3AKD9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tFJkR3AKD9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJkR3AKD9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJkR3AKD9 .mbr-text,
.cid-tFJkR3AKD9 .mbr-section-btn {
  color: #232323;
}
.cid-tFJkR3AKD9 .card-title,
.cid-tFJkR3AKD9 .card-box {
  color: #ffffff;
}
.cid-tFJkR3AKD9 .mbr-text,
.cid-tFJkR3AKD9 .link-wrap {
  color: #ffffff;
}
.cid-tFJltNDIRg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFJltNDIRg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJltNDIRg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJltNDIRg ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tFJltNDIRg li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tFJltNDIRg ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #5a6c8c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tFJltNDIRg .list {
  text-align: left;
}
.cid-tFJm0NEWXM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFJm0NEWXM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJm0NEWXM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFJm0NEWXM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFJm0NEWXM .row {
  flex-direction: row-reverse;
}
.cid-tFJm0NEWXM img {
  width: 100%;
}
.cid-tFJmhkFEYQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFJmhkFEYQ .mbr-text {
  color: #0e1265;
}
.cid-tFJmtCDA2c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
@media (min-width: 991px) {
  .cid-tFJmtCDA2c .container-fluid {
    padding-left: 0;
  }
}
.cid-tFJmtCDA2c .mbr-text,
.cid-tFJmtCDA2c .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tFJmtCDA2c .mbr-text,
  .cid-tFJmtCDA2c .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tFJmtCDA2c .mbr-text,
  .cid-tFJmtCDA2c .mbr-section-title {
    text-align: center;
  }
}
.cid-tFJmtCDA2c a.btn {
  height: 100%;
  margin: 0;
}
.cid-tFJmtCDA2c .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-tFJmtCDA2c .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFJmtCDA2c .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFJmtCDA2c .justify-content-center {
  align-items: center;
}
.cid-uedVZJk7vP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #778eb9;
  overflow: hidden;
}
.cid-tFJnnp8LUu {
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
.cid-tFJnnp8LUu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJnnp8LUu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJnnp8LUu .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-tFJnnp8LUu .mbr-text,
.cid-tFJnnp8LUu .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-tFJpcbYBX0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFJpcbYBX0 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tFJpcbYBX0 .mbr-section-title {
  color: #0e1265;
}
.cid-tFJpoeMCq0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFJpoeMCq0 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tFJpoeMCq0 .mbr-section-title {
  color: #0e1265;
}
.cid-tFJq3v0hG1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFJq3v0hG1 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tFJq3v0hG1 form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}
.cid-tFJq3v0hG1 form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}
.cid-uedVZJk7vP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #778eb9;
  overflow: hidden;
}
.cid-tFJqtx4pg2 {
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-tFJqtx4pg2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJqtx4pg2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJqtx4pg2 .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-tFJqtx4pg2 .mbr-text,
.cid-tFJqtx4pg2 .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-tFJqtyfBUk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFJqtyfBUk blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tFJqtyfBUk .mbr-section-title {
  color: #0e1265;
}
.cid-tFJr0DlqDC {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFJr0DlqDC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJr0DlqDC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJr0DlqDC .mbr-text {
  color: #767676;
}
.cid-tFJr0DlqDC .mbr-section-subtitle {
  color: #767676;
}
.cid-tFJr0DlqDC .title .num {
  width: 100%;
  display: block;
}
.cid-tFJr0DlqDC .title .card-title {
  z-index: 1;
}
.cid-tFJr0DlqDC .num {
  color: #62a7d8;
}
@media (max-width: 767px) {
  .cid-tFJr0DlqDC * {
    text-align: center !important;
  }
  .cid-tFJr0DlqDC .content-column {
    margin-bottom: 2rem;
  }
}
.cid-tFJr0DlqDC .mbr-section-title,
.cid-tFJr0DlqDC .card-box {
  text-align: center;
}
.cid-tFJr0DlqDC .card-text {
  text-align: left;
}
.cid-tFJrRmtfEt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tFJrRmtfEt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJrRmtfEt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFJrRmtfEt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFJrRmtfEt .row {
  flex-direction: row-reverse;
}
.cid-tFJrRmtfEt img {
  width: 100%;
}
.cid-tFJscGlBDK {
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpg");
}
.cid-tFJscGlBDK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJscGlBDK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJscGlBDK .mbr-text,
.cid-tFJscGlBDK .mbr-section-btn {
  color: #ffffff;
}
.cid-uedVZJk7vP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #778eb9;
  overflow: hidden;
}
.cid-tFORDBUJxx {
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-tFORDBUJxx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFORDBUJxx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFORDBUJxx .mbr-section-title {
  color: #ffffff;
}
.cid-tFOSzaJ5ze {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dfdede;
}
.cid-tFOSzaJ5ze .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFOSzaJ5ze .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFOSzaJ5ze .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tFOSzaJ5ze .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFOSzaJ5ze .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tFOSzaJ5ze .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tFOSzaJ5ze .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFOT9EpVnt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFOT9EpVnt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFOT9EpVnt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFOT9EpVnt .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFOT9EpVnt .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tFOT9EpVnt .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tFOT9EpVnt .mbr-section-title {
  text-align: center;
}
.cid-tFOT9EpVnt .mbr-text,
.cid-tFOT9EpVnt .mbr-section-btn {
  text-align: left;
}
.cid-tFOTMGFq4U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFOTMGFq4U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFOTMGFq4U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFOTMGFq4U ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tFOTMGFq4U li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tFOTMGFq4U ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #5a6c8c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tFOTMGFq4U H3 {
  text-align: center;
}
.cid-tFOTMGFq4U .list {
  color: #353535;
}
.cid-tFOUl5RHUK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFOUl5RHUK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFOUl5RHUK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFOUl5RHUK .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFOUl5RHUK .row {
    flex-direction: column-reverse;
  }
  .cid-tFOUl5RHUK .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tFOUl5RHUK .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tFOUl5RHUK .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-tFOUl5RHUK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tFOWN4juX3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFOWN4juX3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFOWN4juX3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFOWN4juX3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFOWN4juX3 .row {
  flex-direction: row-reverse;
}
.cid-tFOWN4juX3 img {
  width: 100%;
}
.cid-tFOWNI8Nbk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFOWNI8Nbk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFOWNI8Nbk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFOWNI8Nbk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFOWNI8Nbk .row {
  flex-direction: row-reverse;
}
.cid-tFOWNI8Nbk img {
  width: 100%;
}
.cid-tFOXgxkk0c {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFOXgxkk0c .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tFOXgxkk0c form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tFOXgxkk0c form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tFOXgxkk0c form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uedVZJk7vP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #778eb9;
  overflow: hidden;
}
.cid-tG0wh3lHsU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-6-1920x1280.jpg");
}
.cid-tG0wh3lHsU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0wh3lHsU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0wh3lHsU .mbr-text,
.cid-tG0wh3lHsU .mbr-section-btn {
  color: #232323;
}
.cid-tG0wh3lHsU .card-title,
.cid-tG0wh3lHsU .card-box {
  color: #ffffff;
}
.cid-tG0wh3lHsU .mbr-text,
.cid-tG0wh3lHsU .link-wrap {
  color: #ffffff;
}
.cid-tG0x5Xi12P {
  background-image: url("../../../assets/images/two-smiling-business-partners-shaking-hands-1-2000x1333.jpg");
}
.cid-tG0x5Xi12P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0x5Xi12P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0x5Xi12P .mbr-section-title {
  color: #353535;
}
.cid-tG0yefTOTM {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tG0yr6pSDL {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tG0yr6pSDL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0yr6pSDL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0yr6pSDL .mbr-text {
  color: #767676;
}
.cid-tG0yr6pSDL .mbr-section-subtitle {
  color: #767676;
}
.cid-tG0yr6pSDL .title .num {
  width: 100%;
  display: block;
}
.cid-tG0yr6pSDL .title .card-title {
  z-index: 1;
}
.cid-tG0yr6pSDL .num {
  color: #0c0e3b;
}
@media (max-width: 767px) {
  .cid-tG0yr6pSDL * {
    text-align: center !important;
  }
  .cid-tG0yr6pSDL .content-column {
    margin-bottom: 2rem;
  }
}
.cid-tG0yr6pSDL .mbr-section-title,
.cid-tG0yr6pSDL .card-box {
  text-align: center;
}
.cid-tG0AU6I7qz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f5f5f6;
}
.cid-tG0AU6I7qz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0AU6I7qz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tG0AU6I7qz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tG0AU6I7qz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tG0AU6I7qz .text-wrapper {
    padding: 2rem;
  }
}
.cid-tG0AUwUgHB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tG0AUwUgHB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0AUwUgHB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tG0AUwUgHB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tG0AUwUgHB .row {
  flex-direction: row-reverse;
}
.cid-tG0AUwUgHB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tG0AUwUgHB .text-wrapper {
    padding: 2rem;
  }
}
.cid-tG0B1sHupI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f3f1f1;
}
.cid-tG0B1sHupI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0B1sHupI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tG0B1sHupI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tG0B1sHupI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tG0B1sHupI .text-wrapper {
    padding: 2rem;
  }
}
.cid-tG0B1MCiwg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tG0B1MCiwg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0B1MCiwg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tG0B1MCiwg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tG0B1MCiwg .row {
  flex-direction: row-reverse;
}
.cid-tG0B1MCiwg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tG0B1MCiwg .text-wrapper {
    padding: 2rem;
  }
}
.cid-tG0Ee11xVJ {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tG0Ee11xVJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0Ee11xVJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tG0Ee11xVJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tG0Ee11xVJ .row {
  flex-direction: row-reverse;
}
.cid-tG0Ee11xVJ img {
  width: 100%;
}
.cid-tG0Ee11xVJ .mbr-description {
  text-align: left;
  color: #0c0e3b;
}
.cid-tG0EWAcBx7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0EWAcBx7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0EWAcBx7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tG0EWAcBx7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tG0EWAcBx7 .row {
  flex-direction: row-reverse;
}
.cid-tG0EWAcBx7 img {
  width: 100%;
}
.cid-tG0Fb6OKGa {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0Fb6OKGa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0Fb6OKGa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0Fb6OKGa .card-wrapper {
  background: #0c0e3b;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tG0Fb6OKGa .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tG0Fb6OKGa .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tG0Fb6OKGa .card-wrapper {
    padding: 4rem;
  }
}
.cid-tG0Fb6OKGa .mbr-text,
.cid-tG0Fb6OKGa .mbr-section-btn {
  color: #ffffff;
}
.cid-tG0Fb6OKGa .card-title,
.cid-tG0Fb6OKGa .card-box {
  text-align: right;
}
.cid-tG0FxW6Fhy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0FxW6Fhy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0FxW6Fhy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0FxW6Fhy .item {
  padding-bottom: 2rem;
}
.cid-tG0FxW6Fhy .item-wrapper {
  position: relative;
}
.cid-tG0FxW6Fhy .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tG0FxW6Fhy .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tG0FxW6Fhy .carousel-control,
.cid-tG0FxW6Fhy .close {
  background: #1b1b1b;
}
.cid-tG0FxW6Fhy .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tG0FxW6Fhy .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tG0FxW6Fhy .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tG0FxW6Fhy .carousel-control-next span {
  margin-left: 5px;
}
.cid-tG0FxW6Fhy .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tG0FxW6Fhy .close::before {
  content: '\e91a';
}
.cid-tG0FxW6Fhy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tG0FxW6Fhy .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tG0FxW6Fhy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG0FxW6Fhy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tG0FxW6Fhy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tG0FxW6Fhy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tG0FxW6Fhy .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tG0FxW6Fhy .carousel-indicators li.active,
.cid-tG0FxW6Fhy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tG0FxW6Fhy .carousel-indicators li::after,
.cid-tG0FxW6Fhy .carousel-indicators li::before {
  content: none;
}
.cid-tG0FxW6Fhy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tG0FxW6Fhy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tG0FxW6Fhy .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tG0FxW6Fhy .carousel-indicators {
    display: none;
  }
}
.cid-tG0FxW6Fhy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tG0FxW6Fhy .carousel-inner > .active {
  display: block;
}
.cid-tG0FxW6Fhy .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG0FxW6Fhy .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tG0FxW6Fhy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tG0FxW6Fhy .carousel-control,
  .cid-tG0FxW6Fhy .carousel-indicators,
  .cid-tG0FxW6Fhy .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tG0FxW6Fhy .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tG0FxW6Fhy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tG0FxW6Fhy .carousel-indicators .active,
.cid-tG0FxW6Fhy .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tG0FxW6Fhy .carousel-indicators .active {
  background: #fff;
}
.cid-tG0FxW6Fhy .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tG0FxW6Fhy .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tG0FxW6Fhy .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tG0FxW6Fhy .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tG0FxW6Fhy .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tG0FxW6Fhy .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tG0FxW6Fhy .carousel {
  width: 100%;
}
.cid-tG0FxW6Fhy .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tG0FxW6Fhy .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tG0FxW6Fhy .modal.fade .modal-dialog,
.cid-tG0FxW6Fhy .modal.in .modal-dialog {
  transform: none;
}
.cid-tG0FxW6Fhy .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tG0FxW6Fhy H6 {
  text-align: center;
}
.cid-tG0Gr4jJAZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0Gr4jJAZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0Gr4jJAZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0Gr4jJAZ .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tG0Gr4jJAZ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tG0Gr4jJAZ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tG0Gr4jJAZ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tG0Gr4jJAZ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tG0Gr4jJAZ .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tG0Gr4jJAZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tG0H4LfTvY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0H4LfTvY .line {
  background-color: #353535;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvpHJv3Vqw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uvpHJv3Vqw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvpHJv3Vqw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uvpHJv3Vqw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uvpHJv3Vqw .row {
  flex-direction: row-reverse;
}
.cid-uvpHJv3Vqw img {
  width: 100%;
}
.cid-tG0HdBuwlS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tG0HdBuwlS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0HdBuwlS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tG0HdBuwlS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tG0HdBuwlS .row {
  flex-direction: row-reverse;
}
.cid-tG0HdBuwlS img {
  width: 100%;
}
.cid-tG0HqEYKm4 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tG0HqEYKm4 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tG0HqEYKm4 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tG0HqEYKm4 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tG0HqEYKm4 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uedVZJk7vP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #778eb9;
  overflow: hidden;
}
.cid-sFGzrhlvIh {
  background-image: url("../../../assets/images/mbr-1920x1086.jpg");
}
.cid-sFGzrhlvIh .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-sFGzrhlvIh .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-sFGzrhlvIh .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-sFGzrhlvIh .mbr-text {
  color: #ffffff;
}
.cid-sFGzrhlvIh .card {
  padding-bottom: 1.5rem;
}
.cid-sFGzrhlvIh .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sFGzrhlvIh .card-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sFGzrhlvIh .card-wrapper .card-title {
  color: #ffffff;
}
.cid-sFGzrhlvIh H1 {
  color: #31304e;
}
.cid-sFGzrhlvIh .mbr-text,
.cid-sFGzrhlvIh .mbr-section-btn {
  color: #353535;
}
.cid-sFGzrhlvIh .card-wrapper .card-title,
.cid-sFGzrhlvIh .card-box {
  color: #353535;
}
.cid-u9r16mLMqU {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #4d4848;
}
.cid-u9r16mLMqU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9r16mLMqU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9r16mLMqU .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9r16mLMqU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-u9r16mLMqU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u9r16mLMqU .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-u9r16mLMqU .mbr-section-title {
  color: #ffffff;
}
.cid-u9CW8nqZQI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u9CW8nqZQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9CW8nqZQI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u9CW8nqZQI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9CW8nqZQI .row {
  flex-direction: row-reverse;
}
.cid-u9CW8nqZQI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9CW8nqZQI .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9Bx2ZJfnO {
  background-color: #f1eeee;
}
.cid-u9Bx2ZJfnO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9Bx2ZJfnO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u9Bx2ZJfnO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9Bx2ZJfnO .row {
  flex-direction: row-reverse;
}
.cid-u9Bx2ZJfnO img {
  width: 100%;
}
.cid-u9YXz1ciDW {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-u9YXz1ciDW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9YXz1ciDW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9YXz1ciDW .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u9YXz1ciDW .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u9YXz1ciDW .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u9YXz1ciDW .card-wrapper {
    padding: 4rem;
  }
}
.cid-u9YSkXFCVE {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-u9YSkXFCVE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9YSkXFCVE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9YSkXFCVE .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-u9YSkXFCVE .icon-box {
  background: #98dee8;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u9YSkXFCVE .mbr-iconfont {
  font-size: 2rem;
  color: #185f69;
}
@media (max-width: 991px) {
  .cid-u9YSkXFCVE .card {
    margin-bottom: 2rem;
  }
  .cid-u9YSkXFCVE .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u9YSkXFCVE .mbr-text,
.cid-u9YSkXFCVE .mbr-section-btn {
  color: #ffffff;
}
.cid-u9YSkXFCVE .card-title,
.cid-u9YSkXFCVE .card-box {
  color: #ffffff;
}
.cid-u9YSkXFCVE .icon-title {
  color: #232323;
}
.cid-u9YSkXFCVE .icon-text {
  color: #232323;
}
.cid-sFGGxz3b6J {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sFGGxz3b6J .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sFGGxz3b6J .row {
    flex-direction: column-reverse;
  }
  .cid-sFGGxz3b6J .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sFGGxz3b6J .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sFGGxz3b6J .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sFGGxz3b6J .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFGGxz3b6J .mbr-text,
.cid-sFGGxz3b6J .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-sFGGxz3b6J .card-title {
  color: #98dee8;
}
.cid-u9YNpk5mis {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4d4848;
}
.cid-u9YNpk5mis .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9YNpk5mis .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9YNpk5mis .content-wrapper {
  background: #4d4848;
}
@media (max-width: 991px) {
  .cid-u9YNpk5mis .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u9YNpk5mis .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u9YNpk5mis .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u9YNpk5mis .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u9YNpk5mis .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u9YNpk5mis .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u9YNpk5mis .card-title {
  color: #ffffff;
}
.cid-u9YNpk5mis .mbr-text,
.cid-u9YNpk5mis .mbr-section-btn {
  color: #ffffff;
}
.cid-u9YZnjeNsl {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #4d4848;
}
.cid-u9YZnjeNsl .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u9YZnjeNsl form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-u9YZnjeNsl form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-u9YZnjeNsl form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u9YZnjeNsl .mbr-section-title {
  color: #ffffff;
}
.cid-uedVZJk7vP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #778eb9;
  overflow: hidden;
}
.cid-ureVMLToK7 {
  background-image: url("../../../assets/images/-1-2000x978.png");
}
.cid-ureVMLToK7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ureVMLToK7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ureVMLToK7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-ureVMLToK7 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-ureVMLToK7 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-ureVMLToK7 .mbr-section-title {
  color: #ffffff;
}
.cid-ureVMLToK7 .mbr-text,
.cid-ureVMLToK7 .mbr-section-btn,
.cid-ureVMLToK7 .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-sFzz5E692j {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sFzz5E692j .container-fluid {
  padding: 0;
}
.cid-sFzz5E692j .text-wrapper {
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .cid-sFzz5E692j .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFzz5E692j .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzz5E692j .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzz5E692j .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzz5E692j .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzz5E692j .mbr-text,
.cid-sFzz5E692j .mbr-section-btn {
  text-align: left;
}
.cid-sFzFvgBfc0 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFzFvgBfc0 img,
.cid-sFzFvgBfc0 .item-img {
  width: 100%;
}
.cid-sFzFvgBfc0 .item:focus,
.cid-sFzFvgBfc0 span:focus {
  outline: none;
}
.cid-sFzFvgBfc0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFzFvgBfc0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sFzFvgBfc0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFzFvgBfc0 .mbr-section-title {
  color: #5a6c8c;
}
.cid-sFzFvgBfc0 .mbr-text,
.cid-sFzFvgBfc0 .mbr-section-btn {
  text-align: left;
}
.cid-sFzFvgBfc0 .item-title {
  text-align: center;
}
.cid-sFzFvgBfc0 .item-subtitle {
  text-align: left;
}
.cid-urfJ88vOip {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-urfJ88vOip img,
.cid-urfJ88vOip .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-urfJ88vOip .item:focus,
.cid-urfJ88vOip span:focus {
  outline: none;
}
.cid-urfJ88vOip .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urfJ88vOip .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urfJ88vOip .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urfJ88vOip .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-urfJ88vOip .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urfJ88vOip .mbr-section-title {
  color: #232323;
}
.cid-urfJ88vOip .mbr-text,
.cid-urfJ88vOip .mbr-section-btn {
  text-align: left;
}
.cid-urfJ88vOip .item-title {
  text-align: center;
}
.cid-urfJ88vOip .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-sFzErVWEaH {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background: #d6dee7;
}
.cid-sFzErVWEaH .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sFzErVWEaH .team-card:hover {
  transform: translateY(-10px);
}
.cid-sFzErVWEaH .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sFzErVWEaH .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sFzErVWEaH .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sFzErVWEaH .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFzErVWEaH .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sFzErVWEaH .social-row {
  text-align: center;
}
.cid-sFzErVWEaH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sFzErVWEaH .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sFzErVWEaH .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sFzErVWEaH .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sFzErVWEaH .mbr-section-title {
  color: #000000;
}
.cid-sFzErVWEaH .mbr-section-title1 {
  color: #5a6c8c;
}
.cid-urg9S6Wjw3 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/-2024-10-15-113303-1592x1057.jpg");
}
.cid-urg9S6Wjw3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urg9S6Wjw3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urg9S6Wjw3 .mbr-text,
.cid-urg9S6Wjw3 .link {
  text-align: left;
  color: #fafafa;
}
.cid-urg9S6Wjw3 .mbr-section-title {
  color: #ffffff;
}
.cid-urgmZiLdLl {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-urgmZiLdLl .mbr-text {
  text-align: center;
}
.cid-urgmZiLdLl .mbr-section-subtitle {
  text-align: center;
  color: #5a6c8c;
}
.cid-urgoFv9tIl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #90b0bf;
}
.cid-urgoFv9tIl .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgoFv9tIl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgoFv9tIl .mbr-section-title {
  color: #ffffff;
}
.cid-urgowWZDZ6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #90b0bf;
}
.cid-urgowWZDZ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgowWZDZ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgowWZDZ6 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-urgowWZDZ6 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urgowWZDZ6 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-urgowWZDZ6 .card-title {
  color: #5a6c8c;
}
.cid-sFzDs3t9EG {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-sFzDs3t9EG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sFzDs3t9EG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sFzDs3t9EG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sFzDs3t9EG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sFzDs3t9EG .mbr-section-title {
  color: #000000;
}
.cid-sFzDs3t9EG .mbr-section-subtitle {
  color: #000000;
}
.cid-uedT4rIQwR {
  background-image: url("../../../assets/images/0530-2000x1055.jpg");
}
.cid-uedT4rIQwR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uedT4rIQwR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uedT4rIQwR .mbr-text,
.cid-uedT4rIQwR .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uedT4rIQwR .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-uedXg5Cm6P {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uedXg5Cm6P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uedXg5Cm6P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uedXg5Cm6P .card-wrapper {
  background: #5a6c8c;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uedXg5Cm6P .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uedXg5Cm6P .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uedXg5Cm6P .card-wrapper {
    padding: 4rem;
  }
}
.cid-uedXg5Cm6P .mbr-text,
.cid-uedXg5Cm6P .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uedXg5Cm6P .card-title,
.cid-uedXg5Cm6P .card-box {
  text-align: left;
}
.cid-uedXg5Cm6P .card-title,
.cid-uedXg5Cm6P .card-box DIV {
  text-align: center;
}
.cid-uedVZJk7vP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #778eb9;
  overflow: hidden;
}
.cid-uee074oKhw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uee074oKhw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uee074oKhw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uee074oKhw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uee074oKhw .row {
  flex-direction: row-reverse;
}
.cid-uee074oKhw img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uee074oKhw .text-wrapper {
    padding: 2rem;
  }
}
.cid-uee074oKhw .mbr-text {
  color: #5a6c8c;
  text-align: left;
}
.cid-ueer4oHNnL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #5a6c8c;
}
.cid-ueer4oHNnL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueer4oHNnL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueer4oHNnL .mbr-section-title {
  color: #ffffff;
}
.cid-ueeXpLVvcV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-ueeXpLVvcV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueeXpLVvcV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ueeXpLVvcV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ueeXpLVvcV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ueeXpLVvcV .text-wrapper {
    padding: 2rem;
  }
}
.cid-ueeXpLVvcV .mbr-text {
  text-align: left;
  color: #778eb9;
}
.cid-ueeXpLVvcV .mbr-section-title {
  color: #5a6c8c;
}
.cid-uef2N4HYV2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uef2N4HYV2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uef2N4HYV2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uef2N4HYV2 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uef2N4HYV2 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uef2N4HYV2 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uef2N4HYV2 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uef2N4HYV2 .mbr-text,
.cid-uef2N4HYV2 .mbr-section-btn {
  color: #ffffff;
}
.cid-uef2N4HYV2 .card-title,
.cid-uef2N4HYV2 .card-box {
  text-align: right;
  color: #5a6c8c;
}
.cid-uef28lXL7v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uef28lXL7v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uef28lXL7v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uef28lXL7v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uef28lXL7v .row {
  flex-direction: row-reverse;
}
.cid-uef28lXL7v img {
  width: 100%;
}
.cid-uef3jAH3Tk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uef3jAH3Tk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uef3jAH3Tk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uef3jAH3Tk .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uef3jAH3Tk .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uef3jAH3Tk .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uef3jAH3Tk .card-wrapper {
    padding: 4rem;
  }
}
.cid-uef3jAH3Tk .mbr-text,
.cid-uef3jAH3Tk .mbr-section-btn {
  color: #ffffff;
}
.cid-uef3jAH3Tk .card-title,
.cid-uef3jAH3Tk .card-box {
  text-align: right;
  color: #5a6c8c;
}
.cid-uef3j16XAN {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uef3j16XAN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uef3j16XAN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uef3j16XAN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uef3j16XAN .row {
  flex-direction: row-reverse;
}
.cid-uef3j16XAN img {
  width: 100%;
}
.cid-uef48Yzv9T {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #778eb9;
}
.cid-uef48Yzv9T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uef48Yzv9T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uef48Yzv9T .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uef48Yzv9T .container {
    max-width: 1400px;
  }
}
.cid-uef48Yzv9T .card {
  margin: auto;
}
.cid-uef48Yzv9T .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uef48Yzv9T .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uef48Yzv9T .row {
  justify-content: center;
}
.cid-uef48Yzv9T H3 {
  color: #ffffff;
}
.cid-uef48Yzv9T .card-title,
.cid-uef48Yzv9T .card-box {
  color: #ffffff;
}
.cid-ueetiMoDgU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ueetiMoDgU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueetiMoDgU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueetiMoDgU .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ueetiMoDgU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ueetiMoDgU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ueetiMoDgU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ueetiMoDgU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ueetiMoDgU .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-ueetiMoDgU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uef6wQ02ds {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uef6wQ02ds .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uef6wQ02ds form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uef6wQ02ds form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uef6wQ02ds form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uef6wQ02ds .mbr-section-title {
  color: #778eb9;
}
.cid-urm5yZUSgx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/-2024-10-16-152458-1596x1054.jpg");
}
.cid-urm5yZUSgx .mbr-fallback-image.disabled {
  display: none;
}
.cid-urm5yZUSgx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urlZKUaq6C {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceff1;
}
.cid-urlZKUaq6C .mbr-fallback-image.disabled {
  display: none;
}
.cid-urlZKUaq6C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urlZKUaq6C .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-urlZKUaq6C .row {
  flex-direction: row-reverse;
}
.cid-urlZKUaq6C img {
  width: 100%;
}
.cid-urm2YLUrem {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-urm2YLUrem .mbr-fallback-image.disabled {
  display: none;
}
.cid-urm2YLUrem .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urm2YLUrem .text-wrapper {
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-urm2YLUrem .text-wrapper {
    padding: 2rem;
  }
}
.cid-urm2YLUrem .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-urm2YLUrem .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urm6h6O5yh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urm6h6O5yh .mbr-fallback-image.disabled {
  display: none;
}
.cid-urm6h6O5yh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urm6h6O5yh .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-urm6h6O5yh .mbr-section-title {
  color: #5a6c8c;
}
.cid-urm6h6O5yh .mbr-section-subtitle {
  color: #5a6c8c;
}
.cid-urm7lLTW6O {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urm7lLTW6O .mbr-fallback-image.disabled {
  display: none;
}
.cid-urm7lLTW6O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urm7lLTW6O .item {
  padding-bottom: 2rem;
}
.cid-urm7lLTW6O .item-wrapper {
  position: relative;
}
.cid-urm7lLTW6O .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-urm7lLTW6O .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-urm7lLTW6O .carousel-control,
.cid-urm7lLTW6O .close {
  background: #1b1b1b;
}
.cid-urm7lLTW6O .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-urm7lLTW6O .carousel-control-prev span {
  margin-right: 5px;
}
.cid-urm7lLTW6O .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-urm7lLTW6O .carousel-control-next span {
  margin-left: 5px;
}
.cid-urm7lLTW6O .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-urm7lLTW6O .close::before {
  content: '\e91a';
}
.cid-urm7lLTW6O .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-urm7lLTW6O .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-urm7lLTW6O .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urm7lLTW6O .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urm7lLTW6O .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-urm7lLTW6O .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-urm7lLTW6O .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-urm7lLTW6O .carousel-indicators li.active,
.cid-urm7lLTW6O .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-urm7lLTW6O .carousel-indicators li::after,
.cid-urm7lLTW6O .carousel-indicators li::before {
  content: none;
}
.cid-urm7lLTW6O .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urm7lLTW6O .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-urm7lLTW6O .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-urm7lLTW6O .carousel-indicators {
    display: none;
  }
}
.cid-urm7lLTW6O .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-urm7lLTW6O .carousel-inner > .active {
  display: block;
}
.cid-urm7lLTW6O .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urm7lLTW6O .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-urm7lLTW6O .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-urm7lLTW6O .carousel-control,
  .cid-urm7lLTW6O .carousel-indicators,
  .cid-urm7lLTW6O .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-urm7lLTW6O .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-urm7lLTW6O .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-urm7lLTW6O .carousel-indicators .active,
.cid-urm7lLTW6O .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-urm7lLTW6O .carousel-indicators .active {
  background: #fff;
}
.cid-urm7lLTW6O .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-urm7lLTW6O .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-urm7lLTW6O .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-urm7lLTW6O .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-urm7lLTW6O .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-urm7lLTW6O .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-urm7lLTW6O .carousel {
  width: 100%;
}
.cid-urm7lLTW6O .modal-backdrop.in {
  opacity: 0.8;
}
.cid-urm7lLTW6O .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-urm7lLTW6O .modal.fade .modal-dialog,
.cid-urm7lLTW6O .modal.in .modal-dialog {
  transform: none;
}
.cid-urm7lLTW6O .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-urm7lLTW6O H6 {
  text-align: center;
}
.cid-urm7KSMo8A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urm7KSMo8A .mbr-fallback-image.disabled {
  display: none;
}
.cid-urm7KSMo8A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urm7KSMo8A .item {
  padding-bottom: 2rem;
}
.cid-urm7KSMo8A .item-wrapper {
  position: relative;
}
.cid-urm7KSMo8A .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-urm7KSMo8A .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-urm7KSMo8A .carousel-control,
.cid-urm7KSMo8A .close {
  background: #1b1b1b;
}
.cid-urm7KSMo8A .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-urm7KSMo8A .carousel-control-prev span {
  margin-right: 5px;
}
.cid-urm7KSMo8A .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-urm7KSMo8A .carousel-control-next span {
  margin-left: 5px;
}
.cid-urm7KSMo8A .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-urm7KSMo8A .close::before {
  content: '\e91a';
}
.cid-urm7KSMo8A .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-urm7KSMo8A .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-urm7KSMo8A .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urm7KSMo8A .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urm7KSMo8A .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-urm7KSMo8A .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-urm7KSMo8A .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-urm7KSMo8A .carousel-indicators li.active,
.cid-urm7KSMo8A .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-urm7KSMo8A .carousel-indicators li::after,
.cid-urm7KSMo8A .carousel-indicators li::before {
  content: none;
}
.cid-urm7KSMo8A .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urm7KSMo8A .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-urm7KSMo8A .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-urm7KSMo8A .carousel-indicators {
    display: none;
  }
}
.cid-urm7KSMo8A .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-urm7KSMo8A .carousel-inner > .active {
  display: block;
}
.cid-urm7KSMo8A .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urm7KSMo8A .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-urm7KSMo8A .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-urm7KSMo8A .carousel-control,
  .cid-urm7KSMo8A .carousel-indicators,
  .cid-urm7KSMo8A .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-urm7KSMo8A .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-urm7KSMo8A .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-urm7KSMo8A .carousel-indicators .active,
.cid-urm7KSMo8A .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-urm7KSMo8A .carousel-indicators .active {
  background: #fff;
}
.cid-urm7KSMo8A .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-urm7KSMo8A .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-urm7KSMo8A .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-urm7KSMo8A .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-urm7KSMo8A .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-urm7KSMo8A .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-urm7KSMo8A .carousel {
  width: 100%;
}
.cid-urm7KSMo8A .modal-backdrop.in {
  opacity: 0.8;
}
.cid-urm7KSMo8A .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-urm7KSMo8A .modal.fade .modal-dialog,
.cid-urm7KSMo8A .modal.in .modal-dialog {
  transform: none;
}
.cid-urm7KSMo8A .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-urm7KSMo8A H6 {
  text-align: center;
}
.cid-urmbu9vYB1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eceff1;
}
.cid-urmbu9vYB1 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-urmbu9vYB1 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-urmbu9vYB1 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-urmbu9vYB1 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-urmbu9vYB1 .mbr-section-title {
  color: #5a6c8c;
}
.cid-utwHXynjYs {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #eceff1;
}
.cid-utwHXynjYs .mbr-fallback-image.disabled {
  display: none;
}
.cid-utwHXynjYs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utwHXynjYs .content-wrapper {
  background: #eceff1;
}
@media (max-width: 991px) {
  .cid-utwHXynjYs .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-utwHXynjYs .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utwHXynjYs .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-utwHXynjYs .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utwHXynjYs .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-utwHXynjYs .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-utwHXynjYs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utwMv68Xgk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utwMv68Xgk .mbr-section-subtitle {
  color: #5a6c8c;
}
.cid-utwMv68Xgk .mbr-text {
  color: #494747;
}
.cid-utwN2CvdzM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/-2024-10-15-153326-1571x1045.jpg");
}
.cid-utwN2CvdzM .mbr-overlay {
  background: #778eb9;
  opacity: 0.7;
}
.cid-utwN2CvdzM img,
.cid-utwN2CvdzM .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-utwN2CvdzM .item:focus,
.cid-utwN2CvdzM span:focus {
  outline: none;
}
.cid-utwN2CvdzM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utwN2CvdzM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utwN2CvdzM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utwN2CvdzM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-utwN2CvdzM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utwN2CvdzM .mbr-section-title {
  color: #ffffff;
}
.cid-utwN2CvdzM .mbr-text,
.cid-utwN2CvdzM .mbr-section-btn {
  text-align: center;
}
.cid-utwN2CvdzM .item-title {
  text-align: center;
}
.cid-utwN2CvdzM .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-utwN2CvdzM .mbr-section-title DIV {
  text-align: left;
}
.cid-utT4yaK6Uc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-utT4yaK6Uc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utT4yaK6Uc form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utT4yaK6Uc form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utT4yaK6Uc form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-utNAFooOnn {
  display: flex;
  background-image: url("../../../assets/images/-2024-11-11-145720-1591x1061.jpg");
}
.cid-utNAFooOnn .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-utNAFooOnn .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-utNAFooOnn {
    align-items: flex-end;
  }
  .cid-utNAFooOnn .row {
    justify-content: flex-start;
  }
  .cid-utNAFooOnn .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-utNAFooOnn .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-utNAFooOnn {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-utNAFooOnn .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-utNAFooOnn .content-wrap {
    width: 100%;
  }
}
.cid-utNAFooOnn .mbr-text,
.cid-utNAFooOnn .mbr-section-btn {
  color: #ffffff;
}
.cid-utNVmHYHqT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utNVmHYHqT .mbr-fallback-image.disabled {
  display: none;
}
.cid-utNVmHYHqT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utNVu24tA7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utNVu24tA7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utNVu24tA7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-utNVu24tA7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utNVu24tA7 .row {
  flex-direction: row-reverse;
}
.cid-utNVu24tA7 img {
  width: 100%;
}
.cid-utNYKgYwM5 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-utNYKgYwM5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utNYKgYwM5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-utNYKgYwM5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utNYKgYwM5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utNYKgYwM5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-utO8D2wEGR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utO8D2wEGR .mbr-fallback-image.disabled {
  display: none;
}
.cid-utO8D2wEGR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utO8D2wEGR .mbr-section-subtitle {
  color: #5a6c8c;
}
.cid-utO8kUeIGJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utO8kUeIGJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-utO8kUeIGJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-utO8kUeIGJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utO8kUeIGJ .row {
  flex-direction: row-reverse;
}
.cid-utO8kUeIGJ img {
  width: 100%;
}
.cid-utOaKXcVbj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utOaKXcVbj .mbr-fallback-image.disabled {
  display: none;
}
.cid-utOaKXcVbj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utOaKXcVbj .mbr-section-subtitle {
  color: #5a6c8c;
}
.cid-utOb7FjSR5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utOb7FjSR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utOb7FjSR5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-utOb7FjSR5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utOb7FjSR5 .row {
  flex-direction: row-reverse;
}
.cid-utOb7FjSR5 img {
  width: 100%;
}
.cid-utSzssoidm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utSzssoidm .mbr-fallback-image.disabled {
  display: none;
}
.cid-utSzssoidm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-utSzssoidm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utSzssoidm .row {
  flex-direction: row-reverse;
}
.cid-utSzssoidm img {
  width: 100%;
}
.cid-utSBSvsK46 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utSBSvsK46 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utSBSvsK46 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utSBSvsK46 .mbr-section-title {
  color: #5a6c8c;
}
.cid-utSBSvsK46 .mbr-section-subtitle {
  color: #494747;
}
.cid-utSC9sCp8Y {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-utSC9sCp8Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-utSC9sCp8Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-utSC9sCp8Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utSC9sCp8Y .row {
  flex-direction: row-reverse;
}
.cid-utSC9sCp8Y img {
  width: 100%;
}
.cid-utSCLUgLCv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utSCLUgLCv .mbr-fallback-image.disabled {
  display: none;
}
.cid-utSCLUgLCv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utSCYsbmqL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-utSCYsbmqL .mbr-fallback-image.disabled {
  display: none;
}
.cid-utSCYsbmqL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-utSCYsbmqL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utSCYsbmqL .row {
  flex-direction: row-reverse;
}
.cid-utSCYsbmqL img {
  width: 100%;
}
.cid-utSFUdAaSw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utSFUdAaSw .mbr-fallback-image.disabled {
  display: none;
}
.cid-utSFUdAaSw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utSFUdAaSw .mbr-section-title {
  color: #5a6c8c;
}
.cid-utSFQsnvAu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utSFQsnvAu .mbr-fallback-image.disabled {
  display: none;
}
.cid-utSFQsnvAu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utSFQsnvAu .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #5a6c8c;
  margin-bottom: 2rem;
}
.cid-utSFQsnvAu .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-utSGAc4t4E {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utSGAc4t4E .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utSGAc4t4E form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utSGAc4t4E form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utSGAc4t4E form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uFR6p0g1VC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFR6p0g1VC nav.navbar {
  position: fixed;
}
.cid-uFR6p0g1VC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFR6p0g1VC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFR6p0g1VC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFR6p0g1VC .dropdown-item:hover,
.cid-uFR6p0g1VC .dropdown-item:focus {
  background: #5a6c8c !important;
  color: white !important;
}
.cid-uFR6p0g1VC .dropdown-item:hover span {
  color: white;
}
.cid-uFR6p0g1VC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFR6p0g1VC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFR6p0g1VC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFR6p0g1VC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFR6p0g1VC .nav-link {
  position: relative;
}
.cid-uFR6p0g1VC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFR6p0g1VC .container {
    flex-wrap: nowrap;
  }
}
.cid-uFR6p0g1VC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFR6p0g1VC .dropdown-menu,
.cid-uFR6p0g1VC .navbar.opened {
  background: #ffffff !important;
}
.cid-uFR6p0g1VC .nav-item:focus,
.cid-uFR6p0g1VC .nav-link:focus {
  outline: none;
}
.cid-uFR6p0g1VC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFR6p0g1VC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFR6p0g1VC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFR6p0g1VC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFR6p0g1VC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFR6p0g1VC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFR6p0g1VC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uFR6p0g1VC .navbar.opened {
  transition: all 0.3s;
}
.cid-uFR6p0g1VC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFR6p0g1VC .navbar .navbar-logo img {
  width: auto;
}
.cid-uFR6p0g1VC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFR6p0g1VC .navbar.collapsed {
  justify-content: center;
}
.cid-uFR6p0g1VC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFR6p0g1VC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFR6p0g1VC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFR6p0g1VC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFR6p0g1VC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uFR6p0g1VC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFR6p0g1VC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFR6p0g1VC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFR6p0g1VC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFR6p0g1VC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFR6p0g1VC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFR6p0g1VC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFR6p0g1VC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uFR6p0g1VC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFR6p0g1VC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFR6p0g1VC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFR6p0g1VC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFR6p0g1VC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFR6p0g1VC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFR6p0g1VC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFR6p0g1VC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFR6p0g1VC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFR6p0g1VC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFR6p0g1VC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFR6p0g1VC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFR6p0g1VC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFR6p0g1VC .dropdown-item.active,
.cid-uFR6p0g1VC .dropdown-item:active {
  background-color: transparent;
}
.cid-uFR6p0g1VC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFR6p0g1VC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFR6p0g1VC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFR6p0g1VC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFR6p0g1VC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFR6p0g1VC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFR6p0g1VC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFR6p0g1VC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFR6p0g1VC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFR6p0g1VC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFR6p0g1VC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFR6p0g1VC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFR6p0g1VC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFR6p0g1VC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFR6p0g1VC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFR6p0g1VC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFR6p0g1VC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFR6p0g1VC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFR6p0g1VC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFR6p0g1VC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFR6p0g1VC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFR6p0g1VC .navbar {
    height: 70px;
  }
  .cid-uFR6p0g1VC .navbar.opened {
    height: auto;
  }
  .cid-uFR6p0g1VC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFzxmVl7J6 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #353535;
}
.cid-uFdashaBCh {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/-1301x673.png");
}
.cid-uFdashaBCh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFdashaBCh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFdashaBCh .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uFdashaBCh .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uFdashaBCh .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uFdashaBCh .mbr-section-title {
  color: #ffffff;
}
.cid-uFRe71CUQW {
  background-color: #ffffff;
}
.cid-uFRe71CUQW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFRe71CUQW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uFRe71CUQW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFRe71CUQW .row {
  flex-direction: row-reverse;
}
.cid-uFRe71CUQW img {
  width: 100%;
}
.cid-uFp2gt6bgI {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uFp2gt6bgI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFp2gt6bgI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFp3mA0YFu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uFp3mA0YFu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFp3mA0YFu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFp3mA0YFu .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uFp3mA0YFu .team-card:hover {
  transform: translateY(-10px);
}
.cid-uFp3mA0YFu .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uFp3mA0YFu .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uFp3mA0YFu .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uFp3mA0YFu .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uFp3mA0YFu .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uFp3mA0YFu .social-row {
  text-align: center;
}
.cid-uFp3mA0YFu .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uFp3mA0YFu .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uFp3mA0YFu .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uFp3mA0YFu .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uFp3mA0YFu .card-text,
.cid-uFp3mA0YFu .mbr-section-btn,
.cid-uFp3mA0YFu .social-row {
  text-align: left;
}
.cid-uFpeWqbwwI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFpeWqbwwI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpeWqbwwI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uFpeWqbwwI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFpeWqbwwI .row {
  flex-direction: row-reverse;
}
.cid-uFpeWqbwwI img {
  width: 100%;
}
.cid-uFpfFuTfww {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uFpfFuTfww .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uFpfFuTfww form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uFpfFuTfww form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uFpfFuTfww form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uFR82h89y6 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-uFR82h89y6 .content {
    text-align: center;
  }
  .cid-uFR82h89y6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uFR82h89y6 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uFR82h89y6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uFR82h89y6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uFR82h89y6 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uFR82h89y6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uFR82h89y6 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uFR82h89y6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uFR82h89y6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uFR82h89y6 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFR82h89y6 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uFR82h89y6 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uFR82h89y6 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uFR82h89y6 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFR82h89y6 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFR82h89y6 .list {
  list-style-type: none;
  padding: 0;
}
