body {
  font-family: 'Zilla Slab', serif;
}
.display-1 {
  font-family: 'Zilla Slab', serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.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: 3.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((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: #feff98;
  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: #feff98;
}
.cid-tWYl1as8yb .navbar.opened {
  transition: all .3s;
  background: #feff98 !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: #feff98 !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: #feff98;
}
.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-tXaPo3QrQY {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #a1ff97;
}
.cid-tXaPo3QrQY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXaPo3QrQY .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tXaPo3QrQY .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-tXaPo3QrQY img {
  border-radius: 1rem;
}
.cid-tXaPo3QrQY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXaPo3QrQY .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tXaPo3QrQY .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tXaPo3QrQY .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tXaPo3QrQY .mbr-section-title {
  color: #0d2450;
  text-align: center;
}
.cid-tXaPo3QrQY .mbr-section-subtitle,
.cid-tXaPo3QrQY .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-tXaPo3QrQY .mbr-text,
.cid-tXaPo3QrQY .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tVF1LITiRE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.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: #000000;
}
.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: #a1ff97;
  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%, #99f5fe 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: #a1ff97;
}
.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: #feff98;
}
@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: #000000;
  margin-bottom: 4px;
}
.cid-t2YW8wTxz2 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tVG4xTD7im {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a1ff97;
}
.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: #feff98;
}
.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: #a1ff97;
}
@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: 0rem;
  padding-bottom: 1rem;
  background-color: #feff98;
}
.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: #a1ff97;
}
.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: #feff98;
  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: #feff98;
}
.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: #a1ff97;
}
.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;
}
@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;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .img-container {
    padding-right: 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;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .text-container {
    padding-left: 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: #000000;
  margin-bottom: 4px;
}
.cid-t2ZrNfjWuw .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  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: #a1ff97;
}
.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: #feff98;
  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: #000000;
}
.cid-tVH0fp6rO3 .card-title,
.cid-tVH0fp6rO3 .card-box {
  text-align: left;
  color: #000000;
}
.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: #feff98;
}
.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: #000000;
}
.cid-tVGBbMLiAt .mbr-text {
  color: #1b1f0a;
}
.cid-tVJeTZO2GE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #a1ff97;
}
.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: #feff98;
}
.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: #a1ff97;
}
.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: #000000;
}
.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: #feff98;
  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: #feff98;
}
.cid-tWYl1as8yb .navbar.opened {
  transition: all .3s;
  background: #feff98 !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: #feff98 !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: #feff98;
}
.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: #feff98;
}
@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: #feff98;
  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: #feff98;
}
.cid-tWYl1as8yb .navbar.opened {
  transition: all .3s;
  background: #feff98 !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: #feff98 !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: #feff98;
}
.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-tXbhlqYXp9 {
  min-height: 101px !important;
  background: #feff98;
  overflow: visible;
}
.cid-tXbhlqYXp9 .nav-item,
.cid-tXbhlqYXp9 .nav-link,
.cid-tXbhlqYXp9 .navbar-caption {
  font-weight: normal;
}
.cid-tXbhlqYXp9 .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-tXbhlqYXp9 .nav-link:before,
.cid-tXbhlqYXp9 .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-tXbhlqYXp9 .nav-item:hover .nav-link:before,
.cid-tXbhlqYXp9 .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-tXbhlqYXp9 .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-tXbhlqYXp9 .dropdown-toggle::after,
.cid-tXbhlqYXp9 .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-tXbhlqYXp9 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-tXbhlqYXp9 .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-tXbhlqYXp9 .nav-item:focus,
.cid-tXbhlqYXp9 .nav-link:focus {
  outline: none;
}
.cid-tXbhlqYXp9 .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-tXbhlqYXp9 .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-tXbhlqYXp9 .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tXbhlqYXp9 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tXbhlqYXp9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXbhlqYXp9 .navbar {
  transition: all .3s;
  background: #feff98;
}
.cid-tXbhlqYXp9 .navbar.opened {
  transition: all .3s;
  background: #feff98 !important;
}
.cid-tXbhlqYXp9 .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-tXbhlqYXp9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXbhlqYXp9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXbhlqYXp9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-tXbhlqYXp9 .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-tXbhlqYXp9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-tXbhlqYXp9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-tXbhlqYXp9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tXbhlqYXp9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXbhlqYXp9 .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-tXbhlqYXp9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tXbhlqYXp9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXbhlqYXp9 .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-tXbhlqYXp9 .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-tXbhlqYXp9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXbhlqYXp9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tXbhlqYXp9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXbhlqYXp9 .navbar.navbar-short {
  background: #feff98 !important;
  min-height: 60px;
}
.cid-tXbhlqYXp9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-tXbhlqYXp9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tXbhlqYXp9 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXbhlqYXp9 .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-tXbhlqYXp9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXbhlqYXp9 .dropdown-item.active,
.cid-tXbhlqYXp9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXbhlqYXp9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #feff98;
}
.cid-tXbhlqYXp9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-tXbhlqYXp9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXbhlqYXp9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXbhlqYXp9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tXbhlqYXp9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tXbhlqYXp9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tXbhlqYXp9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tXbhlqYXp9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tXbhlqYXp9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tXbhlqYXp9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXbhlqYXp9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tXbhlqYXp9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tXbhlqYXp9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXbhlqYXp9 .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-tXbhlqYXp9 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-tXbhlqYXp9 .mbr-iconfont {
  color: #e6d0f2;
}
.cid-tXbhlqYXp9 .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-tXbhlqYXp9 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXbhlqYXp9 .navbar {
    height: 77px;
  }
  .cid-tXbhlqYXp9 .navbar.opened {
    height: auto;
  }
  .cid-tXbhlqYXp9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXbhlqYXp9 .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-tXbhlrwaQu {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #a1ff97;
}
.cid-tXbhlrwaQu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbhlrwaQu .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tXbhlrwaQu .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-tXbhlrwaQu img {
  border-radius: 1rem;
}
.cid-tXbhlrwaQu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbhlrwaQu .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tXbhlrwaQu .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tXbhlrwaQu .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tXbhlrwaQu .mbr-section-title {
  color: #0d2450;
  text-align: center;
}
.cid-tXbhlrwaQu .mbr-section-subtitle,
.cid-tXbhlrwaQu .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-tXbhlrwaQu .mbr-text,
.cid-tXbhlrwaQu .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tXbhlrYOGl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXbhlrYOGl .mbr-section-subtitle {
  color: #14191e;
}
.cid-tXbhlrYOGl .mbr-text {
  color: #777777;
}
.cid-tXbhlrYOGl ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tXbhlrYOGl ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tXbhlrYOGl ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4568ae;
  width: 25px;
  height: 25px;
}
.cid-tXbhlrYOGl .mbr-list {
  color: #000000;
}
.cid-tXbhlsip1d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tXbhlsip1d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbhlsip1d .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-tXbhlsip1d .container {
    padding: 0 15px;
  }
}
.cid-tXbhlsip1d .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
  padding-right: 0;
  padding-left: 8px;
}
@media (max-width: 992px) {
  .cid-tXbhlsip1d .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbhlsip1d .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tXbhlsip1d .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tXbhlsip1d .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tXbhlsip1d .mbr-section-title {
  color: #ffffff;
}
.cid-tXbhlsip1d .mbr-text {
  color: #d2d2df;
}
.cid-tXbhlsip1d .mbr-name {
  color: #f2ac2b;
}
.cid-tXbhlsFRDc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a1ff97;
  position: relative;
  overflow: hidden;
}
.cid-tXbhlsFRDc .row {
  justify-content: center;
}
.cid-tXbhlsFRDc .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tXbhlsFRDc .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-tXbhlsFRDc .title-container {
    margin-bottom: 56px;
  }
}
.cid-tXbhlsFRDc .mbr-section-title {
  color: #6148ff;
}
.cid-tXbhlsFRDc .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-tXbhlsFRDc .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-tXbhlsFRDc .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-tXbhlsFRDc .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tXbhlsFRDc .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-tXbhlsFRDc .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-tXbhlsFRDc .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-tXbhlsFRDc .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-tXbhlsFRDc .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-tXbhlsFRDc .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-tXbhlsFRDc .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-tXbhlsFRDc .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-tXbhlsFRDc .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-tXbhlsFRDc .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-tXbhlsFRDc .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-tXbhlsFRDc .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-tXbhlsFRDc .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-tXbhlsFRDc .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-tXbhlsFRDc .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tXbhlsFRDc .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-tXbhlsFRDc .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tXbhlsFRDc .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tXbhlsFRDc .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%, #99f5fe 50%, #feff98 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-tXbhltjNG3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a1ff97;
}
.cid-tXbhltjNG3 .row {
  align-items: center;
  width: 100%;
}
.cid-tXbhltjNG3 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tXbhltjNG3 .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tXbhltjNG3 .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tXbhltjNG3 .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #feff98;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tXbhltjNG3 .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tXbhltjNG3 .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tXbhltjNG3 .content-container {
    padding: 2rem !important;
  }
}
.cid-tXbhltjNG3 .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbhltjNG3 .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tXbhltjNG3 .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-tXbhltjNG3 .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tXbhltjNG3 .img-container {
    padding-left: 0;
  }
}
.cid-tXbhltjNG3 .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tXbhltjNG3 .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbhltjNG3 .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tXbhltjNG3 .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-tXbhltjNG3 .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tXbhltjNG3 .text-container {
    padding-right: 0;
  }
}
.cid-tXbhltjNG3 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tXbhltjNG3 .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tXbhltjNG3 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbhltjNG3 .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-tXbhltjNG3 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tXbhltHaL0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a1ff97;
}
.cid-tXbhltHaL0 .row {
  align-items: center;
  width: 100%;
}
.cid-tXbhltHaL0 .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-tXbhltHaL0 .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tXbhltHaL0 .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tXbhltHaL0 .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #f3f4ef;
}
.cid-tXbhltHaL0 .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tXbhltHaL0 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-tXbhltHaL0 .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tXbhltHaL0 .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-tXbhltHaL0 .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-tXbhltHaL0 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbhltHaL0 .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tXbhltHaL0 .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-tXbhltHaL0 .btn-container {
  width: 100%;
}
.cid-tXbhltHaL0 .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-tXbhltHaL0 .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-tXbhltHaL0 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tXbhltHaL0 .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-tXbhlutd53 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #feff98;
}
.cid-tXbhlutd53 .row {
  align-items: center;
  width: 100%;
}
.cid-tXbhlutd53 .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #a1ff97;
}
@media (max-width: 767px) {
  .cid-tXbhlutd53 .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-tXbhlutd53 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tXbhlutd53 .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-tXbhlutd53 .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-tXbhlutd53 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tXbhlutd53 .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #1B1F0A;
}
.cid-tXbhlutd53 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbhlutd53 .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-tXbhlutd53 .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-tXbhlutd53 .btn-container {
  width: 100%;
}
.cid-tXbhlutd53 .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-tXbhlutd53 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-tXbhlutd53 .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-tXbhlutd53 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-tXbhlutd53 .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-tXbhluWFdP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #feff98;
}
.cid-tXbhluWFdP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbhluWFdP .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-tXbhluWFdP .container {
    padding: 0 24px;
  }
}
.cid-tXbhluWFdP .row {
  justify-content: center;
}
.cid-tXbhluWFdP .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tXbhluWFdP .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tXbhluWFdP .panel-group .card {
  border: none;
  border-radius: 40px;
  background-color: #ffffff;
  margin-bottom: 32px;
  min-width: 40px;
}
.cid-tXbhluWFdP .panel-group .card .card-header {
  padding: 40px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tXbhluWFdP .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-tXbhluWFdP .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXbhluWFdP .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXbhluWFdP .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXbhluWFdP .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXbhluWFdP .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-tXbhluWFdP .panel-group .card .panel-collapse .panel-body {
  padding: 0 40px 40px;
}
@media (max-width: 992px) {
  .cid-tXbhluWFdP .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-tXbhluWFdP .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXbhluWFdP .mbr-section-title {
  color: #262642;
  text-align: center;
}
.cid-tXbhluWFdP .panel-title-edit {
  color: #11004b;
}
.cid-tXbhluWFdP .panel-text {
  color: #262642;
}
.cid-tXbhlvy251 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a1ff97;
}
.cid-tXbhlvy251 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbhlvy251 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbhlvy251 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tXbhlvy251 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tXbhlvy251 .container {
    padding: 0 30px;
  }
}
.cid-tXbhlvy251 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tXbhlvy251 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tXbhlvy251 .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #feff98;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tXbhlvy251 .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tXbhlvy251 .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tXbhlvy251 .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tXbhlvy251 .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tXbhlvy251 .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tXbhlvy251 .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tXbhlvy251 .mbr-section-title {
  color: #ffffff;
}
.cid-tXbhlvy251 .mbr-card-title {
  color: #2b2b2b;
}
.cid-tXbhlvy251 .mbr-text {
  color: #4E4E4E;
}
.cid-tXbhlvy251 .mbr-number {
  color: #FE5115;
}
.cid-tXbhlw2GFQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #feff98;
}
.cid-tXbhlw2GFQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbhlw2GFQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbhlw2GFQ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXbhlw2GFQ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbhlw2GFQ .container {
    padding: 0;
  }
}
.cid-tXbhlw2GFQ .row {
  margin: 0;
  border-top: 1px solid #005241;
  border-bottom: 1px solid #005241;
}
.cid-tXbhlw2GFQ .card {
  border-radius: 0;
  padding: 0;
}
.cid-tXbhlw2GFQ .card:first-child {
  border-right: 1px solid #005241;
}
@media (max-width: 992px) {
  .cid-tXbhlw2GFQ .card:first-child {
    border-right: none;
    border-bottom: 1px solid #005241;
  }
}
.cid-tXbhlw2GFQ .card .card-wrapper {
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-tXbhlw2GFQ .card .card-wrapper {
    padding: 40px 16px;
  }
}
.cid-tXbhlw2GFQ .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tXbhlw2GFQ .card .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tXbhlw2GFQ .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tXbhlw2GFQ .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-tXbhlwRZ93 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #a1ff97;
}
.cid-tXbhlwRZ93 .row {
  align-items: center;
  width: 100%;
}
.cid-tXbhlwRZ93 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tXbhlwRZ93 .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tXbhlwRZ93 .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tXbhlwRZ93 .content-container {
  display: flex;
  padding: 60px !important;
}
@media (max-width: 991px) {
  .cid-tXbhlwRZ93 .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tXbhlwRZ93 .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tXbhlwRZ93 .content-container {
    padding: 2rem !important;
  }
}
.cid-tXbhlwRZ93 .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbhlwRZ93 .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tXbhlwRZ93 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tXbhlwRZ93 .img-container {
    padding-right: 0;
  }
}
.cid-tXbhlwRZ93 .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tXbhlwRZ93 .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbhlwRZ93 .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tXbhlwRZ93 .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tXbhlwRZ93 .text-container {
    padding-left: 0;
  }
}
.cid-tXbhlwRZ93 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tXbhlwRZ93 .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tXbhlwRZ93 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbhlwRZ93 .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-tXbhlwRZ93 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tXbhlxLfZ2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-tXbhlxLfZ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbhlxLfZ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbhlxLfZ2 .col-img {
  display: flex;
  flex-direction: column;
}
.cid-tXbhlxLfZ2 .mbr-description {
  color: #f3f4ef;
}
.cid-tXbhlxLfZ2 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tXbhlxLfZ2 .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-tXbhlyIeEp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a1ff97;
}
.cid-tXbhlyIeEp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbhlyIeEp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbhlyIeEp .card-wrapper {
  background: #feff98;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tXbhlyIeEp .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tXbhlyIeEp .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tXbhlyIeEp .card-wrapper {
    padding: 4rem;
  }
}
.cid-tXbhlyIeEp .mbr-text,
.cid-tXbhlyIeEp .mbr-section-btn {
  color: #000000;
}
.cid-tXbhlyIeEp .card-title,
.cid-tXbhlyIeEp .card-box {
  text-align: left;
  color: #000000;
}
.cid-tXbhlzOZgv {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXbhlzOZgv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbhlzOZgv .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-tXbhlzOZgv .container {
    padding: 0 20px;
  }
}
.cid-tXbhlzOZgv .row {
  margin: 0;
}
.cid-tXbhlzOZgv .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tXbhlzOZgv .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tXbhlzOZgv .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tXbhlzOZgv .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tXbhlzOZgv .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tXbhlzOZgv .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tXbhlzOZgv .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-tXbhlAF4UA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #feff98;
}
.cid-tXbhlAF4UA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbhlAF4UA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbhlAF4UA .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXbhlAF4UA .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbhlAF4UA .container {
    padding: 0;
  }
}
.cid-tXbhlAF4UA .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tXbhlAF4UA .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tXbhlAF4UA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXbhlAF4UA .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tXbhlAF4UA .mbr-section-title {
  color: #000000;
}
.cid-tXbhlAF4UA .mbr-text {
  color: #1b1f0a;
}
.cid-tXbJhCUEN9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3f4ef;
}
.cid-tXbJhCUEN9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbJhCUEN9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbJhCUEN9 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXbJhCUEN9 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbJhCUEN9 .container {
    padding: 0 16px;
  }
}
.cid-tXbJhCUEN9 .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tXbJhCUEN9 .row {
    margin: 0 10px;
  }
}
.cid-tXbJhCUEN9 .row .item {
  padding: 0;
}
.cid-tXbJhCUEN9 .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tXbJhCUEN9 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tXbJhCUEN9 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXbJhCUEN9 .panel-group {
  border: 1px solid #070997;
  border-radius: 20px;
  overflow: hidden;
}
.cid-tXbJhCUEN9 .panel-group .card {
  border-top: 1px solid #4a5357;
  border-radius: 0 !important;
}
.cid-tXbJhCUEN9 .panel-group .card:first-child {
  border-top: none;
}
.cid-tXbJhCUEN9 .panel-group .card:last-child {
  border-bottom: none;
}
.cid-tXbJhCUEN9 .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-tXbJhCUEN9 .panel-group .card .card-header .panel-title {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tXbJhCUEN9 .panel-group .card .card-header .panel-title {
    padding: 20px 10px;
  }
}
.cid-tXbJhCUEN9 .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #e4dfd4;
}
.cid-tXbJhCUEN9 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
  color: #fff0b0;
  background-color: #e43f3f;
}
.cid-tXbJhCUEN9 .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #e43f3f;
}
.cid-tXbJhCUEN9 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tXbJhCUEN9 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #e43f3f;
  background-color: #fff0b0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tXbJhCUEN9 .panel-group .card .panel-collapse .panel-body {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-tXbJhCUEN9 .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-tXbJhCUEN9 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXbJhCUEN9 .image-wrapper {
  height: 100%;
}
.cid-tXbJhCUEN9 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tXbJhCUEN9 .image-wrapper img {
    height: 350px;
  }
}
.cid-tXbJhCUEN9 .mbr-section-title {
  color: #000000;
}
.cid-tXbJhCUEN9 .panel-title-edit {
  color: #000000;
}
.cid-tXbJhCUEN9 .panel-text {
  color: #000000;
}
.cid-tXbhlBIB6x {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #a1ff97;
}
.cid-tXbhlBIB6x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbhlBIB6x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbhlBIB6x .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
  border-radius: 2rem;
}
.cid-tXbhlBIB6x .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tXbhlBIB6x .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-tXbhlBIB6x .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXbhlBIB6x .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXbhlBIB6x .google-map:hover {
  filter: grayscale(0);
}
.cid-tXbhlBIB6x .mbr-section-title {
  text-align: left;
  color: #6c2f12;
}
.cid-tXbhlCAGJz {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #11004b;
}
.cid-tXbhlCAGJz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbhlCAGJz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbhlCAGJz .row {
  justify-content: space-between;
}
.cid-tXbhlCAGJz .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXbhlCAGJz .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tXbhlCAGJz .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tXbhlCAGJz .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tXbhlCAGJz .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-tXbhlCAGJz .list li {
  margin-bottom: 25px;
}
.cid-tXbhlCAGJz .list li:last-child {
  margin-bottom: 0;
}
.cid-tXbhlCAGJz .mbr-desc {
  margin-bottom: 8px;
}
.cid-tXbhlCAGJz .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXbhlCAGJz .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tXbhlCAGJz .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #56f1ff;
}
.cid-tXbhlCAGJz .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-tXbhlCAGJz .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #005241;
  text-align: center;
}
.cid-tXbhlCAGJz .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-tXbhlCAGJz .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tXbhlCAGJz .mbr-desc,
.cid-tXbhlCAGJz .mbr-iconfont {
  color: #ffffff;
}
.cid-tXbhlCAGJz .mbr-text,
.cid-tXbhlCAGJz .mbr-section-btn {
  color: #ffffff;
}
.cid-tXbOJauDDQ {
  min-height: 101px !important;
  background: #feff98;
  overflow: visible;
}
.cid-tXbOJauDDQ .nav-item,
.cid-tXbOJauDDQ .nav-link,
.cid-tXbOJauDDQ .navbar-caption {
  font-weight: normal;
}
.cid-tXbOJauDDQ .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-tXbOJauDDQ .nav-link:before,
.cid-tXbOJauDDQ .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-tXbOJauDDQ .nav-item:hover .nav-link:before,
.cid-tXbOJauDDQ .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-tXbOJauDDQ .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-tXbOJauDDQ .dropdown-toggle::after,
.cid-tXbOJauDDQ .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-tXbOJauDDQ .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-tXbOJauDDQ .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-tXbOJauDDQ .nav-item:focus,
.cid-tXbOJauDDQ .nav-link:focus {
  outline: none;
}
.cid-tXbOJauDDQ .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-tXbOJauDDQ .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-tXbOJauDDQ .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tXbOJauDDQ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tXbOJauDDQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXbOJauDDQ .navbar {
  transition: all .3s;
  background: #feff98;
}
.cid-tXbOJauDDQ .navbar.opened {
  transition: all .3s;
  background: #feff98 !important;
}
.cid-tXbOJauDDQ .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-tXbOJauDDQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXbOJauDDQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXbOJauDDQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-tXbOJauDDQ .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-tXbOJauDDQ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-tXbOJauDDQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-tXbOJauDDQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tXbOJauDDQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXbOJauDDQ .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-tXbOJauDDQ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tXbOJauDDQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXbOJauDDQ .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-tXbOJauDDQ .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-tXbOJauDDQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXbOJauDDQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tXbOJauDDQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXbOJauDDQ .navbar.navbar-short {
  background: #feff98 !important;
  min-height: 60px;
}
.cid-tXbOJauDDQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-tXbOJauDDQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tXbOJauDDQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXbOJauDDQ .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-tXbOJauDDQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXbOJauDDQ .dropdown-item.active,
.cid-tXbOJauDDQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tXbOJauDDQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #feff98;
}
.cid-tXbOJauDDQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-tXbOJauDDQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXbOJauDDQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXbOJauDDQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tXbOJauDDQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tXbOJauDDQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tXbOJauDDQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tXbOJauDDQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tXbOJauDDQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tXbOJauDDQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXbOJauDDQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tXbOJauDDQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tXbOJauDDQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXbOJauDDQ .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-tXbOJauDDQ a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-tXbOJauDDQ .mbr-iconfont {
  color: #e6d0f2;
}
.cid-tXbOJauDDQ .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-tXbOJauDDQ .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXbOJauDDQ .navbar {
    height: 77px;
  }
  .cid-tXbOJauDDQ .navbar.opened {
    height: auto;
  }
  .cid-tXbOJauDDQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXbOJauDDQ .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-tXbOJaZmep {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #a1ff97;
}
.cid-tXbOJaZmep .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJaZmep .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tXbOJaZmep .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-tXbOJaZmep img {
  border-radius: 1rem;
}
.cid-tXbOJaZmep .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbOJaZmep .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tXbOJaZmep .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tXbOJaZmep .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tXbOJaZmep .mbr-section-title {
  color: #0d2450;
  text-align: center;
}
.cid-tXbOJaZmep .mbr-section-subtitle,
.cid-tXbOJaZmep .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-tXbOJaZmep .mbr-text,
.cid-tXbOJaZmep .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tXc2onSB0A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXc2onSB0A .mbr-section-subtitle {
  color: #14191e;
}
.cid-tXc2onSB0A .mbr-text {
  color: #777777;
}
.cid-tXc2onSB0A ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tXc2onSB0A ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tXc2onSB0A ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4568ae;
  width: 25px;
  height: 25px;
}
.cid-tXc2onSB0A .mbr-list {
  color: #000000;
}
.cid-tXbOJbKjTl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tXbOJbKjTl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJbKjTl .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-tXbOJbKjTl .container {
    padding: 0 15px;
  }
}
.cid-tXbOJbKjTl .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
  padding-right: 0;
  padding-left: 8px;
}
@media (max-width: 992px) {
  .cid-tXbOJbKjTl .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbOJbKjTl .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tXbOJbKjTl .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tXbOJbKjTl .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tXbOJbKjTl .mbr-section-title {
  color: #ffffff;
}
.cid-tXbOJbKjTl .mbr-text {
  color: #d2d2df;
}
.cid-tXbOJbKjTl .mbr-name {
  color: #f2ac2b;
}
.cid-tXbOJcaEew {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a1ff97;
  position: relative;
  overflow: hidden;
}
.cid-tXbOJcaEew .row {
  justify-content: center;
}
.cid-tXbOJcaEew .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tXbOJcaEew .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-tXbOJcaEew .title-container {
    margin-bottom: 56px;
  }
}
.cid-tXbOJcaEew .mbr-section-title {
  color: #6148ff;
}
.cid-tXbOJcaEew .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-tXbOJcaEew .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-tXbOJcaEew .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-tXbOJcaEew .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tXbOJcaEew .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-tXbOJcaEew .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-tXbOJcaEew .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-tXbOJcaEew .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-tXbOJcaEew .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-tXbOJcaEew .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-tXbOJcaEew .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-tXbOJcaEew .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-tXbOJcaEew .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-tXbOJcaEew .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-tXbOJcaEew .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-tXbOJcaEew .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-tXbOJcaEew .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-tXbOJcaEew .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-tXbOJcaEew .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tXbOJcaEew .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-tXbOJcaEew .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tXbOJcaEew .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tXbOJcaEew .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%, #99f5fe 50%, #feff98 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-tXbOJcKjkp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a1ff97;
}
.cid-tXbOJcKjkp .row {
  align-items: center;
  width: 100%;
}
.cid-tXbOJcKjkp .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tXbOJcKjkp .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tXbOJcKjkp .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tXbOJcKjkp .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #feff98;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tXbOJcKjkp .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tXbOJcKjkp .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tXbOJcKjkp .content-container {
    padding: 2rem !important;
  }
}
.cid-tXbOJcKjkp .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbOJcKjkp .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tXbOJcKjkp .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-tXbOJcKjkp .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tXbOJcKjkp .img-container {
    padding-left: 0;
  }
}
.cid-tXbOJcKjkp .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tXbOJcKjkp .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbOJcKjkp .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tXbOJcKjkp .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-tXbOJcKjkp .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tXbOJcKjkp .text-container {
    padding-right: 0;
  }
}
.cid-tXbOJcKjkp .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tXbOJcKjkp .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tXbOJcKjkp .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbOJcKjkp .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-tXbOJcKjkp .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tXbOJd8fUu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a1ff97;
}
.cid-tXbOJd8fUu .row {
  align-items: center;
  width: 100%;
}
.cid-tXbOJd8fUu .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-tXbOJd8fUu .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tXbOJd8fUu .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tXbOJd8fUu .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #f3f4ef;
}
.cid-tXbOJd8fUu .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tXbOJd8fUu .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-tXbOJd8fUu .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tXbOJd8fUu .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-tXbOJd8fUu .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-tXbOJd8fUu .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbOJd8fUu .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tXbOJd8fUu .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-tXbOJd8fUu .btn-container {
  width: 100%;
}
.cid-tXbOJd8fUu .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-tXbOJd8fUu .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-tXbOJd8fUu .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tXbOJd8fUu .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-tXbOJdQ7Ou {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #feff98;
}
.cid-tXbOJdQ7Ou .row {
  align-items: center;
  width: 100%;
}
.cid-tXbOJdQ7Ou .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #a1ff97;
}
@media (max-width: 767px) {
  .cid-tXbOJdQ7Ou .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-tXbOJdQ7Ou .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tXbOJdQ7Ou .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-tXbOJdQ7Ou .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-tXbOJdQ7Ou .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tXbOJdQ7Ou .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #1B1F0A;
}
.cid-tXbOJdQ7Ou .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbOJdQ7Ou .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-tXbOJdQ7Ou .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-tXbOJdQ7Ou .btn-container {
  width: 100%;
}
.cid-tXbOJdQ7Ou .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-tXbOJdQ7Ou .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-tXbOJdQ7Ou .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-tXbOJdQ7Ou .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-tXbOJdQ7Ou .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-tXbOJehYUD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #feff98;
}
.cid-tXbOJehYUD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJehYUD .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-tXbOJehYUD .container {
    padding: 0 24px;
  }
}
.cid-tXbOJehYUD .row {
  justify-content: center;
}
.cid-tXbOJehYUD .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tXbOJehYUD .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tXbOJehYUD .panel-group .card {
  border: none;
  border-radius: 40px;
  background-color: #ffffff;
  margin-bottom: 32px;
  min-width: 40px;
}
.cid-tXbOJehYUD .panel-group .card .card-header {
  padding: 40px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tXbOJehYUD .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-tXbOJehYUD .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXbOJehYUD .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXbOJehYUD .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXbOJehYUD .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXbOJehYUD .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-tXbOJehYUD .panel-group .card .panel-collapse .panel-body {
  padding: 0 40px 40px;
}
@media (max-width: 992px) {
  .cid-tXbOJehYUD .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-tXbOJehYUD .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXbOJehYUD .mbr-section-title {
  color: #262642;
  text-align: center;
}
.cid-tXbOJehYUD .panel-title-edit {
  color: #11004b;
}
.cid-tXbOJehYUD .panel-text {
  color: #262642;
}
.cid-tXbOJeR7zF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a1ff97;
}
.cid-tXbOJeR7zF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJeR7zF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbOJeR7zF .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tXbOJeR7zF .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tXbOJeR7zF .container {
    padding: 0 30px;
  }
}
.cid-tXbOJeR7zF .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tXbOJeR7zF .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tXbOJeR7zF .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #feff98;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tXbOJeR7zF .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tXbOJeR7zF .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tXbOJeR7zF .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tXbOJeR7zF .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tXbOJeR7zF .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tXbOJeR7zF .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tXbOJeR7zF .mbr-section-title {
  color: #ffffff;
}
.cid-tXbOJeR7zF .mbr-card-title {
  color: #2b2b2b;
}
.cid-tXbOJeR7zF .mbr-text {
  color: #4E4E4E;
}
.cid-tXbOJeR7zF .mbr-number {
  color: #FE5115;
}
.cid-tXbOJfgT5w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #feff98;
}
.cid-tXbOJfgT5w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJfgT5w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbOJfgT5w .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXbOJfgT5w .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbOJfgT5w .container {
    padding: 0;
  }
}
.cid-tXbOJfgT5w .row {
  margin: 0;
  border-top: 1px solid #005241;
  border-bottom: 1px solid #005241;
}
.cid-tXbOJfgT5w .card {
  border-radius: 0;
  padding: 0;
}
.cid-tXbOJfgT5w .card:first-child {
  border-right: 1px solid #005241;
}
@media (max-width: 992px) {
  .cid-tXbOJfgT5w .card:first-child {
    border-right: none;
    border-bottom: 1px solid #005241;
  }
}
.cid-tXbOJfgT5w .card .card-wrapper {
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-tXbOJfgT5w .card .card-wrapper {
    padding: 40px 16px;
  }
}
.cid-tXbOJfgT5w .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tXbOJfgT5w .card .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tXbOJfgT5w .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tXbOJfgT5w .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-tXbOJfOjFI {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #a1ff97;
}
.cid-tXbOJfOjFI .row {
  align-items: center;
  width: 100%;
}
.cid-tXbOJfOjFI .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tXbOJfOjFI .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tXbOJfOjFI .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
}
.cid-tXbOJfOjFI .content-container {
  display: flex;
  padding: 60px !important;
}
@media (max-width: 991px) {
  .cid-tXbOJfOjFI .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tXbOJfOjFI .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tXbOJfOjFI .content-container {
    padding: 2rem !important;
  }
}
.cid-tXbOJfOjFI .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbOJfOjFI .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tXbOJfOjFI .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tXbOJfOjFI .img-container {
    padding-right: 0;
  }
}
.cid-tXbOJfOjFI .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tXbOJfOjFI .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbOJfOjFI .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tXbOJfOjFI .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tXbOJfOjFI .text-container {
    padding-left: 0;
  }
}
.cid-tXbOJfOjFI .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tXbOJfOjFI .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tXbOJfOjFI .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbOJfOjFI .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-tXbOJfOjFI .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tXbOJgkyy1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-tXbOJgkyy1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJgkyy1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbOJgkyy1 .col-img {
  display: flex;
  flex-direction: column;
}
.cid-tXbOJgkyy1 .mbr-description {
  color: #f3f4ef;
}
.cid-tXbOJgkyy1 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tXbOJgkyy1 .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-tXbOJgIVob {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a1ff97;
}
.cid-tXbOJgIVob .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJgIVob .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbOJgIVob .card-wrapper {
  background: #feff98;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tXbOJgIVob .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tXbOJgIVob .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tXbOJgIVob .card-wrapper {
    padding: 4rem;
  }
}
.cid-tXbOJgIVob .mbr-text,
.cid-tXbOJgIVob .mbr-section-btn {
  color: #000000;
}
.cid-tXbOJgIVob .card-title,
.cid-tXbOJgIVob .card-box {
  text-align: left;
  color: #000000;
}
.cid-tXbOJh7ces {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXbOJh7ces .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJh7ces .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-tXbOJh7ces .container {
    padding: 0 20px;
  }
}
.cid-tXbOJh7ces .row {
  margin: 0;
}
.cid-tXbOJh7ces .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tXbOJh7ces .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tXbOJh7ces .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tXbOJh7ces .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tXbOJh7ces .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tXbOJh7ces .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tXbOJh7ces .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-tXbOJhwp6a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #feff98;
}
.cid-tXbOJhwp6a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJhwp6a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbOJhwp6a .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXbOJhwp6a .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbOJhwp6a .container {
    padding: 0;
  }
}
.cid-tXbOJhwp6a .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tXbOJhwp6a .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tXbOJhwp6a .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXbOJhwp6a .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tXbOJhwp6a .mbr-section-title {
  color: #000000;
}
.cid-tXbOJhwp6a .mbr-text {
  color: #1b1f0a;
}
.cid-tXbOJhXqDE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3f4ef;
}
.cid-tXbOJhXqDE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJhXqDE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbOJhXqDE .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXbOJhXqDE .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbOJhXqDE .container {
    padding: 0 16px;
  }
}
.cid-tXbOJhXqDE .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tXbOJhXqDE .row {
    margin: 0 10px;
  }
}
.cid-tXbOJhXqDE .row .item {
  padding: 0;
}
.cid-tXbOJhXqDE .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tXbOJhXqDE .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tXbOJhXqDE .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXbOJhXqDE .panel-group {
  border: 1px solid #070997;
  border-radius: 20px;
  overflow: hidden;
}
.cid-tXbOJhXqDE .panel-group .card {
  border-top: 1px solid #4a5357;
  border-radius: 0 !important;
}
.cid-tXbOJhXqDE .panel-group .card:first-child {
  border-top: none;
}
.cid-tXbOJhXqDE .panel-group .card:last-child {
  border-bottom: none;
}
.cid-tXbOJhXqDE .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-tXbOJhXqDE .panel-group .card .card-header .panel-title {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tXbOJhXqDE .panel-group .card .card-header .panel-title {
    padding: 20px 10px;
  }
}
.cid-tXbOJhXqDE .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #e4dfd4;
}
.cid-tXbOJhXqDE .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
  color: #fff0b0;
  background-color: #e43f3f;
}
.cid-tXbOJhXqDE .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #e43f3f;
}
.cid-tXbOJhXqDE .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tXbOJhXqDE .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #e43f3f;
  background-color: #fff0b0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tXbOJhXqDE .panel-group .card .panel-collapse .panel-body {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-tXbOJhXqDE .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-tXbOJhXqDE .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXbOJhXqDE .image-wrapper {
  height: 100%;
}
.cid-tXbOJhXqDE .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tXbOJhXqDE .image-wrapper img {
    height: 350px;
  }
}
.cid-tXbOJhXqDE .mbr-section-title {
  color: #000000;
}
.cid-tXbOJhXqDE .panel-title-edit {
  color: #000000;
}
.cid-tXbOJhXqDE .panel-text {
  color: #000000;
}
.cid-tXbOJisfIa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #a1ff97;
}
.cid-tXbOJisfIa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJisfIa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbOJisfIa .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
  border-radius: 2rem;
}
.cid-tXbOJisfIa .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tXbOJisfIa .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-tXbOJisfIa .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXbOJisfIa .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXbOJisfIa .google-map:hover {
  filter: grayscale(0);
}
.cid-tXbOJisfIa .mbr-section-title {
  text-align: left;
  color: #6c2f12;
}
.cid-tXbOJiWidy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #11004b;
}
.cid-tXbOJiWidy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbOJiWidy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbOJiWidy .row {
  justify-content: space-between;
}
.cid-tXbOJiWidy .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXbOJiWidy .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tXbOJiWidy .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tXbOJiWidy .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tXbOJiWidy .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-tXbOJiWidy .list li {
  margin-bottom: 25px;
}
.cid-tXbOJiWidy .list li:last-child {
  margin-bottom: 0;
}
.cid-tXbOJiWidy .mbr-desc {
  margin-bottom: 8px;
}
.cid-tXbOJiWidy .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXbOJiWidy .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tXbOJiWidy .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #56f1ff;
}
.cid-tXbOJiWidy .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-tXbOJiWidy .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #005241;
  text-align: center;
}
.cid-tXbOJiWidy .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-tXbOJiWidy .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tXbOJiWidy .mbr-desc,
.cid-tXbOJiWidy .mbr-iconfont {
  color: #ffffff;
}
.cid-tXbOJiWidy .mbr-text,
.cid-tXbOJiWidy .mbr-section-btn {
  color: #ffffff;
}
.cid-tXbVK1mPMy {
  min-height: 101px !important;
  background: #feff98;
  overflow: visible;
}
.cid-tXbVK1mPMy .nav-item,
.cid-tXbVK1mPMy .nav-link,
.cid-tXbVK1mPMy .navbar-caption {
  font-weight: normal;
}
.cid-tXbVK1mPMy .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-tXbVK1mPMy .nav-link:before,
.cid-tXbVK1mPMy .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-tXbVK1mPMy .nav-item:hover .nav-link:before,
.cid-tXbVK1mPMy .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-tXbVK1mPMy .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-tXbVK1mPMy .dropdown-toggle::after,
.cid-tXbVK1mPMy .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-tXbVK1mPMy .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-tXbVK1mPMy .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-tXbVK1mPMy .nav-item:focus,
.cid-tXbVK1mPMy .nav-link:focus {
  outline: none;
}
.cid-tXbVK1mPMy .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-tXbVK1mPMy .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-tXbVK1mPMy .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tXbVK1mPMy .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tXbVK1mPMy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXbVK1mPMy .navbar {
  transition: all .3s;
  background: #feff98;
}
.cid-tXbVK1mPMy .navbar.opened {
  transition: all .3s;
  background: #feff98 !important;
}
.cid-tXbVK1mPMy .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-tXbVK1mPMy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXbVK1mPMy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXbVK1mPMy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-tXbVK1mPMy .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-tXbVK1mPMy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-tXbVK1mPMy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-tXbVK1mPMy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tXbVK1mPMy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXbVK1mPMy .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-tXbVK1mPMy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tXbVK1mPMy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXbVK1mPMy .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-tXbVK1mPMy .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-tXbVK1mPMy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXbVK1mPMy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tXbVK1mPMy .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXbVK1mPMy .navbar.navbar-short {
  background: #feff98 !important;
  min-height: 60px;
}
.cid-tXbVK1mPMy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-tXbVK1mPMy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tXbVK1mPMy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXbVK1mPMy .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-tXbVK1mPMy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXbVK1mPMy .dropdown-item.active,
.cid-tXbVK1mPMy .dropdown-item:active {
  background-color: transparent;
}
.cid-tXbVK1mPMy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #feff98;
}
.cid-tXbVK1mPMy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-tXbVK1mPMy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXbVK1mPMy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXbVK1mPMy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tXbVK1mPMy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tXbVK1mPMy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tXbVK1mPMy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tXbVK1mPMy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tXbVK1mPMy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tXbVK1mPMy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXbVK1mPMy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tXbVK1mPMy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tXbVK1mPMy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXbVK1mPMy .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-tXbVK1mPMy a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-tXbVK1mPMy .mbr-iconfont {
  color: #e6d0f2;
}
.cid-tXbVK1mPMy .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-tXbVK1mPMy .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXbVK1mPMy .navbar {
    height: 77px;
  }
  .cid-tXbVK1mPMy .navbar.opened {
    height: auto;
  }
  .cid-tXbVK1mPMy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXbVK1mPMy .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-tXbVK21q6h {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #a1ff97;
}
.cid-tXbVK21q6h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVK21q6h .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tXbVK21q6h .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-tXbVK21q6h img {
  border-radius: 1rem;
}
.cid-tXbVK21q6h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbVK21q6h .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tXbVK21q6h .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tXbVK21q6h .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tXbVK21q6h .mbr-section-title {
  color: #0d2450;
  text-align: center;
}
.cid-tXbVK21q6h .mbr-section-subtitle,
.cid-tXbVK21q6h .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-tXbVK21q6h .mbr-text,
.cid-tXbVK21q6h .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tXbVK2tOLf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXbVK2tOLf .mbr-section-subtitle {
  color: #14191e;
}
.cid-tXbVK2tOLf .mbr-text {
  color: #777777;
}
.cid-tXbVK2tOLf ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tXbVK2tOLf ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tXbVK2tOLf ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4568ae;
  width: 25px;
  height: 25px;
}
.cid-tXbVK2tOLf .mbr-list {
  color: #000000;
}
.cid-tXbVK2PlKk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tXbVK2PlKk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVK2PlKk .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-tXbVK2PlKk .container {
    padding: 0 15px;
  }
}
.cid-tXbVK2PlKk .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
  padding-right: 0;
  padding-left: 8px;
}
@media (max-width: 992px) {
  .cid-tXbVK2PlKk .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbVK2PlKk .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tXbVK2PlKk .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tXbVK2PlKk .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tXbVK2PlKk .mbr-section-title {
  color: #ffffff;
}
.cid-tXbVK2PlKk .mbr-text {
  color: #d2d2df;
}
.cid-tXbVK2PlKk .mbr-name {
  color: #f2ac2b;
}
.cid-tXbVK3hQ5d {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a1ff97;
  position: relative;
  overflow: hidden;
}
.cid-tXbVK3hQ5d .row {
  justify-content: center;
}
.cid-tXbVK3hQ5d .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tXbVK3hQ5d .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-tXbVK3hQ5d .title-container {
    margin-bottom: 56px;
  }
}
.cid-tXbVK3hQ5d .mbr-section-title {
  color: #6148ff;
}
.cid-tXbVK3hQ5d .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-tXbVK3hQ5d .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-tXbVK3hQ5d .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-tXbVK3hQ5d .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tXbVK3hQ5d .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-tXbVK3hQ5d .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-tXbVK3hQ5d .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-tXbVK3hQ5d .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-tXbVK3hQ5d .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-tXbVK3hQ5d .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-tXbVK3hQ5d .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-tXbVK3hQ5d .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-tXbVK3hQ5d .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-tXbVK3hQ5d .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-tXbVK3hQ5d .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-tXbVK3hQ5d .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-tXbVK3hQ5d .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-tXbVK3hQ5d .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-tXbVK3hQ5d .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tXbVK3hQ5d .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-tXbVK3hQ5d .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tXbVK3hQ5d .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tXbVK3hQ5d .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%, #99f5fe 50%, #feff98 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-tXbVK476Zz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a1ff97;
}
.cid-tXbVK476Zz .row {
  align-items: center;
  width: 100%;
}
.cid-tXbVK476Zz .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tXbVK476Zz .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tXbVK476Zz .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tXbVK476Zz .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #feff98;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tXbVK476Zz .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tXbVK476Zz .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tXbVK476Zz .content-container {
    padding: 2rem !important;
  }
}
.cid-tXbVK476Zz .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbVK476Zz .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tXbVK476Zz .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-tXbVK476Zz .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tXbVK476Zz .img-container {
    padding-left: 0;
  }
}
.cid-tXbVK476Zz .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tXbVK476Zz .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbVK476Zz .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tXbVK476Zz .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-tXbVK476Zz .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tXbVK476Zz .text-container {
    padding-right: 0;
  }
}
.cid-tXbVK476Zz .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tXbVK476Zz .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tXbVK476Zz .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbVK476Zz .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-tXbVK476Zz .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tXbVK4yeop {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a1ff97;
}
.cid-tXbVK4yeop .row {
  align-items: center;
  width: 100%;
}
.cid-tXbVK4yeop .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-tXbVK4yeop .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tXbVK4yeop .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tXbVK4yeop .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #f3f4ef;
}
.cid-tXbVK4yeop .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tXbVK4yeop .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-tXbVK4yeop .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tXbVK4yeop .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-tXbVK4yeop .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-tXbVK4yeop .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbVK4yeop .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tXbVK4yeop .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-tXbVK4yeop .btn-container {
  width: 100%;
}
.cid-tXbVK4yeop .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-tXbVK4yeop .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-tXbVK4yeop .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tXbVK4yeop .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-tXbVK5s2yq {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #feff98;
}
.cid-tXbVK5s2yq .row {
  align-items: center;
  width: 100%;
}
.cid-tXbVK5s2yq .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #a1ff97;
}
@media (max-width: 767px) {
  .cid-tXbVK5s2yq .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-tXbVK5s2yq .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tXbVK5s2yq .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-tXbVK5s2yq .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-tXbVK5s2yq .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tXbVK5s2yq .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #1B1F0A;
}
.cid-tXbVK5s2yq .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbVK5s2yq .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-tXbVK5s2yq .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-tXbVK5s2yq .btn-container {
  width: 100%;
}
.cid-tXbVK5s2yq .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-tXbVK5s2yq .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-tXbVK5s2yq .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-tXbVK5s2yq .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-tXbVK5s2yq .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-tXbVK5VQwY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #feff98;
}
.cid-tXbVK5VQwY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVK5VQwY .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-tXbVK5VQwY .container {
    padding: 0 24px;
  }
}
.cid-tXbVK5VQwY .row {
  justify-content: center;
}
.cid-tXbVK5VQwY .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tXbVK5VQwY .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tXbVK5VQwY .panel-group .card {
  border: none;
  border-radius: 40px;
  background-color: #ffffff;
  margin-bottom: 32px;
  min-width: 40px;
}
.cid-tXbVK5VQwY .panel-group .card .card-header {
  padding: 40px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tXbVK5VQwY .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-tXbVK5VQwY .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXbVK5VQwY .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXbVK5VQwY .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXbVK5VQwY .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXbVK5VQwY .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-tXbVK5VQwY .panel-group .card .panel-collapse .panel-body {
  padding: 0 40px 40px;
}
@media (max-width: 992px) {
  .cid-tXbVK5VQwY .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-tXbVK5VQwY .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXbVK5VQwY .mbr-section-title {
  color: #262642;
  text-align: center;
}
.cid-tXbVK5VQwY .panel-title-edit {
  color: #11004b;
}
.cid-tXbVK5VQwY .panel-text {
  color: #262642;
}
.cid-tXbVK6F6px {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a1ff97;
}
.cid-tXbVK6F6px .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVK6F6px .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbVK6F6px .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tXbVK6F6px .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tXbVK6F6px .container {
    padding: 0 30px;
  }
}
.cid-tXbVK6F6px .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tXbVK6F6px .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tXbVK6F6px .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #feff98;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tXbVK6F6px .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tXbVK6F6px .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tXbVK6F6px .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tXbVK6F6px .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tXbVK6F6px .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tXbVK6F6px .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tXbVK6F6px .mbr-section-title {
  color: #ffffff;
}
.cid-tXbVK6F6px .mbr-card-title {
  color: #2b2b2b;
}
.cid-tXbVK6F6px .mbr-text {
  color: #4E4E4E;
}
.cid-tXbVK6F6px .mbr-number {
  color: #FE5115;
}
.cid-tXbVK78Fe3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #feff98;
}
.cid-tXbVK78Fe3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVK78Fe3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbVK78Fe3 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXbVK78Fe3 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbVK78Fe3 .container {
    padding: 0;
  }
}
.cid-tXbVK78Fe3 .row {
  margin: 0;
  border-top: 1px solid #005241;
  border-bottom: 1px solid #005241;
}
.cid-tXbVK78Fe3 .card {
  border-radius: 0;
  padding: 0;
}
.cid-tXbVK78Fe3 .card:first-child {
  border-right: 1px solid #005241;
}
@media (max-width: 992px) {
  .cid-tXbVK78Fe3 .card:first-child {
    border-right: none;
    border-bottom: 1px solid #005241;
  }
}
.cid-tXbVK78Fe3 .card .card-wrapper {
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-tXbVK78Fe3 .card .card-wrapper {
    padding: 40px 16px;
  }
}
.cid-tXbVK78Fe3 .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tXbVK78Fe3 .card .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tXbVK78Fe3 .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tXbVK78Fe3 .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-tXbVK7HJjg {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #a1ff97;
}
.cid-tXbVK7HJjg .row {
  align-items: center;
  width: 100%;
}
.cid-tXbVK7HJjg .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tXbVK7HJjg .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tXbVK7HJjg .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
}
.cid-tXbVK7HJjg .content-container {
  display: flex;
  padding: 60px !important;
}
@media (max-width: 991px) {
  .cid-tXbVK7HJjg .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tXbVK7HJjg .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tXbVK7HJjg .content-container {
    padding: 2rem !important;
  }
}
.cid-tXbVK7HJjg .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbVK7HJjg .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tXbVK7HJjg .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tXbVK7HJjg .img-container {
    padding-right: 0;
  }
}
.cid-tXbVK7HJjg .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tXbVK7HJjg .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tXbVK7HJjg .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tXbVK7HJjg .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tXbVK7HJjg .text-container {
    padding-left: 0;
  }
}
.cid-tXbVK7HJjg .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tXbVK7HJjg .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tXbVK7HJjg .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tXbVK7HJjg .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-tXbVK7HJjg .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tXbVK8hhMy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-tXbVK8hhMy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVK8hhMy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbVK8hhMy .col-img {
  display: flex;
  flex-direction: column;
}
.cid-tXbVK8hhMy .mbr-description {
  color: #f3f4ef;
}
.cid-tXbVK8hhMy .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tXbVK8hhMy .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-tXbVK8Oeqw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a1ff97;
}
.cid-tXbVK8Oeqw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVK8Oeqw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbVK8Oeqw .card-wrapper {
  background: #feff98;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tXbVK8Oeqw .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tXbVK8Oeqw .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tXbVK8Oeqw .card-wrapper {
    padding: 4rem;
  }
}
.cid-tXbVK8Oeqw .mbr-text,
.cid-tXbVK8Oeqw .mbr-section-btn {
  color: #000000;
}
.cid-tXbVK8Oeqw .card-title,
.cid-tXbVK8Oeqw .card-box {
  text-align: left;
  color: #000000;
}
.cid-tXbVK9i53t {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXbVK9i53t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVK9i53t .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-tXbVK9i53t .container {
    padding: 0 20px;
  }
}
.cid-tXbVK9i53t .row {
  margin: 0;
}
.cid-tXbVK9i53t .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tXbVK9i53t .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tXbVK9i53t .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tXbVK9i53t .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tXbVK9i53t .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tXbVK9i53t .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tXbVK9i53t .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-tXbVK9Nu41 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #feff98;
}
.cid-tXbVK9Nu41 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVK9Nu41 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbVK9Nu41 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXbVK9Nu41 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbVK9Nu41 .container {
    padding: 0;
  }
}
.cid-tXbVK9Nu41 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tXbVK9Nu41 .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tXbVK9Nu41 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXbVK9Nu41 .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tXbVK9Nu41 .mbr-section-title {
  color: #000000;
}
.cid-tXbVK9Nu41 .mbr-text {
  color: #1b1f0a;
}
.cid-tXbVKama3c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3f4ef;
}
.cid-tXbVKama3c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVKama3c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbVKama3c .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXbVKama3c .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXbVKama3c .container {
    padding: 0 16px;
  }
}
.cid-tXbVKama3c .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tXbVKama3c .row {
    margin: 0 10px;
  }
}
.cid-tXbVKama3c .row .item {
  padding: 0;
}
.cid-tXbVKama3c .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tXbVKama3c .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tXbVKama3c .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXbVKama3c .panel-group {
  border: 1px solid #070997;
  border-radius: 20px;
  overflow: hidden;
}
.cid-tXbVKama3c .panel-group .card {
  border-top: 1px solid #4a5357;
  border-radius: 0 !important;
}
.cid-tXbVKama3c .panel-group .card:first-child {
  border-top: none;
}
.cid-tXbVKama3c .panel-group .card:last-child {
  border-bottom: none;
}
.cid-tXbVKama3c .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-tXbVKama3c .panel-group .card .card-header .panel-title {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tXbVKama3c .panel-group .card .card-header .panel-title {
    padding: 20px 10px;
  }
}
.cid-tXbVKama3c .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #e4dfd4;
}
.cid-tXbVKama3c .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
  color: #fff0b0;
  background-color: #e43f3f;
}
.cid-tXbVKama3c .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #e43f3f;
}
.cid-tXbVKama3c .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tXbVKama3c .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #e43f3f;
  background-color: #fff0b0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tXbVKama3c .panel-group .card .panel-collapse .panel-body {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-tXbVKama3c .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-tXbVKama3c .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXbVKama3c .image-wrapper {
  height: 100%;
}
.cid-tXbVKama3c .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tXbVKama3c .image-wrapper img {
    height: 350px;
  }
}
.cid-tXbVKama3c .mbr-section-title {
  color: #000000;
}
.cid-tXbVKama3c .panel-title-edit {
  color: #000000;
}
.cid-tXbVKama3c .panel-text {
  color: #000000;
}
.cid-tXbVKb8IYZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #a1ff97;
}
.cid-tXbVKb8IYZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVKb8IYZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbVKb8IYZ .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
  border-radius: 2rem;
}
.cid-tXbVKb8IYZ .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tXbVKb8IYZ .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-tXbVKb8IYZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXbVKb8IYZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXbVKb8IYZ .google-map:hover {
  filter: grayscale(0);
}
.cid-tXbVKb8IYZ .mbr-section-title {
  text-align: left;
  color: #6c2f12;
}
.cid-tXbVKbVQO0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #11004b;
}
.cid-tXbVKbVQO0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXbVKbVQO0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXbVKbVQO0 .row {
  justify-content: space-between;
}
.cid-tXbVKbVQO0 .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXbVKbVQO0 .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tXbVKbVQO0 .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tXbVKbVQO0 .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tXbVKbVQO0 .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-tXbVKbVQO0 .list li {
  margin-bottom: 25px;
}
.cid-tXbVKbVQO0 .list li:last-child {
  margin-bottom: 0;
}
.cid-tXbVKbVQO0 .mbr-desc {
  margin-bottom: 8px;
}
.cid-tXbVKbVQO0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXbVKbVQO0 .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tXbVKbVQO0 .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #56f1ff;
}
.cid-tXbVKbVQO0 .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-tXbVKbVQO0 .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #005241;
  text-align: center;
}
.cid-tXbVKbVQO0 .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-tXbVKbVQO0 .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tXbVKbVQO0 .mbr-desc,
.cid-tXbVKbVQO0 .mbr-iconfont {
  color: #ffffff;
}
.cid-tXbVKbVQO0 .mbr-text,
.cid-tXbVKbVQO0 .mbr-section-btn {
  color: #ffffff;
}
