body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.88rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.35rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.25;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.504rem;
    font-size: calc( 1.3079999999999998rem + (1.88 - 1.3079999999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.3079999999999998rem + (1.88 - 1.3079999999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((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: #ddff55 !important;
}
.bg-success {
  background-color: #64ff54 !important;
}
.bg-info {
  background-color: #56f1ff !important;
}
.bg-warning {
  background-color: #fdff54 !important;
}
.bg-danger {
  background-color: #f7874b !important;
}
.btn-primary .btn-overlay {
  background-color: #bcd948 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ddff55 !important;
  border-color: #ddff55 !important;
  color: #445500 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #445500 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !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: #cc7343 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f7874b !important;
  border-color: #f7874b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc7343 !important;
  border-color: #cc7343 !important;
}
.btn-white .btn-overlay {
  background-color: #e1e1e1 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black .btn-overlay {
  background-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ddff55;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #cbfd00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #445500 !important;
  background-color: #ddff55 !important;
  border-color: #ddff55 !important;
}
.btn-secondary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bcd948;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8da823 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #181c06 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
}
.btn-info-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #56f1ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #00e9fe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #004f56 !important;
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
}
.btn-success-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #64ff54;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #18fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #085400 !important;
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
}
.btn-warning-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fdff54;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f9fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #535400 !important;
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
}
.btn-danger-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f7874b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #e1550a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f7874b !important;
  border-color: #f7874b !important;
}
.btn-black-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b1f0a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
}
.btn-white-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ddff55 !important;
}
.text-secondary {
  color: #bcd948 !important;
}
.text-success {
  color: #64ff54 !important;
}
.text-info {
  color: #56f1ff !important;
}
.text-warning {
  color: #fdff54 !important;
}
.text-danger {
  color: #f7874b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #1B1F0A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #beee00 !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: #d35009 !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: #ddff55;
}
.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: #f7874b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ddff55;
  border-color: #ddff55;
  color: #586e00;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ddff55;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ddff55 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ddff55;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ddff55;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ddff55;
}
.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: #ddff55;
  border-bottom-color: #ddff55;
}
.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: #000000 !important;
  background-color: #ddff55 !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='%23ddff55' %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-uhED6b1qID {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/57176852-639836556488261-6844973389195509760-o-1500x1000.jpg");
}
.cid-uhED6b1qID .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhED6b1qID .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhED6b1qID .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uhED6b1qID .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhED6b1qID .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhED6b1qID .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhED6b1qID .container {
    padding: 0 24px;
  }
}
.cid-uhED6b1qID .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uhED6b1qID .content-wrapper {
    padding: 0;
  }
}
.cid-uhED6b1qID .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uhED6b1qID .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uhED6b1qID .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uhED6b1qID .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhED6b1qID .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uhED6b1qID .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uhED6b1qID .mbr-section-title {
  color: #ffffff;
}
.cid-uhED6b1qID .mbr-desc,
.cid-uhED6b1qID .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhED6b1qID .mbr-text,
.cid-uhED6b1qID .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhED6b1qID .mbr-section-title,
.cid-uhED6b1qID .mbr-section-btn {
  text-align: center;
}
.cid-uhCFwWDUSZ {
  background-color: transparent;
}
.cid-uhCFwWDUSZ .navbar-dropdown {
  background-color: #99f5fe !important;
  padding: 0;
}
.cid-uhCFwWDUSZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #99f5fe !important;
  background: #99f5fe;
}
.cid-uhCFwWDUSZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhCFwWDUSZ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhCFwWDUSZ .menu_box .navbar.opened,
  .cid-uhCFwWDUSZ .menu_box .navbar-collapse {
    background-color: #99f5fe !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhCFwWDUSZ .navbar-dropdown {
  position: relative !important;
}
.cid-uhCFwWDUSZ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhCFwWDUSZ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhCFwWDUSZ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhCFwWDUSZ .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhCFwWDUSZ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhCFwWDUSZ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhCFwWDUSZ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhCFwWDUSZ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhCFwWDUSZ .offcanvas-body .mbr-text,
  .cid-uhCFwWDUSZ .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhCFwWDUSZ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhCFwWDUSZ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhCFwWDUSZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhCFwWDUSZ .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-uhCFwWDUSZ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhCFwWDUSZ 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-uhCFwWDUSZ .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhCFwWDUSZ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhCFwWDUSZ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhCFwWDUSZ .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .nav-item {
    margin: 0 !important;
  }
}
.cid-uhCFwWDUSZ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhCFwWDUSZ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhCFwWDUSZ .nav-item .nav-link:hover::before,
.cid-uhCFwWDUSZ .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhCFwWDUSZ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhCFwWDUSZ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhCFwWDUSZ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhCFwWDUSZ .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-uhCFwWDUSZ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhCFwWDUSZ .offcanvas_box {
    display: none;
  }
}
.cid-uhCFwWDUSZ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhCFwWDUSZ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhCFwWDUSZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhCFwWDUSZ .container {
  display: flex;
  margin: auto;
}
.cid-uhCFwWDUSZ .iconfont-wrapper {
  color: #202020;
  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-uhCFwWDUSZ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhCFwWDUSZ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhCFwWDUSZ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhCFwWDUSZ .navbar-nav {
    margin: 0;
  }
}
.cid-uhCFwWDUSZ .dropdown-menu,
.cid-uhCFwWDUSZ .navbar.opened {
  background-color: false !important;
}
.cid-uhCFwWDUSZ .nav-item:focus,
.cid-uhCFwWDUSZ .nav-link:focus {
  outline: none;
}
.cid-uhCFwWDUSZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhCFwWDUSZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhCFwWDUSZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhCFwWDUSZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhCFwWDUSZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhCFwWDUSZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhCFwWDUSZ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhCFwWDUSZ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhCFwWDUSZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uhCFwWDUSZ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhCFwWDUSZ .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhCFwWDUSZ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhCFwWDUSZ .navbar.collapsed {
  justify-content: center;
}
.cid-uhCFwWDUSZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhCFwWDUSZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhCFwWDUSZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhCFwWDUSZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhCFwWDUSZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhCFwWDUSZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhCFwWDUSZ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhCFwWDUSZ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhCFwWDUSZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhCFwWDUSZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhCFwWDUSZ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhCFwWDUSZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhCFwWDUSZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhCFwWDUSZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhCFwWDUSZ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhCFwWDUSZ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhCFwWDUSZ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhCFwWDUSZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhCFwWDUSZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhCFwWDUSZ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhCFwWDUSZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhCFwWDUSZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhCFwWDUSZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhCFwWDUSZ .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-uhCFwWDUSZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhCFwWDUSZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhCFwWDUSZ .dropdown-item.active,
.cid-uhCFwWDUSZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhCFwWDUSZ .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhCFwWDUSZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhCFwWDUSZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhCFwWDUSZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhCFwWDUSZ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhCFwWDUSZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhCFwWDUSZ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #99f5fe;
  background: #ffffff;
}
.cid-uhCFwWDUSZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhCFwWDUSZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhCFwWDUSZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhCFwWDUSZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhCFwWDUSZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhCFwWDUSZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhCFwWDUSZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhCFwWDUSZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhCFwWDUSZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhCFwWDUSZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhCFwWDUSZ .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-uhCFwWDUSZ .navbar {
    height: 70px;
  }
  .cid-uhCFwWDUSZ .navbar.opened {
    height: auto;
  }
  .cid-uhCFwWDUSZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhCFwWDUSZ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhCFwWDUSZ .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhCFwWDUSZ .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhCFwWDUSZ .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhCFwWDUSZ .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhCFwWDUSZ .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhCFwWDUSZ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhCFwWDUSZ .text_widget {
  margin-bottom: 32px;
}
.cid-uhCFwWDUSZ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhCFwWDUSZ .text_widget a:hover,
.cid-uhCFwWDUSZ .text_widget a:focus {
  opacity: .8;
}
.cid-uhCFwWDUSZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhCFwWDUSZ .navbar-caption {
  color: #202020;
}
.cid-uhCFwWDUSZ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhCFwWDUSZ .mbr-section-subtitle,
.cid-uhCFwWDUSZ .text_widget,
.cid-uhCFwWDUSZ .mbr-section-btn {
  text-align: center;
}
.cid-uhCFwWDUSZ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhCNNIbecd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhCNNIbecd .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uhCNNIbecd .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uhCNNIbecd .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uhCNNIbecd .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uhCNNIbecd .mbr-text {
  color: #000000;
}
.cid-uhEDlbzCbB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uhEDlbzCbB blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #99f5fe;
}
.cid-uhEDlbzCbB .mbr-section-title {
  text-align: center;
}
.cid-uhEDlbzCbB .mbr-text {
  color: #000000;
}
.cid-uhEDGewrHJ {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #99f5fe;
}
.cid-uhEDGewrHJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEDGewrHJ .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-uhEDGewrHJ .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uhEDGewrHJ .row {
  background: #000000;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uhEDGewrHJ .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-uhEDGewrHJ img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uhEDGewrHJ img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhEDGewrHJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uhEDGewrHJ .mbr-section-title {
  color: #ffffff;
}
.cid-uhEDGewrHJ .mbr-text,
.cid-uhEDGewrHJ .mbr-section-btn {
  color: #ffffff;
}
.cid-t2YrRMp191 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-t2YrRMp191 .row {
  align-items: center;
  width: 100%;
}
.cid-t2YrRMp191 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YrRMp191 .mbr-section-title {
  color: #f3f4ef;
}
.cid-t2YrRMp191 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-t2YrRMp191 .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-t2YrRMp191 .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-t2YrRMp191 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2YrRMp191 .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-t2YrRMp191 .text-container {
    padding: 24px;
  }
}
.cid-t2YrRMp191 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YrRMp191 .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-t2YrRMp191 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-t2YrRMp191 .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-t2YrRMp191 .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-uhEG8FWDVa {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #99f5fe;
}
.cid-uhEG8FWDVa .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEG8FWDVa .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uhEG8FWDVa .col-title,
.cid-uhEG8FWDVa .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uhEG8FWDVa .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhEG8FWDVa .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uhEG8FWDVa .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uhEG8FWDVa .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uhEG8FWDVa .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uhEG8FWDVa .mbr-text {
    text-align: center !important;
  }
}
.cid-uhFjmQ0zn3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #99f5fe;
}
.cid-uhFjmQ0zn3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhFjmQ0zn3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhFjmQ0zn3 .row {
  justify-content: center;
}
.cid-uhFjmQ0zn3 .col-title {
  margin-bottom: 2.5rem;
}
.cid-uhFjmQ0zn3 .mbr-section-title {
  color: #75083A;
}
.cid-uhFjmQ0zn3 .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
}
.cid-uhFjmQ0zn3 .img-container {
  margin: 0 auto;
}
.cid-uhFjmQ0zn3 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 620px;
}
.cid-uhFjmQ0zn3 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t2Yv7si76x {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t2Yv7si76x .mbr-fallback-image.disabled {
  display: none;
}
.cid-t2Yv7si76x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t2Yv7si76x .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-t2Yv7si76x .row {
    flex-wrap: wrap;
  }
}
.cid-t2Yv7si76x .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2Yv7si76x .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-t2Yv7si76x .img-container {
  display: flex;
  padding: 7rem 0 7rem 4rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-t2Yv7si76x .img-container {
    padding: 5rem 0 5rem 4rem;
  }
}
.cid-t2Yv7si76x .img-container img {
  max-width: 100%;
}
.cid-t2Yv7si76x .col-toggle {
  width: 50%;
  padding-right: 0 !important;
  padding-left: 4rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-t2Yv7si76x .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-t2Yv7si76x .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-t2Yv7si76x .section-head {
  margin-bottom: 0;
}
.cid-t2Yv7si76x .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-t2Yv7si76x .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-t2Yv7si76x .toggle-panel {
  margin-top: 40px;
}
.cid-t2Yv7si76x .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-t2Yv7si76x .card:hover {
  margin-left: 1rem;
}
.cid-t2Yv7si76x .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-t2Yv7si76x .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-t2Yv7si76x .card-header .iconfont-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 32px;
}
.cid-t2Yv7si76x .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #ffffff;
  transition: .3s all;
}
.cid-t2Yv7si76x .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-t2Yv7si76x .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-t2Yv7si76x .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-t2Yv7si76x .panel-title-edit {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-t2Yv7si76x .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uhEG7WsWP4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEG7WsWP4 .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEG7WsWP4 .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uhEG7WsWP4 .col-title,
.cid-uhEG7WsWP4 .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uhEG7WsWP4 .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhEG7WsWP4 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uhEG7WsWP4 .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uhEG7WsWP4 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uhEG7WsWP4 .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uhEG7WsWP4 .mbr-text {
    text-align: center !important;
  }
}
.cid-t2YzETSBMU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-t2YzETSBMU .row {
  align-items: center;
  width: 100%;
}
.cid-t2YzETSBMU .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YzETSBMU .mbr-section-title {
  color: #000000;
}
.cid-t2YzETSBMU .mbr-section-subtitle {
  color: #000000;
}
.cid-t2YzETSBMU .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-t2YzETSBMU .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-t2YzETSBMU .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2YzETSBMU .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-t2YzETSBMU .text-container {
    padding: 24px;
  }
}
.cid-t2YzETSBMU .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YzETSBMU .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-t2YzETSBMU .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-t2YzETSBMU .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-t2YzETSBMU .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-uhCQbpVlXS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #99f5fe;
}
.cid-uhCQbpVlXS .decor-wrap_1 {
  position: absolute;
  top: 2rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhCQbpVlXS .decor-wrap_2 {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: 245px;
  height: 245px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhCQbpVlXS .decor-wrap_3 {
  position: absolute;
  bottom: -35%;
  left: -10rem;
  width: 539px;
  height: 539px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhCQbpVlXS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhCQbpVlXS .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-uhCQbpVlXS .container {
    padding: 0 30px;
  }
}
.cid-uhCQbpVlXS .row {
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-uhCQbpVlXS .image-wrapper {
  background-color: #99f5fe;
  padding: 40px 40px 40px 0;
}
@media (max-width: 992px) {
  .cid-uhCQbpVlXS .image-wrapper {
    padding: 20px 20px 20px 0;
  }
}
.cid-uhCQbpVlXS .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhCQbpVlXS .image-wrapper img {
    height: 350px;
  }
}
.cid-uhEGXNtYk2 {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #000000);
}
@media (min-width: 768px) {
  .cid-uhEGXNtYk2 {
    align-items: flex-start;
  }
  .cid-uhEGXNtYk2 .row {
    justify-content: center;
  }
}
.cid-uhEGXNtYk2 .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uhEGXNtYk2 .mbr-text,
.cid-uhEGXNtYk2 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhEGXNtYk2 .mbr-section-title,
.cid-uhEGXNtYk2 .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhEGXNtYk2 h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uhEGXNtYk2 h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uhEGXNtYk2 .mbr-section-subtitle,
.cid-uhEGXNtYk2 .align {
  text-align: left;
  color: #232323;
}
.cid-uhEGXNtYk2 .mbr-text2 {
  color: #808080;
}
.cid-uhEDDMIaoX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #99f5fe;
}
.cid-uhEDDMIaoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEDDMIaoX .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-uhEDDMIaoX .container {
    padding: 0 30px;
  }
}
.cid-uhEDDMIaoX .row {
  position: relative;
}
.cid-uhEDDMIaoX .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uhEDDMIaoX .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uhEDDMIaoX .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #000000;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uhEDDMIaoX .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uhEDDMIaoX .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uhEDDMIaoX .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhEDDMIaoX .mbr-text {
  color: #ffffff;
}
.cid-uhEDDMIaoX .mbr-link,
.cid-uhEDDMIaoX .mbr-iconfont {
  color: #212529;
}
.cid-uhEDDMIaoX .mbr-section-title {
  color: #ffffff;
}
.cid-uhEHf7ieZN {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #000000);
}
@media (min-width: 768px) {
  .cid-uhEHf7ieZN {
    align-items: flex-start;
  }
  .cid-uhEHf7ieZN .row {
    justify-content: center;
  }
}
.cid-uhEHf7ieZN .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uhEHf7ieZN .mbr-text,
.cid-uhEHf7ieZN .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhEHf7ieZN .mbr-section-title,
.cid-uhEHf7ieZN .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhEHf7ieZN h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uhEHf7ieZN h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uhEHf7ieZN .mbr-section-subtitle,
.cid-uhEHf7ieZN .align {
  text-align: left;
  color: #232323;
}
.cid-uhEHf7ieZN .mbr-text2 {
  color: #808080;
}
.cid-uhDS60R6i6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhDS60R6i6 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhDS60R6i6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhDS60R6i6 .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-uhDS60R6i6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhDS60R6i6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhDS60R6i6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDS60R6i6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhCGutKGAR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhCGutKGAR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhCGutKGAR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhCGutKGAR .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhCGutKGAR .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhCGutKGAR .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-uhCGutKGAR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhCGutKGAR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhCGutKGAR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhCGutKGAR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhCGutKGAR .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhCGutKGAR .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhCGutKGAR .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhCGutKGAR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhCGutKGAR .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-uhCGutKGAR .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhCGutKGAR .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-uhCGutKGAR .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhCGutKGAR .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhCGutKGAR .list li {
  transition: 0.5s all;
}
.cid-uhCGutKGAR .list li:hover {
  opacity: 0.6;
}
.cid-uhCGutKGAR .item-wrap {
  margin-bottom: 12px;
}
.cid-uhCGutKGAR .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhCGutKGAR .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhCGutKGAR .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhCGutKGAR .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhCGutKGAR .copyright-col {
    text-align: center;
  }
}
.cid-uhCGutKGAR .copyright {
  color: #000000;
}
.cid-uhDV9GR1HI {
  background-color: transparent;
}
.cid-uhDV9GR1HI .navbar-dropdown {
  background-color: #99f5fe !important;
  padding: 0;
}
.cid-uhDV9GR1HI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #99f5fe !important;
  background: #99f5fe;
}
.cid-uhDV9GR1HI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhDV9GR1HI .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhDV9GR1HI .menu_box .navbar.opened,
  .cid-uhDV9GR1HI .menu_box .navbar-collapse {
    background-color: #99f5fe !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhDV9GR1HI .navbar-dropdown {
  position: relative !important;
}
.cid-uhDV9GR1HI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhDV9GR1HI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhDV9GR1HI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhDV9GR1HI .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhDV9GR1HI .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhDV9GR1HI .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhDV9GR1HI .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhDV9GR1HI .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhDV9GR1HI .offcanvas-body .mbr-text,
  .cid-uhDV9GR1HI .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhDV9GR1HI .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhDV9GR1HI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhDV9GR1HI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhDV9GR1HI .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-uhDV9GR1HI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhDV9GR1HI 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-uhDV9GR1HI .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhDV9GR1HI .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhDV9GR1HI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhDV9GR1HI .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .nav-item {
    margin: 0 !important;
  }
}
.cid-uhDV9GR1HI .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhDV9GR1HI .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhDV9GR1HI .nav-item .nav-link:hover::before,
.cid-uhDV9GR1HI .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhDV9GR1HI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhDV9GR1HI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhDV9GR1HI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhDV9GR1HI .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-uhDV9GR1HI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhDV9GR1HI .offcanvas_box {
    display: none;
  }
}
.cid-uhDV9GR1HI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhDV9GR1HI .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhDV9GR1HI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhDV9GR1HI .container {
  display: flex;
  margin: auto;
}
.cid-uhDV9GR1HI .iconfont-wrapper {
  color: #202020;
  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-uhDV9GR1HI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhDV9GR1HI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhDV9GR1HI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhDV9GR1HI .navbar-nav {
    margin: 0;
  }
}
.cid-uhDV9GR1HI .dropdown-menu,
.cid-uhDV9GR1HI .navbar.opened {
  background-color: false !important;
}
.cid-uhDV9GR1HI .nav-item:focus,
.cid-uhDV9GR1HI .nav-link:focus {
  outline: none;
}
.cid-uhDV9GR1HI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhDV9GR1HI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhDV9GR1HI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhDV9GR1HI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhDV9GR1HI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhDV9GR1HI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhDV9GR1HI .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhDV9GR1HI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhDV9GR1HI .navbar.opened {
  transition: all 0.3s;
}
.cid-uhDV9GR1HI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhDV9GR1HI .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhDV9GR1HI .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhDV9GR1HI .navbar.collapsed {
  justify-content: center;
}
.cid-uhDV9GR1HI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhDV9GR1HI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhDV9GR1HI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhDV9GR1HI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhDV9GR1HI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhDV9GR1HI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhDV9GR1HI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhDV9GR1HI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhDV9GR1HI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhDV9GR1HI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhDV9GR1HI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhDV9GR1HI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhDV9GR1HI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhDV9GR1HI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhDV9GR1HI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhDV9GR1HI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhDV9GR1HI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhDV9GR1HI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhDV9GR1HI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhDV9GR1HI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhDV9GR1HI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhDV9GR1HI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhDV9GR1HI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhDV9GR1HI .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-uhDV9GR1HI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhDV9GR1HI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhDV9GR1HI .dropdown-item.active,
.cid-uhDV9GR1HI .dropdown-item:active {
  background-color: transparent;
}
.cid-uhDV9GR1HI .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhDV9GR1HI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhDV9GR1HI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhDV9GR1HI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhDV9GR1HI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhDV9GR1HI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhDV9GR1HI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #99f5fe;
  background: #ffffff;
}
.cid-uhDV9GR1HI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhDV9GR1HI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhDV9GR1HI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhDV9GR1HI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhDV9GR1HI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhDV9GR1HI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhDV9GR1HI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhDV9GR1HI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhDV9GR1HI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhDV9GR1HI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhDV9GR1HI .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-uhDV9GR1HI .navbar {
    height: 70px;
  }
  .cid-uhDV9GR1HI .navbar.opened {
    height: auto;
  }
  .cid-uhDV9GR1HI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhDV9GR1HI .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhDV9GR1HI .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhDV9GR1HI .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhDV9GR1HI .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhDV9GR1HI .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhDV9GR1HI .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhDV9GR1HI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhDV9GR1HI .text_widget {
  margin-bottom: 32px;
}
.cid-uhDV9GR1HI .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhDV9GR1HI .text_widget a:hover,
.cid-uhDV9GR1HI .text_widget a:focus {
  opacity: .8;
}
.cid-uhDV9GR1HI .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhDV9GR1HI .navbar-caption {
  color: #202020;
}
.cid-uhDV9GR1HI .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhDV9GR1HI .mbr-section-subtitle,
.cid-uhDV9GR1HI .text_widget,
.cid-uhDV9GR1HI .mbr-section-btn {
  text-align: center;
}
.cid-uhDV9GR1HI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhEKLCmXpU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/496f00873229102e19fc5c9a77af98e0-2000x1500.jpg");
}
.cid-uhEKLCmXpU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEKLCmXpU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEKLCmXpU .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uhEKLCmXpU .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEKLCmXpU .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhEKLCmXpU .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEKLCmXpU .container {
    padding: 0 24px;
  }
}
.cid-uhEKLCmXpU .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uhEKLCmXpU .content-wrapper {
    padding: 0;
  }
}
.cid-uhEKLCmXpU .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uhEKLCmXpU .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uhEKLCmXpU .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uhEKLCmXpU .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhEKLCmXpU .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uhEKLCmXpU .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uhEKLCmXpU .mbr-section-title {
  color: #ffffff;
}
.cid-uhEKLCmXpU .mbr-desc,
.cid-uhEKLCmXpU .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEKLCmXpU .mbr-text,
.cid-uhEKLCmXpU .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEKLCmXpU .mbr-section-title,
.cid-uhEKLCmXpU .mbr-section-btn {
  text-align: center;
}
.cid-uhDV9LkfL9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-uhDV9LkfL9 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ddff55;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uhDV9LkfL9 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uhDV9LkfL9 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uhDV9LkfL9 .main-title.display-2 {
  line-height: 1.375;
}
.cid-uhDV9LkfL9 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uhDV9LkfL9 .mbr-text {
  color: #606060;
}
.cid-uhDV9LkfL9 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uhDV9LkfL9 .mbr-section-btn {
  margin-top: 24px;
}
.cid-uhDV9LkfL9 .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uhDV9LkfL9 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uhDV9LkfL9 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uhDV9LkfL9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDV9LkfL9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDV9LkfL9 .mbr-text,
.cid-uhDV9LkfL9 .mbr-section-btn {
  color: #000000;
}
.cid-uhDV9ZodSZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhDV9ZodSZ .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhDV9ZodSZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhDV9ZodSZ .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-uhDV9ZodSZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhDV9ZodSZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhDV9ZodSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDV9ZodSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVa0I5qq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhDVa0I5qq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDVa0I5qq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVa0I5qq .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhDVa0I5qq .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhDVa0I5qq .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-uhDVa0I5qq .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhDVa0I5qq .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhDVa0I5qq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhDVa0I5qq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhDVa0I5qq .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhDVa0I5qq .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhDVa0I5qq .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhDVa0I5qq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhDVa0I5qq .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-uhDVa0I5qq .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhDVa0I5qq .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-uhDVa0I5qq .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhDVa0I5qq .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhDVa0I5qq .list li {
  transition: 0.5s all;
}
.cid-uhDVa0I5qq .list li:hover {
  opacity: 0.6;
}
.cid-uhDVa0I5qq .item-wrap {
  margin-bottom: 12px;
}
.cid-uhDVa0I5qq .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhDVa0I5qq .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhDVa0I5qq .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhDVa0I5qq .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhDVa0I5qq .copyright-col {
    text-align: center;
  }
}
.cid-uhDVa0I5qq .copyright {
  color: #000000;
}
.cid-uhDVPmALQ6 {
  background-color: transparent;
}
.cid-uhDVPmALQ6 .navbar-dropdown {
  background-color: #99f5fe !important;
  padding: 0;
}
.cid-uhDVPmALQ6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #99f5fe !important;
  background: #99f5fe;
}
.cid-uhDVPmALQ6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhDVPmALQ6 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhDVPmALQ6 .menu_box .navbar.opened,
  .cid-uhDVPmALQ6 .menu_box .navbar-collapse {
    background-color: #99f5fe !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhDVPmALQ6 .navbar-dropdown {
  position: relative !important;
}
.cid-uhDVPmALQ6 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhDVPmALQ6 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhDVPmALQ6 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhDVPmALQ6 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhDVPmALQ6 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhDVPmALQ6 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhDVPmALQ6 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhDVPmALQ6 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhDVPmALQ6 .offcanvas-body .mbr-text,
  .cid-uhDVPmALQ6 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhDVPmALQ6 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhDVPmALQ6 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhDVPmALQ6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhDVPmALQ6 .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-uhDVPmALQ6 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhDVPmALQ6 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-uhDVPmALQ6 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhDVPmALQ6 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhDVPmALQ6 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhDVPmALQ6 .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .nav-item {
    margin: 0 !important;
  }
}
.cid-uhDVPmALQ6 .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhDVPmALQ6 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhDVPmALQ6 .nav-item .nav-link:hover::before,
.cid-uhDVPmALQ6 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhDVPmALQ6 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhDVPmALQ6 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhDVPmALQ6 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhDVPmALQ6 .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-uhDVPmALQ6 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhDVPmALQ6 .offcanvas_box {
    display: none;
  }
}
.cid-uhDVPmALQ6 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhDVPmALQ6 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhDVPmALQ6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhDVPmALQ6 .container {
  display: flex;
  margin: auto;
}
.cid-uhDVPmALQ6 .iconfont-wrapper {
  color: #202020;
  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-uhDVPmALQ6 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhDVPmALQ6 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhDVPmALQ6 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhDVPmALQ6 .navbar-nav {
    margin: 0;
  }
}
.cid-uhDVPmALQ6 .dropdown-menu,
.cid-uhDVPmALQ6 .navbar.opened {
  background-color: false !important;
}
.cid-uhDVPmALQ6 .nav-item:focus,
.cid-uhDVPmALQ6 .nav-link:focus {
  outline: none;
}
.cid-uhDVPmALQ6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhDVPmALQ6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhDVPmALQ6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhDVPmALQ6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhDVPmALQ6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhDVPmALQ6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhDVPmALQ6 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhDVPmALQ6 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhDVPmALQ6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uhDVPmALQ6 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhDVPmALQ6 .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhDVPmALQ6 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhDVPmALQ6 .navbar.collapsed {
  justify-content: center;
}
.cid-uhDVPmALQ6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhDVPmALQ6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhDVPmALQ6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhDVPmALQ6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhDVPmALQ6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhDVPmALQ6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhDVPmALQ6 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhDVPmALQ6 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhDVPmALQ6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhDVPmALQ6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhDVPmALQ6 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhDVPmALQ6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhDVPmALQ6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhDVPmALQ6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhDVPmALQ6 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhDVPmALQ6 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhDVPmALQ6 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhDVPmALQ6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhDVPmALQ6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhDVPmALQ6 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhDVPmALQ6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhDVPmALQ6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhDVPmALQ6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhDVPmALQ6 .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-uhDVPmALQ6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhDVPmALQ6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhDVPmALQ6 .dropdown-item.active,
.cid-uhDVPmALQ6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uhDVPmALQ6 .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhDVPmALQ6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhDVPmALQ6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhDVPmALQ6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhDVPmALQ6 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhDVPmALQ6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhDVPmALQ6 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #99f5fe;
  background: #ffffff;
}
.cid-uhDVPmALQ6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhDVPmALQ6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhDVPmALQ6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhDVPmALQ6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhDVPmALQ6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhDVPmALQ6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhDVPmALQ6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhDVPmALQ6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhDVPmALQ6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhDVPmALQ6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhDVPmALQ6 .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-uhDVPmALQ6 .navbar {
    height: 70px;
  }
  .cid-uhDVPmALQ6 .navbar.opened {
    height: auto;
  }
  .cid-uhDVPmALQ6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhDVPmALQ6 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhDVPmALQ6 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhDVPmALQ6 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhDVPmALQ6 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhDVPmALQ6 .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhDVPmALQ6 .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhDVPmALQ6 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhDVPmALQ6 .text_widget {
  margin-bottom: 32px;
}
.cid-uhDVPmALQ6 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhDVPmALQ6 .text_widget a:hover,
.cid-uhDVPmALQ6 .text_widget a:focus {
  opacity: .8;
}
.cid-uhDVPmALQ6 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhDVPmALQ6 .navbar-caption {
  color: #202020;
}
.cid-uhDVPmALQ6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhDVPmALQ6 .mbr-section-subtitle,
.cid-uhDVPmALQ6 .text_widget,
.cid-uhDVPmALQ6 .mbr-section-btn {
  text-align: center;
}
.cid-uhDVPmALQ6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhEL3FTSkv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/gettyimages-1205347295-1200x675.jpg");
}
.cid-uhEL3FTSkv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEL3FTSkv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEL3FTSkv .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uhEL3FTSkv .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEL3FTSkv .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhEL3FTSkv .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEL3FTSkv .container {
    padding: 0 24px;
  }
}
.cid-uhEL3FTSkv .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uhEL3FTSkv .content-wrapper {
    padding: 0;
  }
}
.cid-uhEL3FTSkv .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uhEL3FTSkv .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uhEL3FTSkv .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uhEL3FTSkv .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhEL3FTSkv .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uhEL3FTSkv .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uhEL3FTSkv .mbr-section-title {
  color: #ffffff;
}
.cid-uhEL3FTSkv .mbr-desc,
.cid-uhEL3FTSkv .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEL3FTSkv .mbr-text,
.cid-uhEL3FTSkv .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEL3FTSkv .mbr-section-title,
.cid-uhEL3FTSkv .mbr-section-btn {
  text-align: center;
}
.cid-uhDVPqn16I {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-uhDVPqn16I .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ddff55;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uhDVPqn16I .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uhDVPqn16I .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uhDVPqn16I .main-title.display-2 {
  line-height: 1.375;
}
.cid-uhDVPqn16I .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uhDVPqn16I .mbr-text {
  color: #606060;
}
.cid-uhDVPqn16I .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uhDVPqn16I .mbr-section-btn {
  margin-top: 24px;
}
.cid-uhDVPqn16I .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uhDVPqn16I .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uhDVPqn16I .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uhDVPqn16I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDVPqn16I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVPqn16I .mbr-text,
.cid-uhDVPqn16I .mbr-section-btn {
  color: #000000;
}
.cid-uhDVPrqqnx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhDVPrqqnx .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhDVPrqqnx .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhDVPrqqnx .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-uhDVPrqqnx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhDVPrqqnx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhDVPrqqnx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDVPrqqnx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVPstKYJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhDVPstKYJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDVPstKYJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVPstKYJ .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhDVPstKYJ .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhDVPstKYJ .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-uhDVPstKYJ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhDVPstKYJ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhDVPstKYJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhDVPstKYJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhDVPstKYJ .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhDVPstKYJ .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhDVPstKYJ .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhDVPstKYJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhDVPstKYJ .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-uhDVPstKYJ .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhDVPstKYJ .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-uhDVPstKYJ .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhDVPstKYJ .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhDVPstKYJ .list li {
  transition: 0.5s all;
}
.cid-uhDVPstKYJ .list li:hover {
  opacity: 0.6;
}
.cid-uhDVPstKYJ .item-wrap {
  margin-bottom: 12px;
}
.cid-uhDVPstKYJ .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhDVPstKYJ .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhDVPstKYJ .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhDVPstKYJ .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhDVPstKYJ .copyright-col {
    text-align: center;
  }
}
.cid-uhDVPstKYJ .copyright {
  color: #000000;
}
.cid-uhEL6R8H8K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/download-2-3-1000x1000.jpg");
}
.cid-uhEL6R8H8K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEL6R8H8K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEL6R8H8K .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uhEL6R8H8K .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEL6R8H8K .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhEL6R8H8K .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEL6R8H8K .container {
    padding: 0 24px;
  }
}
.cid-uhEL6R8H8K .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uhEL6R8H8K .content-wrapper {
    padding: 0;
  }
}
.cid-uhEL6R8H8K .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uhEL6R8H8K .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uhEL6R8H8K .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uhEL6R8H8K .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhEL6R8H8K .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uhEL6R8H8K .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uhEL6R8H8K .mbr-section-title {
  color: #ffffff;
}
.cid-uhEL6R8H8K .mbr-desc,
.cid-uhEL6R8H8K .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEL6R8H8K .mbr-text,
.cid-uhEL6R8H8K .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEL6R8H8K .mbr-section-title,
.cid-uhEL6R8H8K .mbr-section-btn {
  text-align: center;
}
.cid-uhEL6SctzE {
  background-color: transparent;
}
.cid-uhEL6SctzE .navbar-dropdown {
  background-color: #99f5fe !important;
  padding: 0;
}
.cid-uhEL6SctzE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #99f5fe !important;
  background: #99f5fe;
}
.cid-uhEL6SctzE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhEL6SctzE .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhEL6SctzE .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhEL6SctzE .menu_box .navbar.opened,
  .cid-uhEL6SctzE .menu_box .navbar-collapse {
    background-color: #99f5fe !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhEL6SctzE .navbar-dropdown {
  position: relative !important;
}
.cid-uhEL6SctzE .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhEL6SctzE .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhEL6SctzE .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhEL6SctzE .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhEL6SctzE .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhEL6SctzE .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhEL6SctzE .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhEL6SctzE .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhEL6SctzE .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhEL6SctzE .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhEL6SctzE .offcanvas-body .mbr-text,
  .cid-uhEL6SctzE .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhEL6SctzE .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhEL6SctzE .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhEL6SctzE .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhEL6SctzE .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhEL6SctzE .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhEL6SctzE .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhEL6SctzE .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhEL6SctzE ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhEL6SctzE .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhEL6SctzE .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-uhEL6SctzE .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhEL6SctzE 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-uhEL6SctzE .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhEL6SctzE .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhEL6SctzE .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhEL6SctzE .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhEL6SctzE .nav-item {
    margin: 0 !important;
  }
}
.cid-uhEL6SctzE .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhEL6SctzE .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhEL6SctzE .nav-item .nav-link:hover::before,
.cid-uhEL6SctzE .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhEL6SctzE .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhEL6SctzE .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhEL6SctzE .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhEL6SctzE .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhEL6SctzE .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-uhEL6SctzE .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhEL6SctzE .offcanvas_box {
    display: none;
  }
}
.cid-uhEL6SctzE .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhEL6SctzE .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhEL6SctzE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhEL6SctzE .container {
  display: flex;
  margin: auto;
}
.cid-uhEL6SctzE .iconfont-wrapper {
  color: #202020;
  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-uhEL6SctzE .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhEL6SctzE .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhEL6SctzE .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhEL6SctzE .navbar-nav {
    margin: 0;
  }
}
.cid-uhEL6SctzE .dropdown-menu,
.cid-uhEL6SctzE .navbar.opened {
  background-color: false !important;
}
.cid-uhEL6SctzE .nav-item:focus,
.cid-uhEL6SctzE .nav-link:focus {
  outline: none;
}
.cid-uhEL6SctzE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhEL6SctzE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhEL6SctzE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhEL6SctzE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhEL6SctzE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhEL6SctzE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhEL6SctzE .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhEL6SctzE .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhEL6SctzE .navbar.opened {
  transition: all 0.3s;
}
.cid-uhEL6SctzE .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhEL6SctzE .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhEL6SctzE .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhEL6SctzE .navbar.collapsed {
  justify-content: center;
}
.cid-uhEL6SctzE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhEL6SctzE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhEL6SctzE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhEL6SctzE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhEL6SctzE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhEL6SctzE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhEL6SctzE .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEL6SctzE .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhEL6SctzE .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhEL6SctzE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhEL6SctzE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhEL6SctzE .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhEL6SctzE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhEL6SctzE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhEL6SctzE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhEL6SctzE .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhEL6SctzE .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhEL6SctzE .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhEL6SctzE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhEL6SctzE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhEL6SctzE .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhEL6SctzE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhEL6SctzE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhEL6SctzE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhEL6SctzE .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-uhEL6SctzE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhEL6SctzE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhEL6SctzE .dropdown-item.active,
.cid-uhEL6SctzE .dropdown-item:active {
  background-color: transparent;
}
.cid-uhEL6SctzE .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhEL6SctzE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhEL6SctzE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhEL6SctzE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhEL6SctzE ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhEL6SctzE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhEL6SctzE button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #99f5fe;
  background: #ffffff;
}
.cid-uhEL6SctzE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhEL6SctzE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhEL6SctzE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhEL6SctzE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhEL6SctzE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhEL6SctzE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhEL6SctzE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhEL6SctzE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhEL6SctzE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhEL6SctzE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhEL6SctzE .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-uhEL6SctzE .navbar {
    height: 70px;
  }
  .cid-uhEL6SctzE .navbar.opened {
    height: auto;
  }
  .cid-uhEL6SctzE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhEL6SctzE .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhEL6SctzE .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhEL6SctzE .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhEL6SctzE .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhEL6SctzE .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhEL6SctzE .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhEL6SctzE .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhEL6SctzE .text_widget {
  margin-bottom: 32px;
}
.cid-uhEL6SctzE .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhEL6SctzE .text_widget a:hover,
.cid-uhEL6SctzE .text_widget a:focus {
  opacity: .8;
}
.cid-uhEL6SctzE .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhEL6SctzE .navbar-caption {
  color: #202020;
}
.cid-uhEL6SctzE .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhEL6SctzE .mbr-section-subtitle,
.cid-uhEL6SctzE .text_widget,
.cid-uhEL6SctzE .mbr-section-btn {
  text-align: center;
}
.cid-uhEL6SctzE a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhEL6Tmkik {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEL6Tmkik .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uhEL6Tmkik .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uhEL6Tmkik .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uhEL6Tmkik .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uhEL6Tmkik .mbr-text {
  color: #000000;
}
.cid-uhEL6UfOlb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uhEL6UfOlb blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #99f5fe;
}
.cid-uhEL6UfOlb .mbr-section-title {
  text-align: center;
}
.cid-uhEL6UfOlb .mbr-text {
  color: #000000;
}
.cid-uhEL6VbbWk {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #99f5fe;
}
.cid-uhEL6VbbWk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEL6VbbWk .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-uhEL6VbbWk .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uhEL6VbbWk .row {
  background: #000000;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uhEL6VbbWk .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-uhEL6VbbWk img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uhEL6VbbWk img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhEL6VbbWk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uhEL6VbbWk .mbr-section-title {
  color: #ffffff;
}
.cid-uhEL6VbbWk .mbr-text,
.cid-uhEL6VbbWk .mbr-section-btn {
  color: #ffffff;
}
.cid-uhEL6Wdu9r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uhEL6Wdu9r .row {
  align-items: center;
  width: 100%;
}
.cid-uhEL6Wdu9r .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhEL6Wdu9r .mbr-section-title {
  color: #f3f4ef;
}
.cid-uhEL6Wdu9r .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-uhEL6Wdu9r .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-uhEL6Wdu9r .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhEL6Wdu9r .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhEL6Wdu9r .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uhEL6Wdu9r .text-container {
    padding: 24px;
  }
}
.cid-uhEL6Wdu9r .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhEL6Wdu9r .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhEL6Wdu9r .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-uhEL6Wdu9r .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhEL6Wdu9r .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-uhEL6XxZ2C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEL6XxZ2C .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEL6XxZ2C .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uhEL6XxZ2C .col-title,
.cid-uhEL6XxZ2C .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uhEL6XxZ2C .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhEL6XxZ2C .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uhEL6XxZ2C .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uhEL6XxZ2C .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uhEL6XxZ2C .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uhEL6XxZ2C .mbr-text {
    text-align: center !important;
  }
}
.cid-uhEL6YwLEO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uhEL6YwLEO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEL6YwLEO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEL6YwLEO .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-uhEL6YwLEO .row {
    flex-wrap: wrap;
  }
}
.cid-uhEL6YwLEO .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhEL6YwLEO .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uhEL6YwLEO .img-container {
  display: flex;
  padding: 7rem 0 7rem 4rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-uhEL6YwLEO .img-container {
    padding: 5rem 0 5rem 4rem;
  }
}
.cid-uhEL6YwLEO .img-container img {
  max-width: 100%;
}
.cid-uhEL6YwLEO .col-toggle {
  width: 50%;
  padding-right: 0 !important;
  padding-left: 4rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uhEL6YwLEO .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-uhEL6YwLEO .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uhEL6YwLEO .section-head {
  margin-bottom: 0;
}
.cid-uhEL6YwLEO .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uhEL6YwLEO .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-uhEL6YwLEO .toggle-panel {
  margin-top: 40px;
}
.cid-uhEL6YwLEO .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-uhEL6YwLEO .card:hover {
  margin-left: 1rem;
}
.cid-uhEL6YwLEO .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-uhEL6YwLEO .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-uhEL6YwLEO .card-header .iconfont-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 32px;
}
.cid-uhEL6YwLEO .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #ffffff;
  transition: .3s all;
}
.cid-uhEL6YwLEO .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-uhEL6YwLEO .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-uhEL6YwLEO .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-uhEL6YwLEO .panel-title-edit {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uhEL6YwLEO .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uhEL709zvX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEL709zvX .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEL709zvX .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uhEL709zvX .col-title,
.cid-uhEL709zvX .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uhEL709zvX .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhEL709zvX .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uhEL709zvX .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uhEL709zvX .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uhEL709zvX .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uhEL709zvX .mbr-text {
    text-align: center !important;
  }
}
.cid-uhEL71aU3X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uhEL71aU3X .row {
  align-items: center;
  width: 100%;
}
.cid-uhEL71aU3X .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhEL71aU3X .mbr-section-title {
  color: #000000;
}
.cid-uhEL71aU3X .mbr-section-subtitle {
  color: #000000;
}
.cid-uhEL71aU3X .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-uhEL71aU3X .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhEL71aU3X .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhEL71aU3X .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uhEL71aU3X .text-container {
    padding: 24px;
  }
}
.cid-uhEL71aU3X .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhEL71aU3X .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhEL71aU3X .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-uhEL71aU3X .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhEL71aU3X .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-uhEL72wZKF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #99f5fe;
}
.cid-uhEL72wZKF .decor-wrap_1 {
  position: absolute;
  top: 2rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhEL72wZKF .decor-wrap_2 {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: 245px;
  height: 245px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhEL72wZKF .decor-wrap_3 {
  position: absolute;
  bottom: -35%;
  left: -10rem;
  width: 539px;
  height: 539px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhEL72wZKF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEL72wZKF .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-uhEL72wZKF .container {
    padding: 0 30px;
  }
}
.cid-uhEL72wZKF .row {
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-uhEL72wZKF .image-wrapper {
  background-color: #99f5fe;
  padding: 40px 40px 40px 0;
}
@media (max-width: 992px) {
  .cid-uhEL72wZKF .image-wrapper {
    padding: 20px 20px 20px 0;
  }
}
.cid-uhEL72wZKF .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhEL72wZKF .image-wrapper img {
    height: 350px;
  }
}
.cid-uhEL73Dw8c {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #000000);
}
@media (min-width: 768px) {
  .cid-uhEL73Dw8c {
    align-items: flex-start;
  }
  .cid-uhEL73Dw8c .row {
    justify-content: center;
  }
}
.cid-uhEL73Dw8c .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uhEL73Dw8c .mbr-text,
.cid-uhEL73Dw8c .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhEL73Dw8c .mbr-section-title,
.cid-uhEL73Dw8c .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhEL73Dw8c h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uhEL73Dw8c h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uhEL73Dw8c .mbr-section-subtitle,
.cid-uhEL73Dw8c .align {
  text-align: left;
  color: #232323;
}
.cid-uhEL73Dw8c .mbr-text2 {
  color: #808080;
}
.cid-uhEL74ItnV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #99f5fe;
}
.cid-uhEL74ItnV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEL74ItnV .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-uhEL74ItnV .container {
    padding: 0 30px;
  }
}
.cid-uhEL74ItnV .row {
  position: relative;
}
.cid-uhEL74ItnV .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uhEL74ItnV .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uhEL74ItnV .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #000000;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uhEL74ItnV .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uhEL74ItnV .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uhEL74ItnV .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhEL74ItnV .mbr-text {
  color: #ffffff;
}
.cid-uhEL74ItnV .mbr-link,
.cid-uhEL74ItnV .mbr-iconfont {
  color: #212529;
}
.cid-uhEL74ItnV .mbr-section-title {
  color: #ffffff;
}
.cid-uhEL75PZ3U {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #000000);
}
@media (min-width: 768px) {
  .cid-uhEL75PZ3U {
    align-items: flex-start;
  }
  .cid-uhEL75PZ3U .row {
    justify-content: center;
  }
}
.cid-uhEL75PZ3U .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uhEL75PZ3U .mbr-text,
.cid-uhEL75PZ3U .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhEL75PZ3U .mbr-section-title,
.cid-uhEL75PZ3U .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhEL75PZ3U h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uhEL75PZ3U h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uhEL75PZ3U .mbr-section-subtitle,
.cid-uhEL75PZ3U .align {
  text-align: left;
  color: #232323;
}
.cid-uhEL75PZ3U .mbr-text2 {
  color: #808080;
}
.cid-uhETaWW5bK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhETaWW5bK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhETaWW5bK .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-uhETaWW5bK .container {
    padding: 0 30px;
  }
}
.cid-uhETaWW5bK .row {
  justify-content: center;
}
.cid-uhETaWW5bK .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhETaWW5bK .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhETaWW5bK .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #000000;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uhETaWW5bK .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uhETaWW5bK .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhETaWW5bK .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhETaWW5bK .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhETaWW5bK .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  background-color: #000000;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uhETaWW5bK .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uhETaWW5bK .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uhETaWW5bK .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhETaWW5bK .mbr-section-title {
  color: #000000;
}
.cid-uhETaWW5bK .panel-title-edit {
  color: #000000;
}
.cid-uhETaWW5bK .panel-text {
  color: #144031;
}
.cid-uhEL76Ptkf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhEL76Ptkf .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhEL76Ptkf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhEL76Ptkf .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-uhEL76Ptkf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhEL76Ptkf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhEL76Ptkf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEL76Ptkf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEL782Fd5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEL782Fd5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEL782Fd5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEL782Fd5 .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhEL782Fd5 .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhEL782Fd5 .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-uhEL782Fd5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhEL782Fd5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhEL782Fd5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhEL782Fd5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhEL782Fd5 .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhEL782Fd5 .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhEL782Fd5 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhEL782Fd5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhEL782Fd5 .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-uhEL782Fd5 .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhEL782Fd5 .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-uhEL782Fd5 .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhEL782Fd5 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhEL782Fd5 .list li {
  transition: 0.5s all;
}
.cid-uhEL782Fd5 .list li:hover {
  opacity: 0.6;
}
.cid-uhEL782Fd5 .item-wrap {
  margin-bottom: 12px;
}
.cid-uhEL782Fd5 .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhEL782Fd5 .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhEL782Fd5 .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhEL782Fd5 .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhEL782Fd5 .copyright-col {
    text-align: center;
  }
}
.cid-uhEL782Fd5 .copyright {
  color: #000000;
}
.cid-uhEVkw8V5I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/13-612x408.jpg");
}
.cid-uhEVkw8V5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEVkw8V5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEVkw8V5I .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uhEVkw8V5I .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEVkw8V5I .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhEVkw8V5I .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEVkw8V5I .container {
    padding: 0 24px;
  }
}
.cid-uhEVkw8V5I .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uhEVkw8V5I .content-wrapper {
    padding: 0;
  }
}
.cid-uhEVkw8V5I .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uhEVkw8V5I .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uhEVkw8V5I .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uhEVkw8V5I .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhEVkw8V5I .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uhEVkw8V5I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uhEVkw8V5I .mbr-section-title {
  color: #ffffff;
}
.cid-uhEVkw8V5I .mbr-desc,
.cid-uhEVkw8V5I .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEVkw8V5I .mbr-text,
.cid-uhEVkw8V5I .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEVkw8V5I .mbr-section-title,
.cid-uhEVkw8V5I .mbr-section-btn {
  text-align: center;
}
.cid-uhEVky7DxI {
  background-color: transparent;
}
.cid-uhEVky7DxI .navbar-dropdown {
  background-color: #99f5fe !important;
  padding: 0;
}
.cid-uhEVky7DxI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #99f5fe !important;
  background: #99f5fe;
}
.cid-uhEVky7DxI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhEVky7DxI .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhEVky7DxI .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhEVky7DxI .menu_box .navbar.opened,
  .cid-uhEVky7DxI .menu_box .navbar-collapse {
    background-color: #99f5fe !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhEVky7DxI .navbar-dropdown {
  position: relative !important;
}
.cid-uhEVky7DxI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhEVky7DxI .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhEVky7DxI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhEVky7DxI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhEVky7DxI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhEVky7DxI .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhEVky7DxI .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhEVky7DxI .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhEVky7DxI .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhEVky7DxI .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhEVky7DxI .offcanvas-body .mbr-text,
  .cid-uhEVky7DxI .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhEVky7DxI .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhEVky7DxI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhEVky7DxI .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhEVky7DxI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhEVky7DxI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhEVky7DxI .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhEVky7DxI .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhEVky7DxI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhEVky7DxI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhEVky7DxI .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-uhEVky7DxI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhEVky7DxI 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-uhEVky7DxI .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhEVky7DxI .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhEVky7DxI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhEVky7DxI .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhEVky7DxI .nav-item {
    margin: 0 !important;
  }
}
.cid-uhEVky7DxI .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhEVky7DxI .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhEVky7DxI .nav-item .nav-link:hover::before,
.cid-uhEVky7DxI .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhEVky7DxI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhEVky7DxI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhEVky7DxI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhEVky7DxI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhEVky7DxI .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-uhEVky7DxI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhEVky7DxI .offcanvas_box {
    display: none;
  }
}
.cid-uhEVky7DxI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhEVky7DxI .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhEVky7DxI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhEVky7DxI .container {
  display: flex;
  margin: auto;
}
.cid-uhEVky7DxI .iconfont-wrapper {
  color: #202020;
  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-uhEVky7DxI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhEVky7DxI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhEVky7DxI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhEVky7DxI .navbar-nav {
    margin: 0;
  }
}
.cid-uhEVky7DxI .dropdown-menu,
.cid-uhEVky7DxI .navbar.opened {
  background-color: false !important;
}
.cid-uhEVky7DxI .nav-item:focus,
.cid-uhEVky7DxI .nav-link:focus {
  outline: none;
}
.cid-uhEVky7DxI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhEVky7DxI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhEVky7DxI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhEVky7DxI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhEVky7DxI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhEVky7DxI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhEVky7DxI .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhEVky7DxI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhEVky7DxI .navbar.opened {
  transition: all 0.3s;
}
.cid-uhEVky7DxI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhEVky7DxI .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhEVky7DxI .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhEVky7DxI .navbar.collapsed {
  justify-content: center;
}
.cid-uhEVky7DxI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhEVky7DxI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhEVky7DxI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhEVky7DxI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhEVky7DxI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhEVky7DxI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhEVky7DxI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEVky7DxI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhEVky7DxI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhEVky7DxI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhEVky7DxI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhEVky7DxI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhEVky7DxI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhEVky7DxI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhEVky7DxI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhEVky7DxI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhEVky7DxI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhEVky7DxI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhEVky7DxI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhEVky7DxI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhEVky7DxI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhEVky7DxI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhEVky7DxI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhEVky7DxI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhEVky7DxI .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-uhEVky7DxI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhEVky7DxI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhEVky7DxI .dropdown-item.active,
.cid-uhEVky7DxI .dropdown-item:active {
  background-color: transparent;
}
.cid-uhEVky7DxI .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhEVky7DxI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhEVky7DxI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhEVky7DxI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhEVky7DxI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhEVky7DxI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhEVky7DxI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #99f5fe;
  background: #ffffff;
}
.cid-uhEVky7DxI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhEVky7DxI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhEVky7DxI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhEVky7DxI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhEVky7DxI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhEVky7DxI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhEVky7DxI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhEVky7DxI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhEVky7DxI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhEVky7DxI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhEVky7DxI .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-uhEVky7DxI .navbar {
    height: 70px;
  }
  .cid-uhEVky7DxI .navbar.opened {
    height: auto;
  }
  .cid-uhEVky7DxI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhEVky7DxI .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhEVky7DxI .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhEVky7DxI .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhEVky7DxI .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhEVky7DxI .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhEVky7DxI .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhEVky7DxI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhEVky7DxI .text_widget {
  margin-bottom: 32px;
}
.cid-uhEVky7DxI .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhEVky7DxI .text_widget a:hover,
.cid-uhEVky7DxI .text_widget a:focus {
  opacity: .8;
}
.cid-uhEVky7DxI .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhEVky7DxI .navbar-caption {
  color: #202020;
}
.cid-uhEVky7DxI .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhEVky7DxI .mbr-section-subtitle,
.cid-uhEVky7DxI .text_widget,
.cid-uhEVky7DxI .mbr-section-btn {
  text-align: center;
}
.cid-uhEVky7DxI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhEVkA23lR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEVkA23lR .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uhEVkA23lR .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uhEVkA23lR .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uhEVkA23lR .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uhEVkA23lR .mbr-text {
  color: #000000;
}
.cid-uhEVkBqYUG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uhEVkBqYUG blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #99f5fe;
}
.cid-uhEVkBqYUG .mbr-section-title {
  text-align: center;
}
.cid-uhEVkBqYUG .mbr-text {
  color: #000000;
}
.cid-uhEVkCZZMx {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #99f5fe;
}
.cid-uhEVkCZZMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEVkCZZMx .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-uhEVkCZZMx .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uhEVkCZZMx .row {
  background: #000000;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uhEVkCZZMx .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-uhEVkCZZMx img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uhEVkCZZMx img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhEVkCZZMx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uhEVkCZZMx .mbr-section-title {
  color: #ffffff;
}
.cid-uhEVkCZZMx .mbr-text,
.cid-uhEVkCZZMx .mbr-section-btn {
  color: #ffffff;
}
.cid-uhEVkEDNbA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uhEVkEDNbA .row {
  align-items: center;
  width: 100%;
}
.cid-uhEVkEDNbA .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhEVkEDNbA .mbr-section-title {
  color: #f3f4ef;
}
.cid-uhEVkEDNbA .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-uhEVkEDNbA .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-uhEVkEDNbA .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhEVkEDNbA .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhEVkEDNbA .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uhEVkEDNbA .text-container {
    padding: 24px;
  }
}
.cid-uhEVkEDNbA .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhEVkEDNbA .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhEVkEDNbA .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-uhEVkEDNbA .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhEVkEDNbA .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-uhEVkGFvTY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEVkGFvTY .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEVkGFvTY .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uhEVkGFvTY .col-title,
.cid-uhEVkGFvTY .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uhEVkGFvTY .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhEVkGFvTY .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uhEVkGFvTY .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uhEVkGFvTY .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uhEVkGFvTY .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uhEVkGFvTY .mbr-text {
    text-align: center !important;
  }
}
.cid-uhEVkIdZlq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uhEVkIdZlq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEVkIdZlq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEVkIdZlq .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-uhEVkIdZlq .row {
    flex-wrap: wrap;
  }
}
.cid-uhEVkIdZlq .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhEVkIdZlq .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uhEVkIdZlq .img-container {
  display: flex;
  padding: 7rem 0 7rem 4rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-uhEVkIdZlq .img-container {
    padding: 5rem 0 5rem 4rem;
  }
}
.cid-uhEVkIdZlq .img-container img {
  max-width: 100%;
}
.cid-uhEVkIdZlq .col-toggle {
  width: 50%;
  padding-right: 0 !important;
  padding-left: 4rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uhEVkIdZlq .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-uhEVkIdZlq .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uhEVkIdZlq .section-head {
  margin-bottom: 0;
}
.cid-uhEVkIdZlq .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uhEVkIdZlq .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-uhEVkIdZlq .toggle-panel {
  margin-top: 40px;
}
.cid-uhEVkIdZlq .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-uhEVkIdZlq .card:hover {
  margin-left: 1rem;
}
.cid-uhEVkIdZlq .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-uhEVkIdZlq .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-uhEVkIdZlq .card-header .iconfont-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 32px;
}
.cid-uhEVkIdZlq .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #ffffff;
  transition: .3s all;
}
.cid-uhEVkIdZlq .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-uhEVkIdZlq .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-uhEVkIdZlq .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-uhEVkIdZlq .panel-title-edit {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uhEVkIdZlq .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uhEVkKg70s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEVkKg70s .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEVkKg70s .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uhEVkKg70s .col-title,
.cid-uhEVkKg70s .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uhEVkKg70s .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhEVkKg70s .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uhEVkKg70s .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uhEVkKg70s .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uhEVkKg70s .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uhEVkKg70s .mbr-text {
    text-align: center !important;
  }
}
.cid-uhEVkM9LkM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uhEVkM9LkM .row {
  align-items: center;
  width: 100%;
}
.cid-uhEVkM9LkM .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhEVkM9LkM .mbr-section-title {
  color: #000000;
}
.cid-uhEVkM9LkM .mbr-section-subtitle {
  color: #000000;
}
.cid-uhEVkM9LkM .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-uhEVkM9LkM .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhEVkM9LkM .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhEVkM9LkM .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uhEVkM9LkM .text-container {
    padding: 24px;
  }
}
.cid-uhEVkM9LkM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhEVkM9LkM .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhEVkM9LkM .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-uhEVkM9LkM .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhEVkM9LkM .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-uhEVkOcePO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #99f5fe;
}
.cid-uhEVkOcePO .decor-wrap_1 {
  position: absolute;
  top: 2rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhEVkOcePO .decor-wrap_2 {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: 245px;
  height: 245px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhEVkOcePO .decor-wrap_3 {
  position: absolute;
  bottom: -35%;
  left: -10rem;
  width: 539px;
  height: 539px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhEVkOcePO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEVkOcePO .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-uhEVkOcePO .container {
    padding: 0 30px;
  }
}
.cid-uhEVkOcePO .row {
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-uhEVkOcePO .image-wrapper {
  background-color: #99f5fe;
  padding: 40px 40px 40px 0;
}
@media (max-width: 992px) {
  .cid-uhEVkOcePO .image-wrapper {
    padding: 20px 20px 20px 0;
  }
}
.cid-uhEVkOcePO .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhEVkOcePO .image-wrapper img {
    height: 350px;
  }
}
.cid-uhEVkQ7CFz {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #000000);
}
@media (min-width: 768px) {
  .cid-uhEVkQ7CFz {
    align-items: flex-start;
  }
  .cid-uhEVkQ7CFz .row {
    justify-content: center;
  }
}
.cid-uhEVkQ7CFz .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uhEVkQ7CFz .mbr-text,
.cid-uhEVkQ7CFz .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhEVkQ7CFz .mbr-section-title,
.cid-uhEVkQ7CFz .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhEVkQ7CFz h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uhEVkQ7CFz h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uhEVkQ7CFz .mbr-section-subtitle,
.cid-uhEVkQ7CFz .align {
  text-align: left;
  color: #232323;
}
.cid-uhEVkQ7CFz .mbr-text2 {
  color: #808080;
}
.cid-uhEVkRSGwA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #99f5fe;
}
.cid-uhEVkRSGwA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEVkRSGwA .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-uhEVkRSGwA .container {
    padding: 0 30px;
  }
}
.cid-uhEVkRSGwA .row {
  position: relative;
}
.cid-uhEVkRSGwA .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uhEVkRSGwA .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uhEVkRSGwA .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #000000;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uhEVkRSGwA .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uhEVkRSGwA .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uhEVkRSGwA .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhEVkRSGwA .mbr-text {
  color: #ffffff;
}
.cid-uhEVkRSGwA .mbr-link,
.cid-uhEVkRSGwA .mbr-iconfont {
  color: #212529;
}
.cid-uhEVkRSGwA .mbr-section-title {
  color: #ffffff;
}
.cid-uhF00eGe6w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhF00eGe6w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhF00eGe6w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhF00eGe6w .video-wrapper iframe {
  width: 100%;
}
.cid-uhF00eGe6w .app-video-wrapper::before {
  font-size: 100px;
  line-height: 100px;
  border: 10px solid #56f1ff;
  border-radius: 50%;
  padding: 28px 28px 28px 30px;
  top: 45%;
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uhF00eGe6w .app-video-wrapper::before {
    font-size: 70px;
    line-height: 70px;
    border: none;
    padding: 0;
    top: 50%;
    left: 50%;
  }
}
.cid-uhF00eGe6w .video-block {
  position: relative;
  z-index: 1;
}
.cid-uhF00eGe6w .video-block .video-wrapper iframe {
  z-index: 1;
  position: relative;
}
.cid-uhF00eGe6w .video-block .image-absolute {
  position: absolute;
  top: -12rem;
  left: -4rem;
  width: 300px;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uhF00eGe6w .video-block .image-absolute {
    display: none;
  }
}
.cid-uhEVkUxtwX {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #000000);
}
@media (min-width: 768px) {
  .cid-uhEVkUxtwX {
    align-items: flex-start;
  }
  .cid-uhEVkUxtwX .row {
    justify-content: center;
  }
}
.cid-uhEVkUxtwX .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uhEVkUxtwX .mbr-text,
.cid-uhEVkUxtwX .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhEVkUxtwX .mbr-section-title,
.cid-uhEVkUxtwX .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhEVkUxtwX h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uhEVkUxtwX h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uhEVkUxtwX .mbr-section-subtitle,
.cid-uhEVkUxtwX .align {
  text-align: left;
  color: #232323;
}
.cid-uhEVkUxtwX .mbr-text2 {
  color: #808080;
}
.cid-uhEVkXi6jb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEVkXi6jb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEVkXi6jb .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-uhEVkXi6jb .container {
    padding: 0 30px;
  }
}
.cid-uhEVkXi6jb .row {
  justify-content: center;
}
.cid-uhEVkXi6jb .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhEVkXi6jb .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhEVkXi6jb .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #000000;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uhEVkXi6jb .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uhEVkXi6jb .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhEVkXi6jb .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhEVkXi6jb .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhEVkXi6jb .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  background-color: #000000;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uhEVkXi6jb .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uhEVkXi6jb .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uhEVkXi6jb .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhEVkXi6jb .mbr-section-title {
  color: #000000;
}
.cid-uhEVkXi6jb .panel-title-edit {
  color: #000000;
}
.cid-uhEVkXi6jb .panel-text {
  color: #144031;
}
.cid-uhEVkZq4XR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhEVkZq4XR .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhEVkZq4XR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhEVkZq4XR .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-uhEVkZq4XR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhEVkZq4XR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhEVkZq4XR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEVkZq4XR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEVl1rARm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEVl1rARm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEVl1rARm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEVl1rARm .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhEVl1rARm .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhEVl1rARm .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-uhEVl1rARm .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhEVl1rARm .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhEVl1rARm .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhEVl1rARm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhEVl1rARm .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhEVl1rARm .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhEVl1rARm .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhEVl1rARm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhEVl1rARm .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-uhEVl1rARm .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhEVl1rARm .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-uhEVl1rARm .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhEVl1rARm .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhEVl1rARm .list li {
  transition: 0.5s all;
}
.cid-uhEVl1rARm .list li:hover {
  opacity: 0.6;
}
.cid-uhEVl1rARm .item-wrap {
  margin-bottom: 12px;
}
.cid-uhEVl1rARm .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhEVl1rARm .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhEVl1rARm .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhEVl1rARm .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhEVl1rARm .copyright-col {
    text-align: center;
  }
}
.cid-uhEVl1rARm .copyright {
  color: #000000;
}
.cid-uhEYgdk8PB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/5-612x408.jpg");
}
.cid-uhEYgdk8PB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEYgdk8PB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEYgdk8PB .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uhEYgdk8PB .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEYgdk8PB .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhEYgdk8PB .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEYgdk8PB .container {
    padding: 0 24px;
  }
}
.cid-uhEYgdk8PB .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uhEYgdk8PB .content-wrapper {
    padding: 0;
  }
}
.cid-uhEYgdk8PB .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uhEYgdk8PB .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uhEYgdk8PB .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uhEYgdk8PB .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhEYgdk8PB .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uhEYgdk8PB .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uhEYgdk8PB .mbr-section-title {
  color: #ffffff;
}
.cid-uhEYgdk8PB .mbr-desc,
.cid-uhEYgdk8PB .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEYgdk8PB .mbr-text,
.cid-uhEYgdk8PB .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEYgdk8PB .mbr-section-title,
.cid-uhEYgdk8PB .mbr-section-btn {
  text-align: center;
}
.cid-uhEYgf8elP {
  background-color: transparent;
}
.cid-uhEYgf8elP .navbar-dropdown {
  background-color: #99f5fe !important;
  padding: 0;
}
.cid-uhEYgf8elP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #99f5fe !important;
  background: #99f5fe;
}
.cid-uhEYgf8elP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhEYgf8elP .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhEYgf8elP .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhEYgf8elP .menu_box .navbar.opened,
  .cid-uhEYgf8elP .menu_box .navbar-collapse {
    background-color: #99f5fe !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhEYgf8elP .navbar-dropdown {
  position: relative !important;
}
.cid-uhEYgf8elP .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhEYgf8elP .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhEYgf8elP .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhEYgf8elP .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhEYgf8elP .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhEYgf8elP .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhEYgf8elP .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhEYgf8elP .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhEYgf8elP .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhEYgf8elP .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhEYgf8elP .offcanvas-body .mbr-text,
  .cid-uhEYgf8elP .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhEYgf8elP .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhEYgf8elP .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhEYgf8elP .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhEYgf8elP .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhEYgf8elP .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhEYgf8elP .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhEYgf8elP .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhEYgf8elP ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhEYgf8elP .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhEYgf8elP .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-uhEYgf8elP .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhEYgf8elP 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-uhEYgf8elP .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhEYgf8elP .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhEYgf8elP .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhEYgf8elP .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhEYgf8elP .nav-item {
    margin: 0 !important;
  }
}
.cid-uhEYgf8elP .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhEYgf8elP .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhEYgf8elP .nav-item .nav-link:hover::before,
.cid-uhEYgf8elP .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhEYgf8elP .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhEYgf8elP .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhEYgf8elP .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhEYgf8elP .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhEYgf8elP .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-uhEYgf8elP .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhEYgf8elP .offcanvas_box {
    display: none;
  }
}
.cid-uhEYgf8elP .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhEYgf8elP .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhEYgf8elP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhEYgf8elP .container {
  display: flex;
  margin: auto;
}
.cid-uhEYgf8elP .iconfont-wrapper {
  color: #202020;
  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-uhEYgf8elP .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhEYgf8elP .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhEYgf8elP .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhEYgf8elP .navbar-nav {
    margin: 0;
  }
}
.cid-uhEYgf8elP .dropdown-menu,
.cid-uhEYgf8elP .navbar.opened {
  background-color: false !important;
}
.cid-uhEYgf8elP .nav-item:focus,
.cid-uhEYgf8elP .nav-link:focus {
  outline: none;
}
.cid-uhEYgf8elP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhEYgf8elP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhEYgf8elP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhEYgf8elP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhEYgf8elP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhEYgf8elP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhEYgf8elP .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhEYgf8elP .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhEYgf8elP .navbar.opened {
  transition: all 0.3s;
}
.cid-uhEYgf8elP .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhEYgf8elP .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhEYgf8elP .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhEYgf8elP .navbar.collapsed {
  justify-content: center;
}
.cid-uhEYgf8elP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhEYgf8elP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhEYgf8elP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhEYgf8elP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhEYgf8elP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhEYgf8elP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhEYgf8elP .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEYgf8elP .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhEYgf8elP .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhEYgf8elP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhEYgf8elP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhEYgf8elP .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhEYgf8elP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhEYgf8elP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhEYgf8elP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhEYgf8elP .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhEYgf8elP .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhEYgf8elP .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhEYgf8elP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhEYgf8elP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhEYgf8elP .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhEYgf8elP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhEYgf8elP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhEYgf8elP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhEYgf8elP .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-uhEYgf8elP .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhEYgf8elP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhEYgf8elP .dropdown-item.active,
.cid-uhEYgf8elP .dropdown-item:active {
  background-color: transparent;
}
.cid-uhEYgf8elP .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhEYgf8elP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhEYgf8elP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhEYgf8elP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhEYgf8elP ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhEYgf8elP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhEYgf8elP button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #99f5fe;
  background: #ffffff;
}
.cid-uhEYgf8elP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhEYgf8elP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhEYgf8elP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhEYgf8elP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhEYgf8elP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhEYgf8elP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhEYgf8elP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhEYgf8elP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhEYgf8elP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhEYgf8elP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhEYgf8elP .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-uhEYgf8elP .navbar {
    height: 70px;
  }
  .cid-uhEYgf8elP .navbar.opened {
    height: auto;
  }
  .cid-uhEYgf8elP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhEYgf8elP .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhEYgf8elP .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhEYgf8elP .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhEYgf8elP .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhEYgf8elP .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhEYgf8elP .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhEYgf8elP .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhEYgf8elP .text_widget {
  margin-bottom: 32px;
}
.cid-uhEYgf8elP .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhEYgf8elP .text_widget a:hover,
.cid-uhEYgf8elP .text_widget a:focus {
  opacity: .8;
}
.cid-uhEYgf8elP .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhEYgf8elP .navbar-caption {
  color: #202020;
}
.cid-uhEYgf8elP .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhEYgf8elP .mbr-section-subtitle,
.cid-uhEYgf8elP .text_widget,
.cid-uhEYgf8elP .mbr-section-btn {
  text-align: center;
}
.cid-uhEYgf8elP a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhEYggVzTq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEYggVzTq .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uhEYggVzTq .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uhEYggVzTq .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uhEYggVzTq .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uhEYggVzTq .mbr-text {
  color: #000000;
}
.cid-uhEYgid1QH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uhEYgid1QH blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #99f5fe;
}
.cid-uhEYgid1QH .mbr-section-title {
  text-align: center;
}
.cid-uhEYgid1QH .mbr-text {
  color: #000000;
}
.cid-uhEYgjCNWo {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #99f5fe;
}
.cid-uhEYgjCNWo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEYgjCNWo .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-uhEYgjCNWo .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uhEYgjCNWo .row {
  background: #000000;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uhEYgjCNWo .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-uhEYgjCNWo img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uhEYgjCNWo img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhEYgjCNWo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uhEYgjCNWo .mbr-section-title {
  color: #ffffff;
}
.cid-uhEYgjCNWo .mbr-text,
.cid-uhEYgjCNWo .mbr-section-btn {
  color: #ffffff;
}
.cid-uhEYgl3vuJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uhEYgl3vuJ .row {
  align-items: center;
  width: 100%;
}
.cid-uhEYgl3vuJ .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhEYgl3vuJ .mbr-section-title {
  color: #f3f4ef;
}
.cid-uhEYgl3vuJ .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-uhEYgl3vuJ .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-uhEYgl3vuJ .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhEYgl3vuJ .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhEYgl3vuJ .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uhEYgl3vuJ .text-container {
    padding: 24px;
  }
}
.cid-uhEYgl3vuJ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhEYgl3vuJ .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhEYgl3vuJ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-uhEYgl3vuJ .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhEYgl3vuJ .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-uhEYgmLLbj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEYgmLLbj .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEYgmLLbj .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uhEYgmLLbj .col-title,
.cid-uhEYgmLLbj .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uhEYgmLLbj .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhEYgmLLbj .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uhEYgmLLbj .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uhEYgmLLbj .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uhEYgmLLbj .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uhEYgmLLbj .mbr-text {
    text-align: center !important;
  }
}
.cid-uhEYgolYHs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uhEYgolYHs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEYgolYHs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEYgolYHs .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-uhEYgolYHs .row {
    flex-wrap: wrap;
  }
}
.cid-uhEYgolYHs .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhEYgolYHs .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uhEYgolYHs .img-container {
  display: flex;
  padding: 7rem 0 7rem 4rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-uhEYgolYHs .img-container {
    padding: 5rem 0 5rem 4rem;
  }
}
.cid-uhEYgolYHs .img-container img {
  max-width: 100%;
}
.cid-uhEYgolYHs .col-toggle {
  width: 50%;
  padding-right: 0 !important;
  padding-left: 4rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uhEYgolYHs .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-uhEYgolYHs .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uhEYgolYHs .section-head {
  margin-bottom: 0;
}
.cid-uhEYgolYHs .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uhEYgolYHs .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-uhEYgolYHs .toggle-panel {
  margin-top: 40px;
}
.cid-uhEYgolYHs .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-uhEYgolYHs .card:hover {
  margin-left: 1rem;
}
.cid-uhEYgolYHs .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-uhEYgolYHs .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-uhEYgolYHs .card-header .iconfont-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 32px;
}
.cid-uhEYgolYHs .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #ffffff;
  transition: .3s all;
}
.cid-uhEYgolYHs .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-uhEYgolYHs .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-uhEYgolYHs .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-uhEYgolYHs .panel-title-edit {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uhEYgolYHs .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uhEYgq6TjF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEYgq6TjF .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEYgq6TjF .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uhEYgq6TjF .col-title,
.cid-uhEYgq6TjF .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uhEYgq6TjF .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhEYgq6TjF .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uhEYgq6TjF .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uhEYgq6TjF .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uhEYgq6TjF .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uhEYgq6TjF .mbr-text {
    text-align: center !important;
  }
}
.cid-uhEYgrHw2z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uhEYgrHw2z .row {
  align-items: center;
  width: 100%;
}
.cid-uhEYgrHw2z .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhEYgrHw2z .mbr-section-title {
  color: #000000;
}
.cid-uhEYgrHw2z .mbr-section-subtitle {
  color: #000000;
}
.cid-uhEYgrHw2z .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-uhEYgrHw2z .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhEYgrHw2z .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhEYgrHw2z .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uhEYgrHw2z .text-container {
    padding: 24px;
  }
}
.cid-uhEYgrHw2z .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhEYgrHw2z .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhEYgrHw2z .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-uhEYgrHw2z .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhEYgrHw2z .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-uhEYgtRkNJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #99f5fe;
}
.cid-uhEYgtRkNJ .decor-wrap_1 {
  position: absolute;
  top: 2rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhEYgtRkNJ .decor-wrap_2 {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: 245px;
  height: 245px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhEYgtRkNJ .decor-wrap_3 {
  position: absolute;
  bottom: -35%;
  left: -10rem;
  width: 539px;
  height: 539px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #99f5fe 0, #99f5fe 43%, #99f5fe 100%);
}
.cid-uhEYgtRkNJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEYgtRkNJ .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-uhEYgtRkNJ .container {
    padding: 0 30px;
  }
}
.cid-uhEYgtRkNJ .row {
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-uhEYgtRkNJ .image-wrapper {
  background-color: #99f5fe;
  padding: 40px 40px 40px 0;
}
@media (max-width: 992px) {
  .cid-uhEYgtRkNJ .image-wrapper {
    padding: 20px 20px 20px 0;
  }
}
.cid-uhEYgtRkNJ .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhEYgtRkNJ .image-wrapper img {
    height: 350px;
  }
}
.cid-uhEYgvIRFO {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #000000);
}
@media (min-width: 768px) {
  .cid-uhEYgvIRFO {
    align-items: flex-start;
  }
  .cid-uhEYgvIRFO .row {
    justify-content: center;
  }
}
.cid-uhEYgvIRFO .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uhEYgvIRFO .mbr-text,
.cid-uhEYgvIRFO .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhEYgvIRFO .mbr-section-title,
.cid-uhEYgvIRFO .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhEYgvIRFO h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uhEYgvIRFO h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uhEYgvIRFO .mbr-section-subtitle,
.cid-uhEYgvIRFO .align {
  text-align: left;
  color: #232323;
}
.cid-uhEYgvIRFO .mbr-text2 {
  color: #808080;
}
.cid-uhEYgxNJPY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #99f5fe;
}
.cid-uhEYgxNJPY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEYgxNJPY .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-uhEYgxNJPY .container {
    padding: 0 30px;
  }
}
.cid-uhEYgxNJPY .row {
  position: relative;
}
.cid-uhEYgxNJPY .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uhEYgxNJPY .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uhEYgxNJPY .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #000000;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uhEYgxNJPY .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uhEYgxNJPY .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uhEYgxNJPY .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhEYgxNJPY .mbr-text {
  color: #ffffff;
}
.cid-uhEYgxNJPY .mbr-link,
.cid-uhEYgxNJPY .mbr-iconfont {
  color: #212529;
}
.cid-uhEYgxNJPY .mbr-section-title {
  color: #ffffff;
}
.cid-uhEYgA6FFa {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #000000);
}
@media (min-width: 768px) {
  .cid-uhEYgA6FFa {
    align-items: flex-start;
  }
  .cid-uhEYgA6FFa .row {
    justify-content: center;
  }
}
.cid-uhEYgA6FFa .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uhEYgA6FFa .mbr-text,
.cid-uhEYgA6FFa .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhEYgA6FFa .mbr-section-title,
.cid-uhEYgA6FFa .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhEYgA6FFa h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uhEYgA6FFa h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uhEYgA6FFa .mbr-section-subtitle,
.cid-uhEYgA6FFa .align {
  text-align: left;
  color: #232323;
}
.cid-uhEYgA6FFa .mbr-text2 {
  color: #808080;
}
.cid-uhEYgC9xcy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEYgC9xcy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEYgC9xcy .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-uhEYgC9xcy .container {
    padding: 0 30px;
  }
}
.cid-uhEYgC9xcy .row {
  justify-content: center;
}
.cid-uhEYgC9xcy .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhEYgC9xcy .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhEYgC9xcy .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #000000;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uhEYgC9xcy .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uhEYgC9xcy .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhEYgC9xcy .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhEYgC9xcy .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhEYgC9xcy .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  background-color: #000000;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uhEYgC9xcy .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uhEYgC9xcy .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uhEYgC9xcy .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhEYgC9xcy .mbr-section-title {
  color: #000000;
}
.cid-uhEYgC9xcy .panel-title-edit {
  color: #000000;
}
.cid-uhEYgC9xcy .panel-text {
  color: #144031;
}
.cid-uhEYgE9WSW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhEYgE9WSW .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhEYgE9WSW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhEYgE9WSW .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-uhEYgE9WSW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhEYgE9WSW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhEYgE9WSW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEYgE9WSW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEYgGsYCN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEYgGsYCN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEYgGsYCN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEYgGsYCN .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhEYgGsYCN .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhEYgGsYCN .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-uhEYgGsYCN .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhEYgGsYCN .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhEYgGsYCN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhEYgGsYCN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhEYgGsYCN .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhEYgGsYCN .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhEYgGsYCN .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhEYgGsYCN .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhEYgGsYCN .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-uhEYgGsYCN .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhEYgGsYCN .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-uhEYgGsYCN .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhEYgGsYCN .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhEYgGsYCN .list li {
  transition: 0.5s all;
}
.cid-uhEYgGsYCN .list li:hover {
  opacity: 0.6;
}
.cid-uhEYgGsYCN .item-wrap {
  margin-bottom: 12px;
}
.cid-uhEYgGsYCN .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhEYgGsYCN .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhEYgGsYCN .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhEYgGsYCN .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhEYgGsYCN .copyright-col {
    text-align: center;
  }
}
.cid-uhEYgGsYCN .copyright {
  color: #000000;
}
