.btn {
  border-width: 2px;
}
body {
  font-family: Anybody;
}
.display-1 {
  font-family: 'Oleo Script', display;
  font-size: 6rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.5rem;
}
.display-2 {
  font-family: 'Lilita One', display;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Lilita One', display;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Lilita One', display;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Lilita One', display;
  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.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #e43f3f !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: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-primary:hover {
  background: linear-gradient(0deg, #e43f3f 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, #e43f3f 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, #e43f3f 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, #e43f3f 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, #e43f3f 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, #e43f3f 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, #e43f3f 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, #e43f3f 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: #e43f3f;
  color: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !important;
  background-color: transparent !important;
  border-color: #b31919 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #e43f3f !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: #a61717 !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: #e43f3f;
}
.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: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.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: 'Lilita One', display;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lilita One', display;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.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: #e43f3f;
  border-bottom-color: #e43f3f;
}
.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: #e43f3f !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='%23e43f3f' %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: #e43f3f !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: #00d0f3 !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: #00d0f3;
}
.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: #00d0f3;
}
.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-uG6Gt2YNag {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #262626;
}
.cid-uG6Gt2YNag .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG6Gt2YNag .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG6Gt2YNag .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uG6Gt2YNag .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uG6Gt2YNag .container {
    padding: 0 6px;
  }
}
.cid-uG6Gt2YNag .row {
  margin: 0;
}
.cid-uG6Gt2YNag .row .card {
  padding: 0;
}
.cid-uG6Gt2YNag .content-wrapper {
  height: 100%;
  padding: 108px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uG6Gt2YNag .content-wrapper {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uG6Gt2YNag .content-wrapper {
    padding: 70px 30px;
  }
}
.cid-uG6Gt2YNag .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
.cid-uG6Gt2YNag .content-wrapper .mbr-section-title span {
  color: #009472;
}
@media (max-width: 992px) {
  .cid-uG6Gt2YNag .content-wrapper .mbr-section-title {
    text-align: center;
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uG6Gt2YNag .content-wrapper .mbr-section-btn {
    text-align: center;
  }
}
.cid-uG6Gt2YNag .content-wrapper .tags-wrapper {
  display: flex;
  margin-bottom: 32px;
}
@media (max-width: 1199px) {
  .cid-uG6Gt2YNag .content-wrapper .tags-wrapper {
    display: block;
  }
}
.cid-uG6Gt2YNag .content-wrapper .tags-wrapper .tags-wrap {
  display: flex;
  flex-direction: column;
  width: 65%;
}
@media (max-width: 1199px) {
  .cid-uG6Gt2YNag .content-wrapper .tags-wrapper .tags-wrap {
    width: 100%;
    align-items: center;
  }
}
.cid-uG6Gt2YNag .content-wrapper .tags-wrapper .tags-wrap .tags-item {
  display: inline-flex;
  align-items: center;
  background-color: #e6e6e6;
  border-radius: 30px;
  padding: 17px 25px;
  margin-bottom: 12px;
  width: fit-content;
}
@media (max-width: 768px) {
  .cid-uG6Gt2YNag .content-wrapper .tags-wrapper .tags-wrap .tags-item {
    padding: 15px 20px;
  }
}
.cid-uG6Gt2YNag .content-wrapper .tags-wrapper .tags-wrap .tags-item:nth-child(2) {
  margin-left: 15%;
}
@media (max-width: 1199px) {
  .cid-uG6Gt2YNag .content-wrapper .tags-wrapper .tags-wrap .tags-item:nth-child(2) {
    margin-left: 0;
  }
}
.cid-uG6Gt2YNag .content-wrapper .tags-wrapper .tags-wrap .tags-item:last-child {
  margin-left: 30%;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-uG6Gt2YNag .content-wrapper .tags-wrapper .tags-wrap .tags-item:last-child {
    margin-left: 0;
  }
}
.cid-uG6Gt2YNag .content-wrapper .tags-wrapper .tags-wrap .tags-item .mbr-iconfont {
  font-size: 18px;
  color: #131313;
  margin-right: 14px;
}
.cid-uG6Gt2YNag .content-wrapper .tags-wrapper .tags-wrap .tags-item .mbr-tag {
  margin-bottom: 0;
}
.cid-uG6Gt2YNag .content-wrapper .tags-wrapper .mbr-section-btn {
  width: 35%;
  margin: 0;
}
@media (max-width: 1199px) {
  .cid-uG6Gt2YNag .content-wrapper .tags-wrapper .mbr-section-btn {
    width: 100%;
    text-align: center;
    margin-top: 22px;
  }
}
@media (min-width: 1199px) {
  .cid-uG6Gt2YNag .content-wrapper .tags-wrapper .mbr-section-btn .btn {
    margin-top: 0;
  }
}
.cid-uG6Gt2YNag .content-wrapper .mbr-text {
  margin: 100px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uG6Gt2YNag .content-wrapper .mbr-text {
    margin: 32px 0 0;
  }
}
.cid-uG6Gt2YNag .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 72px;
  background-color: #e6e6e6;
}
@media (max-width: 992px) {
  .cid-uG6Gt2YNag .image-wrapper {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uG6Gt2YNag .image-wrapper {
    padding: 70px 30px;
  }
}
.cid-uG6Gt2YNag .image-wrapper img {
  position: absolute;
  margin: 5rem 0 0 -3rem;
  height: 55%;
  max-width: 320px;
  object-fit: cover;
  transform: rotate(-5deg);
}
@media (max-width: 992px) {
  .cid-uG6Gt2YNag .image-wrapper img {
    position: static;
    height: 350px;
  }
}
.cid-uG6Gt2YNag .image-wrapper img:nth-child(2) {
  transform: rotate(5deg);
  margin: 0 -3rem 5rem 0;
}
.cid-uG6Gt2YNag .mbr-section-title {
  color: #131313;
}
.cid-uG6Gt2YNag .mbr-tag {
  color: #131313;
}
.cid-uG6Gt2YNag .mbr-text {
  color: #131313;
}
.cid-uG6Gt2YNag .mbr-section-title,
.cid-uG6Gt2YNag .mbr-section-btn {
  text-align: center;
}
.cid-uG6Hkt3koy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-uG6Hkt3koy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG6Hkt3koy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG6Hkt3koy .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-uG6Hkt3koy .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uG6Hkt3koy .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uG6Hkt3koy .mbr-section-title {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uG6Hkt3koy .mbr-section-title {
    width: 100%;
  }
}
.cid-uG6Hkt3koy .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uG6Hkt3koy .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-uG6Hkt3koy .lists-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-uG6Hkt3koy .lists-col {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 !important;
  }
}
.cid-uG6Hkt3koy .col-list {
  width: 46%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uG6Hkt3koy .col-list {
    width: 100%;
    margin: 4rem 0;
  }
}
.cid-uG6Hkt3koy .list-title {
  color: #000000;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 2px solid currentColor;
}
@media (max-width: 991px) {
  .cid-uG6Hkt3koy .list-title {
    padding-bottom: 20px;
  }
}
.cid-uG6Hkt3koy .list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding-left: 0;
}
.cid-uG6Hkt3koy li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  margin-bottom: 0;
}
.cid-uG6Hkt3koy ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #ee2524;
  font-weight: bold;
  font-size: 1.6rem;
  width: 1.6rem;
}
.cid-uG4q5Rni3l {
  display: flex;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #00d0f3;
}
.cid-uG4q5Rni3l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG4q5Rni3l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG4q5Rni3l .line {
  width: 100%;
  opacity: 0.6;
  height: 1px;
  background: currentColor;
  margin-top: 8rem;
}
.cid-uG4q5Rni3l .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uG4q5Rni3l .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uG4q5Rni3l {
    align-items: center;
  }
  .cid-uG4q5Rni3l .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uG4q5Rni3l .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uG4q5Rni3l {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uG4q5Rni3l .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uG4q5Rni3l .content-wrap {
    width: 100%;
  }
}
.cid-uG4q5Rni3l .mbr-section-title {
  text-align: left;
  color: #fffcee;
}
.cid-uG4q5Rni3l .mbr-text,
.cid-uG4q5Rni3l .mbr-section-btn {
  text-align: left;
  color: #fffcee;
}
.cid-uG4q5Rni3l .mbr-section-title,
.cid-uG4q5Rni3l .line {
  color: #131313;
  text-align: center;
}
.cid-uG6Omx2DAw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uG6Omx2DAw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG6Omx2DAw .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-uG6Omx2DAw .container {
    padding: 0 16px;
  }
}
.cid-uG6Omx2DAw .card {
  justify-content: center;
}
.cid-uG6Omx2DAw .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #00d0f3;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uG6Omx2DAw .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uG6Omx2DAw .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uG6Omx2DAw .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uG6Omx2DAw .mbr-section-title {
  color: #000000;
}
.cid-uG6Omx2DAw .mbr-text {
  color: #000000;
}
.cid-uG6Omx2DAw .mbr-desc {
  color: #000000;
}
.cid-uG6Omx2DAw .mbr-section-title,
.cid-uG6Omx2DAw .title-wrapper {
  color: #151e11;
}
.cid-uG0mwx7GpY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.cid-uG0mwx7GpY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG0mwx7GpY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG0mwx7GpY .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uG0mwx7GpY .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uG0mwx7GpY .items-wrapper {
  margin: 0 -13px;
}
.cid-uG0mwx7GpY .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uG0mwx7GpY .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uG0mwx7GpY .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uG0mwx7GpY .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uG0mwx7GpY .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uG0mwx7GpY .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uG0mwx7GpY .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uG0mwx7GpY .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uG0mwx7GpY .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uG0mwx7GpY .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uG0mwx7GpY .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uG0mwx7GpY .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uG0mwx7GpY .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG0mwx7GpY .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG0mwx7GpY .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG0mwx7GpY .mbr-section-title,
.cid-uG0mwx7GpY .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uG0mwx7GpY .item-title {
  color: #ffffff;
}
.cid-uG0mwx7GpY .item-text {
  color: #ffffff;
}
.cid-uG0mwx7GpY .item-title,
.cid-uG0mwx7GpY .mbr-section-btn {
  color: #000000;
}
.cid-uG6Obv4486 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uG6Obv4486 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG6Obv4486 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG6Obv4486 .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uG6Obv4486 .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uG6Obv4486 .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG6Obv4486 .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uG6Obv4486 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uG6Obv4486 .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uG6Obv4486 .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uG6Obv4486 .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uG6Obv4486 .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uG6Obv4486 .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #00d0f3;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uG6Obv4486 .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uG6Obv4486 .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uG6Obv4486 .mbr-section-title {
  color: #050f0f;
}
.cid-uG6Obv4486 .mbr-text {
  color: #050f0f;
}
.cid-uG0pcwKcUY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.cid-uG0pcwKcUY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG0pcwKcUY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG0pcwKcUY .icon-title-1 {
  color: #bff747;
}
.cid-uG0pcwKcUY .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uG0pcwKcUY .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uG0pcwKcUY .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uG0pcwKcUY .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uG0pcwKcUY .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uG0pcwKcUY .image-wrapper img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
@media (max-width: 992px) {
  .cid-uG0pcwKcUY .image-wrapper img {
    height: 350px;
  }
}
.cid-uG0pcwKcUY .item-text {
  color: #000000;
  text-align: center;
}
.cid-uG0pcwKcUY .item-title {
  color: #000000;
  text-align: center;
}
.cid-uG0pcwKcUY .mbr-section-title,
.cid-uG0pcwKcUY .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uFYL8gXdYG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #171717;
}
.cid-uFYL8gXdYG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFYL8gXdYG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFYL8gXdYG .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uFYL8gXdYG .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFYL8gXdYG .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFYL8gXdYG .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uFYL8gXdYG .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFYL8gXdYG .mbr-section-title {
  color: #000000;
}
.cid-uFYL8gXdYG .mbr-desc {
  color: #fdfde1;
}
.cid-uFYL8gXdYG .mbr-text {
  color: #000000;
}
.cid-uFYL8gXdYG .mbr-text,
.cid-uFYL8gXdYG .text-wrapper {
  color: #ffffff;
}
.cid-uFYL8gXdYG .mbr-section-title,
.cid-uFYL8gXdYG .mbr-section-btn {
  color: #ffffff;
}
.cid-uG6PnxOxMW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uG6PnxOxMW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG6PnxOxMW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG6PnxOxMW .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uG6PnxOxMW .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uG6PnxOxMW .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uG6PnxOxMW .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uG6PnxOxMW .container {
    padding: 0 24px;
  }
}
.cid-uG6PnxOxMW .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uG6PnxOxMW .content-wrapper {
    display: block;
  }
}
.cid-uG6PnxOxMW .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uG6PnxOxMW .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uG6PnxOxMW .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uG6PnxOxMW .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uG6PnxOxMW .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uG6PnxOxMW .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uG6PnxOxMW .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uG6PnxOxMW .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uG6PnxOxMW .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uG6PnxOxMW .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uG6PnxOxMW .mbr-section-title {
  color: #18212d;
}
.cid-uG6PnxOxMW .mbr-desc {
  color: #18212d;
}
.cid-uG6PnxOxMW .mbr-text {
  color: #18212d;
}
.cid-uG83FTkTOg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uG83FTkTOg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG83FTkTOg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG83FTkTOg .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uG83FTkTOg .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uG83FTkTOg .items-wrapper {
  margin: 0 -13px;
}
.cid-uG83FTkTOg .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uG83FTkTOg .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uG83FTkTOg .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uG83FTkTOg .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uG83FTkTOg .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uG83FTkTOg .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uG83FTkTOg .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uG83FTkTOg .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uG83FTkTOg .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uG83FTkTOg .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uG83FTkTOg .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uG83FTkTOg .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uG83FTkTOg .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG83FTkTOg .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG83FTkTOg .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG83FTkTOg .mbr-section-title,
.cid-uG83FTkTOg .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uG83FTkTOg .item-title {
  color: #ffffff;
}
.cid-uG83FTkTOg .item-text {
  color: #ffffff;
}
.cid-uGlRIhBXIY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uGlRIhBXIY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGlRIhBXIY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGlRIhBXIY .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uGlRIhBXIY .row {
    flex-direction: column-reverse;
  }
  .cid-uGlRIhBXIY .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uGlRIhBXIY .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uGlRIhBXIY .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uGlRIhBXIY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t9ooY9rFsM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #00d0f3;
  overflow: hidden;
  position: relative;
}
.cid-t9ooY9rFsM .row {
  align-items: flex-start;
}
.cid-t9ooY9rFsM .container,
.cid-t9ooY9rFsM .container-fluid {
  position: static;
}
.cid-t9ooY9rFsM .mbr-section-title {
  color: #ffffff;
  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: #ffffff;
}
.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: #000000;
  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: #ffffff;
}
@media (max-width: 767px) {
  .cid-t9ooY9rFsM .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-t9ooY9rFsM .panel-title-edit {
  width: 100%;
  color: #171717;
  text-align: left;
}
.cid-t9ooY9rFsM .mbr-text,
.cid-t9ooY9rFsM .mbr-section-btn {
  color: #ffffff;
}
.cid-t9opErCGOQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.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: #000000;
}
.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 {
  text-align: center;
}
.cid-uFYFuh6EvP {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.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: #000000;
}
.cid-uFYFuh6EvP .mbr-text {
  padding-top: 16px;
}
.cid-t9op1i2zR9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #151e11;
}
.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: #000000;
}
.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: #00d0f3;
  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: #bbbbbb;
  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: #000000;
}
.cid-uFXtEm1sHA .list,
.cid-uFXtEm1sHA .item-wrap {
  color: #000000;
}
.cid-uFXtEm1sHA .copyright {
  color: #000000;
}
.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: #e43f3f !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: #00d0f3 !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: #00d0f3;
}
.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: #00d0f3;
}
.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-uG64CcixqP {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/360-f-1310858414-8duxy2w0ckcljahzure8g0k7veqlez9w-720x360.jpg");
}
.cid-uG64CcixqP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG64CcixqP .container-fluid {
  padding: 0;
}
.cid-uG64CcixqP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG64CcixqP h2:before {
  content: attr(data-replace);
  position: absolute;
  bottom: 0;
  left: 0;
}
.cid-uG64CcixqP .mbr-overlay {
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
.cid-uG64CcixqP .row {
  justify-content: space-between;
}
.cid-uG64CcixqP .card {
  background: white;
  border-radius: 0;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 6rem 8rem;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1400px) {
  .cid-uG64CcixqP .card {
    padding: 4rem 6rem;
  }
}
@media (max-width: 992px) {
  .cid-uG64CcixqP .card {
    padding: 2rem 3rem;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uG64CcixqP .card {
    padding: 3rem 1rem;
  }
}
.cid-uG64CcixqP .mbr-text,
.cid-uG64CcixqP .mbr-section-btn {
  color: #232323;
}
.cid-uFZ9OoBGDM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  border-bottom: 2px solid #ffffff;
  background-color: #fafafa;
}
.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: #000000;
}
.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: #00d0f3;
  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: #bbbbbb;
  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: #000000;
}
.cid-uFZ93fQ66p .list,
.cid-uFZ93fQ66p .item-wrap {
  color: #000000;
}
.cid-uFZ93fQ66p .copyright {
  color: #000000;
}
.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: #e43f3f !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: #00d0f3 !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: #00d0f3;
}
.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: #00d0f3;
}
.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-uG66rUVqCP {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/commercial-hard-floor-cleaning-nottingham-derby-1920x1080.jpg");
}
.cid-uG66rUVqCP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG66rUVqCP .container-fluid {
  padding: 0;
}
.cid-uG66rUVqCP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG66rUVqCP h2:before {
  content: attr(data-replace);
  position: absolute;
  bottom: 0;
  left: 0;
}
.cid-uG66rUVqCP .mbr-overlay {
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
.cid-uG66rUVqCP .row {
  justify-content: space-between;
}
.cid-uG66rUVqCP .card {
  background: white;
  border-radius: 0;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 6rem 8rem;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1400px) {
  .cid-uG66rUVqCP .card {
    padding: 4rem 6rem;
  }
}
@media (max-width: 992px) {
  .cid-uG66rUVqCP .card {
    padding: 2rem 3rem;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uG66rUVqCP .card {
    padding: 3rem 1rem;
  }
}
.cid-uG66rUVqCP .mbr-text,
.cid-uG66rUVqCP .mbr-section-btn {
  color: #232323;
}
.cid-uFZavZyLYS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  border-bottom: 2px solid #ffffff;
  background-color: #fafafa;
}
.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: #00d0f3;
  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: #bbbbbb;
  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: #000000;
}
.cid-uFZavZUMf6 .list,
.cid-uFZavZUMf6 .item-wrap {
  color: #000000;
}
.cid-uFZavZUMf6 .copyright {
  color: #000000;
}
.cid-uG89GYWgp4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uG89GYWgp4 nav.navbar {
  position: fixed;
}
.cid-uG89GYWgp4 .btn {
  line-height: 1.2;
}
.cid-uG89GYWgp4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uG89GYWgp4 .nav-link {
  position: relative;
}
.cid-uG89GYWgp4 .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-uG89GYWgp4 .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-uG89GYWgp4 .nav-link:hover:before {
  width: 100%;
}
.cid-uG89GYWgp4 .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-uG89GYWgp4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uG89GYWgp4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uG89GYWgp4 .dropdown-item:hover,
.cid-uG89GYWgp4 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uG89GYWgp4 .dropdown-item:hover span {
  color: white;
}
.cid-uG89GYWgp4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uG89GYWgp4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uG89GYWgp4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uG89GYWgp4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uG89GYWgp4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uG89GYWgp4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uG89GYWgp4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uG89GYWgp4 .navbar-nav {
  margin: auto;
}
.cid-uG89GYWgp4 .dropdown-menu,
.cid-uG89GYWgp4 .navbar.opened {
  background: #00d0f3 !important;
}
.cid-uG89GYWgp4 .nav-item:focus,
.cid-uG89GYWgp4 .nav-link:focus {
  outline: none;
}
.cid-uG89GYWgp4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uG89GYWgp4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uG89GYWgp4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uG89GYWgp4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uG89GYWgp4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uG89GYWgp4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uG89GYWgp4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #00d0f3;
}
.cid-uG89GYWgp4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uG89GYWgp4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uG89GYWgp4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uG89GYWgp4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uG89GYWgp4 .navbar.collapsed {
  justify-content: center;
}
.cid-uG89GYWgp4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uG89GYWgp4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uG89GYWgp4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uG89GYWgp4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uG89GYWgp4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uG89GYWgp4 .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-uG89GYWgp4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uG89GYWgp4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uG89GYWgp4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uG89GYWgp4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uG89GYWgp4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uG89GYWgp4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uG89GYWgp4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uG89GYWgp4 .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-uG89GYWgp4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uG89GYWgp4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uG89GYWgp4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uG89GYWgp4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uG89GYWgp4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uG89GYWgp4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uG89GYWgp4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uG89GYWgp4 .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uG89GYWgp4 .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uG89GYWgp4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uG89GYWgp4 .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-uG89GYWgp4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uG89GYWgp4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uG89GYWgp4 .dropdown-item.active,
.cid-uG89GYWgp4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uG89GYWgp4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uG89GYWgp4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uG89GYWgp4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uG89GYWgp4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00d0f3;
}
.cid-uG89GYWgp4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uG89GYWgp4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uG89GYWgp4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uG89GYWgp4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uG89GYWgp4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uG89GYWgp4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uG89GYWgp4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uG89GYWgp4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uG89GYWgp4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uG89GYWgp4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG89GYWgp4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uG89GYWgp4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uG89GYWgp4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG89GYWgp4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uG89GYWgp4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uG89GYWgp4 .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-uG89GYWgp4 .navbar {
    height: 70px;
  }
  .cid-uG89GYWgp4 .navbar.opened {
    height: auto;
  }
  .cid-uG89GYWgp4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uG89GZGzcV {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #262626;
}
.cid-uG89GZGzcV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89GZGzcV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89GZGzcV .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uG89GZGzcV .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uG89GZGzcV .container {
    padding: 0 6px;
  }
}
.cid-uG89GZGzcV .row {
  margin: 0;
}
.cid-uG89GZGzcV .row .card {
  padding: 0;
}
.cid-uG89GZGzcV .content-wrapper {
  height: 100%;
  padding: 108px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uG89GZGzcV .content-wrapper {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uG89GZGzcV .content-wrapper {
    padding: 70px 30px;
  }
}
.cid-uG89GZGzcV .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
.cid-uG89GZGzcV .content-wrapper .mbr-section-title span {
  color: #009472;
}
@media (max-width: 992px) {
  .cid-uG89GZGzcV .content-wrapper .mbr-section-title {
    text-align: center;
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uG89GZGzcV .content-wrapper .mbr-section-btn {
    text-align: center;
  }
}
.cid-uG89GZGzcV .content-wrapper .tags-wrapper {
  display: flex;
  margin-bottom: 32px;
}
@media (max-width: 1199px) {
  .cid-uG89GZGzcV .content-wrapper .tags-wrapper {
    display: block;
  }
}
.cid-uG89GZGzcV .content-wrapper .tags-wrapper .tags-wrap {
  display: flex;
  flex-direction: column;
  width: 65%;
}
@media (max-width: 1199px) {
  .cid-uG89GZGzcV .content-wrapper .tags-wrapper .tags-wrap {
    width: 100%;
    align-items: center;
  }
}
.cid-uG89GZGzcV .content-wrapper .tags-wrapper .tags-wrap .tags-item {
  display: inline-flex;
  align-items: center;
  background-color: #e6e6e6;
  border-radius: 30px;
  padding: 17px 25px;
  margin-bottom: 12px;
  width: fit-content;
}
@media (max-width: 768px) {
  .cid-uG89GZGzcV .content-wrapper .tags-wrapper .tags-wrap .tags-item {
    padding: 15px 20px;
  }
}
.cid-uG89GZGzcV .content-wrapper .tags-wrapper .tags-wrap .tags-item:nth-child(2) {
  margin-left: 15%;
}
@media (max-width: 1199px) {
  .cid-uG89GZGzcV .content-wrapper .tags-wrapper .tags-wrap .tags-item:nth-child(2) {
    margin-left: 0;
  }
}
.cid-uG89GZGzcV .content-wrapper .tags-wrapper .tags-wrap .tags-item:last-child {
  margin-left: 30%;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-uG89GZGzcV .content-wrapper .tags-wrapper .tags-wrap .tags-item:last-child {
    margin-left: 0;
  }
}
.cid-uG89GZGzcV .content-wrapper .tags-wrapper .tags-wrap .tags-item .mbr-iconfont {
  font-size: 18px;
  color: #131313;
  margin-right: 14px;
}
.cid-uG89GZGzcV .content-wrapper .tags-wrapper .tags-wrap .tags-item .mbr-tag {
  margin-bottom: 0;
}
.cid-uG89GZGzcV .content-wrapper .tags-wrapper .mbr-section-btn {
  width: 35%;
  margin: 0;
}
@media (max-width: 1199px) {
  .cid-uG89GZGzcV .content-wrapper .tags-wrapper .mbr-section-btn {
    width: 100%;
    text-align: center;
    margin-top: 22px;
  }
}
@media (min-width: 1199px) {
  .cid-uG89GZGzcV .content-wrapper .tags-wrapper .mbr-section-btn .btn {
    margin-top: 0;
  }
}
.cid-uG89GZGzcV .content-wrapper .mbr-text {
  margin: 100px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uG89GZGzcV .content-wrapper .mbr-text {
    margin: 32px 0 0;
  }
}
.cid-uG89GZGzcV .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 72px;
  background-color: #e6e6e6;
}
@media (max-width: 992px) {
  .cid-uG89GZGzcV .image-wrapper {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uG89GZGzcV .image-wrapper {
    padding: 70px 30px;
  }
}
.cid-uG89GZGzcV .image-wrapper img {
  position: absolute;
  margin: 5rem 0 0 -3rem;
  height: 55%;
  max-width: 320px;
  object-fit: cover;
  transform: rotate(-5deg);
}
@media (max-width: 992px) {
  .cid-uG89GZGzcV .image-wrapper img {
    position: static;
    height: 350px;
  }
}
.cid-uG89GZGzcV .image-wrapper img:nth-child(2) {
  transform: rotate(5deg);
  margin: 0 -3rem 5rem 0;
}
.cid-uG89GZGzcV .mbr-section-title {
  color: #131313;
}
.cid-uG89GZGzcV .mbr-tag {
  color: #131313;
}
.cid-uG89GZGzcV .mbr-text {
  color: #131313;
}
.cid-uG89GZGzcV .mbr-section-title,
.cid-uG89GZGzcV .mbr-section-btn {
  text-align: center;
}
.cid-uG89H0jNEj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-uG89H0jNEj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89H0jNEj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89H0jNEj .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-uG89H0jNEj .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uG89H0jNEj .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uG89H0jNEj .mbr-section-title {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uG89H0jNEj .mbr-section-title {
    width: 100%;
  }
}
.cid-uG89H0jNEj .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uG89H0jNEj .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-uG89H0jNEj .lists-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-uG89H0jNEj .lists-col {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 !important;
  }
}
.cid-uG89H0jNEj .col-list {
  width: 46%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uG89H0jNEj .col-list {
    width: 100%;
    margin: 4rem 0;
  }
}
.cid-uG89H0jNEj .list-title {
  color: #000000;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 2px solid currentColor;
}
@media (max-width: 991px) {
  .cid-uG89H0jNEj .list-title {
    padding-bottom: 20px;
  }
}
.cid-uG89H0jNEj .list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding-left: 0;
}
.cid-uG89H0jNEj li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  margin-bottom: 0;
}
.cid-uG89H0jNEj ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #ee2524;
  font-weight: bold;
  font-size: 1.6rem;
  width: 1.6rem;
}
.cid-uG89H0SFQY {
  display: flex;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #00d0f3;
}
.cid-uG89H0SFQY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89H0SFQY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89H0SFQY .line {
  width: 100%;
  opacity: 0.6;
  height: 1px;
  background: currentColor;
  margin-top: 8rem;
}
.cid-uG89H0SFQY .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uG89H0SFQY .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uG89H0SFQY {
    align-items: center;
  }
  .cid-uG89H0SFQY .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uG89H0SFQY .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uG89H0SFQY {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uG89H0SFQY .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uG89H0SFQY .content-wrap {
    width: 100%;
  }
}
.cid-uG89H0SFQY .mbr-section-title {
  text-align: left;
  color: #fffcee;
}
.cid-uG89H0SFQY .mbr-text,
.cid-uG89H0SFQY .mbr-section-btn {
  text-align: left;
  color: #fffcee;
}
.cid-uG89H0SFQY .mbr-section-title,
.cid-uG89H0SFQY .line {
  color: #131313;
  text-align: center;
}
.cid-uG89H1yWhj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uG89H1yWhj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89H1yWhj .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-uG89H1yWhj .container {
    padding: 0 16px;
  }
}
.cid-uG89H1yWhj .card {
  justify-content: center;
}
.cid-uG89H1yWhj .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #00d0f3;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uG89H1yWhj .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uG89H1yWhj .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uG89H1yWhj .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uG89H1yWhj .mbr-section-title {
  color: #000000;
}
.cid-uG89H1yWhj .mbr-text {
  color: #000000;
}
.cid-uG89H1yWhj .mbr-desc {
  color: #000000;
}
.cid-uG89H1yWhj .mbr-section-title,
.cid-uG89H1yWhj .title-wrapper {
  color: #151e11;
}
.cid-uG89H28VkZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.cid-uG89H28VkZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89H28VkZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89H28VkZ .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uG89H28VkZ .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uG89H28VkZ .items-wrapper {
  margin: 0 -13px;
}
.cid-uG89H28VkZ .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uG89H28VkZ .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uG89H28VkZ .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uG89H28VkZ .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uG89H28VkZ .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uG89H28VkZ .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uG89H28VkZ .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uG89H28VkZ .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uG89H28VkZ .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uG89H28VkZ .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uG89H28VkZ .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uG89H28VkZ .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uG89H28VkZ .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG89H28VkZ .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG89H28VkZ .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG89H28VkZ .mbr-section-title,
.cid-uG89H28VkZ .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uG89H28VkZ .item-title {
  color: #ffffff;
}
.cid-uG89H28VkZ .item-text {
  color: #ffffff;
}
.cid-uG89H28VkZ .item-title,
.cid-uG89H28VkZ .mbr-section-btn {
  color: #000000;
}
.cid-uG89H2UEFy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uG89H2UEFy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89H2UEFy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89H2UEFy .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uG89H2UEFy .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uG89H2UEFy .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG89H2UEFy .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uG89H2UEFy .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uG89H2UEFy .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uG89H2UEFy .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uG89H2UEFy .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uG89H2UEFy .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uG89H2UEFy .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #00d0f3;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uG89H2UEFy .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uG89H2UEFy .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uG89H2UEFy .mbr-section-title {
  color: #050f0f;
}
.cid-uG89H2UEFy .mbr-text {
  color: #050f0f;
}
.cid-uG89H3wqhS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.cid-uG89H3wqhS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89H3wqhS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89H3wqhS .icon-title-1 {
  color: #bff747;
}
.cid-uG89H3wqhS .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uG89H3wqhS .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uG89H3wqhS .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uG89H3wqhS .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uG89H3wqhS .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uG89H3wqhS .image-wrapper img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
@media (max-width: 992px) {
  .cid-uG89H3wqhS .image-wrapper img {
    height: 350px;
  }
}
.cid-uG89H3wqhS .item-text {
  color: #000000;
  text-align: center;
}
.cid-uG89H3wqhS .item-title {
  color: #000000;
  text-align: center;
}
.cid-uG89H3wqhS .mbr-section-title,
.cid-uG89H3wqhS .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uG89H7alAR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uG89H7alAR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89H7alAR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89H7alAR .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uG89H7alAR .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uG89H7alAR .items-wrapper {
  margin: 0 -13px;
}
.cid-uG89H7alAR .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uG89H7alAR .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uG89H7alAR .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uG89H7alAR .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uG89H7alAR .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uG89H7alAR .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uG89H7alAR .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uG89H7alAR .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uG89H7alAR .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uG89H7alAR .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uG89H7alAR .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uG89H7alAR .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uG89H7alAR .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG89H7alAR .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG89H7alAR .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG89H7alAR .mbr-section-title,
.cid-uG89H7alAR .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uG89H7alAR .item-title {
  color: #ffffff;
}
.cid-uG89H7alAR .item-text {
  color: #ffffff;
}
.cid-uG89H5Tq4B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uG89H5Tq4B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89H5Tq4B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89H5Tq4B .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uG89H5Tq4B .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uG89H5Tq4B .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uG89H5Tq4B .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uG89H5Tq4B .container {
    padding: 0 24px;
  }
}
.cid-uG89H5Tq4B .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uG89H5Tq4B .content-wrapper {
    display: block;
  }
}
.cid-uG89H5Tq4B .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uG89H5Tq4B .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uG89H5Tq4B .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uG89H5Tq4B .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uG89H5Tq4B .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uG89H5Tq4B .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uG89H5Tq4B .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uG89H5Tq4B .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uG89H5Tq4B .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uG89H5Tq4B .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uG89H5Tq4B .mbr-section-title {
  color: #18212d;
}
.cid-uG89H5Tq4B .mbr-desc {
  color: #18212d;
}
.cid-uG89H5Tq4B .mbr-text {
  color: #18212d;
}
.cid-uGlSl138nN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uGlSl138nN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGlSl138nN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGlSl138nN .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uGlSl138nN .row {
    flex-direction: column-reverse;
  }
  .cid-uGlSl138nN .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uGlSl138nN .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uGlSl138nN .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uGlSl138nN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uG89H4SjrK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #171717;
}
.cid-uG89H4SjrK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89H4SjrK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89H4SjrK .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uG89H4SjrK .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uG89H4SjrK .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG89H4SjrK .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uG89H4SjrK .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uG89H4SjrK .mbr-section-title {
  color: #000000;
}
.cid-uG89H4SjrK .mbr-desc {
  color: #fdfde1;
}
.cid-uG89H4SjrK .mbr-text {
  color: #000000;
}
.cid-uG89H4SjrK .mbr-text,
.cid-uG89H4SjrK .text-wrapper {
  color: #ffffff;
}
.cid-uG89H4SjrK .mbr-section-title,
.cid-uG89H4SjrK .mbr-section-btn {
  color: #ffffff;
}
.cid-uG89HalIeS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #00d0f3;
  overflow: hidden;
  position: relative;
}
.cid-uG89HalIeS .row {
  align-items: flex-start;
}
.cid-uG89HalIeS .container,
.cid-uG89HalIeS .container-fluid {
  position: static;
}
.cid-uG89HalIeS .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uG89HalIeS .col-text {
  position: relative;
  z-index: 2;
}
.cid-uG89HalIeS .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uG89HalIeS .toggle-panel,
.cid-uG89HalIeS .panel-group {
  width: 100%;
}
.cid-uG89HalIeS .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-uG89HalIeS .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: #ffffff;
}
.cid-uG89HalIeS .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-uG89HalIeS .panel-title .sign {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .cid-uG89HalIeS .panel-title {
    padding: 1rem !important;
  }
}
.cid-uG89HalIeS .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-uG89HalIeS .collapsed .sign {
  transform: rotate(0deg);
}
.cid-uG89HalIeS .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-uG89HalIeS .sign {
  color: #000000;
  transition: transform 0.2s ease-in-out;
  font-size: 1.6rem;
}
.cid-uG89HalIeS .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uG89HalIeS .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-uG89HalIeS .panel-title-edit {
  width: 100%;
  color: #171717;
  text-align: left;
}
.cid-uG89HalIeS .mbr-text,
.cid-uG89HalIeS .mbr-section-btn {
  color: #ffffff;
}
.cid-uG89HdzDBp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uG89HdzDBp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89HdzDBp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89HdzDBp .row {
  justify-content: space-between;
}
.cid-uG89HdzDBp .mbr-text,
.cid-uG89HdzDBp .mbr-section-btn {
  color: #000000;
}
.cid-uG89HdzDBp 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-uG89HdzDBp h2 {
    padding: 1rem 1rem;
    margin-right: 1rem;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
}
.cid-uG89HdzDBp .mbr-section-subtitle {
  color: #000000;
}
.cid-uG89HdzDBp .mbr-section-title {
  text-align: center;
}
.cid-uG89HekO4s {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.cid-uG89HekO4s .video-wrapper iframe {
  width: 100%;
}
.cid-uG89HekO4s .mbr-section-title,
.cid-uG89HekO4s .mbr-section-subtitle,
.cid-uG89HekO4s .mbr-text {
  text-align: center;
}
.cid-uG89HekO4s .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
  color: #000000;
}
.cid-uG89HekO4s .mbr-text {
  padding-top: 16px;
}
.cid-uG8oBL1Z3e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uG8oBL1Z3e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG8oBL1Z3e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG8oBL1Z3e .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uG8oBL1Z3e .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uG8oBL1Z3e .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uG8oBL1Z3e .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uG8oBL1Z3e .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG8oBL1Z3e .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uG8oBL1Z3e .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #00d0f3;
}
@media (max-width: 992px) {
  .cid-uG8oBL1Z3e .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-uG8oBL1Z3e .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uG8oBL1Z3e .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uG8oBL1Z3e .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uG8oBL1Z3e .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uG8oBL1Z3e .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-uG8oBL1Z3e .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-uG8oBL1Z3e .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-uG8oBL1Z3e .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uG8oBL1Z3e .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-uG8oBL1Z3e .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG8oBL1Z3e .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uG8oBL1Z3e .mbr-section-title {
  color: #404349;
}
.cid-uG8oBL1Z3e .panel-title-edit {
  color: #404349;
}
.cid-uG8oBL1Z3e .panel-text {
  color: #404349;
}
.cid-uG89HfvN1P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #151e11;
}
.cid-uG89HfvN1P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89HfvN1P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89HfvN1P .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
}
.cid-uG89HfvN1P .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
.cid-uG89HfvN1P .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-uG89HfvN1P .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uG89HfvN1P .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uG89HfvN1P .mbr-section-title {
  text-align: center;
}
.cid-uG89HgmDtF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uG89HgmDtF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89HgmDtF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89HgmDtF .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uG89HgmDtF .footer-col {
    flex-direction: column;
  }
}
.cid-uG89HgmDtF .row {
  background: #00d0f3;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uG89HgmDtF .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uG89HgmDtF .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uG89HgmDtF .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uG89HgmDtF .mbr-section-btn {
    text-align: center;
  }
}
.cid-uG89HgmDtF .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uG89HgmDtF .item-wrap {
  transition: all 300ms ease;
}
.cid-uG89HgmDtF .item-wrap:hover,
.cid-uG89HgmDtF .item-wrap:focus {
  cursor: pointer;
}
.cid-uG89HgmDtF .soc-item {
  margin: 8px;
}
.cid-uG89HgmDtF .soc-item a:hover .mbr-iconfont,
.cid-uG89HgmDtF .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uG89HgmDtF .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: #bbbbbb;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uG89HgmDtF .row {
    text-align: center;
  }
  .cid-uG89HgmDtF .social-row {
    justify-content: center;
  }
}
.cid-uG89HgmDtF .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uG89HgmDtF .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uG89HgmDtF .list {
    margin-bottom: 0rem;
  }
}
.cid-uG89HgmDtF .mbr-section-subtitle {
  color: #000000;
}
.cid-uG89HgmDtF .list,
.cid-uG89HgmDtF .item-wrap {
  color: #000000;
}
.cid-uG89HgmDtF .copyright {
  color: #000000;
}
.cid-uG89Iwlrnk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uG89Iwlrnk nav.navbar {
  position: fixed;
}
.cid-uG89Iwlrnk .btn {
  line-height: 1.2;
}
.cid-uG89Iwlrnk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uG89Iwlrnk .nav-link {
  position: relative;
}
.cid-uG89Iwlrnk .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-uG89Iwlrnk .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-uG89Iwlrnk .nav-link:hover:before {
  width: 100%;
}
.cid-uG89Iwlrnk .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-uG89Iwlrnk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uG89Iwlrnk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uG89Iwlrnk .dropdown-item:hover,
.cid-uG89Iwlrnk .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uG89Iwlrnk .dropdown-item:hover span {
  color: white;
}
.cid-uG89Iwlrnk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uG89Iwlrnk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uG89Iwlrnk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uG89Iwlrnk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uG89Iwlrnk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uG89Iwlrnk .container {
    flex-wrap: nowrap;
  }
}
.cid-uG89Iwlrnk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uG89Iwlrnk .navbar-nav {
  margin: auto;
}
.cid-uG89Iwlrnk .dropdown-menu,
.cid-uG89Iwlrnk .navbar.opened {
  background: #00d0f3 !important;
}
.cid-uG89Iwlrnk .nav-item:focus,
.cid-uG89Iwlrnk .nav-link:focus {
  outline: none;
}
.cid-uG89Iwlrnk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uG89Iwlrnk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uG89Iwlrnk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uG89Iwlrnk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uG89Iwlrnk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uG89Iwlrnk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uG89Iwlrnk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #00d0f3;
}
.cid-uG89Iwlrnk .navbar.opened {
  transition: all 0.3s;
}
.cid-uG89Iwlrnk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uG89Iwlrnk .navbar .navbar-logo img {
  width: auto;
}
.cid-uG89Iwlrnk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uG89Iwlrnk .navbar.collapsed {
  justify-content: center;
}
.cid-uG89Iwlrnk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uG89Iwlrnk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uG89Iwlrnk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uG89Iwlrnk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uG89Iwlrnk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uG89Iwlrnk .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-uG89Iwlrnk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uG89Iwlrnk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uG89Iwlrnk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uG89Iwlrnk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uG89Iwlrnk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uG89Iwlrnk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uG89Iwlrnk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uG89Iwlrnk .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-uG89Iwlrnk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uG89Iwlrnk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uG89Iwlrnk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uG89Iwlrnk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uG89Iwlrnk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uG89Iwlrnk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uG89Iwlrnk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uG89Iwlrnk .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uG89Iwlrnk .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uG89Iwlrnk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uG89Iwlrnk .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-uG89Iwlrnk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uG89Iwlrnk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uG89Iwlrnk .dropdown-item.active,
.cid-uG89Iwlrnk .dropdown-item:active {
  background-color: transparent;
}
.cid-uG89Iwlrnk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uG89Iwlrnk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uG89Iwlrnk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uG89Iwlrnk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00d0f3;
}
.cid-uG89Iwlrnk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uG89Iwlrnk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uG89Iwlrnk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uG89Iwlrnk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uG89Iwlrnk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uG89Iwlrnk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uG89Iwlrnk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uG89Iwlrnk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uG89Iwlrnk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uG89Iwlrnk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG89Iwlrnk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uG89Iwlrnk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uG89Iwlrnk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG89Iwlrnk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uG89Iwlrnk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uG89Iwlrnk .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-uG89Iwlrnk .navbar {
    height: 70px;
  }
  .cid-uG89Iwlrnk .navbar.opened {
    height: auto;
  }
  .cid-uG89Iwlrnk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uG89Ix5HDf {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #262626;
}
.cid-uG89Ix5HDf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89Ix5HDf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89Ix5HDf .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uG89Ix5HDf .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uG89Ix5HDf .container {
    padding: 0 6px;
  }
}
.cid-uG89Ix5HDf .row {
  margin: 0;
}
.cid-uG89Ix5HDf .row .card {
  padding: 0;
}
.cid-uG89Ix5HDf .content-wrapper {
  height: 100%;
  padding: 108px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uG89Ix5HDf .content-wrapper {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uG89Ix5HDf .content-wrapper {
    padding: 70px 30px;
  }
}
.cid-uG89Ix5HDf .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
.cid-uG89Ix5HDf .content-wrapper .mbr-section-title span {
  color: #009472;
}
@media (max-width: 992px) {
  .cid-uG89Ix5HDf .content-wrapper .mbr-section-title {
    text-align: center;
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uG89Ix5HDf .content-wrapper .mbr-section-btn {
    text-align: center;
  }
}
.cid-uG89Ix5HDf .content-wrapper .tags-wrapper {
  display: flex;
  margin-bottom: 32px;
}
@media (max-width: 1199px) {
  .cid-uG89Ix5HDf .content-wrapper .tags-wrapper {
    display: block;
  }
}
.cid-uG89Ix5HDf .content-wrapper .tags-wrapper .tags-wrap {
  display: flex;
  flex-direction: column;
  width: 65%;
}
@media (max-width: 1199px) {
  .cid-uG89Ix5HDf .content-wrapper .tags-wrapper .tags-wrap {
    width: 100%;
    align-items: center;
  }
}
.cid-uG89Ix5HDf .content-wrapper .tags-wrapper .tags-wrap .tags-item {
  display: inline-flex;
  align-items: center;
  background-color: #e6e6e6;
  border-radius: 30px;
  padding: 17px 25px;
  margin-bottom: 12px;
  width: fit-content;
}
@media (max-width: 768px) {
  .cid-uG89Ix5HDf .content-wrapper .tags-wrapper .tags-wrap .tags-item {
    padding: 15px 20px;
  }
}
.cid-uG89Ix5HDf .content-wrapper .tags-wrapper .tags-wrap .tags-item:nth-child(2) {
  margin-left: 15%;
}
@media (max-width: 1199px) {
  .cid-uG89Ix5HDf .content-wrapper .tags-wrapper .tags-wrap .tags-item:nth-child(2) {
    margin-left: 0;
  }
}
.cid-uG89Ix5HDf .content-wrapper .tags-wrapper .tags-wrap .tags-item:last-child {
  margin-left: 30%;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-uG89Ix5HDf .content-wrapper .tags-wrapper .tags-wrap .tags-item:last-child {
    margin-left: 0;
  }
}
.cid-uG89Ix5HDf .content-wrapper .tags-wrapper .tags-wrap .tags-item .mbr-iconfont {
  font-size: 18px;
  color: #131313;
  margin-right: 14px;
}
.cid-uG89Ix5HDf .content-wrapper .tags-wrapper .tags-wrap .tags-item .mbr-tag {
  margin-bottom: 0;
}
.cid-uG89Ix5HDf .content-wrapper .tags-wrapper .mbr-section-btn {
  width: 35%;
  margin: 0;
}
@media (max-width: 1199px) {
  .cid-uG89Ix5HDf .content-wrapper .tags-wrapper .mbr-section-btn {
    width: 100%;
    text-align: center;
    margin-top: 22px;
  }
}
@media (min-width: 1199px) {
  .cid-uG89Ix5HDf .content-wrapper .tags-wrapper .mbr-section-btn .btn {
    margin-top: 0;
  }
}
.cid-uG89Ix5HDf .content-wrapper .mbr-text {
  margin: 100px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uG89Ix5HDf .content-wrapper .mbr-text {
    margin: 32px 0 0;
  }
}
.cid-uG89Ix5HDf .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 72px;
  background-color: #e6e6e6;
}
@media (max-width: 992px) {
  .cid-uG89Ix5HDf .image-wrapper {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uG89Ix5HDf .image-wrapper {
    padding: 70px 30px;
  }
}
.cid-uG89Ix5HDf .image-wrapper img {
  position: absolute;
  margin: 5rem 0 0 -3rem;
  height: 55%;
  max-width: 320px;
  object-fit: cover;
  transform: rotate(-5deg);
}
@media (max-width: 992px) {
  .cid-uG89Ix5HDf .image-wrapper img {
    position: static;
    height: 350px;
  }
}
.cid-uG89Ix5HDf .image-wrapper img:nth-child(2) {
  transform: rotate(5deg);
  margin: 0 -3rem 5rem 0;
}
.cid-uG89Ix5HDf .mbr-section-title {
  color: #131313;
}
.cid-uG89Ix5HDf .mbr-tag {
  color: #131313;
}
.cid-uG89Ix5HDf .mbr-text {
  color: #131313;
}
.cid-uG89Ix5HDf .mbr-section-title,
.cid-uG89Ix5HDf .mbr-section-btn {
  text-align: center;
}
.cid-uG89IxIMnf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-uG89IxIMnf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89IxIMnf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89IxIMnf .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-uG89IxIMnf .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uG89IxIMnf .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uG89IxIMnf .mbr-section-title {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uG89IxIMnf .mbr-section-title {
    width: 100%;
  }
}
.cid-uG89IxIMnf .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uG89IxIMnf .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-uG89IxIMnf .lists-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-uG89IxIMnf .lists-col {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 !important;
  }
}
.cid-uG89IxIMnf .col-list {
  width: 46%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uG89IxIMnf .col-list {
    width: 100%;
    margin: 4rem 0;
  }
}
.cid-uG89IxIMnf .list-title {
  color: #000000;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 2px solid currentColor;
}
@media (max-width: 991px) {
  .cid-uG89IxIMnf .list-title {
    padding-bottom: 20px;
  }
}
.cid-uG89IxIMnf .list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding-left: 0;
}
.cid-uG89IxIMnf li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  margin-bottom: 0;
}
.cid-uG89IxIMnf ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #ee2524;
  font-weight: bold;
  font-size: 1.6rem;
  width: 1.6rem;
}
.cid-uG89IykPeq {
  display: flex;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #00d0f3;
}
.cid-uG89IykPeq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89IykPeq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89IykPeq .line {
  width: 100%;
  opacity: 0.6;
  height: 1px;
  background: currentColor;
  margin-top: 8rem;
}
.cid-uG89IykPeq .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uG89IykPeq .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uG89IykPeq {
    align-items: center;
  }
  .cid-uG89IykPeq .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uG89IykPeq .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uG89IykPeq {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uG89IykPeq .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uG89IykPeq .content-wrap {
    width: 100%;
  }
}
.cid-uG89IykPeq .mbr-section-title {
  text-align: left;
  color: #fffcee;
}
.cid-uG89IykPeq .mbr-text,
.cid-uG89IykPeq .mbr-section-btn {
  text-align: left;
  color: #fffcee;
}
.cid-uG89IykPeq .mbr-section-title,
.cid-uG89IykPeq .line {
  color: #131313;
  text-align: center;
}
.cid-uG89IyTdxZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uG89IyTdxZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89IyTdxZ .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-uG89IyTdxZ .container {
    padding: 0 16px;
  }
}
.cid-uG89IyTdxZ .card {
  justify-content: center;
}
.cid-uG89IyTdxZ .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #00d0f3;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uG89IyTdxZ .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uG89IyTdxZ .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uG89IyTdxZ .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uG89IyTdxZ .mbr-section-title {
  color: #000000;
}
.cid-uG89IyTdxZ .mbr-text {
  color: #000000;
}
.cid-uG89IyTdxZ .mbr-desc {
  color: #000000;
}
.cid-uG89IyTdxZ .mbr-section-title,
.cid-uG89IyTdxZ .title-wrapper {
  color: #151e11;
}
.cid-uG89IzxyhW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.cid-uG89IzxyhW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89IzxyhW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89IzxyhW .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uG89IzxyhW .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uG89IzxyhW .items-wrapper {
  margin: 0 -13px;
}
.cid-uG89IzxyhW .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uG89IzxyhW .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uG89IzxyhW .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uG89IzxyhW .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uG89IzxyhW .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uG89IzxyhW .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uG89IzxyhW .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uG89IzxyhW .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uG89IzxyhW .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uG89IzxyhW .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uG89IzxyhW .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uG89IzxyhW .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uG89IzxyhW .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG89IzxyhW .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG89IzxyhW .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG89IzxyhW .mbr-section-title,
.cid-uG89IzxyhW .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uG89IzxyhW .item-title {
  color: #ffffff;
}
.cid-uG89IzxyhW .item-text {
  color: #ffffff;
}
.cid-uG89IzxyhW .item-title,
.cid-uG89IzxyhW .mbr-section-btn {
  color: #000000;
}
.cid-uG89IAggTE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uG89IAggTE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89IAggTE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89IAggTE .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uG89IAggTE .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uG89IAggTE .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG89IAggTE .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uG89IAggTE .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uG89IAggTE .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uG89IAggTE .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uG89IAggTE .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uG89IAggTE .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uG89IAggTE .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #00d0f3;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uG89IAggTE .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uG89IAggTE .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uG89IAggTE .mbr-section-title {
  color: #050f0f;
}
.cid-uG89IAggTE .mbr-text {
  color: #050f0f;
}
.cid-uG89IB448Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.cid-uG89IB448Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89IB448Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89IB448Z .icon-title-1 {
  color: #bff747;
}
.cid-uG89IB448Z .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uG89IB448Z .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uG89IB448Z .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uG89IB448Z .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uG89IB448Z .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uG89IB448Z .image-wrapper img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
@media (max-width: 992px) {
  .cid-uG89IB448Z .image-wrapper img {
    height: 350px;
  }
}
.cid-uG89IB448Z .item-text {
  color: #000000;
  text-align: center;
}
.cid-uG89IB448Z .item-title {
  color: #000000;
  text-align: center;
}
.cid-uG89IB448Z .mbr-section-title,
.cid-uG89IB448Z .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uG89IClLn3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #171717;
}
.cid-uG89IClLn3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89IClLn3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89IClLn3 .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uG89IClLn3 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uG89IClLn3 .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG89IClLn3 .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uG89IClLn3 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uG89IClLn3 .mbr-section-title {
  color: #000000;
}
.cid-uG89IClLn3 .mbr-desc {
  color: #fdfde1;
}
.cid-uG89IClLn3 .mbr-text {
  color: #000000;
}
.cid-uG89IClLn3 .mbr-text,
.cid-uG89IClLn3 .text-wrapper {
  color: #ffffff;
}
.cid-uG89IClLn3 .mbr-section-title,
.cid-uG89IClLn3 .mbr-section-btn {
  color: #ffffff;
}
.cid-uG89ICZcs8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uG89ICZcs8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89ICZcs8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89ICZcs8 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uG89ICZcs8 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uG89ICZcs8 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uG89ICZcs8 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uG89ICZcs8 .container {
    padding: 0 24px;
  }
}
.cid-uG89ICZcs8 .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uG89ICZcs8 .content-wrapper {
    display: block;
  }
}
.cid-uG89ICZcs8 .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uG89ICZcs8 .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uG89ICZcs8 .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uG89ICZcs8 .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uG89ICZcs8 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uG89ICZcs8 .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uG89ICZcs8 .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uG89ICZcs8 .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uG89ICZcs8 .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uG89ICZcs8 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uG89ICZcs8 .mbr-section-title {
  color: #18212d;
}
.cid-uG89ICZcs8 .mbr-desc {
  color: #18212d;
}
.cid-uG89ICZcs8 .mbr-text {
  color: #18212d;
}
.cid-uG89IDCuoB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uG89IDCuoB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89IDCuoB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89IDCuoB .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uG89IDCuoB .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uG89IDCuoB .items-wrapper {
  margin: 0 -13px;
}
.cid-uG89IDCuoB .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uG89IDCuoB .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uG89IDCuoB .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uG89IDCuoB .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uG89IDCuoB .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uG89IDCuoB .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uG89IDCuoB .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uG89IDCuoB .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uG89IDCuoB .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uG89IDCuoB .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uG89IDCuoB .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uG89IDCuoB .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uG89IDCuoB .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG89IDCuoB .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG89IDCuoB .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG89IDCuoB .mbr-section-title,
.cid-uG89IDCuoB .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uG89IDCuoB .item-title {
  color: #ffffff;
}
.cid-uG89IDCuoB .item-text {
  color: #ffffff;
}
.cid-uGlSqUQgLr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uGlSqUQgLr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGlSqUQgLr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGlSqUQgLr .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uGlSqUQgLr .row {
    flex-direction: column-reverse;
  }
  .cid-uGlSqUQgLr .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uGlSqUQgLr .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uGlSqUQgLr .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uGlSqUQgLr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uG89IF9Wj8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #00d0f3;
  overflow: hidden;
  position: relative;
}
.cid-uG89IF9Wj8 .row {
  align-items: flex-start;
}
.cid-uG89IF9Wj8 .container,
.cid-uG89IF9Wj8 .container-fluid {
  position: static;
}
.cid-uG89IF9Wj8 .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uG89IF9Wj8 .col-text {
  position: relative;
  z-index: 2;
}
.cid-uG89IF9Wj8 .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uG89IF9Wj8 .toggle-panel,
.cid-uG89IF9Wj8 .panel-group {
  width: 100%;
}
.cid-uG89IF9Wj8 .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-uG89IF9Wj8 .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: #ffffff;
}
.cid-uG89IF9Wj8 .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-uG89IF9Wj8 .panel-title .sign {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .cid-uG89IF9Wj8 .panel-title {
    padding: 1rem !important;
  }
}
.cid-uG89IF9Wj8 .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-uG89IF9Wj8 .collapsed .sign {
  transform: rotate(0deg);
}
.cid-uG89IF9Wj8 .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-uG89IF9Wj8 .sign {
  color: #000000;
  transition: transform 0.2s ease-in-out;
  font-size: 1.6rem;
}
.cid-uG89IF9Wj8 .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uG89IF9Wj8 .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-uG89IF9Wj8 .panel-title-edit {
  width: 100%;
  color: #171717;
  text-align: left;
}
.cid-uG89IF9Wj8 .mbr-text,
.cid-uG89IF9Wj8 .mbr-section-btn {
  color: #ffffff;
}
.cid-uG89IG0AAh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uG89IG0AAh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89IG0AAh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89IG0AAh .row {
  justify-content: space-between;
}
.cid-uG89IG0AAh .mbr-text,
.cid-uG89IG0AAh .mbr-section-btn {
  color: #000000;
}
.cid-uG89IG0AAh 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-uG89IG0AAh h2 {
    padding: 1rem 1rem;
    margin-right: 1rem;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
}
.cid-uG89IG0AAh .mbr-section-subtitle {
  color: #000000;
}
.cid-uG89IG0AAh .mbr-section-title {
  text-align: center;
}
.cid-uG8tA3gYld {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uG8tA3gYld .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG8tA3gYld .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG8tA3gYld .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uG8tA3gYld .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uG8tA3gYld .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uG8tA3gYld .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uG8tA3gYld .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG8tA3gYld .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uG8tA3gYld .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #00d0f3;
}
@media (max-width: 992px) {
  .cid-uG8tA3gYld .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-uG8tA3gYld .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uG8tA3gYld .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uG8tA3gYld .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uG8tA3gYld .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uG8tA3gYld .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-uG8tA3gYld .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-uG8tA3gYld .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-uG8tA3gYld .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uG8tA3gYld .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-uG8tA3gYld .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG8tA3gYld .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uG8tA3gYld .mbr-section-title {
  color: #404349;
}
.cid-uG8tA3gYld .panel-title-edit {
  color: #404349;
}
.cid-uG8tA3gYld .panel-text {
  color: #404349;
}
.cid-uG89IGJB0C {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.cid-uG89IGJB0C .video-wrapper iframe {
  width: 100%;
}
.cid-uG89IGJB0C .mbr-section-title,
.cid-uG89IGJB0C .mbr-section-subtitle,
.cid-uG89IGJB0C .mbr-text {
  text-align: center;
}
.cid-uG89IGJB0C .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
  color: #000000;
}
.cid-uG89IGJB0C .mbr-text {
  padding-top: 16px;
}
.cid-uG89IHoREF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #151e11;
}
.cid-uG89IHoREF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89IHoREF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89IHoREF .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
}
.cid-uG89IHoREF .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
.cid-uG89IHoREF .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-uG89IHoREF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uG89IHoREF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uG89IHoREF .mbr-section-title {
  text-align: center;
}
.cid-uG89II6NlW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uG89II6NlW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89II6NlW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89II6NlW .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uG89II6NlW .footer-col {
    flex-direction: column;
  }
}
.cid-uG89II6NlW .row {
  background: #00d0f3;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uG89II6NlW .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uG89II6NlW .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uG89II6NlW .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uG89II6NlW .mbr-section-btn {
    text-align: center;
  }
}
.cid-uG89II6NlW .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uG89II6NlW .item-wrap {
  transition: all 300ms ease;
}
.cid-uG89II6NlW .item-wrap:hover,
.cid-uG89II6NlW .item-wrap:focus {
  cursor: pointer;
}
.cid-uG89II6NlW .soc-item {
  margin: 8px;
}
.cid-uG89II6NlW .soc-item a:hover .mbr-iconfont,
.cid-uG89II6NlW .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uG89II6NlW .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: #bbbbbb;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uG89II6NlW .row {
    text-align: center;
  }
  .cid-uG89II6NlW .social-row {
    justify-content: center;
  }
}
.cid-uG89II6NlW .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uG89II6NlW .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uG89II6NlW .list {
    margin-bottom: 0rem;
  }
}
.cid-uG89II6NlW .mbr-section-subtitle {
  color: #000000;
}
.cid-uG89II6NlW .list,
.cid-uG89II6NlW .item-wrap {
  color: #000000;
}
.cid-uG89II6NlW .copyright {
  color: #000000;
}
.cid-uG89Jt7wFp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uG89Jt7wFp nav.navbar {
  position: fixed;
}
.cid-uG89Jt7wFp .btn {
  line-height: 1.2;
}
.cid-uG89Jt7wFp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uG89Jt7wFp .nav-link {
  position: relative;
}
.cid-uG89Jt7wFp .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-uG89Jt7wFp .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-uG89Jt7wFp .nav-link:hover:before {
  width: 100%;
}
.cid-uG89Jt7wFp .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-uG89Jt7wFp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uG89Jt7wFp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uG89Jt7wFp .dropdown-item:hover,
.cid-uG89Jt7wFp .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uG89Jt7wFp .dropdown-item:hover span {
  color: white;
}
.cid-uG89Jt7wFp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uG89Jt7wFp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uG89Jt7wFp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uG89Jt7wFp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uG89Jt7wFp .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uG89Jt7wFp .container {
    flex-wrap: nowrap;
  }
}
.cid-uG89Jt7wFp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uG89Jt7wFp .navbar-nav {
  margin: auto;
}
.cid-uG89Jt7wFp .dropdown-menu,
.cid-uG89Jt7wFp .navbar.opened {
  background: #00d0f3 !important;
}
.cid-uG89Jt7wFp .nav-item:focus,
.cid-uG89Jt7wFp .nav-link:focus {
  outline: none;
}
.cid-uG89Jt7wFp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uG89Jt7wFp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uG89Jt7wFp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uG89Jt7wFp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uG89Jt7wFp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uG89Jt7wFp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uG89Jt7wFp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #00d0f3;
}
.cid-uG89Jt7wFp .navbar.opened {
  transition: all 0.3s;
}
.cid-uG89Jt7wFp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uG89Jt7wFp .navbar .navbar-logo img {
  width: auto;
}
.cid-uG89Jt7wFp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uG89Jt7wFp .navbar.collapsed {
  justify-content: center;
}
.cid-uG89Jt7wFp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uG89Jt7wFp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uG89Jt7wFp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uG89Jt7wFp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uG89Jt7wFp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uG89Jt7wFp .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-uG89Jt7wFp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uG89Jt7wFp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uG89Jt7wFp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uG89Jt7wFp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uG89Jt7wFp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uG89Jt7wFp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uG89Jt7wFp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uG89Jt7wFp .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-uG89Jt7wFp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uG89Jt7wFp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uG89Jt7wFp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uG89Jt7wFp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uG89Jt7wFp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uG89Jt7wFp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uG89Jt7wFp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uG89Jt7wFp .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uG89Jt7wFp .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uG89Jt7wFp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uG89Jt7wFp .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-uG89Jt7wFp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uG89Jt7wFp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uG89Jt7wFp .dropdown-item.active,
.cid-uG89Jt7wFp .dropdown-item:active {
  background-color: transparent;
}
.cid-uG89Jt7wFp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uG89Jt7wFp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uG89Jt7wFp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uG89Jt7wFp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00d0f3;
}
.cid-uG89Jt7wFp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uG89Jt7wFp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uG89Jt7wFp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uG89Jt7wFp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uG89Jt7wFp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uG89Jt7wFp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uG89Jt7wFp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uG89Jt7wFp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uG89Jt7wFp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uG89Jt7wFp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG89Jt7wFp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uG89Jt7wFp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uG89Jt7wFp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG89Jt7wFp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uG89Jt7wFp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uG89Jt7wFp .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-uG89Jt7wFp .navbar {
    height: 70px;
  }
  .cid-uG89Jt7wFp .navbar.opened {
    height: auto;
  }
  .cid-uG89Jt7wFp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uG89JtOBBI {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #262626;
}
.cid-uG89JtOBBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89JtOBBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89JtOBBI .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uG89JtOBBI .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uG89JtOBBI .container {
    padding: 0 6px;
  }
}
.cid-uG89JtOBBI .row {
  margin: 0;
}
.cid-uG89JtOBBI .row .card {
  padding: 0;
}
.cid-uG89JtOBBI .content-wrapper {
  height: 100%;
  padding: 108px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uG89JtOBBI .content-wrapper {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uG89JtOBBI .content-wrapper {
    padding: 70px 30px;
  }
}
.cid-uG89JtOBBI .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
.cid-uG89JtOBBI .content-wrapper .mbr-section-title span {
  color: #009472;
}
@media (max-width: 992px) {
  .cid-uG89JtOBBI .content-wrapper .mbr-section-title {
    text-align: center;
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uG89JtOBBI .content-wrapper .mbr-section-btn {
    text-align: center;
  }
}
.cid-uG89JtOBBI .content-wrapper .tags-wrapper {
  display: flex;
  margin-bottom: 32px;
}
@media (max-width: 1199px) {
  .cid-uG89JtOBBI .content-wrapper .tags-wrapper {
    display: block;
  }
}
.cid-uG89JtOBBI .content-wrapper .tags-wrapper .tags-wrap {
  display: flex;
  flex-direction: column;
  width: 65%;
}
@media (max-width: 1199px) {
  .cid-uG89JtOBBI .content-wrapper .tags-wrapper .tags-wrap {
    width: 100%;
    align-items: center;
  }
}
.cid-uG89JtOBBI .content-wrapper .tags-wrapper .tags-wrap .tags-item {
  display: inline-flex;
  align-items: center;
  background-color: #e6e6e6;
  border-radius: 30px;
  padding: 17px 25px;
  margin-bottom: 12px;
  width: fit-content;
}
@media (max-width: 768px) {
  .cid-uG89JtOBBI .content-wrapper .tags-wrapper .tags-wrap .tags-item {
    padding: 15px 20px;
  }
}
.cid-uG89JtOBBI .content-wrapper .tags-wrapper .tags-wrap .tags-item:nth-child(2) {
  margin-left: 15%;
}
@media (max-width: 1199px) {
  .cid-uG89JtOBBI .content-wrapper .tags-wrapper .tags-wrap .tags-item:nth-child(2) {
    margin-left: 0;
  }
}
.cid-uG89JtOBBI .content-wrapper .tags-wrapper .tags-wrap .tags-item:last-child {
  margin-left: 30%;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-uG89JtOBBI .content-wrapper .tags-wrapper .tags-wrap .tags-item:last-child {
    margin-left: 0;
  }
}
.cid-uG89JtOBBI .content-wrapper .tags-wrapper .tags-wrap .tags-item .mbr-iconfont {
  font-size: 18px;
  color: #131313;
  margin-right: 14px;
}
.cid-uG89JtOBBI .content-wrapper .tags-wrapper .tags-wrap .tags-item .mbr-tag {
  margin-bottom: 0;
}
.cid-uG89JtOBBI .content-wrapper .tags-wrapper .mbr-section-btn {
  width: 35%;
  margin: 0;
}
@media (max-width: 1199px) {
  .cid-uG89JtOBBI .content-wrapper .tags-wrapper .mbr-section-btn {
    width: 100%;
    text-align: center;
    margin-top: 22px;
  }
}
@media (min-width: 1199px) {
  .cid-uG89JtOBBI .content-wrapper .tags-wrapper .mbr-section-btn .btn {
    margin-top: 0;
  }
}
.cid-uG89JtOBBI .content-wrapper .mbr-text {
  margin: 100px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uG89JtOBBI .content-wrapper .mbr-text {
    margin: 32px 0 0;
  }
}
.cid-uG89JtOBBI .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 72px;
  background-color: #e6e6e6;
}
@media (max-width: 992px) {
  .cid-uG89JtOBBI .image-wrapper {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uG89JtOBBI .image-wrapper {
    padding: 70px 30px;
  }
}
.cid-uG89JtOBBI .image-wrapper img {
  position: absolute;
  margin: 5rem 0 0 -3rem;
  height: 55%;
  max-width: 320px;
  object-fit: cover;
  transform: rotate(-5deg);
}
@media (max-width: 992px) {
  .cid-uG89JtOBBI .image-wrapper img {
    position: static;
    height: 350px;
  }
}
.cid-uG89JtOBBI .image-wrapper img:nth-child(2) {
  transform: rotate(5deg);
  margin: 0 -3rem 5rem 0;
}
.cid-uG89JtOBBI .mbr-section-title {
  color: #131313;
}
.cid-uG89JtOBBI .mbr-tag {
  color: #131313;
}
.cid-uG89JtOBBI .mbr-text {
  color: #131313;
}
.cid-uG89JtOBBI .mbr-section-title,
.cid-uG89JtOBBI .mbr-section-btn {
  text-align: center;
}
.cid-uG89Jutbop {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-uG89Jutbop .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89Jutbop .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89Jutbop .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-uG89Jutbop .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uG89Jutbop .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uG89Jutbop .mbr-section-title {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uG89Jutbop .mbr-section-title {
    width: 100%;
  }
}
.cid-uG89Jutbop .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uG89Jutbop .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-uG89Jutbop .lists-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-uG89Jutbop .lists-col {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 !important;
  }
}
.cid-uG89Jutbop .col-list {
  width: 46%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uG89Jutbop .col-list {
    width: 100%;
    margin: 4rem 0;
  }
}
.cid-uG89Jutbop .list-title {
  color: #000000;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 2px solid currentColor;
}
@media (max-width: 991px) {
  .cid-uG89Jutbop .list-title {
    padding-bottom: 20px;
  }
}
.cid-uG89Jutbop .list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding-left: 0;
}
.cid-uG89Jutbop li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  margin-bottom: 0;
}
.cid-uG89Jutbop ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #ee2524;
  font-weight: bold;
  font-size: 1.6rem;
  width: 1.6rem;
}
.cid-uG89Jv7Ucu {
  display: flex;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #00d0f3;
}
.cid-uG89Jv7Ucu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89Jv7Ucu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89Jv7Ucu .line {
  width: 100%;
  opacity: 0.6;
  height: 1px;
  background: currentColor;
  margin-top: 8rem;
}
.cid-uG89Jv7Ucu .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uG89Jv7Ucu .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uG89Jv7Ucu {
    align-items: center;
  }
  .cid-uG89Jv7Ucu .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uG89Jv7Ucu .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uG89Jv7Ucu {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uG89Jv7Ucu .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uG89Jv7Ucu .content-wrap {
    width: 100%;
  }
}
.cid-uG89Jv7Ucu .mbr-section-title {
  text-align: left;
  color: #fffcee;
}
.cid-uG89Jv7Ucu .mbr-text,
.cid-uG89Jv7Ucu .mbr-section-btn {
  text-align: left;
  color: #fffcee;
}
.cid-uG89Jv7Ucu .mbr-section-title,
.cid-uG89Jv7Ucu .line {
  color: #131313;
  text-align: center;
}
.cid-uG89JvKkfq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uG89JvKkfq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89JvKkfq .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-uG89JvKkfq .container {
    padding: 0 16px;
  }
}
.cid-uG89JvKkfq .card {
  justify-content: center;
}
.cid-uG89JvKkfq .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #00d0f3;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uG89JvKkfq .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uG89JvKkfq .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uG89JvKkfq .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uG89JvKkfq .mbr-section-title {
  color: #000000;
}
.cid-uG89JvKkfq .mbr-text {
  color: #000000;
}
.cid-uG89JvKkfq .mbr-desc {
  color: #000000;
}
.cid-uG89JvKkfq .mbr-section-title,
.cid-uG89JvKkfq .title-wrapper {
  color: #151e11;
}
.cid-uG89JwljLL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.cid-uG89JwljLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89JwljLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89JwljLL .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uG89JwljLL .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uG89JwljLL .items-wrapper {
  margin: 0 -13px;
}
.cid-uG89JwljLL .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uG89JwljLL .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uG89JwljLL .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uG89JwljLL .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uG89JwljLL .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uG89JwljLL .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uG89JwljLL .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uG89JwljLL .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uG89JwljLL .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uG89JwljLL .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uG89JwljLL .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uG89JwljLL .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uG89JwljLL .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG89JwljLL .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG89JwljLL .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #fafafa 85%);
}
.cid-uG89JwljLL .mbr-section-title,
.cid-uG89JwljLL .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uG89JwljLL .item-title {
  color: #ffffff;
}
.cid-uG89JwljLL .item-text {
  color: #ffffff;
}
.cid-uG89JwljLL .item-title,
.cid-uG89JwljLL .mbr-section-btn {
  color: #000000;
}
.cid-uG89Jx8O2h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uG89Jx8O2h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89Jx8O2h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89Jx8O2h .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uG89Jx8O2h .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uG89Jx8O2h .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG89Jx8O2h .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uG89Jx8O2h .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uG89Jx8O2h .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uG89Jx8O2h .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uG89Jx8O2h .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uG89Jx8O2h .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uG89Jx8O2h .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #00d0f3;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uG89Jx8O2h .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uG89Jx8O2h .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uG89Jx8O2h .mbr-section-title {
  color: #050f0f;
}
.cid-uG89Jx8O2h .mbr-text {
  color: #050f0f;
}
.cid-uG89JxLQTS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.cid-uG89JxLQTS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89JxLQTS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89JxLQTS .icon-title-1 {
  color: #bff747;
}
.cid-uG89JxLQTS .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uG89JxLQTS .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uG89JxLQTS .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uG89JxLQTS .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uG89JxLQTS .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uG89JxLQTS .image-wrapper img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
@media (max-width: 992px) {
  .cid-uG89JxLQTS .image-wrapper img {
    height: 350px;
  }
}
.cid-uG89JxLQTS .item-text {
  color: #000000;
  text-align: center;
}
.cid-uG89JxLQTS .item-title {
  color: #000000;
  text-align: center;
}
.cid-uG89JxLQTS .mbr-section-title,
.cid-uG89JxLQTS .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uG89Jz6yr8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #171717;
}
.cid-uG89Jz6yr8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89Jz6yr8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89Jz6yr8 .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uG89Jz6yr8 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uG89Jz6yr8 .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG89Jz6yr8 .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uG89Jz6yr8 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uG89Jz6yr8 .mbr-section-title {
  color: #000000;
}
.cid-uG89Jz6yr8 .mbr-desc {
  color: #fdfde1;
}
.cid-uG89Jz6yr8 .mbr-text {
  color: #000000;
}
.cid-uG89Jz6yr8 .mbr-text,
.cid-uG89Jz6yr8 .text-wrapper {
  color: #ffffff;
}
.cid-uG89Jz6yr8 .mbr-section-title,
.cid-uG89Jz6yr8 .mbr-section-btn {
  color: #ffffff;
}
.cid-uGlSxOaluS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uGlSxOaluS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGlSxOaluS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGlSxOaluS .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uGlSxOaluS .row {
    flex-direction: column-reverse;
  }
  .cid-uGlSxOaluS .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uGlSxOaluS .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uGlSxOaluS .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uGlSxOaluS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uG89JzKJxa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uG89JzKJxa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89JzKJxa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89JzKJxa .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uG89JzKJxa .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uG89JzKJxa .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uG89JzKJxa .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uG89JzKJxa .container {
    padding: 0 24px;
  }
}
.cid-uG89JzKJxa .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uG89JzKJxa .content-wrapper {
    display: block;
  }
}
.cid-uG89JzKJxa .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uG89JzKJxa .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uG89JzKJxa .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uG89JzKJxa .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uG89JzKJxa .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uG89JzKJxa .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uG89JzKJxa .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uG89JzKJxa .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uG89JzKJxa .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uG89JzKJxa .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uG89JzKJxa .mbr-section-title {
  color: #18212d;
}
.cid-uG89JzKJxa .mbr-desc {
  color: #18212d;
}
.cid-uG89JzKJxa .mbr-text {
  color: #18212d;
}
.cid-uG89JApgOR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uG89JApgOR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89JApgOR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89JApgOR .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uG89JApgOR .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uG89JApgOR .items-wrapper {
  margin: 0 -13px;
}
.cid-uG89JApgOR .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uG89JApgOR .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uG89JApgOR .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uG89JApgOR .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uG89JApgOR .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uG89JApgOR .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uG89JApgOR .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uG89JApgOR .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uG89JApgOR .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uG89JApgOR .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uG89JApgOR .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uG89JApgOR .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uG89JApgOR .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG89JApgOR .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG89JApgOR .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00d0f3, #1f2329 85%);
}
.cid-uG89JApgOR .mbr-section-title,
.cid-uG89JApgOR .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uG89JApgOR .item-title {
  color: #ffffff;
}
.cid-uG89JApgOR .item-text {
  color: #ffffff;
}
.cid-uG89JBTah4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #00d0f3;
  overflow: hidden;
  position: relative;
}
.cid-uG89JBTah4 .row {
  align-items: flex-start;
}
.cid-uG89JBTah4 .container,
.cid-uG89JBTah4 .container-fluid {
  position: static;
}
.cid-uG89JBTah4 .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uG89JBTah4 .col-text {
  position: relative;
  z-index: 2;
}
.cid-uG89JBTah4 .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uG89JBTah4 .toggle-panel,
.cid-uG89JBTah4 .panel-group {
  width: 100%;
}
.cid-uG89JBTah4 .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-uG89JBTah4 .card .card-header {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  transition: 0.5s all;
  background-color: #ffffff;
}
.cid-uG89JBTah4 .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-uG89JBTah4 .panel-title .sign {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .cid-uG89JBTah4 .panel-title {
    padding: 1rem !important;
  }
}
.cid-uG89JBTah4 .collapsed {
  padding: 23px 20px 23px 35px;
}
.cid-uG89JBTah4 .collapsed .sign {
  transform: rotate(0deg);
}
.cid-uG89JBTah4 .panel-text {
  text-align: left;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-uG89JBTah4 .sign {
  color: #000000;
  transition: transform 0.2s ease-in-out;
  font-size: 1.6rem;
}
.cid-uG89JBTah4 .panel-body {
  padding: 0 40px 20px 35px;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uG89JBTah4 .panel-body {
    padding: 1rem;
    padding-top: 0;
  }
}
.cid-uG89JBTah4 .panel-title-edit {
  width: 100%;
  color: #171717;
  text-align: left;
}
.cid-uG89JBTah4 .mbr-text,
.cid-uG89JBTah4 .mbr-section-btn {
  color: #ffffff;
}
.cid-uG89JCMa8W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uG89JCMa8W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89JCMa8W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89JCMa8W .row {
  justify-content: space-between;
}
.cid-uG89JCMa8W .mbr-text,
.cid-uG89JCMa8W .mbr-section-btn {
  color: #000000;
}
.cid-uG89JCMa8W 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-uG89JCMa8W h2 {
    padding: 1rem 1rem;
    margin-right: 1rem;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
}
.cid-uG89JCMa8W .mbr-section-subtitle {
  color: #000000;
}
.cid-uG89JCMa8W .mbr-section-title {
  text-align: center;
}
.cid-uG8u0JNEeM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uG8u0JNEeM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG8u0JNEeM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG8u0JNEeM .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uG8u0JNEeM .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uG8u0JNEeM .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uG8u0JNEeM .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uG8u0JNEeM .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG8u0JNEeM .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uG8u0JNEeM .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #00d0f3;
}
@media (max-width: 992px) {
  .cid-uG8u0JNEeM .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-uG8u0JNEeM .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uG8u0JNEeM .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uG8u0JNEeM .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uG8u0JNEeM .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uG8u0JNEeM .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-uG8u0JNEeM .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-uG8u0JNEeM .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-uG8u0JNEeM .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uG8u0JNEeM .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-uG8u0JNEeM .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uG8u0JNEeM .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uG8u0JNEeM .mbr-section-title {
  color: #404349;
}
.cid-uG8u0JNEeM .panel-title-edit {
  color: #404349;
}
.cid-uG8u0JNEeM .panel-text {
  color: #404349;
}
.cid-uG89JDnkGF {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #00d0f3;
}
.cid-uG89JDnkGF .video-wrapper iframe {
  width: 100%;
}
.cid-uG89JDnkGF .mbr-section-title,
.cid-uG89JDnkGF .mbr-section-subtitle,
.cid-uG89JDnkGF .mbr-text {
  text-align: center;
}
.cid-uG89JDnkGF .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
  color: #000000;
}
.cid-uG89JDnkGF .mbr-text {
  padding-top: 16px;
}
.cid-uG89JDXJyh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #151e11;
}
.cid-uG89JDXJyh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89JDXJyh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89JDXJyh .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
}
.cid-uG89JDXJyh .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
.cid-uG89JDXJyh .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-uG89JDXJyh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uG89JDXJyh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uG89JDXJyh .mbr-section-title {
  text-align: center;
}
.cid-uG89JEGg7d {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uG89JEGg7d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG89JEGg7d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG89JEGg7d .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uG89JEGg7d .footer-col {
    flex-direction: column;
  }
}
.cid-uG89JEGg7d .row {
  background: #00d0f3;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uG89JEGg7d .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uG89JEGg7d .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uG89JEGg7d .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uG89JEGg7d .mbr-section-btn {
    text-align: center;
  }
}
.cid-uG89JEGg7d .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uG89JEGg7d .item-wrap {
  transition: all 300ms ease;
}
.cid-uG89JEGg7d .item-wrap:hover,
.cid-uG89JEGg7d .item-wrap:focus {
  cursor: pointer;
}
.cid-uG89JEGg7d .soc-item {
  margin: 8px;
}
.cid-uG89JEGg7d .soc-item a:hover .mbr-iconfont,
.cid-uG89JEGg7d .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uG89JEGg7d .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: #bbbbbb;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uG89JEGg7d .row {
    text-align: center;
  }
  .cid-uG89JEGg7d .social-row {
    justify-content: center;
  }
}
.cid-uG89JEGg7d .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uG89JEGg7d .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uG89JEGg7d .list {
    margin-bottom: 0rem;
  }
}
.cid-uG89JEGg7d .mbr-section-subtitle {
  color: #000000;
}
.cid-uG89JEGg7d .list,
.cid-uG89JEGg7d .item-wrap {
  color: #000000;
}
.cid-uG89JEGg7d .copyright {
  color: #000000;
}
