.btn {
  border-width: 2px;
}
body {
  font-family: Anybody;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 6rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.5rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (max-width: 1400px) {
  .display-1 {
    font-size: 4.8rem;
  }
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    line-height: 1.1;
  }
}
/* Buttons */
@keyframes btn {
  0% {
    transform: rotate3d(0, 0, 0, 90deg);
    transform-origin: top;
  }
  50% {
    transform: rotate3d(1, 0, 0, 90deg);
    transform-origin: top;
  }
  51% {
    transform: rotate3d(1, 0, 0, 90deg);
    transform-origin: bottom;
  }
  100% {
    transform: rotate3d(0, 0, 0, 90deg);
    transform-origin: bottom;
  }
}
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-lg {
  padding: 1.5rem 2.6rem;
  border-radius: 12px;
}
.bg-primary {
  background-color: #2a3ffe !important;
}
.bg-success {
  background-color: #2a3ffe !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-primary,
.btn-primary:active {
  background-color: #2a3ffe !important;
  border-color: #2a3ffe !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0116d0 !important;
  border-color: #0116d0 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0116d0 !important;
  border-color: #0116d0 !important;
}
.btn-primary:hover {
  background: linear-gradient(0deg, #2a3ffe 0%, transparent 100%) !important;
  color: black !important;
}
.btn-primary:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-secondary {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #feff70 !important;
  border-color: #feff70 !important;
  color: #6f7000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #191900 !important;
  background-color: #fdff19 !important;
  border-color: #fdff19 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #6f7000 !important;
  background-color: #fdff19 !important;
  border-color: #fdff19 !important;
}
.btn-secondary:hover {
  background: linear-gradient(0deg, #2a3ffe 0%, transparent 100%) !important;
  color: black !important;
}
.btn-secondary:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-info {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-info:hover {
  background: linear-gradient(0deg, #2a3ffe 0%, transparent 100%) !important;
  color: black !important;
}
.btn-info:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-success {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-success,
.btn-success:active {
  background-color: #2a3ffe !important;
  border-color: #2a3ffe !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0116d0 !important;
  border-color: #0116d0 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0116d0 !important;
  border-color: #0116d0 !important;
}
.btn-success:hover {
  background: linear-gradient(0deg, #2a3ffe 0%, transparent 100%) !important;
  color: black !important;
}
.btn-success:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-warning {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-warning:hover {
  background: linear-gradient(0deg, #2a3ffe 0%, transparent 100%) !important;
  color: black !important;
}
.btn-warning:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-danger {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-danger:hover {
  background: linear-gradient(0deg, #2a3ffe 0%, transparent 100%) !important;
  color: black !important;
}
.btn-danger:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-white {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white:hover {
  background: linear-gradient(0deg, #2a3ffe 0%, transparent 100%) !important;
  color: black !important;
}
.btn-white:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-black {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background: linear-gradient(0deg, #2a3ffe 0%, transparent 100%) !important;
  color: black !important;
}
.btn-black:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-primary-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #2a3ffe;
  color: #2a3ffe;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0116d0 !important;
  background-color: transparent !important;
  border-color: #0116d0 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2a3ffe !important;
  border-color: #2a3ffe !important;
}
.btn-primary-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-primary-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-secondary-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #feff70;
  color: #feff70;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #fdff19 !important;
  background-color: transparent !important;
  border-color: #fdff19 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #6f7000 !important;
  background-color: #feff70 !important;
  border-color: #feff70 !important;
}
.btn-secondary-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-secondary-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-info-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: #148cca !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-info-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-success-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #2a3ffe;
  color: #2a3ffe;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0116d0 !important;
  background-color: transparent !important;
  border-color: #0116d0 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #2a3ffe !important;
  border-color: #2a3ffe !important;
}
.btn-success-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-success-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-warning-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-warning-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-danger-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-danger-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-black-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-black-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-white-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-white-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-white-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.text-primary {
  color: #2a3ffe !important;
}
.text-secondary {
  color: #feff70 !important;
}
.text-success {
  color: #2a3ffe !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0114c1 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #fdff0a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0114c1 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #2a3ffe;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #2a3ffe;
  border-color: #2a3ffe;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #2a3ffe;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f5f6ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f5f6ff;
}
.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: 'Oswald', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #2a3ffe !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #2a3ffe;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2a3ffe;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2a3ffe;
}
.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: #2a3ffe;
  border-bottom-color: #2a3ffe;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #2a3ffe !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: #feff70 !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='%232a3ffe' %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;
}
.cid-t9nvPbhOKt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t9nvPbhOKt nav.navbar {
  position: fixed;
}
.cid-t9nvPbhOKt .btn {
  line-height: 1.2;
}
.cid-t9nvPbhOKt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t9nvPbhOKt .nav-link {
  position: relative;
}
.cid-t9nvPbhOKt .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-t9nvPbhOKt .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-t9nvPbhOKt .nav-link:hover:before {
  width: 100%;
}
.cid-t9nvPbhOKt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t9nvPbhOKt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9nvPbhOKt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t9nvPbhOKt .dropdown-item:hover,
.cid-t9nvPbhOKt .dropdown-item:focus {
  background: #2a3ffe !important;
  color: white !important;
}
.cid-t9nvPbhOKt .dropdown-item:hover span {
  color: white;
}
.cid-t9nvPbhOKt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t9nvPbhOKt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t9nvPbhOKt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t9nvPbhOKt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-t9nvPbhOKt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t9nvPbhOKt .container {
    flex-wrap: nowrap;
  }
}
.cid-t9nvPbhOKt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t9nvPbhOKt .navbar-nav {
  margin: auto;
}
.cid-t9nvPbhOKt .dropdown-menu,
.cid-t9nvPbhOKt .navbar.opened {
  background: #ffffff !important;
}
.cid-t9nvPbhOKt .nav-item:focus,
.cid-t9nvPbhOKt .nav-link:focus {
  outline: none;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t9nvPbhOKt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t9nvPbhOKt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t9nvPbhOKt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-t9nvPbhOKt .navbar.opened {
  transition: all 0.3s;
}
.cid-t9nvPbhOKt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t9nvPbhOKt .navbar .navbar-logo img {
  width: auto;
}
.cid-t9nvPbhOKt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t9nvPbhOKt .navbar.collapsed {
  justify-content: center;
}
.cid-t9nvPbhOKt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t9nvPbhOKt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t9nvPbhOKt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t9nvPbhOKt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t9nvPbhOKt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t9nvPbhOKt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t9nvPbhOKt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t9nvPbhOKt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t9nvPbhOKt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t9nvPbhOKt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t9nvPbhOKt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t9nvPbhOKt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-t9nvPbhOKt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-t9nvPbhOKt .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9nvPbhOKt .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-t9nvPbhOKt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t9nvPbhOKt .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-t9nvPbhOKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t9nvPbhOKt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t9nvPbhOKt .dropdown-item.active,
.cid-t9nvPbhOKt .dropdown-item:active {
  background-color: transparent;
}
.cid-t9nvPbhOKt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t9nvPbhOKt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t9nvPbhOKt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t9nvPbhOKt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t9nvPbhOKt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t9nvPbhOKt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9nvPbhOKt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t9nvPbhOKt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t9nvPbhOKt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t9nvPbhOKt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t9nvPbhOKt .navbar {
    height: 70px;
  }
  .cid-t9nvPbhOKt .navbar.opened {
    height: auto;
  }
  .cid-t9nvPbhOKt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGewzVHaHh {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uGewzVHaHh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGewzVHaHh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGewzVHaHh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uGewzVHaHh .row {
  flex-direction: row-reverse;
}
.cid-uGewzVHaHh img {
  width: 100%;
  border-radius: 3rem;
  height: 700px;
  object-fit: cover;
}
.cid-uGewRy1zYt {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background: linear-gradient(transparent -20%, #ffb18a);
}
.cid-uGewRy1zYt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGewRy1zYt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGewRy1zYt .row {
  justify-content: flex-end;
}
.cid-uGewRy1zYt .mbr-text,
.cid-uGewRy1zYt .mbr-section-btn {
  color: #232323;
}
.cid-uFYeXcRUjp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFYeXcRUjp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFYeXcRUjp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFYeXcRUjp .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uFYeXcRUjp .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uFYeXcRUjp .container {
    padding: 0 6px;
  }
}
.cid-uFYeXcRUjp .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uFYeXcRUjp .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uFYeXcRUjp .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uFYeXcRUjp .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uFYeXcRUjp .row {
    padding: 0 30px;
  }
}
.cid-uFYeXcRUjp .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uFYeXcRUjp .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #232323;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uFYeXcRUjp .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uFYeXcRUjp .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uFYeXcRUjp .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uFYeXcRUjp .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uFYeXcRUjp .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uFYeXcRUjp .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uFYeXcRUjp .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uFYeXcRUjp .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uFYeXcRUjp .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uFYeXcRUjp .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uFYeXcRUjp .mbr-section-title {
  color: #171717;
}
.cid-uFYeXcRUjp .list {
  color: #131313;
}
.cid-uFYgi1rZZ8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
  overflow: hidden;
}
.cid-uFYgi1rZZ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFYgi1rZZ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFYgi1rZZ8 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #fafafa, #fafafa);
  box-shadow: 10px 10px 19px #65c6d4, -10px -10px 19px #feff70;
}
@media (max-width: 767px) {
  .cid-uFYgi1rZZ8 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uFYgi1rZZ8 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uFYgi1rZZ8 .card-title {
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uFYgi1rZZ8 .card-title {
    margin-bottom: 20px;
  }
}
.cid-uFYgi1rZZ8 .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uFYgi1rZZ8 .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uFYgi1rZZ8 .card-text {
  color: #171717;
  margin-bottom: 0;
}
.cid-uGexFmeaHx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGexFmeaHx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGexFmeaHx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGexFmeaHx .card-wrapper {
  display: flex;
  background-color: #ffb18a;
  justify-content: space-between;
  padding: 48px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uGexFmeaHx .card-wrapper {
    display: block;
    padding: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uGexFmeaHx .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uGexFmeaHx .card-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #a78aff 0%, transparent 80%);
  height: 1px;
  width: 100%;
}
.cid-uGexFmeaHx .card-wrapper .content-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uGexFmeaHx .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uGexFmeaHx .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uGexFmeaHx .card-wrapper .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGexFmeaHx .card-wrapper .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uGexFmeaHx .card-wrapper .image-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uGexFmeaHx .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uGexFmeaHx .card-wrapper .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uGexFmeaHx .mbr-section-title {
  color: #ffffff;
}
.cid-uGexFmeaHx .mbr-text {
  color: #ffffff;
}
.cid-t9ooNfF3y1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-t9ooNfF3y1 .mbr-section-subtitle {
  transition: all 0.3s;
}
.cid-t9ooNfF3y1 .col-md-6 {
  margin-bottom: 1rem;
}
.cid-t9ooNfF3y1 .col-md-3 {
  margin-bottom: 2rem;
}
.cid-t9ooNfF3y1 .card {
  transition: all 0.3s;
  height: 100%;
  padding: 3rem 2rem;
  border-radius: 2rem;
  border-top-left-radius: 12rem;
  overflow: hidden;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: linear-gradient(transparent 60%, #2a3ffe);
}
@media (max-width: 1400px) {
  .cid-t9ooNfF3y1 .card {
    border-top-left-radius: 6rem;
  }
}
.cid-t9ooNfF3y1 img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-t9ooNfF3y1 img {
    width: 200px;
    height: 200px;
  }
}
.cid-t9ooNfF3y1 .mbr-section-title {
  text-align: center;
}
.cid-uFZ7fvagYr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFZ7fvagYr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFZ7fvagYr .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-uFZ7fvagYr .container {
    padding: 0 30px;
  }
}
.cid-uFZ7fvagYr .content-wrapper {
  display: flex;
  position: relative;
  padding-bottom: 180px;
  border-bottom: 1px solid #144031;
}
@media (max-width: 992px) {
  .cid-uFZ7fvagYr .content-wrapper {
    display: block;
  }
}
.cid-uFZ7fvagYr .content-wrapper .card {
  justify-content: center;
}
.cid-uFZ7fvagYr .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uFZ7fvagYr .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 0 60px;
  }
}
.cid-uFZ7fvagYr .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uFZ7fvagYr .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-uFZ7fvagYr .content-wrapper .image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uFZ7fvagYr .content-wrapper .image-wrapper {
    min-height: auto;
    height: 400px;
    width: 100%;
  }
}
.cid-uFZ7fvagYr .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uFZ7fvagYr .content-wrapper .image-wrapper .list {
  position: relative;
  display: inline-block;
  max-width: 310px;
  flex-direction: column;
  width: fit-content;
  padding: 50px 30px;
  list-style-type: none;
  background-color: #000000;
  border-radius: 2rem 0 2rem 0;
  margin: 50px 50px -100px 0;
}
@media (max-width: 992px) {
  .cid-uFZ7fvagYr .content-wrapper .image-wrapper .list {
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 50px 0 -100px 0;
  }
}
.cid-uFZ7fvagYr .content-wrapper .image-wrapper .list .item-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uFZ7fvagYr .content-wrapper .image-wrapper .list .item-wrap {
    display: block;
  }
}
.cid-uFZ7fvagYr .content-wrapper .image-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uFZ7fvagYr .content-wrapper .image-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #feff70;
}
@media (max-width: 992px) {
  .cid-uFZ7fvagYr .content-wrapper .image-wrapper .list .item-wrap::before {
    top: 10px;
  }
}
.cid-uFZ7fvagYr .mbr-section-title {
  color: #144031;
}
.cid-uFZ7fvagYr .mbr-text {
  color: #144031;
}
.cid-uFZ7fvagYr .list {
  color: #144031;
}
.cid-uFZ7fvagYr .list,
.cid-uFZ7fvagYr .item-wrap {
  color: #fafafa;
}
.cid-t9ooWaMW1p {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-t9ooWaMW1p img {
  margin: auto;
  position: relative;
}
.cid-t9ooWaMW1p .col-md-6 {
  margin-bottom: 1rem;
}
.cid-t9ooWaMW1p .card {
  transition: all 0.3s;
  height: fit-content;
  border-radius: 3rem;
  border-top-left-radius: 9rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.cid-t9ooWaMW1p .card:before {
  content: "";
  position: absolute;
  top: 0;
  border-radius: 3rem;
  border-top-left-radius: 9rem;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.2);
}
.cid-t9ooWaMW1p .dot {
  width: 6px;
  height: 6px;
  background: #000000;
}
.cid-t9ooWaMW1p .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-t9ooWaMW1p .mbr-section-text {
  color: #000000;
}
.cid-t9ooWaMW1p .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-t9ooWaMW1p .mbr-section-title {
  color: #000000;
}
.cid-uGeIb8JnmY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGeIb8JnmY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGeIb8JnmY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGeIb8JnmY .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uGeIb8JnmY .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uGeIb8JnmY .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uGeIb8JnmY .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uGeIb8JnmY .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uGeIb8JnmY .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uGeIb8JnmY .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uGeIb8JnmY .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uGeIb8JnmY .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGeIb8JnmY .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uGeIb8JnmY .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-t9ooY9rFsM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-t9ooY9rFsM .row {
  flex-direction: row-reverse;
}
.cid-t9ooY9rFsM .row {
  align-items: flex-start;
}
.cid-t9ooY9rFsM .container,
.cid-t9ooY9rFsM .container-fluid {
  position: static;
}
.cid-t9ooY9rFsM .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-t9ooY9rFsM .col-text {
  position: relative;
  z-index: 2;
}
.cid-t9ooY9rFsM .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-t9ooY9rFsM .toggle-panel,
.cid-t9ooY9rFsM .panel-group {
  width: 100%;
}
.cid-t9ooY9rFsM .card {
  padding: 0;
  position: relative;
  margin-bottom: 18px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(68, 109, 255, 0.04) !important;
}
.cid-t9ooY9rFsM .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: #ffb18a;
}
.cid-t9ooY9rFsM .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px 15px 35px;
  transition: 0.5s all;
  position: relative;
  z-index: 2;
}
.cid-t9ooY9rFsM .panel-title .sign {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .cid-t9ooY9rFsM .panel-title {
    padding: 1rem !important;
  }
}
.cid-t9ooY9rFsM .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-t9ooY9rFsM .collapsed .sign {
  transform: rotate(0deg);
}
.cid-t9ooY9rFsM .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-t9ooY9rFsM .sign {
  color: #ffffff;
  transition: transform 0.2s ease-in-out;
  font-size: 1.6rem;
}
.cid-t9ooY9rFsM .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-t9ooY9rFsM .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-t9ooY9rFsM .panel-title-edit {
  width: 100%;
  color: #ffffff;
  text-align: left;
}
.cid-t9ooY9rFsM .mbr-text,
.cid-t9ooY9rFsM .mbr-section-btn {
  color: #ffffff;
}
.cid-t9opErCGOQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-t9opErCGOQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-t9opErCGOQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t9opErCGOQ .row {
  justify-content: space-between;
}
.cid-t9opErCGOQ .mbr-text,
.cid-t9opErCGOQ .mbr-section-btn {
  color: #ffffff;
}
.cid-t9opErCGOQ h2 {
  width: fit-content;
  float: left;
  border: 2px solid currentColor;
  padding: 1rem 3rem;
  padding-bottom: 0.5rem;
  margin: 0;
  border-radius: 1rem;
  border-top-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  margin-bottom: 0;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .cid-t9opErCGOQ h2 {
    padding: 1rem 1rem;
    margin-right: 1rem;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
}
.cid-t9opErCGOQ .mbr-section-subtitle {
  color: #000000;
}
.cid-t9opErCGOQ .mbr-section-title {
  color: #ffffff;
}
.cid-uFYFuh6EvP {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uFYFuh6EvP .video-wrapper iframe {
  width: 100%;
}
.cid-uFYFuh6EvP .mbr-section-title,
.cid-uFYFuh6EvP .mbr-section-subtitle,
.cid-uFYFuh6EvP .mbr-text {
  text-align: center;
}
.cid-uFYFuh6EvP .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
  color: #fafafa;
}
.cid-uFYFuh6EvP .mbr-text {
  padding-top: 16px;
}
.cid-uFYNlEFz5j {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #131313;
}
.cid-uFYNlEFz5j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFYNlEFz5j .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uFYNlEFz5j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFYNlEFz5j h1 {
  max-width: 800px;
}
.cid-uFYNlEFz5j p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-uFYNlEFz5j .btn:hover {
  transform: scale(1.1);
  background: #feff70 !important;
  border-color: #feff70 !important;
  color: #2a3ffe !important;
}
.cid-uFYNlEFz5j .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-uFYNlEFz5j .btn div {
  overflow: hidden;
}
.cid-uFYNlEFz5j .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-uFYNlEFz5j {
    align-items: center;
  }
  .cid-uFYNlEFz5j .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFYNlEFz5j .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFYNlEFz5j {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFYNlEFz5j .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFYNlEFz5j .content-wrap {
    width: 100%;
  }
}
.cid-uFYNlEFz5j .mbr-section-subtitle,
.cid-uFYNlEFz5j .line {
  color: #ffffff;
}
.cid-uFYNlEFz5j .mbr-text,
.cid-uFYNlEFz5j .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uFYNlEFz5j .mbr-section-title {
  color: #ffffff;
}
.cid-uGeEhkmWno {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uGeEhkmWno .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGeEhkmWno .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGeEhkmWno .row {
  justify-content: center;
}
.cid-uGeEhkmWno .card-wrapper {
  padding: 90px 90px 90px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff7ee;
}
@media (max-width: 1440px) {
  .cid-uGeEhkmWno .card-wrapper {
    padding: 60px 60px 60px 40px;
  }
}
@media (max-width: 992px) {
  .cid-uGeEhkmWno .card-wrapper {
    padding: 30px 16px;
    display: block;
  }
}
.cid-uGeEhkmWno .card-wrapper .content-wrap {
  width: 42%;
}
@media (max-width: 992px) {
  .cid-uGeEhkmWno .card-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uGeEhkmWno .card-wrapper .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 30px;
  background-color: #ffbe0d;
}
.cid-uGeEhkmWno .card-wrapper .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uGeEhkmWno .card-wrapper .content-wrap .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #151e11;
}
.cid-uGeEhkmWno .card-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uGeEhkmWno .card-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uGeEhkmWno .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uGeEhkmWno .card-wrapper .content-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-uGeEhkmWno .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGeEhkmWno .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uGeEhkmWno .card-wrapper .image-wrapper img {
  height: 490px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uGeEhkmWno .card-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uGeEhkmWno .mbr-label,
.cid-uGeEhkmWno .label-wrapper {
  color: #151e11;
}
.cid-uGeEhkmWno .mbr-section-title {
  color: #151e11;
}
.cid-uGeEhkmWno .mbr-text {
  color: #151e11;
}
.cid-uGeINbV88W {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uGeINbV88W .mbr-text {
  color: #221b35;
}
.cid-uGeINbV88W .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uGeINbV88W h5,
.cid-uGeINbV88W h6 {
  background: #2a3ffe;
  display: inline;
}
.cid-uGeINbV88W h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uGeINbV88W h6 {
  line-height: 1.3 !important;
}
.cid-uGeINbV88W h6 span {
  padding-right: 2rem;
}
.cid-uGeINbV88W .mbr-section-title,
.cid-uGeINbV88W .align {
  color: #ffffff;
}
.cid-uGeINbV88W .mbr-section-subtitle,
.cid-uGeINbV88W .align {
  color: #ffffff;
  text-align: left;
}
.cid-t9op1i2zR9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-t9op1i2zR9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t9op1i2zR9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t9op1i2zR9 .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
}
.cid-t9op1i2zR9 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
.cid-t9op1i2zR9 .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-t9op1i2zR9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t9op1i2zR9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t9op1i2zR9 .mbr-section-title {
  text-align: center;
}
.cid-uFXtEm1sHA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
.cid-uFXtEm1sHA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFXtEm1sHA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXtEm1sHA .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uFXtEm1sHA .footer-col {
    flex-direction: column;
  }
}
.cid-uFXtEm1sHA .row {
  background: #000000;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uFXtEm1sHA .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uFXtEm1sHA .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uFXtEm1sHA .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uFXtEm1sHA .mbr-section-btn {
    text-align: center;
  }
}
.cid-uFXtEm1sHA .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFXtEm1sHA .item-wrap {
  transition: all 300ms ease;
}
.cid-uFXtEm1sHA .item-wrap:hover,
.cid-uFXtEm1sHA .item-wrap:focus {
  cursor: pointer;
}
.cid-uFXtEm1sHA .soc-item {
  margin: 8px;
}
.cid-uFXtEm1sHA .soc-item a:hover .mbr-iconfont,
.cid-uFXtEm1sHA .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uFXtEm1sHA .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #fdfde1;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uFXtEm1sHA .row {
    text-align: center;
  }
  .cid-uFXtEm1sHA .social-row {
    justify-content: center;
  }
}
.cid-uFXtEm1sHA .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uFXtEm1sHA .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFXtEm1sHA .list {
    margin-bottom: 0rem;
  }
}
.cid-uFXtEm1sHA .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uFXtEm1sHA .list,
.cid-uFXtEm1sHA .item-wrap {
  color: #fdfde1;
}
.cid-uFXtEm1sHA .copyright {
  color: #fdfde1;
}
.cid-uFZ933YBDX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFZ933YBDX nav.navbar {
  position: fixed;
}
.cid-uFZ933YBDX .btn {
  line-height: 1.2;
}
.cid-uFZ933YBDX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFZ933YBDX .nav-link {
  position: relative;
}
.cid-uFZ933YBDX .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-uFZ933YBDX .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-uFZ933YBDX .nav-link:hover:before {
  width: 100%;
}
.cid-uFZ933YBDX .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFZ933YBDX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFZ933YBDX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFZ933YBDX .dropdown-item:hover,
.cid-uFZ933YBDX .dropdown-item:focus {
  background: #2a3ffe !important;
  color: white !important;
}
.cid-uFZ933YBDX .dropdown-item:hover span {
  color: white;
}
.cid-uFZ933YBDX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFZ933YBDX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFZ933YBDX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFZ933YBDX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uFZ933YBDX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFZ933YBDX .container {
    flex-wrap: nowrap;
  }
}
.cid-uFZ933YBDX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFZ933YBDX .navbar-nav {
  margin: auto;
}
.cid-uFZ933YBDX .dropdown-menu,
.cid-uFZ933YBDX .navbar.opened {
  background: #ffffff !important;
}
.cid-uFZ933YBDX .nav-item:focus,
.cid-uFZ933YBDX .nav-link:focus {
  outline: none;
}
.cid-uFZ933YBDX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFZ933YBDX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFZ933YBDX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFZ933YBDX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFZ933YBDX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFZ933YBDX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFZ933YBDX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uFZ933YBDX .navbar.opened {
  transition: all 0.3s;
}
.cid-uFZ933YBDX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFZ933YBDX .navbar .navbar-logo img {
  width: auto;
}
.cid-uFZ933YBDX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFZ933YBDX .navbar.collapsed {
  justify-content: center;
}
.cid-uFZ933YBDX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFZ933YBDX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFZ933YBDX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uFZ933YBDX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFZ933YBDX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFZ933YBDX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uFZ933YBDX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFZ933YBDX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFZ933YBDX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFZ933YBDX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFZ933YBDX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFZ933YBDX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFZ933YBDX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFZ933YBDX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uFZ933YBDX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFZ933YBDX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFZ933YBDX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFZ933YBDX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFZ933YBDX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFZ933YBDX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFZ933YBDX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFZ933YBDX .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFZ933YBDX .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uFZ933YBDX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFZ933YBDX .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-uFZ933YBDX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFZ933YBDX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFZ933YBDX .dropdown-item.active,
.cid-uFZ933YBDX .dropdown-item:active {
  background-color: transparent;
}
.cid-uFZ933YBDX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFZ933YBDX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFZ933YBDX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFZ933YBDX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFZ933YBDX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFZ933YBDX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFZ933YBDX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFZ933YBDX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFZ933YBDX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFZ933YBDX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFZ933YBDX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFZ933YBDX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFZ933YBDX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFZ933YBDX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFZ933YBDX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFZ933YBDX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFZ933YBDX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFZ933YBDX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFZ933YBDX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFZ933YBDX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFZ933YBDX .navbar {
    height: 70px;
  }
  .cid-uFZ933YBDX .navbar.opened {
    height: auto;
  }
  .cid-uFZ933YBDX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFZ9og2iTq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uFZ9og2iTq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFZ9og2iTq .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-uFZ9og2iTq .container {
    padding: 0 30px;
  }
}
.cid-uFZ9og2iTq .content-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uFZ9og2iTq .content-wrapper {
    display: block;
  }
}
.cid-uFZ9og2iTq .content-wrapper .card {
  justify-content: center;
}
.cid-uFZ9og2iTq .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
  background-color: #ffffff;
  border-radius: 0 0 2rem 0 !important;
}
@media (max-width: 992px) {
  .cid-uFZ9og2iTq .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 20px;
    border-radius: 0 0 2rem 0 !important;
  }
}
.cid-uFZ9og2iTq .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uFZ9og2iTq .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-uFZ9og2iTq .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uFZ9og2iTq .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uFZ9og2iTq .content-wrapper .image-wrapper img {
  min-height: 630px;
  object-fit: cover;
  border-radius: 2rem 0 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uFZ9og2iTq .content-wrapper .image-wrapper img {
    min-height: auto;
    height: 430px;
    border-radius: 2rem 0 0 0 !important;
  }
}
.cid-uFZ9og2iTq .mbr-section-title {
  color: #144031;
}
.cid-uFZ9og2iTq .mbr-text {
  color: #144031;
}
.cid-uFZ9OoBGDM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  border-bottom: 2px solid #ffffff;
  background-color: #ffffff;
}
.cid-uFZ9OoBGDM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFZ9OoBGDM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFZ9OoBGDM .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFZ9OoBGDM .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFZ9OoBGDM .content-wrapper {
    padding: 0;
  }
}
.cid-uFZ9OoBGDM .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uFZ9OoBGDM .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uFZ9OoBGDM .mbr-section-title,
.cid-uFZ9OoBGDM .title-wrapper {
  color: #ffffff;
}
.cid-uFZ9OoBGDM .mbr-section-title,
.cid-uFZ9OoBGDM .mbr-section-btn,
.cid-uFZ9OoBGDM .title-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uG07VrjcCB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uG07VrjcCB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG07VrjcCB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG07VrjcCB .google-map {
  height: 30rem;
  position: relative;
}
.cid-uG07VrjcCB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uG07VrjcCB .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-uG07VrjcCB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uG07VrjcCB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uG07VrjcCB .mbr-section-title {
  color: #fafafa;
}
.cid-uFZ93fQ66p {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
.cid-uFZ93fQ66p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFZ93fQ66p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFZ93fQ66p .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uFZ93fQ66p .footer-col {
    flex-direction: column;
  }
}
.cid-uFZ93fQ66p .row {
  background: #000000;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uFZ93fQ66p .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uFZ93fQ66p .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uFZ93fQ66p .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uFZ93fQ66p .mbr-section-btn {
    text-align: center;
  }
}
.cid-uFZ93fQ66p .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFZ93fQ66p .item-wrap {
  transition: all 300ms ease;
}
.cid-uFZ93fQ66p .item-wrap:hover,
.cid-uFZ93fQ66p .item-wrap:focus {
  cursor: pointer;
}
.cid-uFZ93fQ66p .soc-item {
  margin: 8px;
}
.cid-uFZ93fQ66p .soc-item a:hover .mbr-iconfont,
.cid-uFZ93fQ66p .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uFZ93fQ66p .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #fdfde1;
  color: #ffb18a;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uFZ93fQ66p .row {
    text-align: center;
  }
  .cid-uFZ93fQ66p .social-row {
    justify-content: center;
  }
}
.cid-uFZ93fQ66p .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uFZ93fQ66p .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFZ93fQ66p .list {
    margin-bottom: 0rem;
  }
}
.cid-uFZ93fQ66p .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uFZ93fQ66p .list,
.cid-uFZ93fQ66p .item-wrap {
  color: #fdfde1;
}
.cid-uFZ93fQ66p .copyright {
  color: #fdfde1;
}
.cid-uFZavXhtCl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFZavXhtCl nav.navbar {
  position: fixed;
}
.cid-uFZavXhtCl .btn {
  line-height: 1.2;
}
.cid-uFZavXhtCl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFZavXhtCl .nav-link {
  position: relative;
}
.cid-uFZavXhtCl .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-uFZavXhtCl .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-uFZavXhtCl .nav-link:hover:before {
  width: 100%;
}
.cid-uFZavXhtCl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFZavXhtCl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFZavXhtCl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFZavXhtCl .dropdown-item:hover,
.cid-uFZavXhtCl .dropdown-item:focus {
  background: #2a3ffe !important;
  color: white !important;
}
.cid-uFZavXhtCl .dropdown-item:hover span {
  color: white;
}
.cid-uFZavXhtCl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFZavXhtCl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFZavXhtCl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFZavXhtCl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uFZavXhtCl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFZavXhtCl .container {
    flex-wrap: nowrap;
  }
}
.cid-uFZavXhtCl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFZavXhtCl .navbar-nav {
  margin: auto;
}
.cid-uFZavXhtCl .dropdown-menu,
.cid-uFZavXhtCl .navbar.opened {
  background: #ffffff !important;
}
.cid-uFZavXhtCl .nav-item:focus,
.cid-uFZavXhtCl .nav-link:focus {
  outline: none;
}
.cid-uFZavXhtCl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFZavXhtCl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFZavXhtCl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFZavXhtCl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFZavXhtCl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFZavXhtCl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFZavXhtCl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uFZavXhtCl .navbar.opened {
  transition: all 0.3s;
}
.cid-uFZavXhtCl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFZavXhtCl .navbar .navbar-logo img {
  width: auto;
}
.cid-uFZavXhtCl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFZavXhtCl .navbar.collapsed {
  justify-content: center;
}
.cid-uFZavXhtCl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFZavXhtCl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFZavXhtCl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uFZavXhtCl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFZavXhtCl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFZavXhtCl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uFZavXhtCl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFZavXhtCl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFZavXhtCl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFZavXhtCl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFZavXhtCl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFZavXhtCl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFZavXhtCl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFZavXhtCl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uFZavXhtCl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFZavXhtCl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFZavXhtCl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFZavXhtCl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFZavXhtCl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFZavXhtCl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFZavXhtCl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFZavXhtCl .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFZavXhtCl .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uFZavXhtCl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFZavXhtCl .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-uFZavXhtCl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFZavXhtCl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFZavXhtCl .dropdown-item.active,
.cid-uFZavXhtCl .dropdown-item:active {
  background-color: transparent;
}
.cid-uFZavXhtCl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFZavXhtCl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFZavXhtCl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFZavXhtCl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uFZavXhtCl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFZavXhtCl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFZavXhtCl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFZavXhtCl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFZavXhtCl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFZavXhtCl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFZavXhtCl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFZavXhtCl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFZavXhtCl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFZavXhtCl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFZavXhtCl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFZavXhtCl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFZavXhtCl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFZavXhtCl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFZavXhtCl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFZavXhtCl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFZavXhtCl .navbar {
    height: 70px;
  }
  .cid-uFZavXhtCl .navbar.opened {
    height: auto;
  }
  .cid-uFZavXhtCl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFZavYETlK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFZavYETlK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFZavYETlK .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-uFZavYETlK .container {
    padding: 0 30px;
  }
}
.cid-uFZavYETlK .content-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uFZavYETlK .content-wrapper {
    display: block;
  }
}
.cid-uFZavYETlK .content-wrapper .card {
  justify-content: center;
}
.cid-uFZavYETlK .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
  background-color: #ffb18a;
  border-radius: 0 0 2rem 0 !important;
}
@media (max-width: 992px) {
  .cid-uFZavYETlK .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 20px;
    border-radius: 0 0 2rem 0 !important;
  }
}
.cid-uFZavYETlK .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uFZavYETlK .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-uFZavYETlK .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uFZavYETlK .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uFZavYETlK .content-wrapper .image-wrapper img {
  min-height: 630px;
  object-fit: cover;
  border-radius: 2rem 0 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uFZavYETlK .content-wrapper .image-wrapper img {
    min-height: auto;
    height: 430px;
    border-radius: 2rem 0 0 0 !important;
  }
}
.cid-uFZavYETlK .mbr-section-title {
  color: #144031;
}
.cid-uFZavYETlK .mbr-text {
  color: #fafafa;
}
.cid-uFZavYETlK .mbr-section-title,
.cid-uFZavYETlK .mbr-section-btn {
  color: #fafafa;
}
.cid-uFZavZyLYS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  border-bottom: 2px solid #ffffff;
  background-color: #ffffff;
}
.cid-uFZavZyLYS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFZavZyLYS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFZavZyLYS .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFZavZyLYS .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFZavZyLYS .content-wrapper {
    padding: 0;
  }
}
.cid-uFZavZyLYS .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uFZavZyLYS .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uFZavZyLYS .mbr-section-title,
.cid-uFZavZyLYS .title-wrapper {
  color: #ffffff;
}
.cid-uFZavZyLYS .mbr-section-title,
.cid-uFZavZyLYS .mbr-section-btn,
.cid-uFZavZyLYS .title-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uG07KdkxAb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uG07KdkxAb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG07KdkxAb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG07KdkxAb .google-map {
  height: 30rem;
  position: relative;
}
.cid-uG07KdkxAb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uG07KdkxAb .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-uG07KdkxAb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uG07KdkxAb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uG07KdkxAb .mbr-section-title {
  color: #fafafa;
}
.cid-uFZavZUMf6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uFZavZUMf6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFZavZUMf6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFZavZUMf6 .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uFZavZUMf6 .footer-col {
    flex-direction: column;
  }
}
.cid-uFZavZUMf6 .row {
  background: #000000;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uFZavZUMf6 .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uFZavZUMf6 .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uFZavZUMf6 .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uFZavZUMf6 .mbr-section-btn {
    text-align: center;
  }
}
.cid-uFZavZUMf6 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uFZavZUMf6 .item-wrap {
  transition: all 300ms ease;
}
.cid-uFZavZUMf6 .item-wrap:hover,
.cid-uFZavZUMf6 .item-wrap:focus {
  cursor: pointer;
}
.cid-uFZavZUMf6 .soc-item {
  margin: 8px;
}
.cid-uFZavZUMf6 .soc-item a:hover .mbr-iconfont,
.cid-uFZavZUMf6 .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uFZavZUMf6 .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #fdfde1;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uFZavZUMf6 .row {
    text-align: center;
  }
  .cid-uFZavZUMf6 .social-row {
    justify-content: center;
  }
}
.cid-uFZavZUMf6 .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uFZavZUMf6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFZavZUMf6 .list {
    margin-bottom: 0rem;
  }
}
.cid-uFZavZUMf6 .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uFZavZUMf6 .list,
.cid-uFZavZUMf6 .item-wrap {
  color: #fdfde1;
}
.cid-uFZavZUMf6 .copyright {
  color: #fdfde1;
}
.cid-uGfxrCy6Fr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGfxrCy6Fr nav.navbar {
  position: fixed;
}
.cid-uGfxrCy6Fr .btn {
  line-height: 1.2;
}
.cid-uGfxrCy6Fr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGfxrCy6Fr .nav-link {
  position: relative;
}
.cid-uGfxrCy6Fr .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-uGfxrCy6Fr .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-uGfxrCy6Fr .nav-link:hover:before {
  width: 100%;
}
.cid-uGfxrCy6Fr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGfxrCy6Fr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGfxrCy6Fr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGfxrCy6Fr .dropdown-item:hover,
.cid-uGfxrCy6Fr .dropdown-item:focus {
  background: #2a3ffe !important;
  color: white !important;
}
.cid-uGfxrCy6Fr .dropdown-item:hover span {
  color: white;
}
.cid-uGfxrCy6Fr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGfxrCy6Fr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGfxrCy6Fr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGfxrCy6Fr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uGfxrCy6Fr .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGfxrCy6Fr .container {
    flex-wrap: nowrap;
  }
}
.cid-uGfxrCy6Fr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGfxrCy6Fr .navbar-nav {
  margin: auto;
}
.cid-uGfxrCy6Fr .dropdown-menu,
.cid-uGfxrCy6Fr .navbar.opened {
  background: #ffffff !important;
}
.cid-uGfxrCy6Fr .nav-item:focus,
.cid-uGfxrCy6Fr .nav-link:focus {
  outline: none;
}
.cid-uGfxrCy6Fr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGfxrCy6Fr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGfxrCy6Fr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGfxrCy6Fr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGfxrCy6Fr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGfxrCy6Fr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGfxrCy6Fr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uGfxrCy6Fr .navbar.opened {
  transition: all 0.3s;
}
.cid-uGfxrCy6Fr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGfxrCy6Fr .navbar .navbar-logo img {
  width: auto;
}
.cid-uGfxrCy6Fr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGfxrCy6Fr .navbar.collapsed {
  justify-content: center;
}
.cid-uGfxrCy6Fr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGfxrCy6Fr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGfxrCy6Fr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uGfxrCy6Fr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGfxrCy6Fr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGfxrCy6Fr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGfxrCy6Fr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGfxrCy6Fr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGfxrCy6Fr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGfxrCy6Fr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGfxrCy6Fr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGfxrCy6Fr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGfxrCy6Fr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGfxrCy6Fr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGfxrCy6Fr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGfxrCy6Fr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGfxrCy6Fr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGfxrCy6Fr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGfxrCy6Fr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGfxrCy6Fr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGfxrCy6Fr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGfxrCy6Fr .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGfxrCy6Fr .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uGfxrCy6Fr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGfxrCy6Fr .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-uGfxrCy6Fr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGfxrCy6Fr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGfxrCy6Fr .dropdown-item.active,
.cid-uGfxrCy6Fr .dropdown-item:active {
  background-color: transparent;
}
.cid-uGfxrCy6Fr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGfxrCy6Fr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGfxrCy6Fr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGfxrCy6Fr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uGfxrCy6Fr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGfxrCy6Fr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGfxrCy6Fr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGfxrCy6Fr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGfxrCy6Fr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uGfxrCy6Fr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGfxrCy6Fr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGfxrCy6Fr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGfxrCy6Fr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGfxrCy6Fr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGfxrCy6Fr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGfxrCy6Fr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGfxrCy6Fr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGfxrCy6Fr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGfxrCy6Fr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGfxrCy6Fr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGfxrCy6Fr .navbar {
    height: 70px;
  }
  .cid-uGfxrCy6Fr .navbar.opened {
    height: auto;
  }
  .cid-uGfxrCy6Fr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGfxrDDH5R {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uGfxrDDH5R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrDDH5R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGfxrDDH5R .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uGfxrDDH5R .row {
  flex-direction: row-reverse;
}
.cid-uGfxrDDH5R img {
  width: 100%;
  border-radius: 3rem;
  height: 700px;
  object-fit: cover;
}
.cid-uGfxrEEl3q {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background: linear-gradient(transparent -20%, #ffb18a);
}
.cid-uGfxrEEl3q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrEEl3q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxrEEl3q .row {
  justify-content: flex-end;
}
.cid-uGfxrEEl3q .mbr-text,
.cid-uGfxrEEl3q .mbr-section-btn {
  color: #232323;
}
.cid-uGfxrF5nq4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uGfxrF5nq4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrF5nq4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxrF5nq4 .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uGfxrF5nq4 .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxrF5nq4 .container {
    padding: 0 6px;
  }
}
.cid-uGfxrF5nq4 .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uGfxrF5nq4 .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uGfxrF5nq4 .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxrF5nq4 .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uGfxrF5nq4 .row {
    padding: 0 30px;
  }
}
.cid-uGfxrF5nq4 .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uGfxrF5nq4 .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #232323;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uGfxrF5nq4 .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uGfxrF5nq4 .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uGfxrF5nq4 .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uGfxrF5nq4 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uGfxrF5nq4 .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uGfxrF5nq4 .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uGfxrF5nq4 .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uGfxrF5nq4 .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uGfxrF5nq4 .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uGfxrF5nq4 .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGfxrF5nq4 .mbr-section-title {
  color: #171717;
}
.cid-uGfxrF5nq4 .list {
  color: #131313;
}
.cid-uGfxrFvbQd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
  overflow: hidden;
}
.cid-uGfxrFvbQd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrFvbQd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxrFvbQd .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #fafafa, #fafafa);
  box-shadow: 10px 10px 19px #65c6d4, -10px -10px 19px #feff70;
}
@media (max-width: 767px) {
  .cid-uGfxrFvbQd .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uGfxrFvbQd .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uGfxrFvbQd .card-title {
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uGfxrFvbQd .card-title {
    margin-bottom: 20px;
  }
}
.cid-uGfxrFvbQd .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uGfxrFvbQd .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uGfxrFvbQd .card-text {
  color: #171717;
  margin-bottom: 0;
}
.cid-uGfxrG9wnS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGfxrG9wnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrG9wnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxrG9wnS .card-wrapper {
  display: flex;
  background-color: #ffb18a;
  justify-content: space-between;
  padding: 48px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uGfxrG9wnS .card-wrapper {
    display: block;
    padding: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxrG9wnS .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uGfxrG9wnS .card-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #a78aff 0%, transparent 80%);
  height: 1px;
  width: 100%;
}
.cid-uGfxrG9wnS .card-wrapper .content-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uGfxrG9wnS .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uGfxrG9wnS .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uGfxrG9wnS .card-wrapper .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGfxrG9wnS .card-wrapper .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uGfxrG9wnS .card-wrapper .image-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uGfxrG9wnS .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uGfxrG9wnS .card-wrapper .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uGfxrG9wnS .mbr-section-title {
  color: #ffffff;
}
.cid-uGfxrG9wnS .mbr-text {
  color: #ffffff;
}
.cid-uGfxrGyHkn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uGfxrGyHkn .mbr-section-subtitle {
  transition: all 0.3s;
}
.cid-uGfxrGyHkn .col-md-6 {
  margin-bottom: 1rem;
}
.cid-uGfxrGyHkn .col-md-3 {
  margin-bottom: 2rem;
}
.cid-uGfxrGyHkn .card {
  transition: all 0.3s;
  height: 100%;
  padding: 3rem 2rem;
  border-radius: 2rem;
  border-top-left-radius: 12rem;
  overflow: hidden;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: linear-gradient(transparent 60%, #2a3ffe);
}
@media (max-width: 1400px) {
  .cid-uGfxrGyHkn .card {
    border-top-left-radius: 6rem;
  }
}
.cid-uGfxrGyHkn img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-uGfxrGyHkn img {
    width: 200px;
    height: 200px;
  }
}
.cid-uGfxrGyHkn .mbr-section-title {
  text-align: center;
}
.cid-uGfxrHat2o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGfxrHat2o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrHat2o .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-uGfxrHat2o .container {
    padding: 0 30px;
  }
}
.cid-uGfxrHat2o .content-wrapper {
  display: flex;
  position: relative;
  padding-bottom: 180px;
  border-bottom: 1px solid #144031;
}
@media (max-width: 992px) {
  .cid-uGfxrHat2o .content-wrapper {
    display: block;
  }
}
.cid-uGfxrHat2o .content-wrapper .card {
  justify-content: center;
}
.cid-uGfxrHat2o .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uGfxrHat2o .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 0 60px;
  }
}
.cid-uGfxrHat2o .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uGfxrHat2o .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-uGfxrHat2o .content-wrapper .image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uGfxrHat2o .content-wrapper .image-wrapper {
    min-height: auto;
    height: 400px;
    width: 100%;
  }
}
.cid-uGfxrHat2o .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uGfxrHat2o .content-wrapper .image-wrapper .list {
  position: relative;
  display: inline-block;
  max-width: 310px;
  flex-direction: column;
  width: fit-content;
  padding: 50px 30px;
  list-style-type: none;
  background-color: #000000;
  border-radius: 2rem 0 2rem 0;
  margin: 50px 50px -100px 0;
}
@media (max-width: 992px) {
  .cid-uGfxrHat2o .content-wrapper .image-wrapper .list {
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 50px 0 -100px 0;
  }
}
.cid-uGfxrHat2o .content-wrapper .image-wrapper .list .item-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uGfxrHat2o .content-wrapper .image-wrapper .list .item-wrap {
    display: block;
  }
}
.cid-uGfxrHat2o .content-wrapper .image-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGfxrHat2o .content-wrapper .image-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #feff70;
}
@media (max-width: 992px) {
  .cid-uGfxrHat2o .content-wrapper .image-wrapper .list .item-wrap::before {
    top: 10px;
  }
}
.cid-uGfxrHat2o .mbr-section-title {
  color: #144031;
}
.cid-uGfxrHat2o .mbr-text {
  color: #144031;
}
.cid-uGfxrHat2o .list {
  color: #144031;
}
.cid-uGfxrHat2o .list,
.cid-uGfxrHat2o .item-wrap {
  color: #fafafa;
}
.cid-uGfxrHHWiM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uGfxrHHWiM img {
  margin: auto;
  position: relative;
}
.cid-uGfxrHHWiM .col-md-6 {
  margin-bottom: 1rem;
}
.cid-uGfxrHHWiM .card {
  transition: all 0.3s;
  height: fit-content;
  border-radius: 3rem;
  border-top-left-radius: 9rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.cid-uGfxrHHWiM .card:before {
  content: "";
  position: absolute;
  top: 0;
  border-radius: 3rem;
  border-top-left-radius: 9rem;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.2);
}
.cid-uGfxrHHWiM .dot {
  width: 6px;
  height: 6px;
  background: #000000;
}
.cid-uGfxrHHWiM .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-uGfxrHHWiM .mbr-section-text {
  color: #000000;
}
.cid-uGfxrHHWiM .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-uGfxrHHWiM .mbr-section-title {
  color: #000000;
}
.cid-uGfxrIhvWd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGfxrIhvWd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrIhvWd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxrIhvWd .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uGfxrIhvWd .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uGfxrIhvWd .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uGfxrIhvWd .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uGfxrIhvWd .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uGfxrIhvWd .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uGfxrIhvWd .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uGfxrIhvWd .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uGfxrIhvWd .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGfxrIhvWd .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uGfxrIhvWd .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uGfxrIRsID {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-uGfxrIRsID .row {
  flex-direction: row-reverse;
}
.cid-uGfxrIRsID .row {
  align-items: flex-start;
}
.cid-uGfxrIRsID .container,
.cid-uGfxrIRsID .container-fluid {
  position: static;
}
.cid-uGfxrIRsID .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uGfxrIRsID .col-text {
  position: relative;
  z-index: 2;
}
.cid-uGfxrIRsID .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uGfxrIRsID .toggle-panel,
.cid-uGfxrIRsID .panel-group {
  width: 100%;
}
.cid-uGfxrIRsID .card {
  padding: 0;
  position: relative;
  margin-bottom: 18px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(68, 109, 255, 0.04) !important;
}
.cid-uGfxrIRsID .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: #ffb18a;
}
.cid-uGfxrIRsID .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px 15px 35px;
  transition: 0.5s all;
  position: relative;
  z-index: 2;
}
.cid-uGfxrIRsID .panel-title .sign {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .cid-uGfxrIRsID .panel-title {
    padding: 1rem !important;
  }
}
.cid-uGfxrIRsID .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-uGfxrIRsID .collapsed .sign {
  transform: rotate(0deg);
}
.cid-uGfxrIRsID .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-uGfxrIRsID .sign {
  color: #ffffff;
  transition: transform 0.2s ease-in-out;
  font-size: 1.6rem;
}
.cid-uGfxrIRsID .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-uGfxrIRsID .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-uGfxrIRsID .panel-title-edit {
  width: 100%;
  color: #ffffff;
  text-align: left;
}
.cid-uGfxrIRsID .mbr-text,
.cid-uGfxrIRsID .mbr-section-btn {
  color: #ffffff;
}
.cid-uGfxrJA1r0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uGfxrJA1r0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrJA1r0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxrJA1r0 .row {
  justify-content: space-between;
}
.cid-uGfxrJA1r0 .mbr-text,
.cid-uGfxrJA1r0 .mbr-section-btn {
  color: #ffffff;
}
.cid-uGfxrJA1r0 h2 {
  width: fit-content;
  float: left;
  border: 2px solid currentColor;
  padding: 1rem 3rem;
  padding-bottom: 0.5rem;
  margin: 0;
  border-radius: 1rem;
  border-top-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  margin-bottom: 0;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .cid-uGfxrJA1r0 h2 {
    padding: 1rem 1rem;
    margin-right: 1rem;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
}
.cid-uGfxrJA1r0 .mbr-section-subtitle {
  color: #000000;
}
.cid-uGfxrJA1r0 .mbr-section-title {
  color: #ffffff;
}
.cid-uGfxrKcaJF {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uGfxrKcaJF .video-wrapper iframe {
  width: 100%;
}
.cid-uGfxrKcaJF .mbr-section-title,
.cid-uGfxrKcaJF .mbr-section-subtitle,
.cid-uGfxrKcaJF .mbr-text {
  text-align: center;
}
.cid-uGfxrKcaJF .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
  color: #fafafa;
}
.cid-uGfxrKcaJF .mbr-text {
  padding-top: 16px;
}
.cid-uGfxrKMlmF {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #131313;
}
.cid-uGfxrKMlmF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrKMlmF .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uGfxrKMlmF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxrKMlmF h1 {
  max-width: 800px;
}
.cid-uGfxrKMlmF p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-uGfxrKMlmF .btn:hover {
  transform: scale(1.1);
  background: #feff70 !important;
  border-color: #feff70 !important;
  color: #2a3ffe !important;
}
.cid-uGfxrKMlmF .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-uGfxrKMlmF .btn div {
  overflow: hidden;
}
.cid-uGfxrKMlmF .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-uGfxrKMlmF {
    align-items: center;
  }
  .cid-uGfxrKMlmF .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uGfxrKMlmF .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uGfxrKMlmF {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uGfxrKMlmF .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uGfxrKMlmF .content-wrap {
    width: 100%;
  }
}
.cid-uGfxrKMlmF .mbr-section-subtitle,
.cid-uGfxrKMlmF .line {
  color: #ffffff;
}
.cid-uGfxrKMlmF .mbr-text,
.cid-uGfxrKMlmF .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uGfxrKMlmF .mbr-section-title {
  color: #ffffff;
}
.cid-uGfxrLpEEG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uGfxrLpEEG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrLpEEG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxrLpEEG .row {
  justify-content: center;
}
.cid-uGfxrLpEEG .card-wrapper {
  padding: 90px 90px 90px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff7ee;
}
@media (max-width: 1440px) {
  .cid-uGfxrLpEEG .card-wrapper {
    padding: 60px 60px 60px 40px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxrLpEEG .card-wrapper {
    padding: 30px 16px;
    display: block;
  }
}
.cid-uGfxrLpEEG .card-wrapper .content-wrap {
  width: 42%;
}
@media (max-width: 992px) {
  .cid-uGfxrLpEEG .card-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uGfxrLpEEG .card-wrapper .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 30px;
  background-color: #ffbe0d;
}
.cid-uGfxrLpEEG .card-wrapper .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uGfxrLpEEG .card-wrapper .content-wrap .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #151e11;
}
.cid-uGfxrLpEEG .card-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uGfxrLpEEG .card-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uGfxrLpEEG .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uGfxrLpEEG .card-wrapper .content-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-uGfxrLpEEG .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGfxrLpEEG .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uGfxrLpEEG .card-wrapper .image-wrapper img {
  height: 490px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uGfxrLpEEG .card-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uGfxrLpEEG .mbr-label,
.cid-uGfxrLpEEG .label-wrapper {
  color: #151e11;
}
.cid-uGfxrLpEEG .mbr-section-title {
  color: #151e11;
}
.cid-uGfxrLpEEG .mbr-text {
  color: #151e11;
}
.cid-uGfxrLUm7q {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uGfxrLUm7q .mbr-text {
  color: #221b35;
}
.cid-uGfxrLUm7q .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uGfxrLUm7q h5,
.cid-uGfxrLUm7q h6 {
  background: #2a3ffe;
  display: inline;
}
.cid-uGfxrLUm7q h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uGfxrLUm7q h6 {
  line-height: 1.3 !important;
}
.cid-uGfxrLUm7q h6 span {
  padding-right: 2rem;
}
.cid-uGfxrLUm7q .mbr-section-title,
.cid-uGfxrLUm7q .align {
  color: #ffffff;
}
.cid-uGfxrLUm7q .mbr-section-subtitle,
.cid-uGfxrLUm7q .align {
  color: #ffffff;
  text-align: left;
}
.cid-uGgYmKLnLC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #171717;
  overflow: hidden;
  position: relative;
}
.cid-uGgYmKLnLC .row {
  align-items: flex-start;
}
.cid-uGgYmKLnLC .container,
.cid-uGgYmKLnLC .container-fluid {
  position: static;
}
.cid-uGgYmKLnLC .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uGgYmKLnLC .col-text {
  position: relative;
  z-index: 2;
}
.cid-uGgYmKLnLC .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uGgYmKLnLC .toggle-panel,
.cid-uGgYmKLnLC .panel-group {
  width: 100%;
}
.cid-uGgYmKLnLC .card {
  padding: 0;
  position: relative;
  margin-bottom: 18px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(68, 109, 255, 0.04) !important;
}
.cid-uGgYmKLnLC .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: #333333;
}
.cid-uGgYmKLnLC .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px 15px 35px;
  transition: 0.5s all;
  position: relative;
  z-index: 2;
}
.cid-uGgYmKLnLC .panel-title .sign {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .cid-uGgYmKLnLC .panel-title {
    padding: 1rem !important;
  }
}
.cid-uGgYmKLnLC .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-uGgYmKLnLC .collapsed .sign {
  transform: rotate(0deg);
}
.cid-uGgYmKLnLC .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-uGgYmKLnLC .sign {
  color: #ffffff;
  transition: transform 0.2s ease-in-out;
  font-size: 1.6rem;
}
.cid-uGgYmKLnLC .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: #333333;
}
@media (max-width: 767px) {
  .cid-uGgYmKLnLC .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-uGgYmKLnLC .panel-title-edit {
  width: 100%;
  color: #ffffff;
  text-align: left;
}
.cid-uGgYmKLnLC .mbr-text,
.cid-uGgYmKLnLC .mbr-section-btn {
  color: #ffffff;
}
.cid-uGfxrMqlii {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uGfxrMqlii .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrMqlii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxrMqlii .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
}
.cid-uGfxrMqlii .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
.cid-uGfxrMqlii .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-uGfxrMqlii .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGfxrMqlii .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGfxrMqlii .mbr-section-title {
  text-align: center;
}
.cid-uGfxrN6ipT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
.cid-uGfxrN6ipT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxrN6ipT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxrN6ipT .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uGfxrN6ipT .footer-col {
    flex-direction: column;
  }
}
.cid-uGfxrN6ipT .row {
  background: #000000;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uGfxrN6ipT .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uGfxrN6ipT .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uGfxrN6ipT .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGfxrN6ipT .mbr-section-btn {
    text-align: center;
  }
}
.cid-uGfxrN6ipT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGfxrN6ipT .item-wrap {
  transition: all 300ms ease;
}
.cid-uGfxrN6ipT .item-wrap:hover,
.cid-uGfxrN6ipT .item-wrap:focus {
  cursor: pointer;
}
.cid-uGfxrN6ipT .soc-item {
  margin: 8px;
}
.cid-uGfxrN6ipT .soc-item a:hover .mbr-iconfont,
.cid-uGfxrN6ipT .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uGfxrN6ipT .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #fdfde1;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uGfxrN6ipT .row {
    text-align: center;
  }
  .cid-uGfxrN6ipT .social-row {
    justify-content: center;
  }
}
.cid-uGfxrN6ipT .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uGfxrN6ipT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGfxrN6ipT .list {
    margin-bottom: 0rem;
  }
}
.cid-uGfxrN6ipT .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uGfxrN6ipT .list,
.cid-uGfxrN6ipT .item-wrap {
  color: #fdfde1;
}
.cid-uGfxrN6ipT .copyright {
  color: #fdfde1;
}
.cid-uGfxsaZUD4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGfxsaZUD4 nav.navbar {
  position: fixed;
}
.cid-uGfxsaZUD4 .btn {
  line-height: 1.2;
}
.cid-uGfxsaZUD4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGfxsaZUD4 .nav-link {
  position: relative;
}
.cid-uGfxsaZUD4 .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-uGfxsaZUD4 .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-uGfxsaZUD4 .nav-link:hover:before {
  width: 100%;
}
.cid-uGfxsaZUD4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGfxsaZUD4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGfxsaZUD4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGfxsaZUD4 .dropdown-item:hover,
.cid-uGfxsaZUD4 .dropdown-item:focus {
  background: #2a3ffe !important;
  color: white !important;
}
.cid-uGfxsaZUD4 .dropdown-item:hover span {
  color: white;
}
.cid-uGfxsaZUD4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGfxsaZUD4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGfxsaZUD4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGfxsaZUD4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uGfxsaZUD4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGfxsaZUD4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uGfxsaZUD4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGfxsaZUD4 .navbar-nav {
  margin: auto;
}
.cid-uGfxsaZUD4 .dropdown-menu,
.cid-uGfxsaZUD4 .navbar.opened {
  background: #ffffff !important;
}
.cid-uGfxsaZUD4 .nav-item:focus,
.cid-uGfxsaZUD4 .nav-link:focus {
  outline: none;
}
.cid-uGfxsaZUD4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGfxsaZUD4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGfxsaZUD4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGfxsaZUD4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGfxsaZUD4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGfxsaZUD4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGfxsaZUD4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uGfxsaZUD4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGfxsaZUD4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGfxsaZUD4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uGfxsaZUD4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGfxsaZUD4 .navbar.collapsed {
  justify-content: center;
}
.cid-uGfxsaZUD4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGfxsaZUD4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGfxsaZUD4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uGfxsaZUD4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGfxsaZUD4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGfxsaZUD4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGfxsaZUD4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGfxsaZUD4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGfxsaZUD4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGfxsaZUD4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGfxsaZUD4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGfxsaZUD4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGfxsaZUD4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGfxsaZUD4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGfxsaZUD4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGfxsaZUD4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGfxsaZUD4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGfxsaZUD4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGfxsaZUD4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGfxsaZUD4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGfxsaZUD4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGfxsaZUD4 .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGfxsaZUD4 .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uGfxsaZUD4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGfxsaZUD4 .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-uGfxsaZUD4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGfxsaZUD4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGfxsaZUD4 .dropdown-item.active,
.cid-uGfxsaZUD4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGfxsaZUD4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGfxsaZUD4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGfxsaZUD4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGfxsaZUD4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uGfxsaZUD4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGfxsaZUD4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGfxsaZUD4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGfxsaZUD4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGfxsaZUD4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uGfxsaZUD4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGfxsaZUD4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGfxsaZUD4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGfxsaZUD4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGfxsaZUD4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGfxsaZUD4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGfxsaZUD4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGfxsaZUD4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGfxsaZUD4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGfxsaZUD4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGfxsaZUD4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGfxsaZUD4 .navbar {
    height: 70px;
  }
  .cid-uGfxsaZUD4 .navbar.opened {
    height: auto;
  }
  .cid-uGfxsaZUD4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGfxsbEtEZ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uGfxsbEtEZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsbEtEZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGfxsbEtEZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uGfxsbEtEZ .row {
  flex-direction: row-reverse;
}
.cid-uGfxsbEtEZ img {
  width: 100%;
  border-radius: 3rem;
  height: 700px;
  object-fit: cover;
}
.cid-uGfxsc77Qe {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background: linear-gradient(transparent -20%, #ffb18a);
}
.cid-uGfxsc77Qe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsc77Qe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsc77Qe .row {
  justify-content: flex-end;
}
.cid-uGfxsc77Qe .mbr-text,
.cid-uGfxsc77Qe .mbr-section-btn {
  color: #232323;
}
.cid-uGfxscwp3Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uGfxscwp3Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxscwp3Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxscwp3Q .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uGfxscwp3Q .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxscwp3Q .container {
    padding: 0 6px;
  }
}
.cid-uGfxscwp3Q .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uGfxscwp3Q .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uGfxscwp3Q .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxscwp3Q .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uGfxscwp3Q .row {
    padding: 0 30px;
  }
}
.cid-uGfxscwp3Q .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uGfxscwp3Q .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #232323;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uGfxscwp3Q .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uGfxscwp3Q .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uGfxscwp3Q .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uGfxscwp3Q .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uGfxscwp3Q .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uGfxscwp3Q .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uGfxscwp3Q .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uGfxscwp3Q .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uGfxscwp3Q .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uGfxscwp3Q .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGfxscwp3Q .mbr-section-title {
  color: #171717;
}
.cid-uGfxscwp3Q .list {
  color: #131313;
}
.cid-uGfxsd0xk7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
  overflow: hidden;
}
.cid-uGfxsd0xk7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsd0xk7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsd0xk7 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #fafafa, #fafafa);
  box-shadow: 10px 10px 19px #65c6d4, -10px -10px 19px #feff70;
}
@media (max-width: 767px) {
  .cid-uGfxsd0xk7 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uGfxsd0xk7 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uGfxsd0xk7 .card-title {
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uGfxsd0xk7 .card-title {
    margin-bottom: 20px;
  }
}
.cid-uGfxsd0xk7 .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uGfxsd0xk7 .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uGfxsd0xk7 .card-text {
  color: #171717;
  margin-bottom: 0;
}
.cid-uGfxsdBFpz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGfxsdBFpz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsdBFpz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsdBFpz .card-wrapper {
  display: flex;
  background-color: #ffb18a;
  justify-content: space-between;
  padding: 48px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uGfxsdBFpz .card-wrapper {
    display: block;
    padding: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxsdBFpz .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uGfxsdBFpz .card-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #a78aff 0%, transparent 80%);
  height: 1px;
  width: 100%;
}
.cid-uGfxsdBFpz .card-wrapper .content-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uGfxsdBFpz .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uGfxsdBFpz .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uGfxsdBFpz .card-wrapper .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGfxsdBFpz .card-wrapper .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uGfxsdBFpz .card-wrapper .image-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uGfxsdBFpz .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uGfxsdBFpz .card-wrapper .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uGfxsdBFpz .mbr-section-title {
  color: #ffffff;
}
.cid-uGfxsdBFpz .mbr-text {
  color: #ffffff;
}
.cid-uGfxseczr7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uGfxseczr7 .mbr-section-subtitle {
  transition: all 0.3s;
}
.cid-uGfxseczr7 .col-md-6 {
  margin-bottom: 1rem;
}
.cid-uGfxseczr7 .col-md-3 {
  margin-bottom: 2rem;
}
.cid-uGfxseczr7 .card {
  transition: all 0.3s;
  height: 100%;
  padding: 3rem 2rem;
  border-radius: 2rem;
  border-top-left-radius: 12rem;
  overflow: hidden;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: linear-gradient(transparent 60%, #2a3ffe);
}
@media (max-width: 1400px) {
  .cid-uGfxseczr7 .card {
    border-top-left-radius: 6rem;
  }
}
.cid-uGfxseczr7 img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-uGfxseczr7 img {
    width: 200px;
    height: 200px;
  }
}
.cid-uGfxseczr7 .mbr-section-title {
  text-align: center;
}
.cid-uGfxseYs0U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGfxseYs0U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxseYs0U .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-uGfxseYs0U .container {
    padding: 0 30px;
  }
}
.cid-uGfxseYs0U .content-wrapper {
  display: flex;
  position: relative;
  padding-bottom: 180px;
  border-bottom: 1px solid #144031;
}
@media (max-width: 992px) {
  .cid-uGfxseYs0U .content-wrapper {
    display: block;
  }
}
.cid-uGfxseYs0U .content-wrapper .card {
  justify-content: center;
}
.cid-uGfxseYs0U .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uGfxseYs0U .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 0 60px;
  }
}
.cid-uGfxseYs0U .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uGfxseYs0U .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-uGfxseYs0U .content-wrapper .image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uGfxseYs0U .content-wrapper .image-wrapper {
    min-height: auto;
    height: 400px;
    width: 100%;
  }
}
.cid-uGfxseYs0U .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uGfxseYs0U .content-wrapper .image-wrapper .list {
  position: relative;
  display: inline-block;
  max-width: 310px;
  flex-direction: column;
  width: fit-content;
  padding: 50px 30px;
  list-style-type: none;
  background-color: #000000;
  border-radius: 2rem 0 2rem 0;
  margin: 50px 50px -100px 0;
}
@media (max-width: 992px) {
  .cid-uGfxseYs0U .content-wrapper .image-wrapper .list {
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 50px 0 -100px 0;
  }
}
.cid-uGfxseYs0U .content-wrapper .image-wrapper .list .item-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uGfxseYs0U .content-wrapper .image-wrapper .list .item-wrap {
    display: block;
  }
}
.cid-uGfxseYs0U .content-wrapper .image-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGfxseYs0U .content-wrapper .image-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #feff70;
}
@media (max-width: 992px) {
  .cid-uGfxseYs0U .content-wrapper .image-wrapper .list .item-wrap::before {
    top: 10px;
  }
}
.cid-uGfxseYs0U .mbr-section-title {
  color: #144031;
}
.cid-uGfxseYs0U .mbr-text {
  color: #144031;
}
.cid-uGfxseYs0U .list {
  color: #144031;
}
.cid-uGfxseYs0U .list,
.cid-uGfxseYs0U .item-wrap {
  color: #fafafa;
}
.cid-uGfxsfAiHb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uGfxsfAiHb img {
  margin: auto;
  position: relative;
}
.cid-uGfxsfAiHb .col-md-6 {
  margin-bottom: 1rem;
}
.cid-uGfxsfAiHb .card {
  transition: all 0.3s;
  height: fit-content;
  border-radius: 3rem;
  border-top-left-radius: 9rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.cid-uGfxsfAiHb .card:before {
  content: "";
  position: absolute;
  top: 0;
  border-radius: 3rem;
  border-top-left-radius: 9rem;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.2);
}
.cid-uGfxsfAiHb .dot {
  width: 6px;
  height: 6px;
  background: #000000;
}
.cid-uGfxsfAiHb .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-uGfxsfAiHb .mbr-section-text {
  color: #000000;
}
.cid-uGfxsfAiHb .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-uGfxsfAiHb .mbr-section-title {
  color: #000000;
}
.cid-uGfxsggYWu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGfxsggYWu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsggYWu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsggYWu .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uGfxsggYWu .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uGfxsggYWu .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uGfxsggYWu .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uGfxsggYWu .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uGfxsggYWu .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uGfxsggYWu .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uGfxsggYWu .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uGfxsggYWu .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGfxsggYWu .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uGfxsggYWu .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uGfxsh58Yq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-uGfxsh58Yq .row {
  flex-direction: row-reverse;
}
.cid-uGfxsh58Yq .row {
  align-items: flex-start;
}
.cid-uGfxsh58Yq .container,
.cid-uGfxsh58Yq .container-fluid {
  position: static;
}
.cid-uGfxsh58Yq .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uGfxsh58Yq .col-text {
  position: relative;
  z-index: 2;
}
.cid-uGfxsh58Yq .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uGfxsh58Yq .toggle-panel,
.cid-uGfxsh58Yq .panel-group {
  width: 100%;
}
.cid-uGfxsh58Yq .card {
  padding: 0;
  position: relative;
  margin-bottom: 18px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(68, 109, 255, 0.04) !important;
}
.cid-uGfxsh58Yq .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: #ffb18a;
}
.cid-uGfxsh58Yq .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px 15px 35px;
  transition: 0.5s all;
  position: relative;
  z-index: 2;
}
.cid-uGfxsh58Yq .panel-title .sign {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .cid-uGfxsh58Yq .panel-title {
    padding: 1rem !important;
  }
}
.cid-uGfxsh58Yq .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-uGfxsh58Yq .collapsed .sign {
  transform: rotate(0deg);
}
.cid-uGfxsh58Yq .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-uGfxsh58Yq .sign {
  color: #ffffff;
  transition: transform 0.2s ease-in-out;
  font-size: 1.6rem;
}
.cid-uGfxsh58Yq .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-uGfxsh58Yq .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-uGfxsh58Yq .panel-title-edit {
  width: 100%;
  color: #ffffff;
  text-align: left;
}
.cid-uGfxsh58Yq .mbr-text,
.cid-uGfxsh58Yq .mbr-section-btn {
  color: #ffffff;
}
.cid-uGfxshXqcn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uGfxshXqcn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxshXqcn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxshXqcn .row {
  justify-content: space-between;
}
.cid-uGfxshXqcn .mbr-text,
.cid-uGfxshXqcn .mbr-section-btn {
  color: #ffffff;
}
.cid-uGfxshXqcn h2 {
  width: fit-content;
  float: left;
  border: 2px solid currentColor;
  padding: 1rem 3rem;
  padding-bottom: 0.5rem;
  margin: 0;
  border-radius: 1rem;
  border-top-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  margin-bottom: 0;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .cid-uGfxshXqcn h2 {
    padding: 1rem 1rem;
    margin-right: 1rem;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
}
.cid-uGfxshXqcn .mbr-section-subtitle {
  color: #000000;
}
.cid-uGfxshXqcn .mbr-section-title {
  color: #ffffff;
}
.cid-uGfxsitZOX {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uGfxsitZOX .video-wrapper iframe {
  width: 100%;
}
.cid-uGfxsitZOX .mbr-section-title,
.cid-uGfxsitZOX .mbr-section-subtitle,
.cid-uGfxsitZOX .mbr-text {
  text-align: center;
}
.cid-uGfxsitZOX .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
  color: #fafafa;
}
.cid-uGfxsitZOX .mbr-text {
  padding-top: 16px;
}
.cid-uGfxsjmpbH {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #131313;
}
.cid-uGfxsjmpbH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsjmpbH .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uGfxsjmpbH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsjmpbH h1 {
  max-width: 800px;
}
.cid-uGfxsjmpbH p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-uGfxsjmpbH .btn:hover {
  transform: scale(1.1);
  background: #feff70 !important;
  border-color: #feff70 !important;
  color: #2a3ffe !important;
}
.cid-uGfxsjmpbH .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-uGfxsjmpbH .btn div {
  overflow: hidden;
}
.cid-uGfxsjmpbH .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-uGfxsjmpbH {
    align-items: center;
  }
  .cid-uGfxsjmpbH .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uGfxsjmpbH .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uGfxsjmpbH {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uGfxsjmpbH .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uGfxsjmpbH .content-wrap {
    width: 100%;
  }
}
.cid-uGfxsjmpbH .mbr-section-subtitle,
.cid-uGfxsjmpbH .line {
  color: #ffffff;
}
.cid-uGfxsjmpbH .mbr-text,
.cid-uGfxsjmpbH .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uGfxsjmpbH .mbr-section-title {
  color: #ffffff;
}
.cid-uGfxsjQwD5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uGfxsjQwD5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsjQwD5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsjQwD5 .row {
  justify-content: center;
}
.cid-uGfxsjQwD5 .card-wrapper {
  padding: 90px 90px 90px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff7ee;
}
@media (max-width: 1440px) {
  .cid-uGfxsjQwD5 .card-wrapper {
    padding: 60px 60px 60px 40px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxsjQwD5 .card-wrapper {
    padding: 30px 16px;
    display: block;
  }
}
.cid-uGfxsjQwD5 .card-wrapper .content-wrap {
  width: 42%;
}
@media (max-width: 992px) {
  .cid-uGfxsjQwD5 .card-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uGfxsjQwD5 .card-wrapper .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 30px;
  background-color: #ffbe0d;
}
.cid-uGfxsjQwD5 .card-wrapper .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uGfxsjQwD5 .card-wrapper .content-wrap .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #151e11;
}
.cid-uGfxsjQwD5 .card-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uGfxsjQwD5 .card-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uGfxsjQwD5 .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uGfxsjQwD5 .card-wrapper .content-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-uGfxsjQwD5 .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGfxsjQwD5 .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uGfxsjQwD5 .card-wrapper .image-wrapper img {
  height: 490px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uGfxsjQwD5 .card-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uGfxsjQwD5 .mbr-label,
.cid-uGfxsjQwD5 .label-wrapper {
  color: #151e11;
}
.cid-uGfxsjQwD5 .mbr-section-title {
  color: #151e11;
}
.cid-uGfxsjQwD5 .mbr-text {
  color: #151e11;
}
.cid-uGfxsko6fd {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uGfxsko6fd .mbr-text {
  color: #221b35;
}
.cid-uGfxsko6fd .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uGfxsko6fd h5,
.cid-uGfxsko6fd h6 {
  background: #2a3ffe;
  display: inline;
}
.cid-uGfxsko6fd h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uGfxsko6fd h6 {
  line-height: 1.3 !important;
}
.cid-uGfxsko6fd h6 span {
  padding-right: 2rem;
}
.cid-uGfxsko6fd .mbr-section-title,
.cid-uGfxsko6fd .align {
  color: #ffffff;
}
.cid-uGfxsko6fd .mbr-section-subtitle,
.cid-uGfxsko6fd .align {
  color: #ffffff;
  text-align: left;
}
.cid-uGgZBywf3Y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #171717;
  overflow: hidden;
  position: relative;
}
.cid-uGgZBywf3Y .row {
  align-items: flex-start;
}
.cid-uGgZBywf3Y .container,
.cid-uGgZBywf3Y .container-fluid {
  position: static;
}
.cid-uGgZBywf3Y .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uGgZBywf3Y .col-text {
  position: relative;
  z-index: 2;
}
.cid-uGgZBywf3Y .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uGgZBywf3Y .toggle-panel,
.cid-uGgZBywf3Y .panel-group {
  width: 100%;
}
.cid-uGgZBywf3Y .card {
  padding: 0;
  position: relative;
  margin-bottom: 18px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(68, 109, 255, 0.04) !important;
}
.cid-uGgZBywf3Y .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: #333333;
}
.cid-uGgZBywf3Y .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px 15px 35px;
  transition: 0.5s all;
  position: relative;
  z-index: 2;
}
.cid-uGgZBywf3Y .panel-title .sign {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .cid-uGgZBywf3Y .panel-title {
    padding: 1rem !important;
  }
}
.cid-uGgZBywf3Y .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-uGgZBywf3Y .collapsed .sign {
  transform: rotate(0deg);
}
.cid-uGgZBywf3Y .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-uGgZBywf3Y .sign {
  color: #ffffff;
  transition: transform 0.2s ease-in-out;
  font-size: 1.6rem;
}
.cid-uGgZBywf3Y .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: #333333;
}
@media (max-width: 767px) {
  .cid-uGgZBywf3Y .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-uGgZBywf3Y .panel-title-edit {
  width: 100%;
  color: #ffffff;
  text-align: left;
}
.cid-uGgZBywf3Y .mbr-text,
.cid-uGgZBywf3Y .mbr-section-btn {
  color: #ffffff;
}
.cid-uGfxskPxIU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uGfxskPxIU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxskPxIU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxskPxIU .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
}
.cid-uGfxskPxIU .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
.cid-uGfxskPxIU .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-uGfxskPxIU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGfxskPxIU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGfxskPxIU .mbr-section-title {
  text-align: center;
}
.cid-uGfxslmNWj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
.cid-uGfxslmNWj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxslmNWj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxslmNWj .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uGfxslmNWj .footer-col {
    flex-direction: column;
  }
}
.cid-uGfxslmNWj .row {
  background: #000000;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uGfxslmNWj .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uGfxslmNWj .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uGfxslmNWj .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGfxslmNWj .mbr-section-btn {
    text-align: center;
  }
}
.cid-uGfxslmNWj .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGfxslmNWj .item-wrap {
  transition: all 300ms ease;
}
.cid-uGfxslmNWj .item-wrap:hover,
.cid-uGfxslmNWj .item-wrap:focus {
  cursor: pointer;
}
.cid-uGfxslmNWj .soc-item {
  margin: 8px;
}
.cid-uGfxslmNWj .soc-item a:hover .mbr-iconfont,
.cid-uGfxslmNWj .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uGfxslmNWj .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #fdfde1;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uGfxslmNWj .row {
    text-align: center;
  }
  .cid-uGfxslmNWj .social-row {
    justify-content: center;
  }
}
.cid-uGfxslmNWj .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uGfxslmNWj .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGfxslmNWj .list {
    margin-bottom: 0rem;
  }
}
.cid-uGfxslmNWj .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uGfxslmNWj .list,
.cid-uGfxslmNWj .item-wrap {
  color: #fdfde1;
}
.cid-uGfxslmNWj .copyright {
  color: #fdfde1;
}
.cid-uGfxsEax49 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGfxsEax49 nav.navbar {
  position: fixed;
}
.cid-uGfxsEax49 .btn {
  line-height: 1.2;
}
.cid-uGfxsEax49 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGfxsEax49 .nav-link {
  position: relative;
}
.cid-uGfxsEax49 .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-uGfxsEax49 .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-uGfxsEax49 .nav-link:hover:before {
  width: 100%;
}
.cid-uGfxsEax49 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGfxsEax49 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGfxsEax49 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGfxsEax49 .dropdown-item:hover,
.cid-uGfxsEax49 .dropdown-item:focus {
  background: #2a3ffe !important;
  color: white !important;
}
.cid-uGfxsEax49 .dropdown-item:hover span {
  color: white;
}
.cid-uGfxsEax49 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGfxsEax49 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGfxsEax49 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGfxsEax49 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uGfxsEax49 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGfxsEax49 .container {
    flex-wrap: nowrap;
  }
}
.cid-uGfxsEax49 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGfxsEax49 .navbar-nav {
  margin: auto;
}
.cid-uGfxsEax49 .dropdown-menu,
.cid-uGfxsEax49 .navbar.opened {
  background: #ffffff !important;
}
.cid-uGfxsEax49 .nav-item:focus,
.cid-uGfxsEax49 .nav-link:focus {
  outline: none;
}
.cid-uGfxsEax49 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGfxsEax49 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGfxsEax49 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGfxsEax49 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGfxsEax49 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGfxsEax49 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGfxsEax49 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uGfxsEax49 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGfxsEax49 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGfxsEax49 .navbar .navbar-logo img {
  width: auto;
}
.cid-uGfxsEax49 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGfxsEax49 .navbar.collapsed {
  justify-content: center;
}
.cid-uGfxsEax49 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGfxsEax49 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGfxsEax49 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uGfxsEax49 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGfxsEax49 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGfxsEax49 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGfxsEax49 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGfxsEax49 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGfxsEax49 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGfxsEax49 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGfxsEax49 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGfxsEax49 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGfxsEax49 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGfxsEax49 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGfxsEax49 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGfxsEax49 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGfxsEax49 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGfxsEax49 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGfxsEax49 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGfxsEax49 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGfxsEax49 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGfxsEax49 .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGfxsEax49 .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uGfxsEax49 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGfxsEax49 .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-uGfxsEax49 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGfxsEax49 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGfxsEax49 .dropdown-item.active,
.cid-uGfxsEax49 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGfxsEax49 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGfxsEax49 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGfxsEax49 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGfxsEax49 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uGfxsEax49 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGfxsEax49 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGfxsEax49 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGfxsEax49 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGfxsEax49 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uGfxsEax49 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGfxsEax49 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGfxsEax49 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGfxsEax49 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGfxsEax49 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGfxsEax49 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGfxsEax49 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGfxsEax49 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGfxsEax49 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGfxsEax49 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGfxsEax49 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGfxsEax49 .navbar {
    height: 70px;
  }
  .cid-uGfxsEax49 .navbar.opened {
    height: auto;
  }
  .cid-uGfxsEax49 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGfxsERan7 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uGfxsERan7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsERan7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGfxsERan7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uGfxsERan7 .row {
  flex-direction: row-reverse;
}
.cid-uGfxsERan7 img {
  width: 100%;
  border-radius: 3rem;
  height: 700px;
  object-fit: cover;
}
.cid-uGfxsFfQ9a {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background: linear-gradient(transparent -20%, #ffb18a);
}
.cid-uGfxsFfQ9a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsFfQ9a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsFfQ9a .row {
  justify-content: flex-end;
}
.cid-uGfxsFfQ9a .mbr-text,
.cid-uGfxsFfQ9a .mbr-section-btn {
  color: #232323;
}
.cid-uGfxsFJ1a0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uGfxsFJ1a0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsFJ1a0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsFJ1a0 .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uGfxsFJ1a0 .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxsFJ1a0 .container {
    padding: 0 6px;
  }
}
.cid-uGfxsFJ1a0 .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uGfxsFJ1a0 .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uGfxsFJ1a0 .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxsFJ1a0 .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uGfxsFJ1a0 .row {
    padding: 0 30px;
  }
}
.cid-uGfxsFJ1a0 .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uGfxsFJ1a0 .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #232323;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uGfxsFJ1a0 .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uGfxsFJ1a0 .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uGfxsFJ1a0 .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uGfxsFJ1a0 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uGfxsFJ1a0 .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uGfxsFJ1a0 .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uGfxsFJ1a0 .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uGfxsFJ1a0 .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uGfxsFJ1a0 .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uGfxsFJ1a0 .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGfxsFJ1a0 .mbr-section-title {
  color: #171717;
}
.cid-uGfxsFJ1a0 .list {
  color: #131313;
}
.cid-uGfxsGgEB9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
  overflow: hidden;
}
.cid-uGfxsGgEB9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsGgEB9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsGgEB9 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #fafafa, #fafafa);
  box-shadow: 10px 10px 19px #65c6d4, -10px -10px 19px #feff70;
}
@media (max-width: 767px) {
  .cid-uGfxsGgEB9 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uGfxsGgEB9 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uGfxsGgEB9 .card-title {
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uGfxsGgEB9 .card-title {
    margin-bottom: 20px;
  }
}
.cid-uGfxsGgEB9 .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uGfxsGgEB9 .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uGfxsGgEB9 .card-text {
  color: #171717;
  margin-bottom: 0;
}
.cid-uGfxsGV7R0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGfxsGV7R0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsGV7R0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsGV7R0 .card-wrapper {
  display: flex;
  background-color: #ffb18a;
  justify-content: space-between;
  padding: 48px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uGfxsGV7R0 .card-wrapper {
    display: block;
    padding: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxsGV7R0 .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uGfxsGV7R0 .card-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #a78aff 0%, transparent 80%);
  height: 1px;
  width: 100%;
}
.cid-uGfxsGV7R0 .card-wrapper .content-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uGfxsGV7R0 .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uGfxsGV7R0 .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uGfxsGV7R0 .card-wrapper .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGfxsGV7R0 .card-wrapper .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uGfxsGV7R0 .card-wrapper .image-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uGfxsGV7R0 .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uGfxsGV7R0 .card-wrapper .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uGfxsGV7R0 .mbr-section-title {
  color: #ffffff;
}
.cid-uGfxsGV7R0 .mbr-text {
  color: #ffffff;
}
.cid-uGfxsHrHZF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uGfxsHrHZF .mbr-section-subtitle {
  transition: all 0.3s;
}
.cid-uGfxsHrHZF .col-md-6 {
  margin-bottom: 1rem;
}
.cid-uGfxsHrHZF .col-md-3 {
  margin-bottom: 2rem;
}
.cid-uGfxsHrHZF .card {
  transition: all 0.3s;
  height: 100%;
  padding: 3rem 2rem;
  border-radius: 2rem;
  border-top-left-radius: 12rem;
  overflow: hidden;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: linear-gradient(transparent 60%, #2a3ffe);
}
@media (max-width: 1400px) {
  .cid-uGfxsHrHZF .card {
    border-top-left-radius: 6rem;
  }
}
.cid-uGfxsHrHZF img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-uGfxsHrHZF img {
    width: 200px;
    height: 200px;
  }
}
.cid-uGfxsHrHZF .mbr-section-title {
  text-align: center;
}
.cid-uGfxsI4UPl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGfxsI4UPl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsI4UPl .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-uGfxsI4UPl .container {
    padding: 0 30px;
  }
}
.cid-uGfxsI4UPl .content-wrapper {
  display: flex;
  position: relative;
  padding-bottom: 180px;
  border-bottom: 1px solid #144031;
}
@media (max-width: 992px) {
  .cid-uGfxsI4UPl .content-wrapper {
    display: block;
  }
}
.cid-uGfxsI4UPl .content-wrapper .card {
  justify-content: center;
}
.cid-uGfxsI4UPl .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uGfxsI4UPl .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 0 60px;
  }
}
.cid-uGfxsI4UPl .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uGfxsI4UPl .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-uGfxsI4UPl .content-wrapper .image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uGfxsI4UPl .content-wrapper .image-wrapper {
    min-height: auto;
    height: 400px;
    width: 100%;
  }
}
.cid-uGfxsI4UPl .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uGfxsI4UPl .content-wrapper .image-wrapper .list {
  position: relative;
  display: inline-block;
  max-width: 310px;
  flex-direction: column;
  width: fit-content;
  padding: 50px 30px;
  list-style-type: none;
  background-color: #000000;
  border-radius: 2rem 0 2rem 0;
  margin: 50px 50px -100px 0;
}
@media (max-width: 992px) {
  .cid-uGfxsI4UPl .content-wrapper .image-wrapper .list {
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 50px 0 -100px 0;
  }
}
.cid-uGfxsI4UPl .content-wrapper .image-wrapper .list .item-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uGfxsI4UPl .content-wrapper .image-wrapper .list .item-wrap {
    display: block;
  }
}
.cid-uGfxsI4UPl .content-wrapper .image-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGfxsI4UPl .content-wrapper .image-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #feff70;
}
@media (max-width: 992px) {
  .cid-uGfxsI4UPl .content-wrapper .image-wrapper .list .item-wrap::before {
    top: 10px;
  }
}
.cid-uGfxsI4UPl .mbr-section-title {
  color: #144031;
}
.cid-uGfxsI4UPl .mbr-text {
  color: #144031;
}
.cid-uGfxsI4UPl .list {
  color: #144031;
}
.cid-uGfxsI4UPl .list,
.cid-uGfxsI4UPl .item-wrap {
  color: #fafafa;
}
.cid-uGfxsIC4f8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uGfxsIC4f8 img {
  margin: auto;
  position: relative;
}
.cid-uGfxsIC4f8 .col-md-6 {
  margin-bottom: 1rem;
}
.cid-uGfxsIC4f8 .card {
  transition: all 0.3s;
  height: fit-content;
  border-radius: 3rem;
  border-top-left-radius: 9rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.cid-uGfxsIC4f8 .card:before {
  content: "";
  position: absolute;
  top: 0;
  border-radius: 3rem;
  border-top-left-radius: 9rem;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.2);
}
.cid-uGfxsIC4f8 .dot {
  width: 6px;
  height: 6px;
  background: #000000;
}
.cid-uGfxsIC4f8 .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-uGfxsIC4f8 .mbr-section-text {
  color: #000000;
}
.cid-uGfxsIC4f8 .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-uGfxsIC4f8 .mbr-section-title {
  color: #000000;
}
.cid-uGfxsJhfZw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGfxsJhfZw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsJhfZw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsJhfZw .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uGfxsJhfZw .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uGfxsJhfZw .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uGfxsJhfZw .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uGfxsJhfZw .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uGfxsJhfZw .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uGfxsJhfZw .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uGfxsJhfZw .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uGfxsJhfZw .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGfxsJhfZw .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uGfxsJhfZw .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uGfxsJKxUF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-uGfxsJKxUF .row {
  flex-direction: row-reverse;
}
.cid-uGfxsJKxUF .row {
  align-items: flex-start;
}
.cid-uGfxsJKxUF .container,
.cid-uGfxsJKxUF .container-fluid {
  position: static;
}
.cid-uGfxsJKxUF .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uGfxsJKxUF .col-text {
  position: relative;
  z-index: 2;
}
.cid-uGfxsJKxUF .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uGfxsJKxUF .toggle-panel,
.cid-uGfxsJKxUF .panel-group {
  width: 100%;
}
.cid-uGfxsJKxUF .card {
  padding: 0;
  position: relative;
  margin-bottom: 18px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(68, 109, 255, 0.04) !important;
}
.cid-uGfxsJKxUF .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: #ffb18a;
}
.cid-uGfxsJKxUF .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px 15px 35px;
  transition: 0.5s all;
  position: relative;
  z-index: 2;
}
.cid-uGfxsJKxUF .panel-title .sign {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .cid-uGfxsJKxUF .panel-title {
    padding: 1rem !important;
  }
}
.cid-uGfxsJKxUF .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-uGfxsJKxUF .collapsed .sign {
  transform: rotate(0deg);
}
.cid-uGfxsJKxUF .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-uGfxsJKxUF .sign {
  color: #ffffff;
  transition: transform 0.2s ease-in-out;
  font-size: 1.6rem;
}
.cid-uGfxsJKxUF .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-uGfxsJKxUF .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-uGfxsJKxUF .panel-title-edit {
  width: 100%;
  color: #ffffff;
  text-align: left;
}
.cid-uGfxsJKxUF .mbr-text,
.cid-uGfxsJKxUF .mbr-section-btn {
  color: #ffffff;
}
.cid-uGfxsKv7O3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uGfxsKv7O3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsKv7O3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsKv7O3 .row {
  justify-content: space-between;
}
.cid-uGfxsKv7O3 .mbr-text,
.cid-uGfxsKv7O3 .mbr-section-btn {
  color: #ffffff;
}
.cid-uGfxsKv7O3 h2 {
  width: fit-content;
  float: left;
  border: 2px solid currentColor;
  padding: 1rem 3rem;
  padding-bottom: 0.5rem;
  margin: 0;
  border-radius: 1rem;
  border-top-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  margin-bottom: 0;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .cid-uGfxsKv7O3 h2 {
    padding: 1rem 1rem;
    margin-right: 1rem;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
}
.cid-uGfxsKv7O3 .mbr-section-subtitle {
  color: #000000;
}
.cid-uGfxsKv7O3 .mbr-section-title {
  color: #ffffff;
}
.cid-uGfxsKYvLi {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uGfxsKYvLi .video-wrapper iframe {
  width: 100%;
}
.cid-uGfxsKYvLi .mbr-section-title,
.cid-uGfxsKYvLi .mbr-section-subtitle,
.cid-uGfxsKYvLi .mbr-text {
  text-align: center;
}
.cid-uGfxsKYvLi .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
  color: #fafafa;
}
.cid-uGfxsKYvLi .mbr-text {
  padding-top: 16px;
}
.cid-uGfxsLwFwt {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #131313;
}
.cid-uGfxsLwFwt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsLwFwt .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uGfxsLwFwt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsLwFwt h1 {
  max-width: 800px;
}
.cid-uGfxsLwFwt p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-uGfxsLwFwt .btn:hover {
  transform: scale(1.1);
  background: #feff70 !important;
  border-color: #feff70 !important;
  color: #2a3ffe !important;
}
.cid-uGfxsLwFwt .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-uGfxsLwFwt .btn div {
  overflow: hidden;
}
.cid-uGfxsLwFwt .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-uGfxsLwFwt {
    align-items: center;
  }
  .cid-uGfxsLwFwt .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uGfxsLwFwt .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uGfxsLwFwt {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uGfxsLwFwt .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uGfxsLwFwt .content-wrap {
    width: 100%;
  }
}
.cid-uGfxsLwFwt .mbr-section-subtitle,
.cid-uGfxsLwFwt .line {
  color: #ffffff;
}
.cid-uGfxsLwFwt .mbr-text,
.cid-uGfxsLwFwt .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uGfxsLwFwt .mbr-section-title {
  color: #ffffff;
}
.cid-uGfxsM082O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uGfxsM082O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsM082O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsM082O .row {
  justify-content: center;
}
.cid-uGfxsM082O .card-wrapper {
  padding: 90px 90px 90px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff7ee;
}
@media (max-width: 1440px) {
  .cid-uGfxsM082O .card-wrapper {
    padding: 60px 60px 60px 40px;
  }
}
@media (max-width: 992px) {
  .cid-uGfxsM082O .card-wrapper {
    padding: 30px 16px;
    display: block;
  }
}
.cid-uGfxsM082O .card-wrapper .content-wrap {
  width: 42%;
}
@media (max-width: 992px) {
  .cid-uGfxsM082O .card-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uGfxsM082O .card-wrapper .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 30px;
  background-color: #ffbe0d;
}
.cid-uGfxsM082O .card-wrapper .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uGfxsM082O .card-wrapper .content-wrap .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #ffbe0d;
}
.cid-uGfxsM082O .card-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uGfxsM082O .card-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uGfxsM082O .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uGfxsM082O .card-wrapper .content-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-uGfxsM082O .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGfxsM082O .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uGfxsM082O .card-wrapper .image-wrapper img {
  height: 490px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uGfxsM082O .card-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uGfxsM082O .mbr-label,
.cid-uGfxsM082O .label-wrapper {
  color: #151e11;
}
.cid-uGfxsM082O .mbr-section-title {
  color: #151e11;
}
.cid-uGfxsM082O .mbr-text {
  color: #151e11;
}
.cid-uGfxsMuXf6 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uGfxsMuXf6 .mbr-text {
  color: #221b35;
}
.cid-uGfxsMuXf6 .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uGfxsMuXf6 h5,
.cid-uGfxsMuXf6 h6 {
  background: #2a3ffe;
  display: inline;
}
.cid-uGfxsMuXf6 h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uGfxsMuXf6 h6 {
  line-height: 1.3 !important;
}
.cid-uGfxsMuXf6 h6 span {
  padding-right: 2rem;
}
.cid-uGfxsMuXf6 .mbr-section-title,
.cid-uGfxsMuXf6 .align {
  color: #ffffff;
}
.cid-uGfxsMuXf6 .mbr-section-subtitle,
.cid-uGfxsMuXf6 .align {
  color: #ffffff;
  text-align: left;
}
.cid-uGh02mEHre {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #171717;
  overflow: hidden;
  position: relative;
}
.cid-uGh02mEHre .row {
  align-items: flex-start;
}
.cid-uGh02mEHre .container,
.cid-uGh02mEHre .container-fluid {
  position: static;
}
.cid-uGh02mEHre .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uGh02mEHre .col-text {
  position: relative;
  z-index: 2;
}
.cid-uGh02mEHre .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uGh02mEHre .toggle-panel,
.cid-uGh02mEHre .panel-group {
  width: 100%;
}
.cid-uGh02mEHre .card {
  padding: 0;
  position: relative;
  margin-bottom: 18px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(68, 109, 255, 0.04) !important;
}
.cid-uGh02mEHre .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: #333333;
}
.cid-uGh02mEHre .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px 15px 35px;
  transition: 0.5s all;
  position: relative;
  z-index: 2;
}
.cid-uGh02mEHre .panel-title .sign {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .cid-uGh02mEHre .panel-title {
    padding: 1rem !important;
  }
}
.cid-uGh02mEHre .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-uGh02mEHre .collapsed .sign {
  transform: rotate(0deg);
}
.cid-uGh02mEHre .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-uGh02mEHre .sign {
  color: #ffffff;
  transition: transform 0.2s ease-in-out;
  font-size: 1.6rem;
}
.cid-uGh02mEHre .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: #333333;
}
@media (max-width: 767px) {
  .cid-uGh02mEHre .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-uGh02mEHre .panel-title-edit {
  width: 100%;
  color: #ffffff;
  text-align: left;
}
.cid-uGh02mEHre .mbr-text,
.cid-uGh02mEHre .mbr-section-btn {
  color: #ffffff;
}
.cid-uGfxsMYz6C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uGfxsMYz6C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsMYz6C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsMYz6C .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
}
.cid-uGfxsMYz6C .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
.cid-uGfxsMYz6C .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-uGfxsMYz6C .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGfxsMYz6C .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGfxsMYz6C .mbr-section-title {
  text-align: center;
}
.cid-uGfxsNXW0W {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffb18a;
}
.cid-uGfxsNXW0W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGfxsNXW0W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGfxsNXW0W .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uGfxsNXW0W .footer-col {
    flex-direction: column;
  }
}
.cid-uGfxsNXW0W .row {
  background: #000000;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uGfxsNXW0W .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uGfxsNXW0W .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uGfxsNXW0W .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGfxsNXW0W .mbr-section-btn {
    text-align: center;
  }
}
.cid-uGfxsNXW0W .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGfxsNXW0W .item-wrap {
  transition: all 300ms ease;
}
.cid-uGfxsNXW0W .item-wrap:hover,
.cid-uGfxsNXW0W .item-wrap:focus {
  cursor: pointer;
}
.cid-uGfxsNXW0W .soc-item {
  margin: 8px;
}
.cid-uGfxsNXW0W .soc-item a:hover .mbr-iconfont,
.cid-uGfxsNXW0W .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uGfxsNXW0W .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #fdfde1;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uGfxsNXW0W .row {
    text-align: center;
  }
  .cid-uGfxsNXW0W .social-row {
    justify-content: center;
  }
}
.cid-uGfxsNXW0W .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uGfxsNXW0W .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGfxsNXW0W .list {
    margin-bottom: 0rem;
  }
}
.cid-uGfxsNXW0W .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uGfxsNXW0W .list,
.cid-uGfxsNXW0W .item-wrap {
  color: #fdfde1;
}
.cid-uGfxsNXW0W .copyright {
  color: #fdfde1;
}
