.btn {
  border-width: 2px;
}
body {
  font-family: 'Alegreya', serif;
}
.display-1 {
  font-family: 'Alegreya', serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Alegreya', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Alegreya', serif;
  font-size: 1.6rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 2rem;
}
.display-5 {
  font-family: 'Alegreya', serif;
  font-size: 2.625rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 3.28125rem;
}
.display-7 {
  font-family: 'Alegreya', serif;
  font-size: 1.3rem;
  line-height: 1.25;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.1rem;
    font-size: calc( 1.5687499999999999rem + (2.625 - 1.5687499999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.5687499999999999rem + (2.625 - 1.5687499999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.105rem + (1.3 - 1.105) * ((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: #ff2100 !important;
}
.bg-success {
  background-color: #64ff54 !important;
}
.bg-info {
  background-color: #56f1ff !important;
}
.bg-warning {
  background-color: #fdff54 !important;
}
.bg-danger {
  background-color: #fcff1e !important;
}
.btn-primary .btn-overlay {
  background-color: #a93423 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff2100 !important;
  border-color: #ff2100 !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: #a93423 !important;
  border-color: #a93423 !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: #c0c228 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fcff1e !important;
  border-color: #fcff1e !important;
  color: #1e1e00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #1e1e00 !important;
  background-color: #c0c228 !important;
  border-color: #c0c228 !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: #ff2100;
  color: #ff2100;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a81600 !important;
  background-color: transparent!important;
  border-color: #a81600 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff2100 !important;
  border-color: #ff2100 !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: #bcd948;
  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: #8da823 !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: #56f1ff;
  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: #00e9fe !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: #64ff54;
  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: #18fc00 !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: #fdff54;
  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: #f9fc00 !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: #fcff1e;
  color: #fcff1e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c4c600 !important;
  background-color: transparent!important;
  border-color: #c4c600 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #1e1e00 !important;
  background-color: #fcff1e !important;
  border-color: #fcff1e !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: #1b1f0a;
  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: #000000 !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: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ff2100 !important;
}
.text-secondary {
  color: #bcd948 !important;
}
.text-success {
  color: #64ff54 !important;
}
.text-info {
  color: #56f1ff !important;
}
.text-warning {
  color: #fdff54 !important;
}
.text-danger {
  color: #fcff1e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #1B1F0A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #991400 !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: #b5b700 !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) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ff2100;
}
.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: #fcff1e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff2100;
  border-color: #ff2100;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff2100;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffd3cc;
}
.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: #ffffea;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Alegreya', serif;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2rem;
}
.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: #ff2100 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Alegreya', serif;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2rem;
}
blockquote {
  border-color: #ff2100;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff2100;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff2100;
}
.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: #ff2100;
  border-bottom-color: #ff2100;
}
.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: #ff2100 !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='%23ff2100' %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-ucFdnvrtHT {
  background-color: transparent;
}
.cid-ucFdnvrtHT .navbar-dropdown {
  background-color: #f3f4ef !important;
  padding: 0;
}
.cid-ucFdnvrtHT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f4ef !important;
  background: #f3f4ef;
}
.cid-ucFdnvrtHT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucFdnvrtHT .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-ucFdnvrtHT .menu_box .navbar.opened,
  .cid-ucFdnvrtHT .menu_box .navbar-collapse {
    background-color: #f3f4ef !important;
    transition: all 0s ease 0s;
  }
}
.cid-ucFdnvrtHT .navbar-dropdown {
  position: relative !important;
}
.cid-ucFdnvrtHT .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ucFdnvrtHT .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ucFdnvrtHT .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #e1eeec;
  }
  .cid-ucFdnvrtHT .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ucFdnvrtHT .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ucFdnvrtHT .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ucFdnvrtHT .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ucFdnvrtHT .offcanvas-body .mbr-text,
  .cid-ucFdnvrtHT .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-ucFdnvrtHT .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #71eac6;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ucFdnvrtHT ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ucFdnvrtHT .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFdnvrtHT .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-ucFdnvrtHT .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ucFdnvrtHT li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ucFdnvrtHT .lg_brand {
    margin: 0 1rem;
  }
  .cid-ucFdnvrtHT .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.cid-ucFdnvrtHT .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ucFdnvrtHT .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .nav-item {
    margin: 0 !important;
  }
}
.cid-ucFdnvrtHT .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-ucFdnvrtHT .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ucFdnvrtHT .nav-item .nav-link:hover,
.cid-ucFdnvrtHT .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.cid-ucFdnvrtHT .nav-item .nav-link:hover::before,
.cid-ucFdnvrtHT .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-ucFdnvrtHT .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ucFdnvrtHT .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFdnvrtHT .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);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ucFdnvrtHT .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ucFdnvrtHT .offcanvas_box {
    display: none;
  }
}
.cid-ucFdnvrtHT .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-ucFdnvrtHT .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ucFdnvrtHT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ucFdnvrtHT .container {
  display: flex;
  margin: auto;
}
.cid-ucFdnvrtHT .iconfont-wrapper {
  color: #282d15;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ucFdnvrtHT .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ucFdnvrtHT .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ucFdnvrtHT .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .navbar-nav {
    margin: 0;
  }
}
.cid-ucFdnvrtHT .dropdown-menu,
.cid-ucFdnvrtHT .navbar.opened {
  background-color: false !important;
}
.cid-ucFdnvrtHT .nav-item:focus,
.cid-ucFdnvrtHT .nav-link:focus {
  outline: none;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFdnvrtHT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucFdnvrtHT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucFdnvrtHT .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-ucFdnvrtHT .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-ucFdnvrtHT .navbar.opened {
  transition: all 0.3s;
}
.cid-ucFdnvrtHT .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ucFdnvrtHT .navbar .navbar-logo img {
  max-width: 64px;
  min-height: 64px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-ucFdnvrtHT .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-ucFdnvrtHT .navbar.collapsed {
  justify-content: center;
}
.cid-ucFdnvrtHT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucFdnvrtHT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucFdnvrtHT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucFdnvrtHT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucFdnvrtHT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucFdnvrtHT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ucFdnvrtHT .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ucFdnvrtHT .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-ucFdnvrtHT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucFdnvrtHT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ucFdnvrtHT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucFdnvrtHT .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ucFdnvrtHT .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ucFdnvrtHT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-ucFdnvrtHT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucFdnvrtHT .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ucFdnvrtHT .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucFdnvrtHT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucFdnvrtHT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucFdnvrtHT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucFdnvrtHT .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-ucFdnvrtHT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFdnvrtHT .dropdown-item.active,
.cid-ucFdnvrtHT .dropdown-item:active {
  background-color: transparent;
}
.cid-ucFdnvrtHT .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-ucFdnvrtHT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucFdnvrtHT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucFdnvrtHT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucFdnvrtHT ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-ucFdnvrtHT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucFdnvrtHT button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f4ef;
  background: #99f5fe;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #71eac6;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ucFdnvrtHT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucFdnvrtHT .navbar {
    height: 70px;
  }
  .cid-ucFdnvrtHT .navbar.opened {
    height: auto;
  }
  .cid-ucFdnvrtHT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucFdnvrtHT .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-ucFdnvrtHT .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-ucFdnvrtHT .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ucFdnvrtHT .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-ucFdnvrtHT .mbr-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.cid-ucFdnvrtHT .navbar-caption:hover {
  color: #bcd948;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ucFdnvrtHT .text_widget {
  margin-bottom: 32px;
}
.cid-ucFdnvrtHT .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-ucFdnvrtHT .text_widget a:hover,
.cid-ucFdnvrtHT .text_widget a:focus {
  opacity: .8;
}
.cid-ucFdnvrtHT .mbr-section-subtitle {
  color: #254b45;
  text-align: center;
}
.cid-ucFdnvrtHT .navbar-caption {
  color: #bee0d6;
}
.cid-ucFdnvrtHT .mbr-text {
  color: #254b45;
  text-align: center;
}
.cid-ucFdnvrtHT .mbr-section-subtitle,
.cid-ucFdnvrtHT .text_widget,
.cid-ucFdnvrtHT .mbr-section-btn {
  text-align: center;
}
.cid-ucFdnvrtHT a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ucFhGRCB9M {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #19303d;
}
.cid-ucFhGRCB9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFhGRCB9M .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-ucFhGRCB9M .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-ucFhGRCB9M img {
  border-radius: 1rem;
}
.cid-ucFhGRCB9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFhGRCB9M .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucFhGRCB9M .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucFhGRCB9M .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ucFhGRCB9M .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFhGRCB9M .mbr-section-subtitle,
.cid-ucFhGRCB9M .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-ucFhGRCB9M .mbr-text,
.cid-ucFhGRCB9M .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-ucFyNq4rrD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1-3.jpg");
}
.cid-ucFyNq4rrD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFyNq4rrD .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-ucFyNq4rrD .container {
    padding: 0 15px;
  }
}
.cid-ucFyNq4rrD .row {
  justify-content: center;
}
.cid-ucFyNq4rrD .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucFyNq4rrD .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucFyNq4rrD .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-ucFyNq4rrD .subtitle-wrapper {
    padding: 0;
  }
}
.cid-ucFyNq4rrD .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucFyNq4rrD .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-ucFyNq4rrD .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-ucFyNq4rrD .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-ucFyNq4rrD .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-ucFyNq4rrD .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucFyNq4rrD .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #feff98;
  color: #171827;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-ucFyNq4rrD .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-ucFyNq4rrD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFyNq4rrD .mbr-section-subtitle {
  color: #feff98;
}
.cid-ucFyNq4rrD .list {
  color: #ffffff;
}
.cid-ucCMuoGPyt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #19303d;
}
.cid-ucCMuoGPyt .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-ucCMuoGPyt .mbr-section-title {
  color: #fafafa;
}
.cid-ucCMuoGPyt .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-ucCMuoGPyt .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucFiyvunBV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffea;
  position: relative;
  overflow: hidden;
}
.cid-ucFiyvunBV .row {
  justify-content: center;
}
.cid-ucFiyvunBV .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-ucFiyvunBV .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-ucFiyvunBV .title-container {
    margin-bottom: 56px;
  }
}
.cid-ucFiyvunBV .mbr-section-title {
  color: #6148ff;
}
.cid-ucFiyvunBV .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-ucFiyvunBV .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-ucFiyvunBV .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-ucFiyvunBV .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ucFiyvunBV .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-ucFiyvunBV .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-ucFiyvunBV .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-ucFiyvunBV .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-ucFiyvunBV .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-ucFiyvunBV .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-ucFiyvunBV .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-ucFiyvunBV .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-ucFiyvunBV .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-ucFiyvunBV .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-ucFiyvunBV .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-ucFiyvunBV .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-ucFiyvunBV .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-ucFiyvunBV .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-ucFiyvunBV .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ucFiyvunBV .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucFiyvunBV .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ucFiyvunBV .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-ucFiyvunBV .circle-blur {
  position: absolute;
  top: 5%;
  left: 5%;
  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%, #ff3399 50%, #99f5fe 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-t2YVqbwMGe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-t2YVqbwMGe .row {
  align-items: center;
  width: 100%;
}
.cid-t2YVqbwMGe .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YVqbwMGe .mbr-section-title {
  color: #000000;
}
.cid-t2YVqbwMGe .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-t2YVqbwMGe .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2YVqbwMGe .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-t2YVqbwMGe .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2YVqbwMGe .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-t2YVqbwMGe .text-container {
    padding: 24px;
  }
}
.cid-t2YVqbwMGe .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YVqbwMGe .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-t2YVqbwMGe .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #feff98;
}
.cid-t2YVqbwMGe .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
}
.cid-t2YVqbwMGe .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-ucFjLHCPOu {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffea;
}
.cid-ucFjLHCPOu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFjLHCPOu .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ucFjLHCPOu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFjLHCPOu h1 {
  max-width: 800px;
}
.cid-ucFjLHCPOu p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-ucFjLHCPOu .btn:hover {
  transform: scale(1.1);
  background: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #ff2100 !important;
}
.cid-ucFjLHCPOu .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-ucFjLHCPOu .btn div {
  overflow: hidden;
}
.cid-ucFjLHCPOu .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-ucFjLHCPOu {
    align-items: center;
  }
  .cid-ucFjLHCPOu .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucFjLHCPOu .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucFjLHCPOu {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ucFjLHCPOu .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ucFjLHCPOu .content-wrap {
    width: 100%;
  }
}
.cid-ucFjLHCPOu .mbr-section-subtitle,
.cid-ucFjLHCPOu .line {
  color: #291f1e;
}
.cid-ucFjLHCPOu .mbr-text,
.cid-ucFjLHCPOu .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ucFjLHCPOu .mbr-section-title {
  color: #291f1e;
  text-align: center;
}
.cid-t2ZvqvO01E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-t2ZvqvO01E .mbr-fallback-image.disabled {
  display: none;
}
.cid-t2ZvqvO01E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t2ZvqvO01E .container {
  width: 100%;
  max-width: 100%;
}
.cid-t2ZvqvO01E .col-title {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1rem;
}
.cid-t2ZvqvO01E .mbr-section-title {
  color: #1B1F0A;
  margin-bottom: 0;
}
.cid-t2ZvqvO01E .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 0;
  opacity: 0.8;
  margin-top: 1rem;
}
.cid-t2ZvqvO01E .item-col {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  width: 100%;
  border-top: 4px solid #1b1f0a;
}
.cid-t2ZvqvO01E .item-overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #bbbbbb;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all;
}
.cid-t2ZvqvO01E .item {
  display: flex;
  justify-content: center;
  width: 100%;
  border-bottom: 4px solid #1b1f0a;
  position: relative;
}
.cid-t2ZvqvO01E .item:hover .item-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-t2ZvqvO01E .item-wrap {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 0;
}
.cid-t2ZvqvO01E .mbr-text {
  position: relative;
  z-index: 2;
  color: #fafafa;
  margin-bottom: 0;
  width: 100%;
}
.cid-t2ZvqvO01E .mbr-text a {
  width: 100%;
}
.cid-t2ZvqvO01E .mbr-section-title,
.cid-t2ZvqvO01E .mbr-section-btn {
  color: #fafafa;
}
.cid-t2Zt6qJK78 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffea;
}
.cid-t2Zt6qJK78 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t2Zt6qJK78 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t2Zt6qJK78 .row {
  flex-direction: row-reverse;
}
.cid-t2Zt6qJK78 .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-t2Zt6qJK78 .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.cid-t2Zt6qJK78 .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2Zt6qJK78 .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-t2Zt6qJK78 .img-container {
  display: flex;
  padding: 4.75rem 4rem;
  background-color: #19303d;
}
.cid-t2Zt6qJK78 .img-container img {
  max-width: 100%;
}
.cid-t2Zt6qJK78 .col-toggle {
  width: 50%;
  padding-right: 4rem !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4rem !important;
  padding-right: 0 !important;
}
@media (max-width: 991px) {
  .cid-t2Zt6qJK78 .col-toggle {
    padding-right: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-t2Zt6qJK78 .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-t2Zt6qJK78 .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-t2Zt6qJK78 .section-head {
  margin-bottom: 0;
}
.cid-t2Zt6qJK78 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  text-align: left;
}
.cid-t2Zt6qJK78 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-t2Zt6qJK78 .toggle-panel {
  margin-top: 40px;
}
.cid-t2Zt6qJK78 .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-t2Zt6qJK78 .card:hover {
  margin-left: 1rem;
}
.cid-t2Zt6qJK78 .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-t2Zt6qJK78 .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-t2Zt6qJK78 .card-header .iconfont-wrapper .mbr-iconfont {
  color: #ddff55;
  font-size: 32px;
}
.cid-t2Zt6qJK78 .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #000000;
  transition: .3s all;
}
.cid-t2Zt6qJK78 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-t2Zt6qJK78 .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-t2Zt6qJK78 .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-t2Zt6qJK78 .panel-title-edit {
  color: #000000;
  margin-bottom: 0;
}
.cid-t2Zt6qJK78 .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-ucA7U10obX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucA7U10obX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucA7U10obX .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-ucA7U10obX .container {
    padding: 0 20px;
  }
}
.cid-ucA7U10obX .row {
  margin: 0;
}
.cid-ucA7U10obX .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucA7U10obX .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucA7U10obX .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucA7U10obX .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucA7U10obX .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucA7U10obX .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucA7U10obX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucAaR7wpvq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffea;
  flex-direction: column;
  justify-content: center;
}
.cid-ucAaR7wpvq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAaR7wpvq .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-ucAaR7wpvq .container {
    padding: 0 16px;
  }
}
.cid-ucAaR7wpvq .row {
  justify-content: center;
}
.cid-ucAaR7wpvq .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ucAaR7wpvq .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ucAaR7wpvq .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucAaR7wpvq .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #bcd948 !important;
  color: #56f1ff !important;
  border-color: #bcd948 !important;
}
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ff2100 !important;
  color: #56f1ff !important;
}
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #bcd948 !important;
  color: #56f1ff !important;
}
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #64ff54 !important;
  color: #56f1ff !important;
}
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #56f1ff !important;
  color: #bcd948 !important;
  border-color: #56f1ff !important;
}
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #fdff54 !important;
  color: #56f1ff !important;
}
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #fcff1e !important;
  color: #56f1ff !important;
}
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-ucAaR7wpvq .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-ucAaR7wpvq .mbr-desc {
  color: #706cff;
}
.cid-ucAaR7wpvq .mbr-section-title {
  color: #000000;
}
.cid-ucAaR7wpvq .mbr-text {
  color: #000000;
}
.cid-ucAaR7wpvq .mbr-section-btn {
  text-align: center;
}
.cid-ucA5gjCmfB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucA5gjCmfB .row {
  align-items: center;
  width: 100%;
}
.cid-ucA5gjCmfB .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-ucA5gjCmfB .mbr-section-title {
  color: #fcff1b;
}
.cid-ucA5gjCmfB .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucA5gjCmfB .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucA5gjCmfB .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-ucA5gjCmfB .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucA5gjCmfB .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #fcff1e;
}
@media (max-width: 991px) {
  .cid-ucA5gjCmfB .text-container {
    padding: 24px;
  }
}
.cid-ucA5gjCmfB .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucA5gjCmfB .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-ucA5gjCmfB .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #1eecff;
}
.cid-ucA5gjCmfB .card-title {
  width: 100%;
  color: #fcff1b;
  margin-bottom: 0;
}
.cid-ucA5gjCmfB .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-t2ZkCfcHJd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffea;
}
.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: #19303d;
}
@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: #ffffea;
}
.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-t2ZkCfcHJd .mbr-section-title,
.cid-t2ZkCfcHJd .mbr-section-btn {
  color: #ffffea;
}
.cid-ucAawtTrDi {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #19303d;
}
.cid-ucAawtTrDi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAawtTrDi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucAawtTrDi .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-ucAawtTrDi .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucAawtTrDi .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-ucAawtTrDi .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucAawtTrDi .container {
    padding: 0 14px;
  }
}
.cid-ucAawtTrDi .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  margin-bottom: 40px;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-ucAawtTrDi .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ucAawtTrDi .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-ucAawtTrDi .content-wrapper .mbr-section-btn {
  margin: 10px 25px;
}
.cid-ucAawtTrDi .mbr-text,
.cid-ucAawtTrDi .text-wrapper {
  color: #ffffea;
  text-align: center;
}
.cid-ucAawtTrDi .mbr-section-title {
  color: #f1f1f1;
}
.cid-ucAawtTrDi .mbr-section-title,
.cid-ucAawtTrDi .mbr-section-btn {
  text-align: center;
  color: #ffffea;
}
.cid-ucDtZNBOmK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffea;
}
.cid-ucDtZNBOmK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucDtZNBOmK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucDtZNBOmK .col-img {
  display: flex;
  flex-direction: column;
}
.cid-ucDtZNBOmK .mbr-description {
  color: #f3f4ef;
}
.cid-ucDtZNBOmK .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-ucDtZNBOmK .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-ucAb8uzcCa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucAb8uzcCa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAb8uzcCa .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-ucAb8uzcCa .container {
    padding: 0 22px;
  }
}
.cid-ucAb8uzcCa .row {
  justify-content: center;
}
.cid-ucAb8uzcCa .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucAb8uzcCa .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucAb8uzcCa .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucAb8uzcCa .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ucAb8uzcCa .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ucAb8uzcCa .title-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #ffffff;
}
.cid-ucAb8uzcCa .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucAb8uzcCa .mbr-section-title {
  color: #ffffff;
}
.cid-ucAb8uzcCa .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ucAb8uzcCa .mbr-section-title,
.cid-ucAb8uzcCa .icon-wrapper {
  text-align: right;
}
.cid-ucAb8uzcCa .mbr-section-title,
.cid-ucAb8uzcCa .icon-wrapper DIV {
  text-align: center;
}
.cid-ucAbfMXZeF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffea;
}
.cid-ucAbfMXZeF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAbfMXZeF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucAbfMXZeF h3,
.cid-ucAbfMXZeF a {
  font-weight: 900;
}
.cid-ucAbfMXZeF a {
  background: #64ff54;
}
.cid-ucAbfMXZeF .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ucAbfMXZeF .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucAbfMXZeF .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-ucAbfMXZeF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucAbfMXZeF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucAbfMXZeF .mbr-section-title {
  color: #000000;
}
.cid-ucAbKIO4Fr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucAbKIO4Fr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAbKIO4Fr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucAbKIO4Fr .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-ucAbKIO4Fr .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-ucAbKIO4Fr .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-ucAbKIO4Fr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-ucAbKIO4Fr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-ucAbKIO4Fr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-ucAbKIO4Fr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucAbKIO4Fr .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-ucAbKIO4Fr .items-container {
    flex-wrap: wrap;
  }
}
.cid-ucAbKIO4Fr .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-ucAbKIO4Fr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-ucAbKIO4Fr .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-ucAbKIO4Fr .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucAbKIO4Fr .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-ucAbKIO4Fr .mbr-section-subtitle {
  color: #feff98;
  margin-bottom: 1rem;
}
.cid-ucAbKIO4Fr .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #feff98;
}
.cid-ucAbKIO4Fr .list li {
  transition: 0.5s all;
}
.cid-ucAbKIO4Fr .list li:hover {
  opacity: 0.6;
}
.cid-ucAbKIO4Fr .item-wrap {
  margin-bottom: 12px;
}
.cid-ucAbKIO4Fr .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-ucAbKIO4Fr .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-ucAbKIO4Fr .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-ucAbKIO4Fr .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-ucAbKIO4Fr .copyright-col {
    text-align: center;
  }
}
.cid-ucAbKIO4Fr .copyright {
  color: #feff98;
  text-align: left;
}
.cid-ucAiHkmcNc {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucAiHkmcNc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAiHkmcNc .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-ucAiHkmcNc .container {
    padding: 0 30px;
  }
}
.cid-ucAiHkmcNc .row .card {
  justify-content: center;
}
.cid-ucAiHkmcNc .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ucAiHkmcNc .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-ucAiHkmcNc .image-wrapper {
    margin-top: 30px;
  }
}
.cid-ucAiHkmcNc .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-ucAiHkmcNc .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-ucAiHkmcNc .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-ucAiHkmcNc .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-ucAiHkmcNc .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-ucAiHkmcNc .mbr-section-title {
  color: #ffffff;
}
.cid-ucAiHkmcNc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ucAjjY9UFS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffea;
  position: relative;
  overflow: hidden;
}
.cid-ucAjjY9UFS::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #e1e6ff -10%, transparent 70%);
}
.cid-ucAjjY9UFS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAjjY9UFS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ucAjjY9UFS .container {
    padding: 0 16px;
  }
}
.cid-ucAjjY9UFS .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ucAjjY9UFS .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-ucAjjY9UFS .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucAjjY9UFS .mbr-section-title {
  color: #f1634f;
}
.cid-ucAjjY9UFS .mbr-text {
  color: #000000;
}
.cid-ucAitL2BdA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #232323;
}
.cid-ucAitL2BdA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAitL2BdA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucAitL2BdA h3,
.cid-ucAitL2BdA a {
  font-weight: 900;
}
.cid-ucAitL2BdA a {
  background: #64ff54;
}
.cid-ucAitL2BdA .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ucAitL2BdA .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucAitL2BdA .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-ucAitL2BdA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucAitL2BdA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucAitL2BdA .mbr-section-title {
  color: #fafafa;
}
.cid-ucAbKIO4Fr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucAbKIO4Fr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAbKIO4Fr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucAbKIO4Fr .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-ucAbKIO4Fr .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-ucAbKIO4Fr .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-ucAbKIO4Fr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-ucAbKIO4Fr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-ucAbKIO4Fr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-ucAbKIO4Fr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucAbKIO4Fr .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-ucAbKIO4Fr .items-container {
    flex-wrap: wrap;
  }
}
.cid-ucAbKIO4Fr .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-ucAbKIO4Fr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-ucAbKIO4Fr .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-ucAbKIO4Fr .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucAbKIO4Fr .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-ucAbKIO4Fr .mbr-section-subtitle {
  color: #feff98;
  margin-bottom: 1rem;
}
.cid-ucAbKIO4Fr .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #feff98;
}
.cid-ucAbKIO4Fr .list li {
  transition: 0.5s all;
}
.cid-ucAbKIO4Fr .list li:hover {
  opacity: 0.6;
}
.cid-ucAbKIO4Fr .item-wrap {
  margin-bottom: 12px;
}
.cid-ucAbKIO4Fr .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-ucAbKIO4Fr .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-ucAbKIO4Fr .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-ucAbKIO4Fr .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-ucAbKIO4Fr .copyright-col {
    text-align: center;
  }
}
.cid-ucAbKIO4Fr .copyright {
  color: #feff98;
  text-align: left;
}
.cid-ucFdnvrtHT {
  background-color: transparent;
}
.cid-ucFdnvrtHT .navbar-dropdown {
  background-color: #f3f4ef !important;
  padding: 0;
}
.cid-ucFdnvrtHT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f4ef !important;
  background: #f3f4ef;
}
.cid-ucFdnvrtHT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucFdnvrtHT .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-ucFdnvrtHT .menu_box .navbar.opened,
  .cid-ucFdnvrtHT .menu_box .navbar-collapse {
    background-color: #f3f4ef !important;
    transition: all 0s ease 0s;
  }
}
.cid-ucFdnvrtHT .navbar-dropdown {
  position: relative !important;
}
.cid-ucFdnvrtHT .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ucFdnvrtHT .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ucFdnvrtHT .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #e1eeec;
  }
  .cid-ucFdnvrtHT .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ucFdnvrtHT .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ucFdnvrtHT .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ucFdnvrtHT .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ucFdnvrtHT .offcanvas-body .mbr-text,
  .cid-ucFdnvrtHT .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-ucFdnvrtHT .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #71eac6;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ucFdnvrtHT ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ucFdnvrtHT .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFdnvrtHT .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-ucFdnvrtHT .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ucFdnvrtHT li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ucFdnvrtHT .lg_brand {
    margin: 0 1rem;
  }
  .cid-ucFdnvrtHT .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.cid-ucFdnvrtHT .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ucFdnvrtHT .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .nav-item {
    margin: 0 !important;
  }
}
.cid-ucFdnvrtHT .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-ucFdnvrtHT .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ucFdnvrtHT .nav-item .nav-link:hover,
.cid-ucFdnvrtHT .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.cid-ucFdnvrtHT .nav-item .nav-link:hover::before,
.cid-ucFdnvrtHT .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-ucFdnvrtHT .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ucFdnvrtHT .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFdnvrtHT .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);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ucFdnvrtHT .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ucFdnvrtHT .offcanvas_box {
    display: none;
  }
}
.cid-ucFdnvrtHT .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-ucFdnvrtHT .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ucFdnvrtHT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ucFdnvrtHT .container {
  display: flex;
  margin: auto;
}
.cid-ucFdnvrtHT .iconfont-wrapper {
  color: #282d15;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ucFdnvrtHT .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ucFdnvrtHT .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ucFdnvrtHT .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .navbar-nav {
    margin: 0;
  }
}
.cid-ucFdnvrtHT .dropdown-menu,
.cid-ucFdnvrtHT .navbar.opened {
  background-color: false !important;
}
.cid-ucFdnvrtHT .nav-item:focus,
.cid-ucFdnvrtHT .nav-link:focus {
  outline: none;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFdnvrtHT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucFdnvrtHT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucFdnvrtHT .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-ucFdnvrtHT .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-ucFdnvrtHT .navbar.opened {
  transition: all 0.3s;
}
.cid-ucFdnvrtHT .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ucFdnvrtHT .navbar .navbar-logo img {
  max-width: 64px;
  min-height: 64px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-ucFdnvrtHT .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-ucFdnvrtHT .navbar.collapsed {
  justify-content: center;
}
.cid-ucFdnvrtHT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucFdnvrtHT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucFdnvrtHT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucFdnvrtHT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucFdnvrtHT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucFdnvrtHT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ucFdnvrtHT .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ucFdnvrtHT .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-ucFdnvrtHT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucFdnvrtHT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ucFdnvrtHT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucFdnvrtHT .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ucFdnvrtHT .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ucFdnvrtHT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-ucFdnvrtHT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucFdnvrtHT .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ucFdnvrtHT .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucFdnvrtHT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucFdnvrtHT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucFdnvrtHT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucFdnvrtHT .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-ucFdnvrtHT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFdnvrtHT .dropdown-item.active,
.cid-ucFdnvrtHT .dropdown-item:active {
  background-color: transparent;
}
.cid-ucFdnvrtHT .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-ucFdnvrtHT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucFdnvrtHT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucFdnvrtHT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucFdnvrtHT ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-ucFdnvrtHT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucFdnvrtHT button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f4ef;
  background: #99f5fe;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #71eac6;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ucFdnvrtHT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucFdnvrtHT .navbar {
    height: 70px;
  }
  .cid-ucFdnvrtHT .navbar.opened {
    height: auto;
  }
  .cid-ucFdnvrtHT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucFdnvrtHT .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-ucFdnvrtHT .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-ucFdnvrtHT .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ucFdnvrtHT .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-ucFdnvrtHT .mbr-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.cid-ucFdnvrtHT .navbar-caption:hover {
  color: #bcd948;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ucFdnvrtHT .text_widget {
  margin-bottom: 32px;
}
.cid-ucFdnvrtHT .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-ucFdnvrtHT .text_widget a:hover,
.cid-ucFdnvrtHT .text_widget a:focus {
  opacity: .8;
}
.cid-ucFdnvrtHT .mbr-section-subtitle {
  color: #254b45;
  text-align: center;
}
.cid-ucFdnvrtHT .navbar-caption {
  color: #bee0d6;
}
.cid-ucFdnvrtHT .mbr-text {
  color: #254b45;
  text-align: center;
}
.cid-ucFdnvrtHT .mbr-section-subtitle,
.cid-ucFdnvrtHT .text_widget,
.cid-ucFdnvrtHT .mbr-section-btn {
  text-align: center;
}
.cid-ucFdnvrtHT a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ucAjLnm8gm {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucAjLnm8gm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAjLnm8gm .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-ucAjLnm8gm .container {
    padding: 0 30px;
  }
}
.cid-ucAjLnm8gm .row .card {
  justify-content: center;
}
.cid-ucAjLnm8gm .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ucAjLnm8gm .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-ucAjLnm8gm .image-wrapper {
    margin-top: 30px;
  }
}
.cid-ucAjLnm8gm .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-ucAjLnm8gm .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-ucAjLnm8gm .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-ucAjLnm8gm .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-ucAjLnm8gm .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-ucAjLnm8gm .mbr-section-title {
  color: #ffffff;
}
.cid-ucAjLnm8gm .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucAjLnPl8z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffea;
  position: relative;
  overflow: hidden;
}
.cid-ucAjLnPl8z::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #e1e6ff -10%, transparent 70%);
}
.cid-ucAjLnPl8z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAjLnPl8z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ucAjLnPl8z .container {
    padding: 0 16px;
  }
}
.cid-ucAjLnPl8z .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ucAjLnPl8z .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-ucAjLnPl8z .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucAjLnPl8z .mbr-section-title {
  color: #f1634f;
}
.cid-ucAjLnPl8z .mbr-text {
  color: #000000;
}
.cid-ucAjLpoxWy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #232323;
}
.cid-ucAjLpoxWy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAjLpoxWy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucAjLpoxWy h3,
.cid-ucAjLpoxWy a {
  font-weight: 900;
}
.cid-ucAjLpoxWy a {
  background: #64ff54;
}
.cid-ucAjLpoxWy .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ucAjLpoxWy .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucAjLpoxWy .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-ucAjLpoxWy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucAjLpoxWy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucAjLpoxWy .mbr-section-title {
  color: #e1e6ff;
}
.cid-ucAjLoIkFH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucAjLoIkFH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAjLoIkFH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucAjLoIkFH .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-ucAjLoIkFH .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-ucAjLoIkFH .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-ucAjLoIkFH .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-ucAjLoIkFH .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-ucAjLoIkFH .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-ucAjLoIkFH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucAjLoIkFH .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-ucAjLoIkFH .items-container {
    flex-wrap: wrap;
  }
}
.cid-ucAjLoIkFH .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-ucAjLoIkFH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-ucAjLoIkFH .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-ucAjLoIkFH .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucAjLoIkFH .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-ucAjLoIkFH .mbr-section-subtitle {
  color: #feff98;
  margin-bottom: 1rem;
}
.cid-ucAjLoIkFH .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #feff98;
}
.cid-ucAjLoIkFH .list li {
  transition: 0.5s all;
}
.cid-ucAjLoIkFH .list li:hover {
  opacity: 0.6;
}
.cid-ucAjLoIkFH .item-wrap {
  margin-bottom: 12px;
}
.cid-ucAjLoIkFH .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-ucAjLoIkFH .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-ucAjLoIkFH .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-ucAjLoIkFH .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-ucAjLoIkFH .copyright-col {
    text-align: center;
  }
}
.cid-ucAjLoIkFH .copyright {
  color: #feff98;
  text-align: left;
}
.cid-ucFdnvrtHT {
  background-color: transparent;
}
.cid-ucFdnvrtHT .navbar-dropdown {
  background-color: #f3f4ef !important;
  padding: 0;
}
.cid-ucFdnvrtHT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f4ef !important;
  background: #f3f4ef;
}
.cid-ucFdnvrtHT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucFdnvrtHT .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-ucFdnvrtHT .menu_box .navbar.opened,
  .cid-ucFdnvrtHT .menu_box .navbar-collapse {
    background-color: #f3f4ef !important;
    transition: all 0s ease 0s;
  }
}
.cid-ucFdnvrtHT .navbar-dropdown {
  position: relative !important;
}
.cid-ucFdnvrtHT .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ucFdnvrtHT .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ucFdnvrtHT .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #e1eeec;
  }
  .cid-ucFdnvrtHT .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ucFdnvrtHT .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ucFdnvrtHT .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ucFdnvrtHT .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ucFdnvrtHT .offcanvas-body .mbr-text,
  .cid-ucFdnvrtHT .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-ucFdnvrtHT .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #71eac6;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ucFdnvrtHT .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ucFdnvrtHT ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ucFdnvrtHT .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFdnvrtHT .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-ucFdnvrtHT .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ucFdnvrtHT li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ucFdnvrtHT .lg_brand {
    margin: 0 1rem;
  }
  .cid-ucFdnvrtHT .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.cid-ucFdnvrtHT .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ucFdnvrtHT .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .nav-item {
    margin: 0 !important;
  }
}
.cid-ucFdnvrtHT .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-ucFdnvrtHT .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ucFdnvrtHT .nav-item .nav-link:hover,
.cid-ucFdnvrtHT .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.cid-ucFdnvrtHT .nav-item .nav-link:hover::before,
.cid-ucFdnvrtHT .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-ucFdnvrtHT .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ucFdnvrtHT .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFdnvrtHT .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);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ucFdnvrtHT .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ucFdnvrtHT .offcanvas_box {
    display: none;
  }
}
.cid-ucFdnvrtHT .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-ucFdnvrtHT .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ucFdnvrtHT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ucFdnvrtHT .container {
  display: flex;
  margin: auto;
}
.cid-ucFdnvrtHT .iconfont-wrapper {
  color: #282d15;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ucFdnvrtHT .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ucFdnvrtHT .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ucFdnvrtHT .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .navbar-nav {
    margin: 0;
  }
}
.cid-ucFdnvrtHT .dropdown-menu,
.cid-ucFdnvrtHT .navbar.opened {
  background-color: false !important;
}
.cid-ucFdnvrtHT .nav-item:focus,
.cid-ucFdnvrtHT .nav-link:focus {
  outline: none;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucFdnvrtHT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFdnvrtHT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucFdnvrtHT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucFdnvrtHT .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-ucFdnvrtHT .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-ucFdnvrtHT .navbar.opened {
  transition: all 0.3s;
}
.cid-ucFdnvrtHT .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ucFdnvrtHT .navbar .navbar-logo img {
  max-width: 64px;
  min-height: 64px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-ucFdnvrtHT .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-ucFdnvrtHT .navbar.collapsed {
  justify-content: center;
}
.cid-ucFdnvrtHT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucFdnvrtHT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucFdnvrtHT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucFdnvrtHT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucFdnvrtHT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucFdnvrtHT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ucFdnvrtHT .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucFdnvrtHT .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ucFdnvrtHT .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-ucFdnvrtHT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucFdnvrtHT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ucFdnvrtHT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucFdnvrtHT .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ucFdnvrtHT .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ucFdnvrtHT .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ucFdnvrtHT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-ucFdnvrtHT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucFdnvrtHT .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ucFdnvrtHT .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucFdnvrtHT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucFdnvrtHT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucFdnvrtHT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucFdnvrtHT .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-ucFdnvrtHT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFdnvrtHT .dropdown-item.active,
.cid-ucFdnvrtHT .dropdown-item:active {
  background-color: transparent;
}
.cid-ucFdnvrtHT .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-ucFdnvrtHT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucFdnvrtHT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucFdnvrtHT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucFdnvrtHT ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-ucFdnvrtHT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucFdnvrtHT button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f4ef;
  background: #99f5fe;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #71eac6;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFdnvrtHT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucFdnvrtHT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFdnvrtHT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ucFdnvrtHT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucFdnvrtHT .navbar {
    height: 70px;
  }
  .cid-ucFdnvrtHT .navbar.opened {
    height: auto;
  }
  .cid-ucFdnvrtHT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucFdnvrtHT .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-ucFdnvrtHT .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-ucFdnvrtHT .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ucFdnvrtHT .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-ucFdnvrtHT .mbr-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.cid-ucFdnvrtHT .navbar-caption:hover {
  color: #bcd948;
}
@media (min-width: 992px) {
  .cid-ucFdnvrtHT .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ucFdnvrtHT .text_widget {
  margin-bottom: 32px;
}
.cid-ucFdnvrtHT .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-ucFdnvrtHT .text_widget a:hover,
.cid-ucFdnvrtHT .text_widget a:focus {
  opacity: .8;
}
.cid-ucFdnvrtHT .mbr-section-subtitle {
  color: #254b45;
  text-align: center;
}
.cid-ucFdnvrtHT .navbar-caption {
  color: #bee0d6;
}
.cid-ucFdnvrtHT .mbr-text {
  color: #254b45;
  text-align: center;
}
.cid-ucFdnvrtHT .mbr-section-subtitle,
.cid-ucFdnvrtHT .text_widget,
.cid-ucFdnvrtHT .mbr-section-btn {
  text-align: center;
}
.cid-ucFdnvrtHT a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ucFoGfkbGv {
  background-color: transparent;
}
.cid-ucFoGfkbGv .navbar-dropdown {
  background-color: #f3f4ef !important;
  padding: 0;
}
.cid-ucFoGfkbGv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f4ef !important;
  background: #f3f4ef;
}
.cid-ucFoGfkbGv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucFoGfkbGv .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ucFoGfkbGv .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-ucFoGfkbGv .menu_box .navbar.opened,
  .cid-ucFoGfkbGv .menu_box .navbar-collapse {
    background-color: #f3f4ef !important;
    transition: all 0s ease 0s;
  }
}
.cid-ucFoGfkbGv .navbar-dropdown {
  position: relative !important;
}
.cid-ucFoGfkbGv .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-ucFoGfkbGv .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ucFoGfkbGv .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ucFoGfkbGv .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ucFoGfkbGv .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ucFoGfkbGv .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #e1eeec;
  }
  .cid-ucFoGfkbGv .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ucFoGfkbGv .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ucFoGfkbGv .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ucFoGfkbGv .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ucFoGfkbGv .offcanvas-body .mbr-text,
  .cid-ucFoGfkbGv .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-ucFoGfkbGv .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-ucFoGfkbGv .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ucFoGfkbGv .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #71eac6;
  }
  .cid-ucFoGfkbGv .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ucFoGfkbGv .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ucFoGfkbGv .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ucFoGfkbGv .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ucFoGfkbGv ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ucFoGfkbGv .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFoGfkbGv .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-ucFoGfkbGv .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ucFoGfkbGv li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ucFoGfkbGv .lg_brand {
    margin: 0 1rem;
  }
  .cid-ucFoGfkbGv .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.cid-ucFoGfkbGv .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ucFoGfkbGv .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ucFoGfkbGv .nav-item {
    margin: 0 !important;
  }
}
.cid-ucFoGfkbGv .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-ucFoGfkbGv .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ucFoGfkbGv .nav-item .nav-link:hover,
.cid-ucFoGfkbGv .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.cid-ucFoGfkbGv .nav-item .nav-link:hover::before,
.cid-ucFoGfkbGv .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-ucFoGfkbGv .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ucFoGfkbGv .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ucFoGfkbGv .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ucFoGfkbGv .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFoGfkbGv .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);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ucFoGfkbGv .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ucFoGfkbGv .offcanvas_box {
    display: none;
  }
}
.cid-ucFoGfkbGv .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-ucFoGfkbGv .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ucFoGfkbGv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ucFoGfkbGv .container {
  display: flex;
  margin: auto;
}
.cid-ucFoGfkbGv .iconfont-wrapper {
  color: #282d15;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ucFoGfkbGv .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ucFoGfkbGv .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ucFoGfkbGv .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ucFoGfkbGv .navbar-nav {
    margin: 0;
  }
}
.cid-ucFoGfkbGv .dropdown-menu,
.cid-ucFoGfkbGv .navbar.opened {
  background-color: false !important;
}
.cid-ucFoGfkbGv .nav-item:focus,
.cid-ucFoGfkbGv .nav-link:focus {
  outline: none;
}
.cid-ucFoGfkbGv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucFoGfkbGv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucFoGfkbGv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucFoGfkbGv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFoGfkbGv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucFoGfkbGv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucFoGfkbGv .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-ucFoGfkbGv .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-ucFoGfkbGv .navbar.opened {
  transition: all 0.3s;
}
.cid-ucFoGfkbGv .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ucFoGfkbGv .navbar .navbar-logo img {
  max-width: 64px;
  min-height: 64px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-ucFoGfkbGv .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-ucFoGfkbGv .navbar.collapsed {
  justify-content: center;
}
.cid-ucFoGfkbGv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucFoGfkbGv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucFoGfkbGv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucFoGfkbGv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucFoGfkbGv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucFoGfkbGv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ucFoGfkbGv .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucFoGfkbGv .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ucFoGfkbGv .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-ucFoGfkbGv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucFoGfkbGv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucFoGfkbGv .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ucFoGfkbGv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucFoGfkbGv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ucFoGfkbGv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucFoGfkbGv .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ucFoGfkbGv .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ucFoGfkbGv .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ucFoGfkbGv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-ucFoGfkbGv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucFoGfkbGv .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ucFoGfkbGv .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucFoGfkbGv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucFoGfkbGv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucFoGfkbGv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucFoGfkbGv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-ucFoGfkbGv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFoGfkbGv .dropdown-item.active,
.cid-ucFoGfkbGv .dropdown-item:active {
  background-color: transparent;
}
.cid-ucFoGfkbGv .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-ucFoGfkbGv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucFoGfkbGv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucFoGfkbGv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucFoGfkbGv ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-ucFoGfkbGv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucFoGfkbGv button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f4ef;
  background: #99f5fe;
}
.cid-ucFoGfkbGv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #71eac6;
}
.cid-ucFoGfkbGv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucFoGfkbGv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFoGfkbGv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFoGfkbGv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucFoGfkbGv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFoGfkbGv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucFoGfkbGv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucFoGfkbGv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFoGfkbGv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ucFoGfkbGv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucFoGfkbGv .navbar {
    height: 70px;
  }
  .cid-ucFoGfkbGv .navbar.opened {
    height: auto;
  }
  .cid-ucFoGfkbGv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucFoGfkbGv .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-ucFoGfkbGv .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-ucFoGfkbGv .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ucFoGfkbGv .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-ucFoGfkbGv .mbr-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.cid-ucFoGfkbGv .navbar-caption:hover {
  color: #bcd948;
}
@media (min-width: 992px) {
  .cid-ucFoGfkbGv .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ucFoGfkbGv .text_widget {
  margin-bottom: 32px;
}
.cid-ucFoGfkbGv .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-ucFoGfkbGv .text_widget a:hover,
.cid-ucFoGfkbGv .text_widget a:focus {
  opacity: .8;
}
.cid-ucFoGfkbGv .mbr-section-subtitle {
  color: #254b45;
  text-align: center;
}
.cid-ucFoGfkbGv .navbar-caption {
  color: #bee0d6;
}
.cid-ucFoGfkbGv .mbr-text {
  color: #254b45;
  text-align: center;
}
.cid-ucFoGfkbGv .mbr-section-subtitle,
.cid-ucFoGfkbGv .text_widget,
.cid-ucFoGfkbGv .mbr-section-btn {
  text-align: center;
}
.cid-ucFoGfkbGv a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ucFoGh1KZF {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #19303d;
}
.cid-ucFoGh1KZF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoGh1KZF .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-ucFoGh1KZF .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-ucFoGh1KZF img {
  border-radius: 1rem;
}
.cid-ucFoGh1KZF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoGh1KZF .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucFoGh1KZF .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucFoGh1KZF .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ucFoGh1KZF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFoGh1KZF .mbr-section-subtitle,
.cid-ucFoGh1KZF .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-ucFoGh1KZF .mbr-text,
.cid-ucFoGh1KZF .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-ucFqvQwvEM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ucFqvQwvEM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFqvQwvEM .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-ucFqvQwvEM .container {
    padding: 0 15px;
  }
}
.cid-ucFqvQwvEM .row {
  justify-content: center;
}
.cid-ucFqvQwvEM .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucFqvQwvEM .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucFqvQwvEM .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-ucFqvQwvEM .subtitle-wrapper {
    padding: 0;
  }
}
.cid-ucFqvQwvEM .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucFqvQwvEM .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-ucFqvQwvEM .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-ucFqvQwvEM .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-ucFqvQwvEM .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-ucFqvQwvEM .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucFqvQwvEM .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #feff98;
  color: #171827;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-ucFqvQwvEM .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-ucFqvQwvEM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFqvQwvEM .mbr-section-subtitle {
  color: #feff98;
}
.cid-ucFqvQwvEM .list {
  color: #ffffff;
}
.cid-ucFoGiYSA9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #19303d;
}
.cid-ucFoGiYSA9 .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-ucFoGiYSA9 .mbr-section-title {
  color: #fafafa;
}
.cid-ucFoGiYSA9 .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-ucFoGiYSA9 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucFoGkbXxe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffea;
  position: relative;
  overflow: hidden;
}
.cid-ucFoGkbXxe .row {
  justify-content: center;
}
.cid-ucFoGkbXxe .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-ucFoGkbXxe .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-ucFoGkbXxe .title-container {
    margin-bottom: 56px;
  }
}
.cid-ucFoGkbXxe .mbr-section-title {
  color: #6148ff;
}
.cid-ucFoGkbXxe .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-ucFoGkbXxe .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-ucFoGkbXxe .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-ucFoGkbXxe .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ucFoGkbXxe .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-ucFoGkbXxe .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-ucFoGkbXxe .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-ucFoGkbXxe .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-ucFoGkbXxe .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-ucFoGkbXxe .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-ucFoGkbXxe .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-ucFoGkbXxe .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-ucFoGkbXxe .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-ucFoGkbXxe .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-ucFoGkbXxe .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-ucFoGkbXxe .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-ucFoGkbXxe .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-ucFoGkbXxe .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-ucFoGkbXxe .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ucFoGkbXxe .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucFoGkbXxe .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ucFoGkbXxe .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-ucFoGkbXxe .circle-blur {
  position: absolute;
  top: 5%;
  left: 5%;
  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%, #ff3399 50%, #99f5fe 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-ucFoGlwUF7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoGlwUF7 .row {
  align-items: center;
  width: 100%;
}
.cid-ucFoGlwUF7 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-ucFoGlwUF7 .mbr-section-title {
  color: #000000;
}
.cid-ucFoGlwUF7 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucFoGlwUF7 .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucFoGlwUF7 .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-ucFoGlwUF7 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucFoGlwUF7 .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-ucFoGlwUF7 .text-container {
    padding: 24px;
  }
}
.cid-ucFoGlwUF7 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucFoGlwUF7 .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-ucFoGlwUF7 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #feff98;
}
.cid-ucFoGlwUF7 .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ucFoGlwUF7 .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-ucFoGmKqFx {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffea;
}
.cid-ucFoGmKqFx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoGmKqFx .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ucFoGmKqFx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoGmKqFx h1 {
  max-width: 800px;
}
.cid-ucFoGmKqFx p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-ucFoGmKqFx .btn:hover {
  transform: scale(1.1);
  background: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #ff2100 !important;
}
.cid-ucFoGmKqFx .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-ucFoGmKqFx .btn div {
  overflow: hidden;
}
.cid-ucFoGmKqFx .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-ucFoGmKqFx {
    align-items: center;
  }
  .cid-ucFoGmKqFx .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucFoGmKqFx .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucFoGmKqFx {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ucFoGmKqFx .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ucFoGmKqFx .content-wrap {
    width: 100%;
  }
}
.cid-ucFoGmKqFx .mbr-section-subtitle,
.cid-ucFoGmKqFx .line {
  color: #291f1e;
}
.cid-ucFoGmKqFx .mbr-text,
.cid-ucFoGmKqFx .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ucFoGmKqFx .mbr-section-title {
  color: #291f1e;
  text-align: center;
}
.cid-ucFoGo2T4b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoGo2T4b .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoGo2T4b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoGo2T4b .container {
  width: 100%;
  max-width: 100%;
}
.cid-ucFoGo2T4b .col-title {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1rem;
}
.cid-ucFoGo2T4b .mbr-section-title {
  color: #1B1F0A;
  margin-bottom: 0;
}
.cid-ucFoGo2T4b .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 0;
  opacity: 0.8;
  margin-top: 1rem;
}
.cid-ucFoGo2T4b .item-col {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  width: 100%;
  border-top: 4px solid #1b1f0a;
}
.cid-ucFoGo2T4b .item-overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #bbbbbb;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all;
}
.cid-ucFoGo2T4b .item {
  display: flex;
  justify-content: center;
  width: 100%;
  border-bottom: 4px solid #1b1f0a;
  position: relative;
}
.cid-ucFoGo2T4b .item:hover .item-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-ucFoGo2T4b .item-wrap {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 0;
}
.cid-ucFoGo2T4b .mbr-text {
  position: relative;
  z-index: 2;
  color: #fafafa;
  margin-bottom: 0;
  width: 100%;
}
.cid-ucFoGo2T4b .mbr-text a {
  width: 100%;
}
.cid-ucFoGo2T4b .mbr-section-title,
.cid-ucFoGo2T4b .mbr-section-btn {
  color: #fafafa;
}
.cid-ucFoGp5Rd6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffea;
}
.cid-ucFoGp5Rd6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoGp5Rd6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoGp5Rd6 .row {
  flex-direction: row-reverse;
}
.cid-ucFoGp5Rd6 .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-ucFoGp5Rd6 .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.cid-ucFoGp5Rd6 .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucFoGp5Rd6 .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-ucFoGp5Rd6 .img-container {
  display: flex;
  padding: 4.75rem 4rem;
  background-color: #19303d;
}
.cid-ucFoGp5Rd6 .img-container img {
  max-width: 100%;
}
.cid-ucFoGp5Rd6 .col-toggle {
  width: 50%;
  padding-right: 4rem !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4rem !important;
  padding-right: 0 !important;
}
@media (max-width: 991px) {
  .cid-ucFoGp5Rd6 .col-toggle {
    padding-right: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-ucFoGp5Rd6 .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-ucFoGp5Rd6 .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucFoGp5Rd6 .section-head {
  margin-bottom: 0;
}
.cid-ucFoGp5Rd6 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  text-align: left;
}
.cid-ucFoGp5Rd6 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-ucFoGp5Rd6 .toggle-panel {
  margin-top: 40px;
}
.cid-ucFoGp5Rd6 .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-ucFoGp5Rd6 .card:hover {
  margin-left: 1rem;
}
.cid-ucFoGp5Rd6 .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-ucFoGp5Rd6 .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-ucFoGp5Rd6 .card-header .iconfont-wrapper .mbr-iconfont {
  color: #ddff55;
  font-size: 32px;
}
.cid-ucFoGp5Rd6 .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #000000;
  transition: .3s all;
}
.cid-ucFoGp5Rd6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-ucFoGp5Rd6 .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-ucFoGp5Rd6 .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-ucFoGp5Rd6 .panel-title-edit {
  color: #000000;
  margin-bottom: 0;
}
.cid-ucFoGp5Rd6 .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-ucFoGqvCYV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoGqvCYV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoGqvCYV .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-ucFoGqvCYV .container {
    padding: 0 20px;
  }
}
.cid-ucFoGqvCYV .row {
  margin: 0;
}
.cid-ucFoGqvCYV .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucFoGqvCYV .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucFoGqvCYV .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucFoGqvCYV .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucFoGqvCYV .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucFoGqvCYV .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucFoGqvCYV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFoGrxyBk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffea;
  flex-direction: column;
  justify-content: center;
}
.cid-ucFoGrxyBk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoGrxyBk .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-ucFoGrxyBk .container {
    padding: 0 16px;
  }
}
.cid-ucFoGrxyBk .row {
  justify-content: center;
}
.cid-ucFoGrxyBk .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ucFoGrxyBk .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ucFoGrxyBk .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucFoGrxyBk .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #bcd948 !important;
  color: #56f1ff !important;
  border-color: #bcd948 !important;
}
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ff2100 !important;
  color: #56f1ff !important;
}
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #bcd948 !important;
  color: #56f1ff !important;
}
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #64ff54 !important;
  color: #56f1ff !important;
}
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #56f1ff !important;
  color: #bcd948 !important;
  border-color: #56f1ff !important;
}
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #fdff54 !important;
  color: #56f1ff !important;
}
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #fcff1e !important;
  color: #56f1ff !important;
}
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-ucFoGrxyBk .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-ucFoGrxyBk .mbr-desc {
  color: #706cff;
}
.cid-ucFoGrxyBk .mbr-section-title {
  color: #000000;
}
.cid-ucFoGrxyBk .mbr-text {
  color: #000000;
}
.cid-ucFoGrxyBk .mbr-section-btn {
  text-align: center;
}
.cid-ucFoGsBt2l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoGsBt2l .row {
  align-items: center;
  width: 100%;
}
.cid-ucFoGsBt2l .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-ucFoGsBt2l .mbr-section-title {
  color: #fcff1b;
}
.cid-ucFoGsBt2l .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucFoGsBt2l .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucFoGsBt2l .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-ucFoGsBt2l .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucFoGsBt2l .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #fcff1e;
}
@media (max-width: 991px) {
  .cid-ucFoGsBt2l .text-container {
    padding: 24px;
  }
}
.cid-ucFoGsBt2l .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucFoGsBt2l .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-ucFoGsBt2l .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #1eecff;
}
.cid-ucFoGsBt2l .card-title {
  width: 100%;
  color: #fcff1b;
  margin-bottom: 0;
}
.cid-ucFoGsBt2l .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-ucFoGu7CM0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffea;
}
.cid-ucFoGu7CM0 .row {
  align-items: center;
  width: 100%;
}
.cid-ucFoGu7CM0 .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #19303d;
}
@media (max-width: 767px) {
  .cid-ucFoGu7CM0 .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-ucFoGu7CM0 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucFoGu7CM0 .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-ucFoGu7CM0 .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-ucFoGu7CM0 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucFoGu7CM0 .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #ffffea;
}
.cid-ucFoGu7CM0 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-ucFoGu7CM0 .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-ucFoGu7CM0 .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-ucFoGu7CM0 .btn-container {
  width: 100%;
}
.cid-ucFoGu7CM0 .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-ucFoGu7CM0 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-ucFoGu7CM0 .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-ucFoGu7CM0 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-ucFoGu7CM0 .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-ucFoGu7CM0 .mbr-section-title,
.cid-ucFoGu7CM0 .mbr-section-btn {
  color: #ffffea;
}
.cid-ucFoGv86i6 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #19303d;
}
.cid-ucFoGv86i6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoGv86i6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoGv86i6 .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-ucFoGv86i6 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucFoGv86i6 .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-ucFoGv86i6 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucFoGv86i6 .container {
    padding: 0 14px;
  }
}
.cid-ucFoGv86i6 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  margin-bottom: 40px;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-ucFoGv86i6 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ucFoGv86i6 .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-ucFoGv86i6 .content-wrapper .mbr-section-btn {
  margin: 10px 25px;
}
.cid-ucFoGv86i6 .mbr-text,
.cid-ucFoGv86i6 .text-wrapper {
  color: #ffffea;
  text-align: center;
}
.cid-ucFoGv86i6 .mbr-section-title {
  color: #f1f1f1;
}
.cid-ucFoGv86i6 .mbr-section-title,
.cid-ucFoGv86i6 .mbr-section-btn {
  text-align: center;
  color: #ffffea;
}
.cid-ucFoGwbI56 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffea;
}
.cid-ucFoGwbI56 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoGwbI56 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoGwbI56 .col-img {
  display: flex;
  flex-direction: column;
}
.cid-ucFoGwbI56 .mbr-description {
  color: #f3f4ef;
}
.cid-ucFoGwbI56 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-ucFoGwbI56 .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-ucFoGxrYK9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoGxrYK9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoGxrYK9 .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-ucFoGxrYK9 .container {
    padding: 0 22px;
  }
}
.cid-ucFoGxrYK9 .row {
  justify-content: center;
}
.cid-ucFoGxrYK9 .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucFoGxrYK9 .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucFoGxrYK9 .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucFoGxrYK9 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ucFoGxrYK9 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ucFoGxrYK9 .title-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #ffffff;
}
.cid-ucFoGxrYK9 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucFoGxrYK9 .mbr-section-title {
  color: #ffffff;
}
.cid-ucFoGxrYK9 .mbr-text {
  color: #ffffea;
  text-align: left;
}
.cid-ucFoGxrYK9 .mbr-section-title,
.cid-ucFoGxrYK9 .icon-wrapper {
  text-align: right;
  color: #ffffea;
}
.cid-ucFoGxrYK9 .mbr-section-title,
.cid-ucFoGxrYK9 .icon-wrapper DIV {
  text-align: center;
}
.cid-ucFKHqSGhZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFKHqSGhZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFKHqSGhZ .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-ucFKHqSGhZ .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucFKHqSGhZ .container {
    padding: 0 12px;
  }
}
.cid-ucFKHqSGhZ .row {
  justify-content: center;
}
.cid-ucFKHqSGhZ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucFKHqSGhZ .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ucFKHqSGhZ .panel-group .card {
  border-radius: 50px;
  border: 3px solid #fcff1e;
  box-shadow: 4px 4px #fcff1e;
  background-color: #19303d;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucFKHqSGhZ .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-ucFKHqSGhZ .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-ucFKHqSGhZ .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucFKHqSGhZ .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ucFKHqSGhZ .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #fcff1e;
  transition: all 0.3s ease-in-out;
}
.cid-ucFKHqSGhZ .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-ucFKHqSGhZ .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-ucFKHqSGhZ .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-ucFKHqSGhZ .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ucFKHqSGhZ .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-ucFKHqSGhZ .panel-title-edit {
  color: #f3f4ef;
}
.cid-ucFKHqSGhZ .panel-text {
  color: #f3f4ef;
}
.cid-ucFoGyMs1T {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffea;
}
.cid-ucFoGyMs1T .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoGyMs1T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoGyMs1T h3,
.cid-ucFoGyMs1T a {
  font-weight: 900;
}
.cid-ucFoGyMs1T a {
  background: #64ff54;
}
.cid-ucFoGyMs1T .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ucFoGyMs1T .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucFoGyMs1T .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-ucFoGyMs1T .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucFoGyMs1T .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucFoGyMs1T .mbr-section-title {
  color: #000000;
}
.cid-ucFoGzWD8E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoGzWD8E .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoGzWD8E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoGzWD8E .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-ucFoGzWD8E .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-ucFoGzWD8E .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-ucFoGzWD8E .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-ucFoGzWD8E .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-ucFoGzWD8E .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-ucFoGzWD8E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFoGzWD8E .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-ucFoGzWD8E .items-container {
    flex-wrap: wrap;
  }
}
.cid-ucFoGzWD8E .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-ucFoGzWD8E .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-ucFoGzWD8E .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-ucFoGzWD8E .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucFoGzWD8E .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-ucFoGzWD8E .mbr-section-subtitle {
  color: #feff98;
  margin-bottom: 1rem;
}
.cid-ucFoGzWD8E .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #feff98;
}
.cid-ucFoGzWD8E .list li {
  transition: 0.5s all;
}
.cid-ucFoGzWD8E .list li:hover {
  opacity: 0.6;
}
.cid-ucFoGzWD8E .item-wrap {
  margin-bottom: 12px;
}
.cid-ucFoGzWD8E .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-ucFoGzWD8E .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-ucFoGzWD8E .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-ucFoGzWD8E .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-ucFoGzWD8E .copyright-col {
    text-align: center;
  }
}
.cid-ucFoGzWD8E .copyright {
  color: #feff98;
  text-align: left;
}
.cid-ucFoEyLpLG {
  background-color: transparent;
}
.cid-ucFoEyLpLG .navbar-dropdown {
  background-color: #f3f4ef !important;
  padding: 0;
}
.cid-ucFoEyLpLG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f4ef !important;
  background: #f3f4ef;
}
.cid-ucFoEyLpLG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucFoEyLpLG .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ucFoEyLpLG .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-ucFoEyLpLG .menu_box .navbar.opened,
  .cid-ucFoEyLpLG .menu_box .navbar-collapse {
    background-color: #f3f4ef !important;
    transition: all 0s ease 0s;
  }
}
.cid-ucFoEyLpLG .navbar-dropdown {
  position: relative !important;
}
.cid-ucFoEyLpLG .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-ucFoEyLpLG .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ucFoEyLpLG .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ucFoEyLpLG .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ucFoEyLpLG .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ucFoEyLpLG .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #e1eeec;
  }
  .cid-ucFoEyLpLG .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ucFoEyLpLG .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ucFoEyLpLG .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ucFoEyLpLG .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ucFoEyLpLG .offcanvas-body .mbr-text,
  .cid-ucFoEyLpLG .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-ucFoEyLpLG .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-ucFoEyLpLG .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ucFoEyLpLG .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #71eac6;
  }
  .cid-ucFoEyLpLG .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ucFoEyLpLG .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ucFoEyLpLG .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ucFoEyLpLG .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ucFoEyLpLG ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ucFoEyLpLG .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFoEyLpLG .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-ucFoEyLpLG .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ucFoEyLpLG li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ucFoEyLpLG .lg_brand {
    margin: 0 1rem;
  }
  .cid-ucFoEyLpLG .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.cid-ucFoEyLpLG .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ucFoEyLpLG .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ucFoEyLpLG .nav-item {
    margin: 0 !important;
  }
}
.cid-ucFoEyLpLG .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-ucFoEyLpLG .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ucFoEyLpLG .nav-item .nav-link:hover,
.cid-ucFoEyLpLG .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.cid-ucFoEyLpLG .nav-item .nav-link:hover::before,
.cid-ucFoEyLpLG .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-ucFoEyLpLG .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ucFoEyLpLG .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ucFoEyLpLG .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ucFoEyLpLG .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFoEyLpLG .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);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ucFoEyLpLG .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ucFoEyLpLG .offcanvas_box {
    display: none;
  }
}
.cid-ucFoEyLpLG .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-ucFoEyLpLG .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ucFoEyLpLG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ucFoEyLpLG .container {
  display: flex;
  margin: auto;
}
.cid-ucFoEyLpLG .iconfont-wrapper {
  color: #282d15;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ucFoEyLpLG .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ucFoEyLpLG .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ucFoEyLpLG .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ucFoEyLpLG .navbar-nav {
    margin: 0;
  }
}
.cid-ucFoEyLpLG .dropdown-menu,
.cid-ucFoEyLpLG .navbar.opened {
  background-color: false !important;
}
.cid-ucFoEyLpLG .nav-item:focus,
.cid-ucFoEyLpLG .nav-link:focus {
  outline: none;
}
.cid-ucFoEyLpLG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucFoEyLpLG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucFoEyLpLG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucFoEyLpLG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFoEyLpLG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucFoEyLpLG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucFoEyLpLG .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-ucFoEyLpLG .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-ucFoEyLpLG .navbar.opened {
  transition: all 0.3s;
}
.cid-ucFoEyLpLG .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ucFoEyLpLG .navbar .navbar-logo img {
  max-width: 64px;
  min-height: 64px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-ucFoEyLpLG .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-ucFoEyLpLG .navbar.collapsed {
  justify-content: center;
}
.cid-ucFoEyLpLG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucFoEyLpLG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucFoEyLpLG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucFoEyLpLG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucFoEyLpLG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucFoEyLpLG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ucFoEyLpLG .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucFoEyLpLG .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ucFoEyLpLG .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-ucFoEyLpLG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucFoEyLpLG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucFoEyLpLG .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ucFoEyLpLG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucFoEyLpLG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ucFoEyLpLG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucFoEyLpLG .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ucFoEyLpLG .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ucFoEyLpLG .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ucFoEyLpLG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-ucFoEyLpLG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucFoEyLpLG .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ucFoEyLpLG .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucFoEyLpLG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucFoEyLpLG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucFoEyLpLG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucFoEyLpLG .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-ucFoEyLpLG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFoEyLpLG .dropdown-item.active,
.cid-ucFoEyLpLG .dropdown-item:active {
  background-color: transparent;
}
.cid-ucFoEyLpLG .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-ucFoEyLpLG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucFoEyLpLG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucFoEyLpLG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucFoEyLpLG ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-ucFoEyLpLG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucFoEyLpLG button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f4ef;
  background: #99f5fe;
}
.cid-ucFoEyLpLG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #71eac6;
}
.cid-ucFoEyLpLG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucFoEyLpLG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFoEyLpLG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFoEyLpLG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucFoEyLpLG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFoEyLpLG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucFoEyLpLG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucFoEyLpLG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFoEyLpLG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ucFoEyLpLG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucFoEyLpLG .navbar {
    height: 70px;
  }
  .cid-ucFoEyLpLG .navbar.opened {
    height: auto;
  }
  .cid-ucFoEyLpLG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucFoEyLpLG .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-ucFoEyLpLG .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-ucFoEyLpLG .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ucFoEyLpLG .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-ucFoEyLpLG .mbr-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.cid-ucFoEyLpLG .navbar-caption:hover {
  color: #bcd948;
}
@media (min-width: 992px) {
  .cid-ucFoEyLpLG .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ucFoEyLpLG .text_widget {
  margin-bottom: 32px;
}
.cid-ucFoEyLpLG .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-ucFoEyLpLG .text_widget a:hover,
.cid-ucFoEyLpLG .text_widget a:focus {
  opacity: .8;
}
.cid-ucFoEyLpLG .mbr-section-subtitle {
  color: #254b45;
  text-align: center;
}
.cid-ucFoEyLpLG .navbar-caption {
  color: #bee0d6;
}
.cid-ucFoEyLpLG .mbr-text {
  color: #254b45;
  text-align: center;
}
.cid-ucFoEyLpLG .mbr-section-subtitle,
.cid-ucFoEyLpLG .text_widget,
.cid-ucFoEyLpLG .mbr-section-btn {
  text-align: center;
}
.cid-ucFoEyLpLG a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ucFoEAkCvq {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #19303d;
}
.cid-ucFoEAkCvq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoEAkCvq .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-ucFoEAkCvq .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-ucFoEAkCvq img {
  border-radius: 1rem;
}
.cid-ucFoEAkCvq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoEAkCvq .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucFoEAkCvq .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucFoEAkCvq .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ucFoEAkCvq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFoEAkCvq .mbr-section-subtitle,
.cid-ucFoEAkCvq .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-ucFoEAkCvq .mbr-text,
.cid-ucFoEAkCvq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-ucFC41kGNg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1-3.jpg");
}
.cid-ucFC41kGNg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFC41kGNg .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-ucFC41kGNg .container {
    padding: 0 15px;
  }
}
.cid-ucFC41kGNg .row {
  justify-content: center;
}
.cid-ucFC41kGNg .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucFC41kGNg .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucFC41kGNg .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-ucFC41kGNg .subtitle-wrapper {
    padding: 0;
  }
}
.cid-ucFC41kGNg .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucFC41kGNg .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-ucFC41kGNg .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-ucFC41kGNg .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-ucFC41kGNg .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-ucFC41kGNg .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucFC41kGNg .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #feff98;
  color: #171827;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-ucFC41kGNg .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-ucFC41kGNg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFC41kGNg .mbr-section-subtitle {
  color: #feff98;
}
.cid-ucFC41kGNg .list {
  color: #ffffff;
}
.cid-ucFoECD0FI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #19303d;
}
.cid-ucFoECD0FI .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-ucFoECD0FI .mbr-section-title {
  color: #fafafa;
}
.cid-ucFoECD0FI .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-ucFoECD0FI .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucFoEDFKrn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffea;
  position: relative;
  overflow: hidden;
}
.cid-ucFoEDFKrn .row {
  justify-content: center;
}
.cid-ucFoEDFKrn .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-ucFoEDFKrn .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-ucFoEDFKrn .title-container {
    margin-bottom: 56px;
  }
}
.cid-ucFoEDFKrn .mbr-section-title {
  color: #6148ff;
}
.cid-ucFoEDFKrn .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-ucFoEDFKrn .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-ucFoEDFKrn .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-ucFoEDFKrn .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ucFoEDFKrn .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-ucFoEDFKrn .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-ucFoEDFKrn .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-ucFoEDFKrn .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-ucFoEDFKrn .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-ucFoEDFKrn .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-ucFoEDFKrn .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-ucFoEDFKrn .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-ucFoEDFKrn .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-ucFoEDFKrn .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-ucFoEDFKrn .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-ucFoEDFKrn .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-ucFoEDFKrn .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-ucFoEDFKrn .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-ucFoEDFKrn .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ucFoEDFKrn .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucFoEDFKrn .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ucFoEDFKrn .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-ucFoEDFKrn .circle-blur {
  position: absolute;
  top: 5%;
  left: 5%;
  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%, #ff3399 50%, #99f5fe 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-ucFoEEUJ7e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoEEUJ7e .row {
  align-items: center;
  width: 100%;
}
.cid-ucFoEEUJ7e .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-ucFoEEUJ7e .mbr-section-title {
  color: #000000;
}
.cid-ucFoEEUJ7e .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucFoEEUJ7e .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucFoEEUJ7e .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-ucFoEEUJ7e .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucFoEEUJ7e .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-ucFoEEUJ7e .text-container {
    padding: 24px;
  }
}
.cid-ucFoEEUJ7e .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucFoEEUJ7e .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-ucFoEEUJ7e .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #feff98;
}
.cid-ucFoEEUJ7e .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ucFoEEUJ7e .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-ucFoEGbH41 {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffea;
}
.cid-ucFoEGbH41 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoEGbH41 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ucFoEGbH41 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoEGbH41 h1 {
  max-width: 800px;
}
.cid-ucFoEGbH41 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-ucFoEGbH41 .btn:hover {
  transform: scale(1.1);
  background: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #ff2100 !important;
}
.cid-ucFoEGbH41 .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-ucFoEGbH41 .btn div {
  overflow: hidden;
}
.cid-ucFoEGbH41 .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-ucFoEGbH41 {
    align-items: center;
  }
  .cid-ucFoEGbH41 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucFoEGbH41 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucFoEGbH41 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ucFoEGbH41 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ucFoEGbH41 .content-wrap {
    width: 100%;
  }
}
.cid-ucFoEGbH41 .mbr-section-subtitle,
.cid-ucFoEGbH41 .line {
  color: #291f1e;
}
.cid-ucFoEGbH41 .mbr-text,
.cid-ucFoEGbH41 .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ucFoEGbH41 .mbr-section-title {
  color: #291f1e;
  text-align: center;
}
.cid-ucFoEHn6Lz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoEHn6Lz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoEHn6Lz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoEHn6Lz .container {
  width: 100%;
  max-width: 100%;
}
.cid-ucFoEHn6Lz .col-title {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1rem;
}
.cid-ucFoEHn6Lz .mbr-section-title {
  color: #1B1F0A;
  margin-bottom: 0;
}
.cid-ucFoEHn6Lz .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 0;
  opacity: 0.8;
  margin-top: 1rem;
}
.cid-ucFoEHn6Lz .item-col {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  width: 100%;
  border-top: 4px solid #1b1f0a;
}
.cid-ucFoEHn6Lz .item-overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #bbbbbb;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all;
}
.cid-ucFoEHn6Lz .item {
  display: flex;
  justify-content: center;
  width: 100%;
  border-bottom: 4px solid #1b1f0a;
  position: relative;
}
.cid-ucFoEHn6Lz .item:hover .item-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-ucFoEHn6Lz .item-wrap {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 0;
}
.cid-ucFoEHn6Lz .mbr-text {
  position: relative;
  z-index: 2;
  color: #fafafa;
  margin-bottom: 0;
  width: 100%;
}
.cid-ucFoEHn6Lz .mbr-text a {
  width: 100%;
}
.cid-ucFoEHn6Lz .mbr-section-title,
.cid-ucFoEHn6Lz .mbr-section-btn {
  color: #fafafa;
}
.cid-ucFoEIp0CQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffea;
}
.cid-ucFoEIp0CQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoEIp0CQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoEIp0CQ .row {
  flex-direction: row-reverse;
}
.cid-ucFoEIp0CQ .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-ucFoEIp0CQ .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.cid-ucFoEIp0CQ .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucFoEIp0CQ .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-ucFoEIp0CQ .img-container {
  display: flex;
  padding: 4.75rem 4rem;
  background-color: #19303d;
}
.cid-ucFoEIp0CQ .img-container img {
  max-width: 100%;
}
.cid-ucFoEIp0CQ .col-toggle {
  width: 50%;
  padding-right: 4rem !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4rem !important;
  padding-right: 0 !important;
}
@media (max-width: 991px) {
  .cid-ucFoEIp0CQ .col-toggle {
    padding-right: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-ucFoEIp0CQ .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-ucFoEIp0CQ .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucFoEIp0CQ .section-head {
  margin-bottom: 0;
}
.cid-ucFoEIp0CQ .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  text-align: left;
}
.cid-ucFoEIp0CQ .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-ucFoEIp0CQ .toggle-panel {
  margin-top: 40px;
}
.cid-ucFoEIp0CQ .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-ucFoEIp0CQ .card:hover {
  margin-left: 1rem;
}
.cid-ucFoEIp0CQ .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-ucFoEIp0CQ .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-ucFoEIp0CQ .card-header .iconfont-wrapper .mbr-iconfont {
  color: #ddff55;
  font-size: 32px;
}
.cid-ucFoEIp0CQ .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #000000;
  transition: .3s all;
}
.cid-ucFoEIp0CQ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-ucFoEIp0CQ .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-ucFoEIp0CQ .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-ucFoEIp0CQ .panel-title-edit {
  color: #000000;
  margin-bottom: 0;
}
.cid-ucFoEIp0CQ .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-ucFoEJQ9Tu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoEJQ9Tu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoEJQ9Tu .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-ucFoEJQ9Tu .container {
    padding: 0 20px;
  }
}
.cid-ucFoEJQ9Tu .row {
  margin: 0;
}
.cid-ucFoEJQ9Tu .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucFoEJQ9Tu .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucFoEJQ9Tu .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucFoEJQ9Tu .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucFoEJQ9Tu .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucFoEJQ9Tu .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucFoEJQ9Tu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFoEL5kMK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffea;
  flex-direction: column;
  justify-content: center;
}
.cid-ucFoEL5kMK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoEL5kMK .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-ucFoEL5kMK .container {
    padding: 0 16px;
  }
}
.cid-ucFoEL5kMK .row {
  justify-content: center;
}
.cid-ucFoEL5kMK .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ucFoEL5kMK .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ucFoEL5kMK .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucFoEL5kMK .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #bcd948 !important;
  color: #56f1ff !important;
  border-color: #bcd948 !important;
}
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ff2100 !important;
  color: #56f1ff !important;
}
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #bcd948 !important;
  color: #56f1ff !important;
}
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #64ff54 !important;
  color: #56f1ff !important;
}
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #56f1ff !important;
  color: #bcd948 !important;
  border-color: #56f1ff !important;
}
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #fdff54 !important;
  color: #56f1ff !important;
}
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #fcff1e !important;
  color: #56f1ff !important;
}
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-ucFoEL5kMK .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-ucFoEL5kMK .mbr-desc {
  color: #706cff;
}
.cid-ucFoEL5kMK .mbr-section-title {
  color: #000000;
}
.cid-ucFoEL5kMK .mbr-text {
  color: #000000;
}
.cid-ucFoEL5kMK .mbr-section-btn {
  text-align: center;
}
.cid-ucFoEM8Eok {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoEM8Eok .row {
  align-items: center;
  width: 100%;
}
.cid-ucFoEM8Eok .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-ucFoEM8Eok .mbr-section-title {
  color: #fcff1b;
}
.cid-ucFoEM8Eok .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucFoEM8Eok .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucFoEM8Eok .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-ucFoEM8Eok .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucFoEM8Eok .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #fcff1e;
}
@media (max-width: 991px) {
  .cid-ucFoEM8Eok .text-container {
    padding: 24px;
  }
}
.cid-ucFoEM8Eok .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucFoEM8Eok .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-ucFoEM8Eok .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #1eecff;
}
.cid-ucFoEM8Eok .card-title {
  width: 100%;
  color: #fcff1b;
  margin-bottom: 0;
}
.cid-ucFoEM8Eok .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-ucFoENGnjl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffea;
}
.cid-ucFoENGnjl .row {
  align-items: center;
  width: 100%;
}
.cid-ucFoENGnjl .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #19303d;
}
@media (max-width: 767px) {
  .cid-ucFoENGnjl .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-ucFoENGnjl .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucFoENGnjl .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-ucFoENGnjl .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-ucFoENGnjl .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucFoENGnjl .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #ffffea;
}
.cid-ucFoENGnjl .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-ucFoENGnjl .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-ucFoENGnjl .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-ucFoENGnjl .btn-container {
  width: 100%;
}
.cid-ucFoENGnjl .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-ucFoENGnjl .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-ucFoENGnjl .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-ucFoENGnjl .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-ucFoENGnjl .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-ucFoENGnjl .mbr-section-title,
.cid-ucFoENGnjl .mbr-section-btn {
  color: #ffffea;
}
.cid-ucFoEOVXqT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #19303d;
}
.cid-ucFoEOVXqT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoEOVXqT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoEOVXqT .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-ucFoEOVXqT .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucFoEOVXqT .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-ucFoEOVXqT .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucFoEOVXqT .container {
    padding: 0 14px;
  }
}
.cid-ucFoEOVXqT .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  margin-bottom: 40px;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-ucFoEOVXqT .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ucFoEOVXqT .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-ucFoEOVXqT .content-wrapper .mbr-section-btn {
  margin: 10px 25px;
}
.cid-ucFoEOVXqT .mbr-text,
.cid-ucFoEOVXqT .text-wrapper {
  color: #ffffea;
  text-align: center;
}
.cid-ucFoEOVXqT .mbr-section-title {
  color: #f1f1f1;
}
.cid-ucFoEOVXqT .mbr-section-title,
.cid-ucFoEOVXqT .mbr-section-btn {
  text-align: center;
  color: #ffffea;
}
.cid-ucFoEQbUG6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffea;
}
.cid-ucFoEQbUG6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoEQbUG6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoEQbUG6 .col-img {
  display: flex;
  flex-direction: column;
}
.cid-ucFoEQbUG6 .mbr-description {
  color: #f3f4ef;
}
.cid-ucFoEQbUG6 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-ucFoEQbUG6 .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-ucFoERBCvj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoERBCvj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoERBCvj .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-ucFoERBCvj .container {
    padding: 0 22px;
  }
}
.cid-ucFoERBCvj .row {
  justify-content: center;
}
.cid-ucFoERBCvj .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucFoERBCvj .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucFoERBCvj .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucFoERBCvj .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ucFoERBCvj .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ucFoERBCvj .title-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #ffffff;
}
.cid-ucFoERBCvj .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucFoERBCvj .mbr-section-title {
  color: #ffffff;
}
.cid-ucFoERBCvj .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ucFoERBCvj .mbr-section-title,
.cid-ucFoERBCvj .icon-wrapper {
  text-align: right;
}
.cid-ucFoERBCvj .mbr-section-title,
.cid-ucFoERBCvj .icon-wrapper DIV {
  text-align: center;
}
.cid-ucFJvwKCOH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFJvwKCOH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFJvwKCOH .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-ucFJvwKCOH .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucFJvwKCOH .container {
    padding: 0 12px;
  }
}
.cid-ucFJvwKCOH .row {
  justify-content: center;
}
.cid-ucFJvwKCOH .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucFJvwKCOH .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ucFJvwKCOH .panel-group .card {
  border-radius: 50px;
  border: 3px solid #fcff1e;
  box-shadow: 4px 4px #fcff1e;
  background-color: #19303d;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucFJvwKCOH .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-ucFJvwKCOH .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-ucFJvwKCOH .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucFJvwKCOH .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ucFJvwKCOH .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #fcff1e;
  transition: all 0.3s ease-in-out;
}
.cid-ucFJvwKCOH .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-ucFJvwKCOH .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-ucFJvwKCOH .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-ucFJvwKCOH .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ucFJvwKCOH .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-ucFJvwKCOH .panel-title-edit {
  color: #f3f4ef;
}
.cid-ucFJvwKCOH .panel-text {
  color: #f3f4ef;
}
.cid-ucFoETDPDe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffea;
}
.cid-ucFoETDPDe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoETDPDe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoETDPDe h3,
.cid-ucFoETDPDe a {
  font-weight: 900;
}
.cid-ucFoETDPDe a {
  background: #64ff54;
}
.cid-ucFoETDPDe .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ucFoETDPDe .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucFoETDPDe .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-ucFoETDPDe .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucFoETDPDe .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucFoETDPDe .mbr-section-title {
  color: #000000;
}
.cid-ucFoEVBTib {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoEVBTib .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoEVBTib .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoEVBTib .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-ucFoEVBTib .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-ucFoEVBTib .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-ucFoEVBTib .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-ucFoEVBTib .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-ucFoEVBTib .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-ucFoEVBTib .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFoEVBTib .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-ucFoEVBTib .items-container {
    flex-wrap: wrap;
  }
}
.cid-ucFoEVBTib .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-ucFoEVBTib .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-ucFoEVBTib .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-ucFoEVBTib .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucFoEVBTib .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-ucFoEVBTib .mbr-section-subtitle {
  color: #feff98;
  margin-bottom: 1rem;
}
.cid-ucFoEVBTib .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #feff98;
}
.cid-ucFoEVBTib .list li {
  transition: 0.5s all;
}
.cid-ucFoEVBTib .list li:hover {
  opacity: 0.6;
}
.cid-ucFoEVBTib .item-wrap {
  margin-bottom: 12px;
}
.cid-ucFoEVBTib .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-ucFoEVBTib .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-ucFoEVBTib .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-ucFoEVBTib .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-ucFoEVBTib .copyright-col {
    text-align: center;
  }
}
.cid-ucFoEVBTib .copyright {
  color: #feff98;
  text-align: left;
}
.cid-ucFoFx2JDI {
  background-color: transparent;
}
.cid-ucFoFx2JDI .navbar-dropdown {
  background-color: #f3f4ef !important;
  padding: 0;
}
.cid-ucFoFx2JDI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f4ef !important;
  background: #f3f4ef;
}
.cid-ucFoFx2JDI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucFoFx2JDI .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ucFoFx2JDI .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-ucFoFx2JDI .menu_box .navbar.opened,
  .cid-ucFoFx2JDI .menu_box .navbar-collapse {
    background-color: #f3f4ef !important;
    transition: all 0s ease 0s;
  }
}
.cid-ucFoFx2JDI .navbar-dropdown {
  position: relative !important;
}
.cid-ucFoFx2JDI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-ucFoFx2JDI .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ucFoFx2JDI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ucFoFx2JDI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ucFoFx2JDI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ucFoFx2JDI .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #e1eeec;
  }
  .cid-ucFoFx2JDI .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ucFoFx2JDI .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ucFoFx2JDI .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ucFoFx2JDI .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ucFoFx2JDI .offcanvas-body .mbr-text,
  .cid-ucFoFx2JDI .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-ucFoFx2JDI .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-ucFoFx2JDI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ucFoFx2JDI .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #71eac6;
  }
  .cid-ucFoFx2JDI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ucFoFx2JDI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ucFoFx2JDI .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ucFoFx2JDI .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ucFoFx2JDI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ucFoFx2JDI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFoFx2JDI .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-ucFoFx2JDI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ucFoFx2JDI li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ucFoFx2JDI .lg_brand {
    margin: 0 1rem;
  }
  .cid-ucFoFx2JDI .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.cid-ucFoFx2JDI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ucFoFx2JDI .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ucFoFx2JDI .nav-item {
    margin: 0 !important;
  }
}
.cid-ucFoFx2JDI .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-ucFoFx2JDI .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ucFoFx2JDI .nav-item .nav-link:hover,
.cid-ucFoFx2JDI .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.cid-ucFoFx2JDI .nav-item .nav-link:hover::before,
.cid-ucFoFx2JDI .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-ucFoFx2JDI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ucFoFx2JDI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ucFoFx2JDI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ucFoFx2JDI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ucFoFx2JDI .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);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ucFoFx2JDI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ucFoFx2JDI .offcanvas_box {
    display: none;
  }
}
.cid-ucFoFx2JDI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-ucFoFx2JDI .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ucFoFx2JDI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ucFoFx2JDI .container {
  display: flex;
  margin: auto;
}
.cid-ucFoFx2JDI .iconfont-wrapper {
  color: #282d15;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ucFoFx2JDI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ucFoFx2JDI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ucFoFx2JDI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ucFoFx2JDI .navbar-nav {
    margin: 0;
  }
}
.cid-ucFoFx2JDI .dropdown-menu,
.cid-ucFoFx2JDI .navbar.opened {
  background-color: false !important;
}
.cid-ucFoFx2JDI .nav-item:focus,
.cid-ucFoFx2JDI .nav-link:focus {
  outline: none;
}
.cid-ucFoFx2JDI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucFoFx2JDI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucFoFx2JDI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucFoFx2JDI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFoFx2JDI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucFoFx2JDI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucFoFx2JDI .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-ucFoFx2JDI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-ucFoFx2JDI .navbar.opened {
  transition: all 0.3s;
}
.cid-ucFoFx2JDI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ucFoFx2JDI .navbar .navbar-logo img {
  max-width: 64px;
  min-height: 64px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-ucFoFx2JDI .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-ucFoFx2JDI .navbar.collapsed {
  justify-content: center;
}
.cid-ucFoFx2JDI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucFoFx2JDI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucFoFx2JDI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucFoFx2JDI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucFoFx2JDI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucFoFx2JDI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ucFoFx2JDI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucFoFx2JDI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ucFoFx2JDI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-ucFoFx2JDI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucFoFx2JDI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucFoFx2JDI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ucFoFx2JDI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucFoFx2JDI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ucFoFx2JDI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucFoFx2JDI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ucFoFx2JDI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ucFoFx2JDI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ucFoFx2JDI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-ucFoFx2JDI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucFoFx2JDI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ucFoFx2JDI .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucFoFx2JDI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucFoFx2JDI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucFoFx2JDI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucFoFx2JDI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-ucFoFx2JDI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFoFx2JDI .dropdown-item.active,
.cid-ucFoFx2JDI .dropdown-item:active {
  background-color: transparent;
}
.cid-ucFoFx2JDI .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-ucFoFx2JDI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucFoFx2JDI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucFoFx2JDI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucFoFx2JDI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-ucFoFx2JDI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucFoFx2JDI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f4ef;
  background: #99f5fe;
}
.cid-ucFoFx2JDI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #71eac6;
}
.cid-ucFoFx2JDI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucFoFx2JDI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFoFx2JDI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFoFx2JDI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucFoFx2JDI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFoFx2JDI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucFoFx2JDI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucFoFx2JDI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFoFx2JDI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ucFoFx2JDI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucFoFx2JDI .navbar {
    height: 70px;
  }
  .cid-ucFoFx2JDI .navbar.opened {
    height: auto;
  }
  .cid-ucFoFx2JDI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucFoFx2JDI .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-ucFoFx2JDI .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-ucFoFx2JDI .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ucFoFx2JDI .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-ucFoFx2JDI .mbr-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.cid-ucFoFx2JDI .navbar-caption:hover {
  color: #bcd948;
}
@media (min-width: 992px) {
  .cid-ucFoFx2JDI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ucFoFx2JDI .text_widget {
  margin-bottom: 32px;
}
.cid-ucFoFx2JDI .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-ucFoFx2JDI .text_widget a:hover,
.cid-ucFoFx2JDI .text_widget a:focus {
  opacity: .8;
}
.cid-ucFoFx2JDI .mbr-section-subtitle {
  color: #254b45;
  text-align: center;
}
.cid-ucFoFx2JDI .navbar-caption {
  color: #bee0d6;
}
.cid-ucFoFx2JDI .mbr-text {
  color: #254b45;
  text-align: center;
}
.cid-ucFoFx2JDI .mbr-section-subtitle,
.cid-ucFoFx2JDI .text_widget,
.cid-ucFoFx2JDI .mbr-section-btn {
  text-align: center;
}
.cid-ucFoFx2JDI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ucFoFyvaMS {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #19303d;
}
.cid-ucFoFyvaMS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoFyvaMS .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-ucFoFyvaMS .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-ucFoFyvaMS img {
  border-radius: 1rem;
}
.cid-ucFoFyvaMS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoFyvaMS .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucFoFyvaMS .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucFoFyvaMS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ucFoFyvaMS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFoFyvaMS .mbr-section-subtitle,
.cid-ucFoFyvaMS .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-ucFoFyvaMS .mbr-text,
.cid-ucFoFyvaMS .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-ucFEcYiibd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1-3.jpg");
}
.cid-ucFEcYiibd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFEcYiibd .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-ucFEcYiibd .container {
    padding: 0 15px;
  }
}
.cid-ucFEcYiibd .row {
  justify-content: center;
}
.cid-ucFEcYiibd .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucFEcYiibd .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucFEcYiibd .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-ucFEcYiibd .subtitle-wrapper {
    padding: 0;
  }
}
.cid-ucFEcYiibd .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucFEcYiibd .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-ucFEcYiibd .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-ucFEcYiibd .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-ucFEcYiibd .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-ucFEcYiibd .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucFEcYiibd .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #feff98;
  color: #171827;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-ucFEcYiibd .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-ucFEcYiibd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFEcYiibd .mbr-section-subtitle {
  color: #feff98;
}
.cid-ucFEcYiibd .list {
  color: #ffffff;
}
.cid-ucFoFAGkp3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #19303d;
}
.cid-ucFoFAGkp3 .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-ucFoFAGkp3 .mbr-section-title {
  color: #fafafa;
}
.cid-ucFoFAGkp3 .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-ucFoFAGkp3 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucFoFBCcJM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffea;
  position: relative;
  overflow: hidden;
}
.cid-ucFoFBCcJM .row {
  justify-content: center;
}
.cid-ucFoFBCcJM .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-ucFoFBCcJM .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-ucFoFBCcJM .title-container {
    margin-bottom: 56px;
  }
}
.cid-ucFoFBCcJM .mbr-section-title {
  color: #6148ff;
}
.cid-ucFoFBCcJM .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-ucFoFBCcJM .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-ucFoFBCcJM .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-ucFoFBCcJM .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ucFoFBCcJM .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-ucFoFBCcJM .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-ucFoFBCcJM .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-ucFoFBCcJM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-ucFoFBCcJM .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-ucFoFBCcJM .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-ucFoFBCcJM .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-ucFoFBCcJM .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-ucFoFBCcJM .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-ucFoFBCcJM .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-ucFoFBCcJM .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-ucFoFBCcJM .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-ucFoFBCcJM .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-ucFoFBCcJM .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-ucFoFBCcJM .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ucFoFBCcJM .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucFoFBCcJM .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ucFoFBCcJM .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-ucFoFBCcJM .circle-blur {
  position: absolute;
  top: 5%;
  left: 5%;
  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%, #ff3399 50%, #99f5fe 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-ucFoFCP7qT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoFCP7qT .row {
  align-items: center;
  width: 100%;
}
.cid-ucFoFCP7qT .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-ucFoFCP7qT .mbr-section-title {
  color: #000000;
}
.cid-ucFoFCP7qT .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucFoFCP7qT .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucFoFCP7qT .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-ucFoFCP7qT .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucFoFCP7qT .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-ucFoFCP7qT .text-container {
    padding: 24px;
  }
}
.cid-ucFoFCP7qT .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucFoFCP7qT .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-ucFoFCP7qT .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #feff98;
}
.cid-ucFoFCP7qT .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ucFoFCP7qT .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-ucFoFElPHC {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffea;
}
.cid-ucFoFElPHC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoFElPHC .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ucFoFElPHC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoFElPHC h1 {
  max-width: 800px;
}
.cid-ucFoFElPHC p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-ucFoFElPHC .btn:hover {
  transform: scale(1.1);
  background: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #ff2100 !important;
}
.cid-ucFoFElPHC .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-ucFoFElPHC .btn div {
  overflow: hidden;
}
.cid-ucFoFElPHC .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-ucFoFElPHC {
    align-items: center;
  }
  .cid-ucFoFElPHC .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucFoFElPHC .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucFoFElPHC {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ucFoFElPHC .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ucFoFElPHC .content-wrap {
    width: 100%;
  }
}
.cid-ucFoFElPHC .mbr-section-subtitle,
.cid-ucFoFElPHC .line {
  color: #291f1e;
}
.cid-ucFoFElPHC .mbr-text,
.cid-ucFoFElPHC .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ucFoFElPHC .mbr-section-title {
  color: #291f1e;
  text-align: center;
}
.cid-ucFoFFrlaf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoFFrlaf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoFFrlaf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoFFrlaf .container {
  width: 100%;
  max-width: 100%;
}
.cid-ucFoFFrlaf .col-title {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1rem;
}
.cid-ucFoFFrlaf .mbr-section-title {
  color: #1B1F0A;
  margin-bottom: 0;
}
.cid-ucFoFFrlaf .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 0;
  opacity: 0.8;
  margin-top: 1rem;
}
.cid-ucFoFFrlaf .item-col {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  width: 100%;
  border-top: 4px solid #1b1f0a;
}
.cid-ucFoFFrlaf .item-overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #bbbbbb;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all;
}
.cid-ucFoFFrlaf .item {
  display: flex;
  justify-content: center;
  width: 100%;
  border-bottom: 4px solid #1b1f0a;
  position: relative;
}
.cid-ucFoFFrlaf .item:hover .item-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-ucFoFFrlaf .item-wrap {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 0;
}
.cid-ucFoFFrlaf .mbr-text {
  position: relative;
  z-index: 2;
  color: #fafafa;
  margin-bottom: 0;
  width: 100%;
}
.cid-ucFoFFrlaf .mbr-text a {
  width: 100%;
}
.cid-ucFoFFrlaf .mbr-section-title,
.cid-ucFoFFrlaf .mbr-section-btn {
  color: #fafafa;
}
.cid-ucFoFGs2ag {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffea;
}
.cid-ucFoFGs2ag .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoFGs2ag .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoFGs2ag .row {
  flex-direction: row-reverse;
}
.cid-ucFoFGs2ag .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-ucFoFGs2ag .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.cid-ucFoFGs2ag .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucFoFGs2ag .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-ucFoFGs2ag .img-container {
  display: flex;
  padding: 4.75rem 4rem;
  background-color: #19303d;
}
.cid-ucFoFGs2ag .img-container img {
  max-width: 100%;
}
.cid-ucFoFGs2ag .col-toggle {
  width: 50%;
  padding-right: 4rem !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4rem !important;
  padding-right: 0 !important;
}
@media (max-width: 991px) {
  .cid-ucFoFGs2ag .col-toggle {
    padding-right: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-ucFoFGs2ag .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-ucFoFGs2ag .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucFoFGs2ag .section-head {
  margin-bottom: 0;
}
.cid-ucFoFGs2ag .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  text-align: left;
}
.cid-ucFoFGs2ag .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-ucFoFGs2ag .toggle-panel {
  margin-top: 40px;
}
.cid-ucFoFGs2ag .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-ucFoFGs2ag .card:hover {
  margin-left: 1rem;
}
.cid-ucFoFGs2ag .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-ucFoFGs2ag .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-ucFoFGs2ag .card-header .iconfont-wrapper .mbr-iconfont {
  color: #ddff55;
  font-size: 32px;
}
.cid-ucFoFGs2ag .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #000000;
  transition: .3s all;
}
.cid-ucFoFGs2ag .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-ucFoFGs2ag .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-ucFoFGs2ag .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-ucFoFGs2ag .panel-title-edit {
  color: #000000;
  margin-bottom: 0;
}
.cid-ucFoFGs2ag .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-ucFoFHVOqO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoFHVOqO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoFHVOqO .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-ucFoFHVOqO .container {
    padding: 0 20px;
  }
}
.cid-ucFoFHVOqO .row {
  margin: 0;
}
.cid-ucFoFHVOqO .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucFoFHVOqO .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucFoFHVOqO .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucFoFHVOqO .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucFoFHVOqO .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucFoFHVOqO .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucFoFHVOqO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFoFJ2Bgm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffea;
  flex-direction: column;
  justify-content: center;
}
.cid-ucFoFJ2Bgm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoFJ2Bgm .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-ucFoFJ2Bgm .container {
    padding: 0 16px;
  }
}
.cid-ucFoFJ2Bgm .row {
  justify-content: center;
}
.cid-ucFoFJ2Bgm .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucFoFJ2Bgm .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #bcd948 !important;
  color: #56f1ff !important;
  border-color: #bcd948 !important;
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ff2100 !important;
  color: #56f1ff !important;
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #bcd948 !important;
  color: #56f1ff !important;
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #64ff54 !important;
  color: #56f1ff !important;
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #56f1ff !important;
  color: #bcd948 !important;
  border-color: #56f1ff !important;
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #fdff54 !important;
  color: #56f1ff !important;
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #fcff1e !important;
  color: #56f1ff !important;
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-ucFoFJ2Bgm .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-ucFoFJ2Bgm .mbr-desc {
  color: #706cff;
}
.cid-ucFoFJ2Bgm .mbr-section-title {
  color: #000000;
}
.cid-ucFoFJ2Bgm .mbr-text {
  color: #000000;
}
.cid-ucFoFJ2Bgm .mbr-section-btn {
  text-align: center;
}
.cid-ucFoFK7CUQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoFK7CUQ .row {
  align-items: center;
  width: 100%;
}
.cid-ucFoFK7CUQ .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-ucFoFK7CUQ .mbr-section-title {
  color: #fcff1b;
}
.cid-ucFoFK7CUQ .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucFoFK7CUQ .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucFoFK7CUQ .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-ucFoFK7CUQ .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucFoFK7CUQ .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #fcff1e;
}
@media (max-width: 991px) {
  .cid-ucFoFK7CUQ .text-container {
    padding: 24px;
  }
}
.cid-ucFoFK7CUQ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucFoFK7CUQ .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-ucFoFK7CUQ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #1eecff;
}
.cid-ucFoFK7CUQ .card-title {
  width: 100%;
  color: #fcff1b;
  margin-bottom: 0;
}
.cid-ucFoFK7CUQ .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-ucFoFLJUs0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffea;
}
.cid-ucFoFLJUs0 .row {
  align-items: center;
  width: 100%;
}
.cid-ucFoFLJUs0 .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #19303d;
}
@media (max-width: 767px) {
  .cid-ucFoFLJUs0 .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-ucFoFLJUs0 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucFoFLJUs0 .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-ucFoFLJUs0 .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-ucFoFLJUs0 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucFoFLJUs0 .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #ffffea;
}
.cid-ucFoFLJUs0 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-ucFoFLJUs0 .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-ucFoFLJUs0 .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-ucFoFLJUs0 .btn-container {
  width: 100%;
}
.cid-ucFoFLJUs0 .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-ucFoFLJUs0 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-ucFoFLJUs0 .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-ucFoFLJUs0 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-ucFoFLJUs0 .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-ucFoFLJUs0 .mbr-section-title,
.cid-ucFoFLJUs0 .mbr-section-btn {
  color: #ffffea;
}
.cid-ucFoFN027B {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #19303d;
}
.cid-ucFoFN027B .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoFN027B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoFN027B .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-ucFoFN027B .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucFoFN027B .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-ucFoFN027B .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucFoFN027B .container {
    padding: 0 14px;
  }
}
.cid-ucFoFN027B .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  margin-bottom: 40px;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-ucFoFN027B .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ucFoFN027B .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-ucFoFN027B .content-wrapper .mbr-section-btn {
  margin: 10px 25px;
}
.cid-ucFoFN027B .mbr-text,
.cid-ucFoFN027B .text-wrapper {
  color: #ffffea;
  text-align: center;
}
.cid-ucFoFN027B .mbr-section-title {
  color: #f1f1f1;
}
.cid-ucFoFN027B .mbr-section-title,
.cid-ucFoFN027B .mbr-section-btn {
  text-align: center;
  color: #ffffea;
}
.cid-ucFoFPk0ni {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ucFoFPk0ni .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoFPk0ni .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-ucFoFPk0ni .container {
    padding: 0 22px;
  }
}
.cid-ucFoFPk0ni .row {
  justify-content: center;
}
.cid-ucFoFPk0ni .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucFoFPk0ni .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucFoFPk0ni .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucFoFPk0ni .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ucFoFPk0ni .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ucFoFPk0ni .title-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #ffffff;
}
.cid-ucFoFPk0ni .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucFoFPk0ni .mbr-section-title {
  color: #ffffff;
}
.cid-ucFoFPk0ni .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ucFoFPk0ni .mbr-section-title,
.cid-ucFoFPk0ni .icon-wrapper {
  text-align: right;
  color: #f3f4ef;
}
.cid-ucFoFPk0ni .mbr-section-title,
.cid-ucFoFPk0ni .icon-wrapper DIV {
  text-align: center;
}
.cid-ucFK83m2ZW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFK83m2ZW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFK83m2ZW .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-ucFK83m2ZW .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucFK83m2ZW .container {
    padding: 0 12px;
  }
}
.cid-ucFK83m2ZW .row {
  justify-content: center;
}
.cid-ucFK83m2ZW .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucFK83m2ZW .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ucFK83m2ZW .panel-group .card {
  border-radius: 50px;
  border: 3px solid #fcff1e;
  box-shadow: 4px 4px #fcff1e;
  background-color: #19303d;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucFK83m2ZW .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-ucFK83m2ZW .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-ucFK83m2ZW .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucFK83m2ZW .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ucFK83m2ZW .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #fcff1e;
  transition: all 0.3s ease-in-out;
}
.cid-ucFK83m2ZW .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-ucFK83m2ZW .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-ucFK83m2ZW .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-ucFK83m2ZW .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ucFK83m2ZW .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-ucFK83m2ZW .panel-title-edit {
  color: #f3f4ef;
}
.cid-ucFK83m2ZW .panel-text {
  color: #f3f4ef;
}
.cid-ucFoFQwD8z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #232323;
}
.cid-ucFoFQwD8z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoFQwD8z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoFQwD8z h3,
.cid-ucFoFQwD8z a {
  font-weight: 900;
}
.cid-ucFoFQwD8z a {
  background: #64ff54;
}
.cid-ucFoFQwD8z .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ucFoFQwD8z .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucFoFQwD8z .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-ucFoFQwD8z .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucFoFQwD8z .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucFoFQwD8z .mbr-section-title {
  color: #fafafa;
}
.cid-ucFoFRJRJo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19303d;
}
.cid-ucFoFRJRJo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFoFRJRJo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFoFRJRJo .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-ucFoFRJRJo .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-ucFoFRJRJo .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-ucFoFRJRJo .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-ucFoFRJRJo .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-ucFoFRJRJo .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-ucFoFRJRJo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFoFRJRJo .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-ucFoFRJRJo .items-container {
    flex-wrap: wrap;
  }
}
.cid-ucFoFRJRJo .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-ucFoFRJRJo .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-ucFoFRJRJo .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-ucFoFRJRJo .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucFoFRJRJo .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-ucFoFRJRJo .mbr-section-subtitle {
  color: #feff98;
  margin-bottom: 1rem;
}
.cid-ucFoFRJRJo .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #feff98;
}
.cid-ucFoFRJRJo .list li {
  transition: 0.5s all;
}
.cid-ucFoFRJRJo .list li:hover {
  opacity: 0.6;
}
.cid-ucFoFRJRJo .item-wrap {
  margin-bottom: 12px;
}
.cid-ucFoFRJRJo .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-ucFoFRJRJo .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-ucFoFRJRJo .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-ucFoFRJRJo .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-ucFoFRJRJo .copyright-col {
    text-align: center;
  }
}
.cid-ucFoFRJRJo .copyright {
  color: #feff98;
  text-align: left;
}
