body {
  font-family: 'Zilla Slab', serif;
}
.display-1 {
  font-family: 'Zilla Slab', serif;
  font-size: 5.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.75rem;
}
.display-2 {
  font-family: 'Zilla Slab', serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Zilla Slab', serif;
  font-size: 1.3rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Zilla Slab', serif;
  font-size: 1.75rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'Zilla Slab', serif;
  font-size: 1.4rem;
  line-height: 1.25;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 4.32rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.78rem;
    font-size: calc( 2.54rem + (5.4 - 2.54) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.54rem + (5.4 - 2.54) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.14rem + (1.4 - 1.14) * ((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: #ff3399 !important;
}
.bg-success {
  background-color: #64ff54 !important;
}
.bg-info {
  background-color: #56f1ff !important;
}
.bg-warning {
  background-color: #fdff54 !important;
}
.bg-danger {
  background-color: #a0a218 !important;
}
.btn-primary .btn-overlay {
  background-color: #d42b80 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff3399 !important;
  border-color: #ff3399 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #d42b80 !important;
  border-color: #d42b80 !important;
}
.btn-secondary .btn-overlay {
  background-color: #8e9d51 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #181c06 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #181c06 !important;
  background-color: #8e9d51 !important;
  border-color: #8e9d51 !important;
}
.btn-info .btn-overlay {
  background-color: #48ceda !important;
}
.btn-info,
.btn-info:active {
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
  color: #004f56 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #004f56 !important;
  background-color: #48ceda !important;
  border-color: #48ceda !important;
}
.btn-success .btn-overlay {
  background-color: #54d947 !important;
}
.btn-success,
.btn-success:active {
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
  color: #085400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #085400 !important;
  background-color: #54d947 !important;
  border-color: #54d947 !important;
}
.btn-warning .btn-overlay {
  background-color: #d8d947 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
  color: #535400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #535400 !important;
  background-color: #d8d947 !important;
  border-color: #d8d947 !important;
}
.btn-danger .btn-overlay {
  background-color: #5e5f28 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #a0a218 !important;
  border-color: #a0a218 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #5e5f28 !important;
  border-color: #5e5f28 !important;
}
.btn-white .btn-overlay {
  background-color: #e1e1e1 !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.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black .btn-overlay {
  background-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 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 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff3399;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #db006e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3399 !important;
  border-color: #ff3399 !important;
}
.btn-secondary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bcd948;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8da823 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #181c06 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
}
.btn-info-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #56f1ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #00e9fe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #004f56 !important;
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
}
.btn-success-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #64ff54;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #18fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #085400 !important;
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
}
.btn-warning-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fdff54;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f9fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #535400 !important;
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
}
.btn-danger-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a0a218;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #55560d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #a0a218 !important;
  border-color: #a0a218 !important;
}
.btn-black-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b1f0a;
}
.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: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
}
.btn-white-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: #ff3399 !important;
}
.text-secondary {
  color: #bcd948 !important;
}
.text-success {
  color: #64ff54 !important;
}
.text-info {
  color: #56f1ff !important;
}
.text-warning {
  color: #fdff54 !important;
}
.text-danger {
  color: #a0a218 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #1B1F0A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cc0066 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #829b20 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #16ed00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00dbef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #eaed00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #48490b !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: #ff3399;
}
.nav-tabs .nav-link:not(.active) {
  color: #1B1F0A;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #56f1ff;
}
.alert-warning {
  background-color: #fdff54;
}
.alert-danger {
  background-color: #a0a218;
}
.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: #ff3399;
  border-color: #ff3399;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff3399;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #e4e654;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Zilla Slab', serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #ff3399 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Zilla Slab', serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ff3399;
}
/* 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: #ff3399;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff3399;
}
.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: #ff3399;
  border-bottom-color: #ff3399;
}
.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: #ff3399 !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: #bcd948 !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='%23ff3399' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 100px;
  border-radius: 100vw;
  padding: 1rem 1.5rem;
  line-height: 1.25;
  font-weight: 600 !important;
  box-shadow: none !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.mbr-section-btn .btn .mbr-iconfont {
  position: relative;
  z-index: 1000;
}
.mbr-section-btn .btn-transform {
  position: relative;
  overflow: hidden;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn-transform .btn-transform-1 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all !important;
  animation: btn-move-out 0.3s ease-in-out;
}
.mbr-section-btn .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn {
  transition: 0.3s all !important;
}
.mbr-section-btn .btn:hover .btn-transform .btn-transform-1 {
  animation: btn-move 0.3s ease-in-out;
}
.mbr-section-btn .btn:hover .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg) !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
b {
  font-weight: 600 !important;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-tWYl1as8yb {
  min-height: 101px !important;
  background: #e6d0f2;
  overflow: visible;
}
.cid-tWYl1as8yb .nav-item,
.cid-tWYl1as8yb .nav-link,
.cid-tWYl1as8yb .navbar-caption {
  font-weight: normal;
}
.cid-tWYl1as8yb .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-tWYl1as8yb .nav-link:before,
.cid-tWYl1as8yb .soc-item a:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  transition: .45s ease;
}
.cid-tWYl1as8yb .nav-item:hover .nav-link:before,
.cid-tWYl1as8yb .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-tWYl1as8yb .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-tWYl1as8yb .dropdown-toggle::after,
.cid-tWYl1as8yb .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: .5rem;
  margin-bottom: 2px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}
.cid-tWYl1as8yb .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-tWYl1as8yb .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-tWYl1as8yb .nav-item:focus,
.cid-tWYl1as8yb .nav-link:focus {
  outline: none;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 !important;
  margin: 0 15px !important;
  font-weight: 400;
  transition: all 0.25s;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tWYl1as8yb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWYl1as8yb .navbar {
  transition: all .3s;
  background: #e6d0f2;
}
.cid-tWYl1as8yb .navbar.opened {
  transition: all .3s;
  background: #e6d0f2 !important;
}
.cid-tWYl1as8yb .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-tWYl1as8yb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWYl1as8yb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWYl1as8yb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-tWYl1as8yb .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-tWYl1as8yb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-tWYl1as8yb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-tWYl1as8yb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tWYl1as8yb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWYl1as8yb .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-tWYl1as8yb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tWYl1as8yb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWYl1as8yb .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-tWYl1as8yb .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-tWYl1as8yb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWYl1as8yb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tWYl1as8yb .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tWYl1as8yb .navbar.navbar-short {
  background: #e6d0f2 !important;
  min-height: 60px;
}
.cid-tWYl1as8yb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-tWYl1as8yb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tWYl1as8yb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWYl1as8yb .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-tWYl1as8yb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWYl1as8yb .dropdown-item.active,
.cid-tWYl1as8yb .dropdown-item:active {
  background-color: transparent;
}
.cid-tWYl1as8yb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e6d0f2;
}
.cid-tWYl1as8yb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-tWYl1as8yb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWYl1as8yb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWYl1as8yb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYl1as8yb .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-tWYl1as8yb a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-tWYl1as8yb .mbr-iconfont {
  color: #e6d0f2;
}
.cid-tWYl1as8yb .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-tWYl1as8yb .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWYl1as8yb .navbar {
    height: 77px;
  }
  .cid-tWYl1as8yb .navbar.opened {
    height: auto;
  }
  .cid-tWYl1as8yb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWYl1as8yb .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-tVJ7HDQeRV {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tVJ7HDQeRV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVJ7HDQeRV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVJ7HDQeRV .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-tVJ7HDQeRV .container-fluid {
    padding: 0 12px;
  }
}
.cid-tVJ7HDQeRV .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tVJ7HDQeRV .container {
    padding: 0 20px;
  }
}
.cid-tVJ7HDQeRV .row {
  margin-top: -2px;
}
.cid-tVJ7HDQeRV .card {
  padding: 0;
}
.cid-tVJ7HDQeRV .image-wrapper {
  border: 2px solid #feff98;
}
.cid-tVJ7HDQeRV .image-wrapper img {
  height: 650px;
  width: 70%;
  object-fit: cover;
  border-bottom-right-radius: 45rem;
}
@media (max-width: 992px) {
  .cid-tVJ7HDQeRV .image-wrapper img {
    height: 450px;
    width: 100%;
  }
}
.cid-tVJ7HDQeRV .title-wrapper {
  border: 2px solid #feff98;
  border-top: none;
  padding: 0 64px 64px;
  margin-top: -4rem;
}
@media (max-width: 992px) {
  .cid-tVJ7HDQeRV .title-wrapper {
    padding: 0 20px 50px;
  }
}
@media (max-width: 425px) {
  .cid-tVJ7HDQeRV .title-wrapper {
    margin-top: -2rem;
  }
}
.cid-tVJ7HDQeRV .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tVJ7HDQeRV .title-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tVJ7HDQeRV .title-wrapper .text-wrapper {
    display: block;
  }
}
.cid-tVJ7HDQeRV .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tVJ7HDQeRV .title-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-tVJ7HDQeRV .title-wrapper .text-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-tVJ7HDQeRV .title-wrapper .text-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-tVJ7HDQeRV .mbr-section-title {
  color: #ffffff;
}
.cid-tVJ7HDQeRV .mbr-text {
  color: #ffffff;
}
.cid-tVJ7HDQeRV .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-tVJ7HDQeRV .mbr-section-btn {
    text-align: left;
  }
}
.cid-tVF1LITiRE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tVF1LITiRE .mbr-section-subtitle {
  color: #14191e;
}
.cid-tVF1LITiRE .mbr-text {
  color: #777777;
}
.cid-tVF1LITiRE ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tVF1LITiRE ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tVF1LITiRE ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4568ae;
  width: 25px;
  height: 25px;
}
.cid-tVF1LITiRE .mbr-list {
  color: #f3f4ef;
}
.cid-tVJ9HujfvH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tVJ9HujfvH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVJ9HujfvH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tVJ9HujfvH .container {
    padding: 0 15px;
  }
}
.cid-tVJ9HujfvH .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
  padding-right: 0;
  padding-left: 8px;
}
@media (max-width: 992px) {
  .cid-tVJ9HujfvH .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tVJ9HujfvH .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tVJ9HujfvH .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tVJ9HujfvH .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tVJ9HujfvH .mbr-section-title {
  color: #ffffff;
}
.cid-tVJ9HujfvH .mbr-text {
  color: #d2d2df;
}
.cid-tVJ9HujfvH .mbr-name {
  color: #f2ac2b;
}
.cid-tVG9BdlS3t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6d0f2;
  position: relative;
  overflow: hidden;
}
.cid-tVG9BdlS3t .row {
  justify-content: center;
}
.cid-tVG9BdlS3t .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tVG9BdlS3t .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-tVG9BdlS3t .title-container {
    margin-bottom: 56px;
  }
}
.cid-tVG9BdlS3t .mbr-section-title {
  color: #6148ff;
}
.cid-tVG9BdlS3t .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-tVG9BdlS3t .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 0;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tVG9BdlS3t .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-tVG9BdlS3t .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tVG9BdlS3t .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-tVG9BdlS3t .text-container {
  margin-bottom: 24px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-tVG9BdlS3t .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-tVG9BdlS3t .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-tVG9BdlS3t .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-tVG9BdlS3t .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-tVG9BdlS3t .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-tVG9BdlS3t .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-tVG9BdlS3t .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-tVG9BdlS3t .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-tVG9BdlS3t .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-tVG9BdlS3t .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-tVG9BdlS3t .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-tVG9BdlS3t .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-tVG9BdlS3t .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tVG9BdlS3t .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-tVG9BdlS3t .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tVG9BdlS3t .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tVG9BdlS3t .circle-blur {
  position: absolute;
  top: 5%;
  right: 5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #feff98 27%, #11004b 50%, #feff98 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-t2YW8wTxz2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6d0f2;
}
.cid-t2YW8wTxz2 .row {
  align-items: center;
  width: 100%;
}
.cid-t2YW8wTxz2 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YW8wTxz2 .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-t2YW8wTxz2 .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-t2YW8wTxz2 .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #11004b;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t2YW8wTxz2 .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-t2YW8wTxz2 .content-container {
    padding: 2rem !important;
  }
}
.cid-t2YW8wTxz2 .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-t2YW8wTxz2 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .img-container {
    padding-right: 0;
  }
}
.cid-t2YW8wTxz2 .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-t2YW8wTxz2 .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-t2YW8wTxz2 .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .text-container {
    padding-left: 0;
  }
}
.cid-t2YW8wTxz2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YW8wTxz2 .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-t2YW8wTxz2 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2YW8wTxz2 .card-title {
  width: 100%;
  color: #fafafa;
  margin-bottom: 4px;
}
.cid-t2YW8wTxz2 .mbr-text {
  letter-spacing: inherit;
  color: #fafafa;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tVG4xTD7im {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tVG4xTD7im .row {
  align-items: center;
  width: 100%;
}
.cid-tVG4xTD7im .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-tVG4xTD7im .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tVG4xTD7im .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tVG4xTD7im .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #f3f4ef;
}
.cid-tVG4xTD7im .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tVG4xTD7im .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-tVG4xTD7im .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tVG4xTD7im .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-tVG4xTD7im .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-tVG4xTD7im .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tVG4xTD7im .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tVG4xTD7im .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-tVG4xTD7im .btn-container {
  width: 100%;
}
.cid-tVG4xTD7im .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-tVG4xTD7im .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-tVG4xTD7im .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tVG4xTD7im .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-t2ZkCfcHJd {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-t2ZkCfcHJd .row {
  align-items: center;
  width: 100%;
}
.cid-t2ZkCfcHJd .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #e6d0f2;
}
@media (max-width: 767px) {
  .cid-t2ZkCfcHJd .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-t2ZkCfcHJd .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2ZkCfcHJd .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-t2ZkCfcHJd .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-t2ZkCfcHJd .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2ZkCfcHJd .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #1B1F0A;
}
.cid-t2ZkCfcHJd .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2ZkCfcHJd .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-t2ZkCfcHJd .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-t2ZkCfcHJd .btn-container {
  width: 100%;
}
.cid-t2ZkCfcHJd .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-t2ZkCfcHJd .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-t2ZkCfcHJd .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-t2ZkCfcHJd .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-t2ZkCfcHJd .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-tWY66eHWvG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWY66eHWvG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWY66eHWvG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWY66eHWvG .container {
    padding: 0 24px;
  }
}
.cid-tWY66eHWvG .row {
  justify-content: center;
}
.cid-tWY66eHWvG .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tWY66eHWvG .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tWY66eHWvG .panel-group .card {
  border: none;
  border-radius: 40px;
  background-color: #ffffff;
  margin-bottom: 32px;
  min-width: 40px;
}
.cid-tWY66eHWvG .panel-group .card .card-header {
  padding: 40px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tWY66eHWvG .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-tWY66eHWvG .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWY66eHWvG .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tWY66eHWvG .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tWY66eHWvG .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWY66eHWvG .panel-group .card .card-header .panel-title .mbr-iconfont {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #ffffff;
  background-color: #8e8ead;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWY66eHWvG .panel-group .card .panel-collapse .panel-body {
  padding: 0 40px 40px;
}
@media (max-width: 992px) {
  .cid-tWY66eHWvG .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-tWY66eHWvG .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWY66eHWvG .mbr-section-title {
  color: #262642;
  text-align: center;
}
.cid-tWY66eHWvG .panel-title-edit {
  color: #11004b;
}
.cid-tWY66eHWvG .panel-text {
  color: #262642;
}
.cid-tVJaQmj7es {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tVJaQmj7es .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVJaQmj7es .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVJaQmj7es .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .container {
    padding: 0 30px;
  }
}
.cid-tVJaQmj7es .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tVJaQmj7es .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #e6d0f2;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tVJaQmj7es .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tVJaQmj7es .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tVJaQmj7es .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tVJaQmj7es .mbr-section-title {
  color: #ffffff;
}
.cid-tVJaQmj7es .mbr-card-title {
  color: #2b2b2b;
}
.cid-tVJaQmj7es .mbr-text {
  color: #4E4E4E;
}
.cid-tVJaQmj7es .mbr-number {
  color: #FE5115;
}
.cid-tVGChpIEhG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tVGChpIEhG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVGChpIEhG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVGChpIEhG .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tVGChpIEhG .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tVGChpIEhG .container {
    padding: 0;
  }
}
.cid-tVGChpIEhG .row {
  margin: 0;
  border-top: 1px solid #005241;
  border-bottom: 1px solid #005241;
}
.cid-tVGChpIEhG .card {
  border-radius: 0;
  padding: 0;
}
.cid-tVGChpIEhG .card:first-child {
  border-right: 1px solid #005241;
}
@media (max-width: 992px) {
  .cid-tVGChpIEhG .card:first-child {
    border-right: none;
    border-bottom: 1px solid #005241;
  }
}
.cid-tVGChpIEhG .card .card-wrapper {
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-tVGChpIEhG .card .card-wrapper {
    padding: 40px 16px;
  }
}
.cid-tVGChpIEhG .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tVGChpIEhG .card .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tVGChpIEhG .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tVGChpIEhG .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-t2ZrNfjWuw {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #11004b;
}
.cid-t2ZrNfjWuw .row {
  align-items: center;
  width: 100%;
}
.cid-t2ZrNfjWuw .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2ZrNfjWuw .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-t2ZrNfjWuw .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-t2ZrNfjWuw .content-container {
  display: flex;
  padding: 60px !important;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t2ZrNfjWuw .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-t2ZrNfjWuw .content-container {
    padding: 2rem !important;
  }
}
.cid-t2ZrNfjWuw .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-t2ZrNfjWuw .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .img-container {
    padding-left: 0;
  }
}
.cid-t2ZrNfjWuw .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-t2ZrNfjWuw .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-t2ZrNfjWuw .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .text-container {
    padding-right: 0;
  }
}
.cid-t2ZrNfjWuw .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2ZrNfjWuw .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-t2ZrNfjWuw .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2ZrNfjWuw .card-title {
  width: 100%;
  color: #fafafa;
  margin-bottom: 4px;
}
.cid-t2ZrNfjWuw .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tVJci2wTqU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-tVJci2wTqU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVJci2wTqU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVJci2wTqU .col-img {
  display: flex;
  flex-direction: column;
}
.cid-tVJci2wTqU .mbr-description {
  color: #f3f4ef;
}
.cid-tVJci2wTqU .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tVJci2wTqU .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-tVH0fp6rO3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tVH0fp6rO3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVH0fp6rO3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVH0fp6rO3 .card-wrapper {
  background: #11004b;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tVH0fp6rO3 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tVH0fp6rO3 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVH0fp6rO3 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tVH0fp6rO3 .mbr-text,
.cid-tVH0fp6rO3 .mbr-section-btn {
  color: #f3f4ef;
}
.cid-tVH0fp6rO3 .card-title,
.cid-tVH0fp6rO3 .card-box {
  text-align: left;
  color: #fafafa;
}
.cid-tXah7rNacj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXah7rNacj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXah7rNacj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXah7rNacj .container {
    padding: 0 20px;
  }
}
.cid-tXah7rNacj .row {
  margin: 0;
}
.cid-tXah7rNacj .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tXah7rNacj .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tXah7rNacj .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tXah7rNacj .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tXah7rNacj .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tXah7rNacj .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tXah7rNacj .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-tVGBbMLiAt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tVGBbMLiAt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVGBbMLiAt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVGBbMLiAt .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tVGBbMLiAt .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tVGBbMLiAt .container {
    padding: 0;
  }
}
.cid-tVGBbMLiAt .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tVGBbMLiAt .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tVGBbMLiAt .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tVGBbMLiAt .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tVGBbMLiAt .mbr-section-title {
  color: #fafafa;
}
.cid-tVGBbMLiAt .mbr-text {
  color: #ffffff;
}
.cid-tVJeTZO2GE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #e6d0f2;
}
.cid-tVJeTZO2GE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVJeTZO2GE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVJeTZO2GE .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
  border-radius: 2rem;
}
.cid-tVJeTZO2GE .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tVJeTZO2GE .google-map [data-state-details] {
  color: #6b6763;
  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-tVJeTZO2GE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tVJeTZO2GE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tVJeTZO2GE .google-map:hover {
  filter: grayscale(0);
}
.cid-tVJeTZO2GE .mbr-section-title {
  text-align: left;
  color: #6c2f12;
}
.cid-tVGxePYTH1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #11004b;
}
.cid-tVGxePYTH1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVGxePYTH1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVGxePYTH1 .row {
  justify-content: space-between;
}
.cid-tVGxePYTH1 .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVGxePYTH1 .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tVGxePYTH1 .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tVGxePYTH1 .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tVGxePYTH1 .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-tVGxePYTH1 .list li {
  margin-bottom: 25px;
}
.cid-tVGxePYTH1 .list li:last-child {
  margin-bottom: 0;
}
.cid-tVGxePYTH1 .mbr-desc {
  margin-bottom: 8px;
}
.cid-tVGxePYTH1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVGxePYTH1 .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tVGxePYTH1 .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #56f1ff;
}
.cid-tVGxePYTH1 .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tVGxePYTH1 .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #005241;
  text-align: center;
}
.cid-tVGxePYTH1 .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tVGxePYTH1 .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tVGxePYTH1 .mbr-desc,
.cid-tVGxePYTH1 .mbr-iconfont {
  color: #ffffff;
}
.cid-tVGxePYTH1 .mbr-text,
.cid-tVGxePYTH1 .mbr-section-btn {
  color: #ffffff;
}
.cid-tVH5KD0Wcg {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tVH5KD0Wcg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVH5KD0Wcg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tVH5KD0Wcg .container {
    padding: 0 15px;
  }
}
.cid-tVH5KD0Wcg .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-tVH5KD0Wcg .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tVH5KD0Wcg .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-tVH5KD0Wcg .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tVH5KD0Wcg .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVH5KD0Wcg .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tVH5KD0Wcg .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tVH5KD0Wcg .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-tVH5KD0Wcg .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-tVH5KD0Wcg .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #4568ae;
  box-shadow: 10px 10px 50px #0b4dd2;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-tVH5KD0Wcg .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-tVH5KD0Wcg .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-tVH5KD0Wcg .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-tVH5KD0Wcg .mbr-section-title {
  color: #ffffff;
}
.cid-tVH5KD0Wcg .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-tVH5KD0Wcg .mbr-text {
  color: #d2d2df;
}
.cid-tVH6bOtS1D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #e6d0f2;
}
.cid-tVH6bOtS1D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVH6bOtS1D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tVH6bOtS1D .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tVH6bOtS1D .container {
    padding: 0 12px;
  }
}
.cid-tVH6bOtS1D .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tVH6bOtS1D .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tVH6bOtS1D .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tVH6bOtS1D .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tVH6bOtS1D .mbr-section-title {
  color: #1D1D1F;
}
.cid-tVH6bOtS1D .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tVH6bOtS1D .mbr-section-title,
.cid-tVH6bOtS1D .mbr-section-btn {
  text-align: center;
}
.cid-tVH6N9fLSa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #11004b;
}
.cid-tVH6N9fLSa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVH6N9fLSa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVH6N9fLSa .google-map {
  height: 35rem;
  position: relative;
}
.cid-tVH6N9fLSa .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tVH6N9fLSa .google-map [data-state-details] {
  color: #6b6763;
  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-tVH6N9fLSa .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tVH6N9fLSa .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tVH6N9fLSa .mbr-section-title {
  color: #e6d0f2;
}
.cid-tVGxePYTH1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #11004b;
}
.cid-tVGxePYTH1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVGxePYTH1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVGxePYTH1 .row {
  justify-content: space-between;
}
.cid-tVGxePYTH1 .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVGxePYTH1 .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tVGxePYTH1 .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tVGxePYTH1 .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tVGxePYTH1 .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-tVGxePYTH1 .list li {
  margin-bottom: 25px;
}
.cid-tVGxePYTH1 .list li:last-child {
  margin-bottom: 0;
}
.cid-tVGxePYTH1 .mbr-desc {
  margin-bottom: 8px;
}
.cid-tVGxePYTH1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVGxePYTH1 .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tVGxePYTH1 .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #56f1ff;
}
.cid-tVGxePYTH1 .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tVGxePYTH1 .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #005241;
  text-align: center;
}
.cid-tVGxePYTH1 .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tVGxePYTH1 .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tVGxePYTH1 .mbr-desc,
.cid-tVGxePYTH1 .mbr-iconfont {
  color: #ffffff;
}
.cid-tVGxePYTH1 .mbr-text,
.cid-tVGxePYTH1 .mbr-section-btn {
  color: #ffffff;
}
.cid-tWYl1as8yb {
  min-height: 101px !important;
  background: #e6d0f2;
  overflow: visible;
}
.cid-tWYl1as8yb .nav-item,
.cid-tWYl1as8yb .nav-link,
.cid-tWYl1as8yb .navbar-caption {
  font-weight: normal;
}
.cid-tWYl1as8yb .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-tWYl1as8yb .nav-link:before,
.cid-tWYl1as8yb .soc-item a:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  transition: .45s ease;
}
.cid-tWYl1as8yb .nav-item:hover .nav-link:before,
.cid-tWYl1as8yb .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-tWYl1as8yb .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-tWYl1as8yb .dropdown-toggle::after,
.cid-tWYl1as8yb .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: .5rem;
  margin-bottom: 2px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}
.cid-tWYl1as8yb .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-tWYl1as8yb .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-tWYl1as8yb .nav-item:focus,
.cid-tWYl1as8yb .nav-link:focus {
  outline: none;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 !important;
  margin: 0 15px !important;
  font-weight: 400;
  transition: all 0.25s;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tWYl1as8yb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWYl1as8yb .navbar {
  transition: all .3s;
  background: #e6d0f2;
}
.cid-tWYl1as8yb .navbar.opened {
  transition: all .3s;
  background: #e6d0f2 !important;
}
.cid-tWYl1as8yb .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-tWYl1as8yb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWYl1as8yb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWYl1as8yb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-tWYl1as8yb .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-tWYl1as8yb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-tWYl1as8yb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-tWYl1as8yb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tWYl1as8yb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWYl1as8yb .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-tWYl1as8yb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tWYl1as8yb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWYl1as8yb .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-tWYl1as8yb .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-tWYl1as8yb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWYl1as8yb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tWYl1as8yb .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tWYl1as8yb .navbar.navbar-short {
  background: #e6d0f2 !important;
  min-height: 60px;
}
.cid-tWYl1as8yb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-tWYl1as8yb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tWYl1as8yb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWYl1as8yb .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-tWYl1as8yb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWYl1as8yb .dropdown-item.active,
.cid-tWYl1as8yb .dropdown-item:active {
  background-color: transparent;
}
.cid-tWYl1as8yb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e6d0f2;
}
.cid-tWYl1as8yb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-tWYl1as8yb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWYl1as8yb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWYl1as8yb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYl1as8yb .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-tWYl1as8yb a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-tWYl1as8yb .mbr-iconfont {
  color: #e6d0f2;
}
.cid-tWYl1as8yb .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-tWYl1as8yb .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWYl1as8yb .navbar {
    height: 77px;
  }
  .cid-tWYl1as8yb .navbar.opened {
    height: auto;
  }
  .cid-tWYl1as8yb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWYl1as8yb .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-tVH77O7Nsf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tVH77O7Nsf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVH77O7Nsf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tVH77O7Nsf .container {
    padding: 0 15px;
  }
}
.cid-tVH77O7Nsf .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-tVH77O7Nsf .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tVH77O7Nsf .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-tVH77O7Nsf .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tVH77O7Nsf .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVH77O7Nsf .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tVH77O7Nsf .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tVH77O7Nsf .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-tVH77O7Nsf .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-tVH77O7Nsf .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #4568ae;
  box-shadow: 10px 10px 50px #0b4dd2;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-tVH77O7Nsf .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-tVH77O7Nsf .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-tVH77O7Nsf .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-tVH77O7Nsf .mbr-section-title {
  color: #ffffff;
}
.cid-tVH77O7Nsf .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-tVH77O7Nsf .mbr-text {
  color: #d2d2df;
}
.cid-tVH7JA1TOI {
  display: flex;
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #e6d0f2;
}
@media (min-width: 768px) {
  .cid-tVH7JA1TOI {
    align-items: center;
  }
  .cid-tVH7JA1TOI .row {
    justify-content: center;
  }
}
.cid-tVH7JA1TOI p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tVH7JA1TOI .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tVH7JA1TOI {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tVH7JA1TOI .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tVH7JA1TOI .content-wrap {
    width: 100%;
  }
}
.cid-tVH7JA1TOI .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tVH7JA1TOI .mbr-text,
.cid-tVH7JA1TOI .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-tVH7JA1TOI .mbr-section-subtitle {
  color: #a1a1a1;
  text-align: center;
}
.cid-tVH77OQXA1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #11004b;
}
.cid-tVH77OQXA1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVH77OQXA1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVH77OQXA1 .google-map {
  height: 35rem;
  position: relative;
}
.cid-tVH77OQXA1 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tVH77OQXA1 .google-map [data-state-details] {
  color: #6b6763;
  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-tVH77OQXA1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tVH77OQXA1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tVH77OQXA1 .mbr-section-title {
  color: #f3f4ef;
}
.cid-tVH77PfaCg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #11004b;
}
.cid-tVH77PfaCg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVH77PfaCg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVH77PfaCg .row {
  justify-content: space-between;
}
.cid-tVH77PfaCg .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVH77PfaCg .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tVH77PfaCg .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tVH77PfaCg .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tVH77PfaCg .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-tVH77PfaCg .list li {
  margin-bottom: 25px;
}
.cid-tVH77PfaCg .list li:last-child {
  margin-bottom: 0;
}
.cid-tVH77PfaCg .mbr-desc {
  margin-bottom: 8px;
}
.cid-tVH77PfaCg .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVH77PfaCg .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tVH77PfaCg .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #56f1ff;
}
.cid-tVH77PfaCg .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tVH77PfaCg .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #005241;
  text-align: center;
}
.cid-tVH77PfaCg .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tVH77PfaCg .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tVH77PfaCg .mbr-desc,
.cid-tVH77PfaCg .mbr-iconfont {
  color: #ffffff;
}
.cid-tVH77PfaCg .mbr-text,
.cid-tVH77PfaCg .mbr-section-btn {
  color: #ffffff;
}
.cid-tWYl1as8yb {
  min-height: 101px !important;
  background: #e6d0f2;
  overflow: visible;
}
.cid-tWYl1as8yb .nav-item,
.cid-tWYl1as8yb .nav-link,
.cid-tWYl1as8yb .navbar-caption {
  font-weight: normal;
}
.cid-tWYl1as8yb .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-tWYl1as8yb .nav-link:before,
.cid-tWYl1as8yb .soc-item a:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  transition: .45s ease;
}
.cid-tWYl1as8yb .nav-item:hover .nav-link:before,
.cid-tWYl1as8yb .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-tWYl1as8yb .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-tWYl1as8yb .dropdown-toggle::after,
.cid-tWYl1as8yb .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: .5rem;
  margin-bottom: 2px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}
.cid-tWYl1as8yb .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-tWYl1as8yb .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-tWYl1as8yb .nav-item:focus,
.cid-tWYl1as8yb .nav-link:focus {
  outline: none;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 !important;
  margin: 0 15px !important;
  font-weight: 400;
  transition: all 0.25s;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tWYl1as8yb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWYl1as8yb .navbar {
  transition: all .3s;
  background: #e6d0f2;
}
.cid-tWYl1as8yb .navbar.opened {
  transition: all .3s;
  background: #e6d0f2 !important;
}
.cid-tWYl1as8yb .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-tWYl1as8yb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWYl1as8yb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWYl1as8yb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-tWYl1as8yb .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-tWYl1as8yb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-tWYl1as8yb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-tWYl1as8yb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tWYl1as8yb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWYl1as8yb .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-tWYl1as8yb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tWYl1as8yb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWYl1as8yb .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-tWYl1as8yb .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-tWYl1as8yb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWYl1as8yb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tWYl1as8yb .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tWYl1as8yb .navbar.navbar-short {
  background: #e6d0f2 !important;
  min-height: 60px;
}
.cid-tWYl1as8yb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-tWYl1as8yb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tWYl1as8yb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWYl1as8yb .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-tWYl1as8yb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWYl1as8yb .dropdown-item.active,
.cid-tWYl1as8yb .dropdown-item:active {
  background-color: transparent;
}
.cid-tWYl1as8yb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e6d0f2;
}
.cid-tWYl1as8yb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-tWYl1as8yb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWYl1as8yb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWYl1as8yb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYl1as8yb .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-tWYl1as8yb a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-tWYl1as8yb .mbr-iconfont {
  color: #e6d0f2;
}
.cid-tWYl1as8yb .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-tWYl1as8yb .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWYl1as8yb .navbar {
    height: 77px;
  }
  .cid-tWYl1as8yb .navbar.opened {
    height: auto;
  }
  .cid-tWYl1as8yb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWYl1as8yb .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-tWYz92WP7D {
  min-height: 101px !important;
  background: #e6d0f2;
  overflow: visible;
}
.cid-tWYz92WP7D .nav-item,
.cid-tWYz92WP7D .nav-link,
.cid-tWYz92WP7D .navbar-caption {
  font-weight: normal;
}
.cid-tWYz92WP7D .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-tWYz92WP7D .nav-link:before,
.cid-tWYz92WP7D .soc-item a:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  transition: .45s ease;
}
.cid-tWYz92WP7D .nav-item:hover .nav-link:before,
.cid-tWYz92WP7D .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-tWYz92WP7D .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-tWYz92WP7D .dropdown-toggle::after,
.cid-tWYz92WP7D .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: .5rem;
  margin-bottom: 2px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}
.cid-tWYz92WP7D .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-tWYz92WP7D .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-tWYz92WP7D .nav-item:focus,
.cid-tWYz92WP7D .nav-link:focus {
  outline: none;
}
.cid-tWYz92WP7D .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-tWYz92WP7D .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 !important;
  margin: 0 15px !important;
  font-weight: 400;
  transition: all 0.25s;
}
.cid-tWYz92WP7D .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tWYz92WP7D .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tWYz92WP7D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWYz92WP7D .navbar {
  transition: all .3s;
  background: #e6d0f2;
}
.cid-tWYz92WP7D .navbar.opened {
  transition: all .3s;
  background: #e6d0f2 !important;
}
.cid-tWYz92WP7D .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-tWYz92WP7D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWYz92WP7D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWYz92WP7D .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-tWYz92WP7D .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-tWYz92WP7D .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-tWYz92WP7D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-tWYz92WP7D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tWYz92WP7D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWYz92WP7D .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-tWYz92WP7D .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tWYz92WP7D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWYz92WP7D .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-tWYz92WP7D .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-tWYz92WP7D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWYz92WP7D .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tWYz92WP7D .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tWYz92WP7D .navbar.navbar-short {
  background: #e6d0f2 !important;
  min-height: 60px;
}
.cid-tWYz92WP7D .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-tWYz92WP7D .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tWYz92WP7D .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWYz92WP7D .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-tWYz92WP7D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWYz92WP7D .dropdown-item.active,
.cid-tWYz92WP7D .dropdown-item:active {
  background-color: transparent;
}
.cid-tWYz92WP7D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e6d0f2;
}
.cid-tWYz92WP7D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-tWYz92WP7D .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWYz92WP7D ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWYz92WP7D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tWYz92WP7D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWYz92WP7D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tWYz92WP7D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYz92WP7D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYz92WP7D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tWYz92WP7D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYz92WP7D nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tWYz92WP7D nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tWYz92WP7D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYz92WP7D .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-tWYz92WP7D a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-tWYz92WP7D .mbr-iconfont {
  color: #e6d0f2;
}
.cid-tWYz92WP7D .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-tWYz92WP7D .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWYz92WP7D .navbar {
    height: 77px;
  }
  .cid-tWYz92WP7D .navbar.opened {
    height: auto;
  }
  .cid-tWYz92WP7D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWYz92WP7D .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-tWYz93kvvO {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYz93kvvO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYz93kvvO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYz93kvvO .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-tWYz93kvvO .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWYz93kvvO .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWYz93kvvO .container {
    padding: 0 20px;
  }
}
.cid-tWYz93kvvO .row {
  margin-top: -2px;
}
.cid-tWYz93kvvO .card {
  padding: 0;
}
.cid-tWYz93kvvO .image-wrapper {
  border: 2px solid #feff98;
}
.cid-tWYz93kvvO .image-wrapper img {
  height: 650px;
  width: 70%;
  object-fit: cover;
  border-bottom-right-radius: 45rem;
}
@media (max-width: 992px) {
  .cid-tWYz93kvvO .image-wrapper img {
    height: 450px;
    width: 100%;
  }
}
.cid-tWYz93kvvO .title-wrapper {
  border: 2px solid #feff98;
  border-top: none;
  padding: 0 64px 64px;
  margin-top: -4rem;
}
@media (max-width: 992px) {
  .cid-tWYz93kvvO .title-wrapper {
    padding: 0 20px 50px;
  }
}
@media (max-width: 425px) {
  .cid-tWYz93kvvO .title-wrapper {
    margin-top: -2rem;
  }
}
.cid-tWYz93kvvO .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tWYz93kvvO .title-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tWYz93kvvO .title-wrapper .text-wrapper {
    display: block;
  }
}
.cid-tWYz93kvvO .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tWYz93kvvO .title-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-tWYz93kvvO .title-wrapper .text-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-tWYz93kvvO .title-wrapper .text-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-tWYz93kvvO .mbr-section-title {
  color: #ffffff;
}
.cid-tWYz93kvvO .mbr-text {
  color: #ffffff;
}
.cid-tWYz93kvvO .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-tWYz93kvvO .mbr-section-btn {
    text-align: left;
  }
}
.cid-tWYz93Em1n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tWYz93Em1n .mbr-section-subtitle {
  color: #14191e;
}
.cid-tWYz93Em1n .mbr-text {
  color: #777777;
}
.cid-tWYz93Em1n ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tWYz93Em1n ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tWYz93Em1n ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f3f4ef;
  width: 25px;
  height: 25px;
}
.cid-tWYz93Em1n .mbr-list {
  color: #f3f4ef;
}
.cid-tWYz93TMyZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tWYz93TMyZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYz93TMyZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWYz93TMyZ .container {
    padding: 0 15px;
  }
}
.cid-tWYz93TMyZ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWYz93TMyZ .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWYz93TMyZ .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWYz93TMyZ .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWYz93TMyZ .mbr-section-title {
  color: #ffffff;
}
.cid-tWYz93TMyZ .mbr-text {
  color: #d2d2df;
  text-align: left;
}
.cid-tWYz93TMyZ .mbr-name {
  color: #f2ac2b;
}
.cid-tWYz94ahjn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6d0f2;
  position: relative;
  overflow: hidden;
}
.cid-tWYz94ahjn .row {
  justify-content: center;
}
.cid-tWYz94ahjn .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tWYz94ahjn .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-tWYz94ahjn .title-container {
    margin-bottom: 56px;
  }
}
.cid-tWYz94ahjn .mbr-section-title {
  color: #6148ff;
}
.cid-tWYz94ahjn .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-tWYz94ahjn .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 0;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWYz94ahjn .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-tWYz94ahjn .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tWYz94ahjn .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-tWYz94ahjn .text-container {
  margin-bottom: 24px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-tWYz94ahjn .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-tWYz94ahjn .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-tWYz94ahjn .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-tWYz94ahjn .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-tWYz94ahjn .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-tWYz94ahjn .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-tWYz94ahjn .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-tWYz94ahjn .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-tWYz94ahjn .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-tWYz94ahjn .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-tWYz94ahjn .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-tWYz94ahjn .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-tWYz94ahjn .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tWYz94ahjn .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-tWYz94ahjn .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWYz94ahjn .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tWYz94ahjn .circle-blur {
  position: absolute;
  top: 5%;
  right: 5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #feff98 27%, #11004b 50%, #feff98 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-tWYz94JTgO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6d0f2;
}
.cid-tWYz94JTgO .row {
  align-items: center;
  width: 100%;
}
.cid-tWYz94JTgO .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tWYz94JTgO .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tWYz94JTgO .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tWYz94JTgO .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #11004b;
}
@media (max-width: 991px) {
  .cid-tWYz94JTgO .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWYz94JTgO .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tWYz94JTgO .content-container {
    padding: 2rem !important;
  }
}
.cid-tWYz94JTgO .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYz94JTgO .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tWYz94JTgO .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tWYz94JTgO .img-container {
    padding-right: 0;
  }
}
.cid-tWYz94JTgO .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tWYz94JTgO .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYz94JTgO .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tWYz94JTgO .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tWYz94JTgO .text-container {
    padding-left: 0;
  }
}
.cid-tWYz94JTgO .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tWYz94JTgO .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tWYz94JTgO .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYz94JTgO .card-title {
  width: 100%;
  color: #fafafa;
  margin-bottom: 4px;
}
.cid-tWYz94JTgO .mbr-text {
  letter-spacing: inherit;
  color: #fafafa;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tWYz952KqC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYz952KqC .row {
  align-items: center;
  width: 100%;
}
.cid-tWYz952KqC .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-tWYz952KqC .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tWYz952KqC .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tWYz952KqC .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #f3f4ef;
}
.cid-tWYz952KqC .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tWYz952KqC .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-tWYz952KqC .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tWYz952KqC .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-tWYz952KqC .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-tWYz952KqC .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYz952KqC .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tWYz952KqC .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-tWYz952KqC .btn-container {
  width: 100%;
}
.cid-tWYz952KqC .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-tWYz952KqC .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-tWYz952KqC .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tWYz952KqC .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-tWYz95B2Ij {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYz95B2Ij .row {
  align-items: center;
  width: 100%;
}
.cid-tWYz95B2Ij .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #e6d0f2;
}
@media (max-width: 767px) {
  .cid-tWYz95B2Ij .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-tWYz95B2Ij .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tWYz95B2Ij .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-tWYz95B2Ij .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-tWYz95B2Ij .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tWYz95B2Ij .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #1B1F0A;
}
.cid-tWYz95B2Ij .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYz95B2Ij .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-tWYz95B2Ij .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-tWYz95B2Ij .btn-container {
  width: 100%;
}
.cid-tWYz95B2Ij .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-tWYz95B2Ij .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-tWYz95B2Ij .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-tWYz95B2Ij .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-tWYz95B2Ij .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-tWYz95WgiD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYz95WgiD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYz95WgiD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWYz95WgiD .container {
    padding: 0 24px;
  }
}
.cid-tWYz95WgiD .row {
  justify-content: center;
}
.cid-tWYz95WgiD .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tWYz95WgiD .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tWYz95WgiD .panel-group .card {
  border: none;
  border-radius: 40px;
  background-color: #ffffff;
  margin-bottom: 32px;
  min-width: 40px;
}
.cid-tWYz95WgiD .panel-group .card .card-header {
  padding: 40px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tWYz95WgiD .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-tWYz95WgiD .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWYz95WgiD .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tWYz95WgiD .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tWYz95WgiD .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWYz95WgiD .panel-group .card .card-header .panel-title .mbr-iconfont {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #ffffff;
  background-color: #8e8ead;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWYz95WgiD .panel-group .card .panel-collapse .panel-body {
  padding: 0 40px 40px;
}
@media (max-width: 992px) {
  .cid-tWYz95WgiD .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-tWYz95WgiD .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWYz95WgiD .mbr-section-title {
  color: #262642;
  text-align: center;
}
.cid-tWYz95WgiD .panel-title-edit {
  color: #11004b;
}
.cid-tWYz95WgiD .panel-text {
  color: #262642;
}
.cid-tWYz96rY9B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYz96rY9B .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYz96rY9B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYz96rY9B .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWYz96rY9B .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWYz96rY9B .container {
    padding: 0 30px;
  }
}
.cid-tWYz96rY9B .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tWYz96rY9B .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tWYz96rY9B .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #e6d0f2;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tWYz96rY9B .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tWYz96rY9B .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tWYz96rY9B .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tWYz96rY9B .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWYz96rY9B .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tWYz96rY9B .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tWYz96rY9B .mbr-section-title {
  color: #ffffff;
}
.cid-tWYz96rY9B .mbr-card-title {
  color: #2b2b2b;
}
.cid-tWYz96rY9B .mbr-text {
  color: #4E4E4E;
}
.cid-tWYz96rY9B .mbr-number {
  color: #FE5115;
}
.cid-tWYz96K4B9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYz96K4B9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYz96K4B9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYz96K4B9 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWYz96K4B9 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWYz96K4B9 .container {
    padding: 0;
  }
}
.cid-tWYz96K4B9 .row {
  margin: 0;
  border-top: 1px solid #005241;
  border-bottom: 1px solid #005241;
}
.cid-tWYz96K4B9 .card {
  border-radius: 0;
  padding: 0;
}
.cid-tWYz96K4B9 .card:first-child {
  border-right: 1px solid #005241;
}
@media (max-width: 992px) {
  .cid-tWYz96K4B9 .card:first-child {
    border-right: none;
    border-bottom: 1px solid #005241;
  }
}
.cid-tWYz96K4B9 .card .card-wrapper {
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-tWYz96K4B9 .card .card-wrapper {
    padding: 40px 16px;
  }
}
.cid-tWYz96K4B9 .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tWYz96K4B9 .card .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tWYz96K4B9 .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tWYz96K4B9 .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-tWYz977khE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #11004b;
}
.cid-tWYz977khE .row {
  align-items: center;
  width: 100%;
}
.cid-tWYz977khE .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tWYz977khE .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tWYz977khE .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tWYz977khE .content-container {
  display: flex;
  padding: 60px !important;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWYz977khE .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWYz977khE .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tWYz977khE .content-container {
    padding: 2rem !important;
  }
}
.cid-tWYz977khE .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYz977khE .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tWYz977khE .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tWYz977khE .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tWYz977khE .img-container {
    padding-left: 0;
  }
}
.cid-tWYz977khE .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tWYz977khE .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYz977khE .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tWYz977khE .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-tWYz977khE .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tWYz977khE .text-container {
    padding-right: 0;
  }
}
.cid-tWYz977khE .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tWYz977khE .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tWYz977khE .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYz977khE .card-title {
  width: 100%;
  color: #fafafa;
  margin-bottom: 4px;
}
.cid-tWYz977khE .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tWYz97tGzC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-tWYz97tGzC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYz97tGzC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYz97tGzC .col-img {
  display: flex;
  flex-direction: column;
}
.cid-tWYz97tGzC .mbr-description {
  color: #f3f4ef;
}
.cid-tWYz97tGzC .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tWYz97tGzC .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-tWYz97MvLw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYz97MvLw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYz97MvLw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYz97MvLw .card-wrapper {
  background: #11004b;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tWYz97MvLw .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tWYz97MvLw .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWYz97MvLw .card-wrapper {
    padding: 4rem;
  }
}
.cid-tWYz97MvLw .mbr-text,
.cid-tWYz97MvLw .mbr-section-btn {
  color: #f3f4ef;
}
.cid-tWYz97MvLw .card-title,
.cid-tWYz97MvLw .card-box {
  text-align: left;
  color: #fafafa;
}
.cid-tWYJ41snEq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWYJ41snEq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYJ41snEq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYJ41snEq .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWYJ41snEq .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWYJ41snEq .container-fluid .row {
  padding: 0;
}
.cid-tWYJ41snEq .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWYJ41snEq .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWYJ41snEq .card {
    padding: 48px 20px;
  }
}
.cid-tWYJ41snEq .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWYJ41snEq .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWYJ41snEq .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWYJ41snEq .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWYJ41snEq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWYz987ENg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYz987ENg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYz987ENg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYz987ENg .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWYz987ENg .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWYz987ENg .container {
    padding: 0;
  }
}
.cid-tWYz987ENg .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWYz987ENg .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tWYz987ENg .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWYz987ENg .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tWYz987ENg .mbr-section-title {
  color: #fafafa;
}
.cid-tWYz987ENg .mbr-text {
  color: #ffffff;
}
.cid-tXazH0Zaqr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tXazH0Zaqr .container {
    padding: 0 25px;
  }
}
.cid-tXazH0Zaqr .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tXazH0Zaqr .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tXazH0Zaqr .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tXazH0Zaqr .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tXazH0Zaqr .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tXazH0Zaqr .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXazH0Zaqr .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tXazH0Zaqr .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tXazH0Zaqr .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXazH0Zaqr .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tXazH0Zaqr .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tXazH0Zaqr .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXazH0Zaqr .mbr-section-title {
  color: #000000;
}
.cid-tXazH0Zaqr .panel-title-edit {
  color: #000000;
}
.cid-tXazH0Zaqr .panel-text {
  color: #000000;
}
.cid-tWYz98trZR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #e6d0f2;
}
.cid-tWYz98trZR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYz98trZR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYz98trZR .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
  border-radius: 2rem;
}
.cid-tWYz98trZR .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tWYz98trZR .google-map [data-state-details] {
  color: #6b6763;
  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-tWYz98trZR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWYz98trZR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWYz98trZR .google-map:hover {
  filter: grayscale(0);
}
.cid-tWYz98trZR .mbr-section-title {
  text-align: left;
  color: #6c2f12;
}
.cid-tWYz98TWgx {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #11004b;
}
.cid-tWYz98TWgx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYz98TWgx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYz98TWgx .row {
  justify-content: space-between;
}
.cid-tWYz98TWgx .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tWYz98TWgx .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWYz98TWgx .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWYz98TWgx .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tWYz98TWgx .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-tWYz98TWgx .list li {
  margin-bottom: 25px;
}
.cid-tWYz98TWgx .list li:last-child {
  margin-bottom: 0;
}
.cid-tWYz98TWgx .mbr-desc {
  margin-bottom: 8px;
}
.cid-tWYz98TWgx .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tWYz98TWgx .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tWYz98TWgx .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #56f1ff;
}
.cid-tWYz98TWgx .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tWYz98TWgx .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #005241;
  text-align: center;
}
.cid-tWYz98TWgx .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tWYz98TWgx .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tWYz98TWgx .mbr-desc,
.cid-tWYz98TWgx .mbr-iconfont {
  color: #ffffff;
}
.cid-tWYz98TWgx .mbr-text,
.cid-tWYz98TWgx .mbr-section-btn {
  color: #ffffff;
}
.cid-tWYNp1S7zZ {
  min-height: 101px !important;
  background: #e6d0f2;
  overflow: visible;
}
.cid-tWYNp1S7zZ .nav-item,
.cid-tWYNp1S7zZ .nav-link,
.cid-tWYNp1S7zZ .navbar-caption {
  font-weight: normal;
}
.cid-tWYNp1S7zZ .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-tWYNp1S7zZ .nav-link:before,
.cid-tWYNp1S7zZ .soc-item a:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  transition: .45s ease;
}
.cid-tWYNp1S7zZ .nav-item:hover .nav-link:before,
.cid-tWYNp1S7zZ .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-tWYNp1S7zZ .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-tWYNp1S7zZ .dropdown-toggle::after,
.cid-tWYNp1S7zZ .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: .5rem;
  margin-bottom: 2px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}
.cid-tWYNp1S7zZ .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-tWYNp1S7zZ .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-tWYNp1S7zZ .nav-item:focus,
.cid-tWYNp1S7zZ .nav-link:focus {
  outline: none;
}
.cid-tWYNp1S7zZ .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-tWYNp1S7zZ .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 !important;
  margin: 0 15px !important;
  font-weight: 400;
  transition: all 0.25s;
}
.cid-tWYNp1S7zZ .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tWYNp1S7zZ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tWYNp1S7zZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWYNp1S7zZ .navbar {
  transition: all .3s;
  background: #e6d0f2;
}
.cid-tWYNp1S7zZ .navbar.opened {
  transition: all .3s;
  background: #e6d0f2 !important;
}
.cid-tWYNp1S7zZ .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-tWYNp1S7zZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWYNp1S7zZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWYNp1S7zZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-tWYNp1S7zZ .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-tWYNp1S7zZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-tWYNp1S7zZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-tWYNp1S7zZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tWYNp1S7zZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWYNp1S7zZ .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-tWYNp1S7zZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tWYNp1S7zZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWYNp1S7zZ .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-tWYNp1S7zZ .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-tWYNp1S7zZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWYNp1S7zZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tWYNp1S7zZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tWYNp1S7zZ .navbar.navbar-short {
  background: #e6d0f2 !important;
  min-height: 60px;
}
.cid-tWYNp1S7zZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-tWYNp1S7zZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tWYNp1S7zZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWYNp1S7zZ .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-tWYNp1S7zZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWYNp1S7zZ .dropdown-item.active,
.cid-tWYNp1S7zZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tWYNp1S7zZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e6d0f2;
}
.cid-tWYNp1S7zZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-tWYNp1S7zZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWYNp1S7zZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWYNp1S7zZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tWYNp1S7zZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWYNp1S7zZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tWYNp1S7zZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYNp1S7zZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYNp1S7zZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tWYNp1S7zZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYNp1S7zZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tWYNp1S7zZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tWYNp1S7zZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYNp1S7zZ .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-tWYNp1S7zZ a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-tWYNp1S7zZ .mbr-iconfont {
  color: #e6d0f2;
}
.cid-tWYNp1S7zZ .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-tWYNp1S7zZ .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWYNp1S7zZ .navbar {
    height: 77px;
  }
  .cid-tWYNp1S7zZ .navbar.opened {
    height: auto;
  }
  .cid-tWYNp1S7zZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWYNp1S7zZ .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-tWYNp2kczl {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYNp2kczl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYNp2kczl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYNp2kczl .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-tWYNp2kczl .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWYNp2kczl .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWYNp2kczl .container {
    padding: 0 20px;
  }
}
.cid-tWYNp2kczl .row {
  margin-top: -2px;
}
.cid-tWYNp2kczl .card {
  padding: 0;
}
.cid-tWYNp2kczl .image-wrapper {
  border: 2px solid #feff98;
}
.cid-tWYNp2kczl .image-wrapper img {
  height: 650px;
  width: 70%;
  object-fit: cover;
  border-bottom-right-radius: 45rem;
}
@media (max-width: 992px) {
  .cid-tWYNp2kczl .image-wrapper img {
    height: 450px;
    width: 100%;
  }
}
.cid-tWYNp2kczl .title-wrapper {
  border: 2px solid #feff98;
  border-top: none;
  padding: 0 64px 64px;
  margin-top: -4rem;
}
@media (max-width: 992px) {
  .cid-tWYNp2kczl .title-wrapper {
    padding: 0 20px 50px;
  }
}
@media (max-width: 425px) {
  .cid-tWYNp2kczl .title-wrapper {
    margin-top: -2rem;
  }
}
.cid-tWYNp2kczl .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tWYNp2kczl .title-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tWYNp2kczl .title-wrapper .text-wrapper {
    display: block;
  }
}
.cid-tWYNp2kczl .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tWYNp2kczl .title-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-tWYNp2kczl .title-wrapper .text-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-tWYNp2kczl .title-wrapper .text-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-tWYNp2kczl .mbr-section-title {
  color: #ffffff;
}
.cid-tWYNp2kczl .mbr-text {
  color: #ffffff;
}
.cid-tWYNp2kczl .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-tWYNp2kczl .mbr-section-btn {
    text-align: left;
  }
}
.cid-tWYNp2KN9y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tWYNp2KN9y .mbr-section-subtitle {
  color: #14191e;
}
.cid-tWYNp2KN9y .mbr-text {
  color: #777777;
}
.cid-tWYNp2KN9y ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tWYNp2KN9y ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tWYNp2KN9y ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f3f4ef;
  width: 25px;
  height: 25px;
}
.cid-tWYNp2KN9y .mbr-list {
  color: #f3f4ef;
}
.cid-tWYNp2ZztB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tWYNp2ZztB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYNp2ZztB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWYNp2ZztB .container {
    padding: 0 15px;
  }
}
.cid-tWYNp2ZztB .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWYNp2ZztB .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWYNp2ZztB .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWYNp2ZztB .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWYNp2ZztB .mbr-section-title {
  color: #ffffff;
}
.cid-tWYNp2ZztB .mbr-text {
  color: #d2d2df;
  text-align: left;
}
.cid-tWYNp2ZztB .mbr-name {
  color: #f2ac2b;
}
.cid-tWYNp3iiIT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6d0f2;
  position: relative;
  overflow: hidden;
}
.cid-tWYNp3iiIT .row {
  justify-content: center;
}
.cid-tWYNp3iiIT .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tWYNp3iiIT .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-tWYNp3iiIT .title-container {
    margin-bottom: 56px;
  }
}
.cid-tWYNp3iiIT .mbr-section-title {
  color: #6148ff;
}
.cid-tWYNp3iiIT .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-tWYNp3iiIT .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 0;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWYNp3iiIT .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-tWYNp3iiIT .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tWYNp3iiIT .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-tWYNp3iiIT .text-container {
  margin-bottom: 24px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-tWYNp3iiIT .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-tWYNp3iiIT .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-tWYNp3iiIT .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-tWYNp3iiIT .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-tWYNp3iiIT .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-tWYNp3iiIT .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-tWYNp3iiIT .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-tWYNp3iiIT .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-tWYNp3iiIT .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-tWYNp3iiIT .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-tWYNp3iiIT .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-tWYNp3iiIT .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-tWYNp3iiIT .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tWYNp3iiIT .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-tWYNp3iiIT .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWYNp3iiIT .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tWYNp3iiIT .circle-blur {
  position: absolute;
  top: 5%;
  right: 5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #feff98 27%, #11004b 50%, #feff98 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-tWYNp3Oj4G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6d0f2;
}
.cid-tWYNp3Oj4G .row {
  align-items: center;
  width: 100%;
}
.cid-tWYNp3Oj4G .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tWYNp3Oj4G .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tWYNp3Oj4G .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tWYNp3Oj4G .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #11004b;
}
@media (max-width: 991px) {
  .cid-tWYNp3Oj4G .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWYNp3Oj4G .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tWYNp3Oj4G .content-container {
    padding: 2rem !important;
  }
}
.cid-tWYNp3Oj4G .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYNp3Oj4G .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tWYNp3Oj4G .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tWYNp3Oj4G .img-container {
    padding-right: 0;
  }
}
.cid-tWYNp3Oj4G .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tWYNp3Oj4G .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYNp3Oj4G .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tWYNp3Oj4G .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tWYNp3Oj4G .text-container {
    padding-left: 0;
  }
}
.cid-tWYNp3Oj4G .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tWYNp3Oj4G .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tWYNp3Oj4G .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYNp3Oj4G .card-title {
  width: 100%;
  color: #fafafa;
  margin-bottom: 4px;
}
.cid-tWYNp3Oj4G .mbr-text {
  letter-spacing: inherit;
  color: #fafafa;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tWYNp4cJIA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYNp4cJIA .row {
  align-items: center;
  width: 100%;
}
.cid-tWYNp4cJIA .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-tWYNp4cJIA .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tWYNp4cJIA .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tWYNp4cJIA .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #f3f4ef;
}
.cid-tWYNp4cJIA .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tWYNp4cJIA .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-tWYNp4cJIA .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tWYNp4cJIA .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-tWYNp4cJIA .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-tWYNp4cJIA .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYNp4cJIA .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tWYNp4cJIA .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-tWYNp4cJIA .btn-container {
  width: 100%;
}
.cid-tWYNp4cJIA .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-tWYNp4cJIA .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-tWYNp4cJIA .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tWYNp4cJIA .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-tWYNp4SNoz {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYNp4SNoz .row {
  align-items: center;
  width: 100%;
}
.cid-tWYNp4SNoz .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #e6d0f2;
}
@media (max-width: 767px) {
  .cid-tWYNp4SNoz .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-tWYNp4SNoz .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tWYNp4SNoz .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-tWYNp4SNoz .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-tWYNp4SNoz .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tWYNp4SNoz .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #1B1F0A;
}
.cid-tWYNp4SNoz .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYNp4SNoz .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-tWYNp4SNoz .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-tWYNp4SNoz .btn-container {
  width: 100%;
}
.cid-tWYNp4SNoz .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-tWYNp4SNoz .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-tWYNp4SNoz .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-tWYNp4SNoz .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-tWYNp4SNoz .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-tWYNp5cl4i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYNp5cl4i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYNp5cl4i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWYNp5cl4i .container {
    padding: 0 24px;
  }
}
.cid-tWYNp5cl4i .row {
  justify-content: center;
}
.cid-tWYNp5cl4i .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tWYNp5cl4i .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tWYNp5cl4i .panel-group .card {
  border: none;
  border-radius: 40px;
  background-color: #ffffff;
  margin-bottom: 32px;
  min-width: 40px;
}
.cid-tWYNp5cl4i .panel-group .card .card-header {
  padding: 40px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tWYNp5cl4i .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-tWYNp5cl4i .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWYNp5cl4i .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tWYNp5cl4i .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tWYNp5cl4i .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWYNp5cl4i .panel-group .card .card-header .panel-title .mbr-iconfont {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #ffffff;
  background-color: #8e8ead;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWYNp5cl4i .panel-group .card .panel-collapse .panel-body {
  padding: 0 40px 40px;
}
@media (max-width: 992px) {
  .cid-tWYNp5cl4i .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-tWYNp5cl4i .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWYNp5cl4i .mbr-section-title {
  color: #262642;
  text-align: center;
}
.cid-tWYNp5cl4i .panel-title-edit {
  color: #11004b;
}
.cid-tWYNp5cl4i .panel-text {
  color: #262642;
}
.cid-tWYNp5Hx4L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYNp5Hx4L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYNp5Hx4L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYNp5Hx4L .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWYNp5Hx4L .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWYNp5Hx4L .container {
    padding: 0 30px;
  }
}
.cid-tWYNp5Hx4L .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tWYNp5Hx4L .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tWYNp5Hx4L .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #e6d0f2;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tWYNp5Hx4L .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tWYNp5Hx4L .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tWYNp5Hx4L .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tWYNp5Hx4L .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWYNp5Hx4L .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tWYNp5Hx4L .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tWYNp5Hx4L .mbr-section-title {
  color: #ffffff;
}
.cid-tWYNp5Hx4L .mbr-card-title {
  color: #2b2b2b;
}
.cid-tWYNp5Hx4L .mbr-text {
  color: #4E4E4E;
}
.cid-tWYNp5Hx4L .mbr-number {
  color: #FE5115;
}
.cid-tWYNp61WG6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYNp61WG6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYNp61WG6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYNp61WG6 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWYNp61WG6 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWYNp61WG6 .container {
    padding: 0;
  }
}
.cid-tWYNp61WG6 .row {
  margin: 0;
  border-top: 1px solid #005241;
  border-bottom: 1px solid #005241;
}
.cid-tWYNp61WG6 .card {
  border-radius: 0;
  padding: 0;
}
.cid-tWYNp61WG6 .card:first-child {
  border-right: 1px solid #005241;
}
@media (max-width: 992px) {
  .cid-tWYNp61WG6 .card:first-child {
    border-right: none;
    border-bottom: 1px solid #005241;
  }
}
.cid-tWYNp61WG6 .card .card-wrapper {
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-tWYNp61WG6 .card .card-wrapper {
    padding: 40px 16px;
  }
}
.cid-tWYNp61WG6 .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tWYNp61WG6 .card .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tWYNp61WG6 .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tWYNp61WG6 .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-tWYNp6p4I5 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #11004b;
}
.cid-tWYNp6p4I5 .row {
  align-items: center;
  width: 100%;
}
.cid-tWYNp6p4I5 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tWYNp6p4I5 .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tWYNp6p4I5 .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tWYNp6p4I5 .content-container {
  display: flex;
  padding: 60px !important;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWYNp6p4I5 .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWYNp6p4I5 .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tWYNp6p4I5 .content-container {
    padding: 2rem !important;
  }
}
.cid-tWYNp6p4I5 .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYNp6p4I5 .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tWYNp6p4I5 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tWYNp6p4I5 .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tWYNp6p4I5 .img-container {
    padding-left: 0;
  }
}
.cid-tWYNp6p4I5 .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tWYNp6p4I5 .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYNp6p4I5 .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tWYNp6p4I5 .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-tWYNp6p4I5 .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tWYNp6p4I5 .text-container {
    padding-right: 0;
  }
}
.cid-tWYNp6p4I5 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tWYNp6p4I5 .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tWYNp6p4I5 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYNp6p4I5 .card-title {
  width: 100%;
  color: #fafafa;
  margin-bottom: 4px;
}
.cid-tWYNp6p4I5 .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tWYNp7jhCZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-tWYNp7jhCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYNp7jhCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYNp7jhCZ .col-img {
  display: flex;
  flex-direction: column;
}
.cid-tWYNp7jhCZ .mbr-description {
  color: #f3f4ef;
}
.cid-tWYNp7jhCZ .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tWYNp7jhCZ .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-tWYNp8BqwZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYNp8BqwZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYNp8BqwZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYNp8BqwZ .card-wrapper {
  background: #11004b;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tWYNp8BqwZ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tWYNp8BqwZ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWYNp8BqwZ .card-wrapper {
    padding: 4rem;
  }
}
.cid-tWYNp8BqwZ .mbr-text,
.cid-tWYNp8BqwZ .mbr-section-btn {
  color: #f3f4ef;
}
.cid-tWYNp8BqwZ .card-title,
.cid-tWYNp8BqwZ .card-box {
  text-align: left;
  color: #fafafa;
}
.cid-tWYNp9p344 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWYNp9p344 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYNp9p344 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYNp9p344 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWYNp9p344 .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWYNp9p344 .container-fluid .row {
  padding: 0;
}
.cid-tWYNp9p344 .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWYNp9p344 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWYNp9p344 .card {
    padding: 48px 20px;
  }
}
.cid-tWYNp9p344 .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWYNp9p344 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWYNp9p344 .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWYNp9p344 .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWYNp9p344 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWYNp9KGU9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYNp9KGU9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYNp9KGU9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYNp9KGU9 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWYNp9KGU9 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWYNp9KGU9 .container {
    padding: 0;
  }
}
.cid-tWYNp9KGU9 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWYNp9KGU9 .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tWYNp9KGU9 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWYNp9KGU9 .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tWYNp9KGU9 .mbr-section-title {
  color: #fafafa;
}
.cid-tWYNp9KGU9 .mbr-text {
  color: #ffffff;
}
.cid-tXaGAsz1bN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tXaGAsz1bN .container {
    padding: 0 25px;
  }
}
.cid-tXaGAsz1bN .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tXaGAsz1bN .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tXaGAsz1bN .panel-group {
  border-bottom: 2px solid #e6d0f2;
}
.cid-tXaGAsz1bN .panel-group .card {
  border-top: 2px solid #e6d0f2;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tXaGAsz1bN .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tXaGAsz1bN .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXaGAsz1bN .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tXaGAsz1bN .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tXaGAsz1bN .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXaGAsz1bN .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tXaGAsz1bN .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tXaGAsz1bN .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXaGAsz1bN .mbr-section-title {
  color: #000000;
}
.cid-tXaGAsz1bN .panel-title-edit {
  color: #000000;
}
.cid-tXaGAsz1bN .panel-text {
  color: #000000;
}
.cid-tWYNpabI82 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #e6d0f2;
}
.cid-tWYNpabI82 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYNpabI82 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYNpabI82 .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
  border-radius: 2rem;
}
.cid-tWYNpabI82 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tWYNpabI82 .google-map [data-state-details] {
  color: #6b6763;
  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-tWYNpabI82 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWYNpabI82 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWYNpabI82 .google-map:hover {
  filter: grayscale(0);
}
.cid-tWYNpabI82 .mbr-section-title {
  text-align: left;
  color: #6c2f12;
}
.cid-tWYNpazU45 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #11004b;
}
.cid-tWYNpazU45 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYNpazU45 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYNpazU45 .row {
  justify-content: space-between;
}
.cid-tWYNpazU45 .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tWYNpazU45 .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWYNpazU45 .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWYNpazU45 .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tWYNpazU45 .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-tWYNpazU45 .list li {
  margin-bottom: 25px;
}
.cid-tWYNpazU45 .list li:last-child {
  margin-bottom: 0;
}
.cid-tWYNpazU45 .mbr-desc {
  margin-bottom: 8px;
}
.cid-tWYNpazU45 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tWYNpazU45 .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tWYNpazU45 .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #56f1ff;
}
.cid-tWYNpazU45 .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tWYNpazU45 .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #005241;
  text-align: center;
}
.cid-tWYNpazU45 .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tWYNpazU45 .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tWYNpazU45 .mbr-desc,
.cid-tWYNpazU45 .mbr-iconfont {
  color: #ffffff;
}
.cid-tWYNpazU45 .mbr-text,
.cid-tWYNpazU45 .mbr-section-btn {
  color: #ffffff;
}
.cid-tWYPxZYIhS {
  min-height: 101px !important;
  background: #e6d0f2;
  overflow: visible;
}
.cid-tWYPxZYIhS .nav-item,
.cid-tWYPxZYIhS .nav-link,
.cid-tWYPxZYIhS .navbar-caption {
  font-weight: normal;
}
.cid-tWYPxZYIhS .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-tWYPxZYIhS .nav-link:before,
.cid-tWYPxZYIhS .soc-item a:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  transition: .45s ease;
}
.cid-tWYPxZYIhS .nav-item:hover .nav-link:before,
.cid-tWYPxZYIhS .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-tWYPxZYIhS .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-tWYPxZYIhS .dropdown-toggle::after,
.cid-tWYPxZYIhS .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: .5rem;
  margin-bottom: 2px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}
.cid-tWYPxZYIhS .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-tWYPxZYIhS .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-tWYPxZYIhS .nav-item:focus,
.cid-tWYPxZYIhS .nav-link:focus {
  outline: none;
}
.cid-tWYPxZYIhS .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-tWYPxZYIhS .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 !important;
  margin: 0 15px !important;
  font-weight: 400;
  transition: all 0.25s;
}
.cid-tWYPxZYIhS .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tWYPxZYIhS .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tWYPxZYIhS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWYPxZYIhS .navbar {
  transition: all .3s;
  background: #e6d0f2;
}
.cid-tWYPxZYIhS .navbar.opened {
  transition: all .3s;
  background: #e6d0f2 !important;
}
.cid-tWYPxZYIhS .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-tWYPxZYIhS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWYPxZYIhS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWYPxZYIhS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-tWYPxZYIhS .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-tWYPxZYIhS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-tWYPxZYIhS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-tWYPxZYIhS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tWYPxZYIhS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWYPxZYIhS .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-tWYPxZYIhS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tWYPxZYIhS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWYPxZYIhS .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-tWYPxZYIhS .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-tWYPxZYIhS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWYPxZYIhS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tWYPxZYIhS .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tWYPxZYIhS .navbar.navbar-short {
  background: #e6d0f2 !important;
  min-height: 60px;
}
.cid-tWYPxZYIhS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-tWYPxZYIhS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tWYPxZYIhS .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWYPxZYIhS .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-tWYPxZYIhS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWYPxZYIhS .dropdown-item.active,
.cid-tWYPxZYIhS .dropdown-item:active {
  background-color: transparent;
}
.cid-tWYPxZYIhS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e6d0f2;
}
.cid-tWYPxZYIhS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-tWYPxZYIhS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWYPxZYIhS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWYPxZYIhS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tWYPxZYIhS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWYPxZYIhS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tWYPxZYIhS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYPxZYIhS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYPxZYIhS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tWYPxZYIhS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYPxZYIhS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tWYPxZYIhS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tWYPxZYIhS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYPxZYIhS .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-tWYPxZYIhS a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-tWYPxZYIhS .mbr-iconfont {
  color: #e6d0f2;
}
.cid-tWYPxZYIhS .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-tWYPxZYIhS .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWYPxZYIhS .navbar {
    height: 77px;
  }
  .cid-tWYPxZYIhS .navbar.opened {
    height: auto;
  }
  .cid-tWYPxZYIhS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWYPxZYIhS .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-tWYPy0pUc0 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYPy0pUc0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYPy0pUc0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYPy0pUc0 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-tWYPy0pUc0 .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWYPy0pUc0 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWYPy0pUc0 .container {
    padding: 0 20px;
  }
}
.cid-tWYPy0pUc0 .row {
  margin-top: -2px;
}
.cid-tWYPy0pUc0 .card {
  padding: 0;
}
.cid-tWYPy0pUc0 .image-wrapper {
  border: 2px solid #feff98;
}
.cid-tWYPy0pUc0 .image-wrapper img {
  height: 650px;
  width: 70%;
  object-fit: cover;
  border-bottom-right-radius: 45rem;
}
@media (max-width: 992px) {
  .cid-tWYPy0pUc0 .image-wrapper img {
    height: 450px;
    width: 100%;
  }
}
.cid-tWYPy0pUc0 .title-wrapper {
  border: 2px solid #feff98;
  border-top: none;
  padding: 0 64px 64px;
  margin-top: -4rem;
}
@media (max-width: 992px) {
  .cid-tWYPy0pUc0 .title-wrapper {
    padding: 0 20px 50px;
  }
}
@media (max-width: 425px) {
  .cid-tWYPy0pUc0 .title-wrapper {
    margin-top: -2rem;
  }
}
.cid-tWYPy0pUc0 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tWYPy0pUc0 .title-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tWYPy0pUc0 .title-wrapper .text-wrapper {
    display: block;
  }
}
.cid-tWYPy0pUc0 .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tWYPy0pUc0 .title-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-tWYPy0pUc0 .title-wrapper .text-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-tWYPy0pUc0 .title-wrapper .text-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-tWYPy0pUc0 .mbr-section-title {
  color: #ffffff;
}
.cid-tWYPy0pUc0 .mbr-text {
  color: #ffffff;
}
.cid-tWYPy0pUc0 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-tWYPy0pUc0 .mbr-section-btn {
    text-align: left;
  }
}
.cid-tWYPy0QsDT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tWYPy0QsDT .mbr-section-subtitle {
  color: #14191e;
}
.cid-tWYPy0QsDT .mbr-text {
  color: #777777;
}
.cid-tWYPy0QsDT ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tWYPy0QsDT ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tWYPy0QsDT ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f3f4ef;
  width: 25px;
  height: 25px;
}
.cid-tWYPy0QsDT .mbr-list {
  color: #f3f4ef;
}
.cid-tWYPy132xt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tWYPy132xt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYPy132xt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWYPy132xt .container {
    padding: 0 15px;
  }
}
.cid-tWYPy132xt .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWYPy132xt .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWYPy132xt .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWYPy132xt .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWYPy132xt .mbr-section-title {
  color: #ffffff;
}
.cid-tWYPy132xt .mbr-text {
  color: #d2d2df;
  text-align: left;
}
.cid-tWYPy132xt .mbr-name {
  color: #f2ac2b;
}
.cid-tWYPy1k1Rr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6d0f2;
  position: relative;
  overflow: hidden;
}
.cid-tWYPy1k1Rr .row {
  justify-content: center;
}
.cid-tWYPy1k1Rr .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tWYPy1k1Rr .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-tWYPy1k1Rr .title-container {
    margin-bottom: 56px;
  }
}
.cid-tWYPy1k1Rr .mbr-section-title {
  color: #6148ff;
}
.cid-tWYPy1k1Rr .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-tWYPy1k1Rr .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 0;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWYPy1k1Rr .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-tWYPy1k1Rr .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tWYPy1k1Rr .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-tWYPy1k1Rr .text-container {
  margin-bottom: 24px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-tWYPy1k1Rr .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-tWYPy1k1Rr .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-tWYPy1k1Rr .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-tWYPy1k1Rr .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-tWYPy1k1Rr .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-tWYPy1k1Rr .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-tWYPy1k1Rr .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-tWYPy1k1Rr .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-tWYPy1k1Rr .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-tWYPy1k1Rr .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-tWYPy1k1Rr .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-tWYPy1k1Rr .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-tWYPy1k1Rr .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tWYPy1k1Rr .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-tWYPy1k1Rr .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWYPy1k1Rr .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tWYPy1k1Rr .circle-blur {
  position: absolute;
  top: 5%;
  right: 5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #feff98 27%, #11004b 50%, #feff98 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-tWYPy1NeFN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6d0f2;
}
.cid-tWYPy1NeFN .row {
  align-items: center;
  width: 100%;
}
.cid-tWYPy1NeFN .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tWYPy1NeFN .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tWYPy1NeFN .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tWYPy1NeFN .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #11004b;
}
@media (max-width: 991px) {
  .cid-tWYPy1NeFN .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWYPy1NeFN .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tWYPy1NeFN .content-container {
    padding: 2rem !important;
  }
}
.cid-tWYPy1NeFN .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYPy1NeFN .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tWYPy1NeFN .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tWYPy1NeFN .img-container {
    padding-right: 0;
  }
}
.cid-tWYPy1NeFN .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tWYPy1NeFN .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYPy1NeFN .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tWYPy1NeFN .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tWYPy1NeFN .text-container {
    padding-left: 0;
  }
}
.cid-tWYPy1NeFN .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tWYPy1NeFN .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tWYPy1NeFN .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYPy1NeFN .card-title {
  width: 100%;
  color: #fafafa;
  margin-bottom: 4px;
}
.cid-tWYPy1NeFN .mbr-text {
  letter-spacing: inherit;
  color: #fafafa;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tWYPy252lB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYPy252lB .row {
  align-items: center;
  width: 100%;
}
.cid-tWYPy252lB .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-tWYPy252lB .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tWYPy252lB .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tWYPy252lB .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #f3f4ef;
}
.cid-tWYPy252lB .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tWYPy252lB .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-tWYPy252lB .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tWYPy252lB .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-tWYPy252lB .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-tWYPy252lB .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYPy252lB .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tWYPy252lB .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-tWYPy252lB .btn-container {
  width: 100%;
}
.cid-tWYPy252lB .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-tWYPy252lB .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-tWYPy252lB .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tWYPy252lB .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-tWYPy2Nf9l {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYPy2Nf9l .row {
  align-items: center;
  width: 100%;
}
.cid-tWYPy2Nf9l .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #e6d0f2;
}
@media (max-width: 767px) {
  .cid-tWYPy2Nf9l .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-tWYPy2Nf9l .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tWYPy2Nf9l .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-tWYPy2Nf9l .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-tWYPy2Nf9l .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tWYPy2Nf9l .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #1B1F0A;
}
.cid-tWYPy2Nf9l .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYPy2Nf9l .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-tWYPy2Nf9l .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-tWYPy2Nf9l .btn-container {
  width: 100%;
}
.cid-tWYPy2Nf9l .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-tWYPy2Nf9l .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-tWYPy2Nf9l .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-tWYPy2Nf9l .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-tWYPy2Nf9l .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-tWYPy37I0b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYPy37I0b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYPy37I0b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWYPy37I0b .container {
    padding: 0 24px;
  }
}
.cid-tWYPy37I0b .row {
  justify-content: center;
}
.cid-tWYPy37I0b .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tWYPy37I0b .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tWYPy37I0b .panel-group .card {
  border: none;
  border-radius: 40px;
  background-color: #ffffff;
  margin-bottom: 32px;
  min-width: 40px;
}
.cid-tWYPy37I0b .panel-group .card .card-header {
  padding: 40px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tWYPy37I0b .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-tWYPy37I0b .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWYPy37I0b .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tWYPy37I0b .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tWYPy37I0b .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWYPy37I0b .panel-group .card .card-header .panel-title .mbr-iconfont {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #ffffff;
  background-color: #8e8ead;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWYPy37I0b .panel-group .card .panel-collapse .panel-body {
  padding: 0 40px 40px;
}
@media (max-width: 992px) {
  .cid-tWYPy37I0b .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-tWYPy37I0b .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWYPy37I0b .mbr-section-title {
  color: #262642;
  text-align: center;
}
.cid-tWYPy37I0b .panel-title-edit {
  color: #11004b;
}
.cid-tWYPy37I0b .panel-text {
  color: #262642;
}
.cid-tWYPy3zgVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYPy3zgVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYPy3zgVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYPy3zgVR .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWYPy3zgVR .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWYPy3zgVR .container {
    padding: 0 30px;
  }
}
.cid-tWYPy3zgVR .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tWYPy3zgVR .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tWYPy3zgVR .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #e6d0f2;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tWYPy3zgVR .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tWYPy3zgVR .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tWYPy3zgVR .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tWYPy3zgVR .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWYPy3zgVR .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tWYPy3zgVR .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tWYPy3zgVR .mbr-section-title {
  color: #ffffff;
}
.cid-tWYPy3zgVR .mbr-card-title {
  color: #2b2b2b;
}
.cid-tWYPy3zgVR .mbr-text {
  color: #4E4E4E;
}
.cid-tWYPy3zgVR .mbr-number {
  color: #FE5115;
}
.cid-tWYPy3USES {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYPy3USES .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYPy3USES .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYPy3USES .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWYPy3USES .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWYPy3USES .container {
    padding: 0;
  }
}
.cid-tWYPy3USES .row {
  margin: 0;
  border-top: 1px solid #005241;
  border-bottom: 1px solid #005241;
}
.cid-tWYPy3USES .card {
  border-radius: 0;
  padding: 0;
}
.cid-tWYPy3USES .card:first-child {
  border-right: 1px solid #005241;
}
@media (max-width: 992px) {
  .cid-tWYPy3USES .card:first-child {
    border-right: none;
    border-bottom: 1px solid #005241;
  }
}
.cid-tWYPy3USES .card .card-wrapper {
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-tWYPy3USES .card .card-wrapper {
    padding: 40px 16px;
  }
}
.cid-tWYPy3USES .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tWYPy3USES .card .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tWYPy3USES .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tWYPy3USES .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-tWYPy4ljjB {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #11004b;
}
.cid-tWYPy4ljjB .row {
  align-items: center;
  width: 100%;
}
.cid-tWYPy4ljjB .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tWYPy4ljjB .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tWYPy4ljjB .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tWYPy4ljjB .content-container {
  display: flex;
  padding: 60px !important;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWYPy4ljjB .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWYPy4ljjB .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tWYPy4ljjB .content-container {
    padding: 2rem !important;
  }
}
.cid-tWYPy4ljjB .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYPy4ljjB .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tWYPy4ljjB .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tWYPy4ljjB .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tWYPy4ljjB .img-container {
    padding-left: 0;
  }
}
.cid-tWYPy4ljjB .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tWYPy4ljjB .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tWYPy4ljjB .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tWYPy4ljjB .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-tWYPy4ljjB .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tWYPy4ljjB .text-container {
    padding-right: 0;
  }
}
.cid-tWYPy4ljjB .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tWYPy4ljjB .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tWYPy4ljjB .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tWYPy4ljjB .card-title {
  width: 100%;
  color: #fafafa;
  margin-bottom: 4px;
}
.cid-tWYPy4ljjB .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tWYPy4GPlx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-tWYPy4GPlx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYPy4GPlx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYPy4GPlx .col-img {
  display: flex;
  flex-direction: column;
}
.cid-tWYPy4GPlx .mbr-description {
  color: #f3f4ef;
}
.cid-tWYPy4GPlx .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tWYPy4GPlx .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-tWYPy51O4Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6d0f2;
}
.cid-tWYPy51O4Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYPy51O4Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYPy51O4Y .card-wrapper {
  background: #11004b;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tWYPy51O4Y .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tWYPy51O4Y .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWYPy51O4Y .card-wrapper {
    padding: 4rem;
  }
}
.cid-tWYPy51O4Y .mbr-text,
.cid-tWYPy51O4Y .mbr-section-btn {
  color: #f3f4ef;
}
.cid-tWYPy51O4Y .card-title,
.cid-tWYPy51O4Y .card-box {
  text-align: left;
  color: #fafafa;
}
.cid-tWYPy5mvZ4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWYPy5mvZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYPy5mvZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYPy5mvZ4 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWYPy5mvZ4 .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWYPy5mvZ4 .container-fluid .row {
  padding: 0;
}
.cid-tWYPy5mvZ4 .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWYPy5mvZ4 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWYPy5mvZ4 .card {
    padding: 48px 20px;
  }
}
.cid-tWYPy5mvZ4 .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWYPy5mvZ4 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWYPy5mvZ4 .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWYPy5mvZ4 .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWYPy5mvZ4 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWYPy5G5Mq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11004b;
}
.cid-tWYPy5G5Mq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYPy5G5Mq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYPy5G5Mq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWYPy5G5Mq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWYPy5G5Mq .container {
    padding: 0;
  }
}
.cid-tWYPy5G5Mq .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWYPy5G5Mq .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tWYPy5G5Mq .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWYPy5G5Mq .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tWYPy5G5Mq .mbr-section-title {
  color: #fafafa;
}
.cid-tWYPy5G5Mq .mbr-text {
  color: #ffffff;
}
.cid-tXaHhWsXTg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tXaHhWsXTg .container {
    padding: 0 25px;
  }
}
.cid-tXaHhWsXTg .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tXaHhWsXTg .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tXaHhWsXTg .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tXaHhWsXTg .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tXaHhWsXTg .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tXaHhWsXTg .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXaHhWsXTg .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tXaHhWsXTg .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tXaHhWsXTg .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXaHhWsXTg .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tXaHhWsXTg .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tXaHhWsXTg .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXaHhWsXTg .mbr-section-title {
  color: #000000;
}
.cid-tXaHhWsXTg .panel-title-edit {
  color: #000000;
}
.cid-tXaHhWsXTg .panel-text {
  color: #000000;
}
.cid-tWYPy64Emf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #e6d0f2;
}
.cid-tWYPy64Emf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYPy64Emf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYPy64Emf .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
  border-radius: 2rem;
}
.cid-tWYPy64Emf .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tWYPy64Emf .google-map [data-state-details] {
  color: #6b6763;
  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-tWYPy64Emf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWYPy64Emf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWYPy64Emf .google-map:hover {
  filter: grayscale(0);
}
.cid-tWYPy64Emf .mbr-section-title {
  text-align: left;
  color: #6c2f12;
}
.cid-tWYPy6vm8h {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #11004b;
}
.cid-tWYPy6vm8h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYPy6vm8h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYPy6vm8h .row {
  justify-content: space-between;
}
.cid-tWYPy6vm8h .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tWYPy6vm8h .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWYPy6vm8h .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWYPy6vm8h .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tWYPy6vm8h .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-tWYPy6vm8h .list li {
  margin-bottom: 25px;
}
.cid-tWYPy6vm8h .list li:last-child {
  margin-bottom: 0;
}
.cid-tWYPy6vm8h .mbr-desc {
  margin-bottom: 8px;
}
.cid-tWYPy6vm8h .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tWYPy6vm8h .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tWYPy6vm8h .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #56f1ff;
}
.cid-tWYPy6vm8h .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tWYPy6vm8h .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #005241;
  text-align: center;
}
.cid-tWYPy6vm8h .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tWYPy6vm8h .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tWYPy6vm8h .mbr-desc,
.cid-tWYPy6vm8h .mbr-iconfont {
  color: #ffffff;
}
.cid-tWYPy6vm8h .mbr-text,
.cid-tWYPy6vm8h .mbr-section-btn {
  color: #ffffff;
}
