body {
  font-family: 'Syne', sans-serif;
}
.display-1 {
  font-family: 'Syne', sans-serif;
  font-size: 6.25rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.8125rem;
}
.display-2 {
  font-family: 'Syne', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  line-height: 1.14;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  line-height: 1.41;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.375rem;
    font-size: calc( 2.8375rem + (6.25 - 2.8375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.8375rem + (6.25 - 2.8375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.14 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.41 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #00bcb7 !important;
}
.bg-success {
  background-color: #7e4395 !important;
}
.bg-info {
  background-color: #bdd3d4 !important;
}
.bg-warning {
  background-color: #ffe885 !important;
}
.bg-danger {
  background-color: #e6c63b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #00bcb7 !important;
  border-color: #00bcb7 !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: #006563 !important;
  border-color: #006563 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #006563 !important;
  border-color: #006563 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #00bcb7 !important;
  border-color: #00bcb7 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #006563 !important;
  border-color: #006563 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #006563 !important;
  border-color: #006563 !important;
}
.btn-info,
.btn-info:active {
  background-color: #bdd3d4 !important;
  border-color: #bdd3d4 !important;
  color: #3a5758 !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: #89b0b2 !important;
  border-color: #89b0b2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #3a5758 !important;
  background-color: #89b0b2 !important;
  border-color: #89b0b2 !important;
}
.btn-success,
.btn-success:active {
  background-color: #7e4395 !important;
  border-color: #7e4395 !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: #4b2859 !important;
  border-color: #4b2859 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #4b2859 !important;
  border-color: #4b2859 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
  color: #856c00 !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: #2e2600 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #856c00 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !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: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white: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-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !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-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00bcb7;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #006563 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #00bcb7 !important;
  border-color: #00bcb7 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00bcb7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #006563 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #00bcb7 !important;
  border-color: #00bcb7 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bdd3d4;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #89b0b2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #3a5758 !important;
  background-color: #bdd3d4 !important;
  border-color: #bdd3d4 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #7e4395;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #4b2859 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7e4395 !important;
  border-color: #7e4395 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe885;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd82e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #856c00 !important;
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c63b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b39617 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #00bcb7 !important;
}
.text-secondary {
  color: #00bcb7 !important;
}
.text-success {
  color: #7e4395 !important;
}
.text-info {
  color: #bdd3d4 !important;
}
.text-warning {
  color: #ffe885 !important;
}
.text-danger {
  color: #e6c63b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #005654 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #005654 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #42234f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #7faaac !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffd51f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a68b15 !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: #00bcb7;
}
.nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #bdd3d4;
}
.alert-warning {
  background-color: #ffe885;
}
.alert-danger {
  background-color: #e6c63b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #00bcb7;
  border-color: #00bcb7;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #00bcb7;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #3dfffa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ba8ccb;
}
.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: #fdfbf0;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #00bcb7 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #00bcb7;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #00bcb7;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #00bcb7;
}
.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: #00bcb7;
  border-bottom-color: #00bcb7;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #00bcb7 !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: #00bcb7 !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='%2300bcb7' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 100%;
  width: 86%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 801px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1025px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1201px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1441px) {
  .container {
    max-width: 1300px;
  }
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 190px;
  border-radius: 0;
  padding: 17px 48px 15px 50px;
  line-height: 1.33;
  font-weight: 500 !important;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
.mbr-section-btn .btn-primary {
  color: #ffffff !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary:hover {
  color: #000 !important;
  background: 0 0 !important;
}
.mbr-section-btn .btn-primary-outline {
  color: #000000 !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: 0 0;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary-outline:hover {
  color: #fff !important;
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
b {
  font-weight: 600 !important;
}
.cid-uivpiS96Qw {
  z-index: 1000;
  width: 100%;
}
.cid-uivpiS96Qw nav.navbar {
  position: fixed!important;
}
.cid-uivpiS96Qw .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-uivpiS96Qw .dropdown-menu {
  background: #fafafa !important;
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uivpiS96Qw .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uivpiS96Qw .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uivpiS96Qw .dropdown-item:hover {
  background-position: right !important;
}
.cid-uivpiS96Qw .dropdown-item:hover:after {
  color: #00bcb7;
}
.cid-uivpiS96Qw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uivpiS96Qw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uivpiS96Qw .nav-link {
  position: relative;
}
.cid-uivpiS96Qw .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uivpiS96Qw .dropdown-menu,
.cid-uivpiS96Qw .navbar.opened {
  background: #fafafa !important;
}
.cid-uivpiS96Qw .nav-item:focus,
.cid-uivpiS96Qw .nav-link:focus {
  outline: none;
}
.cid-uivpiS96Qw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uivpiS96Qw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uivpiS96Qw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uivpiS96Qw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uivpiS96Qw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uivpiS96Qw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uivpiS96Qw .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #fafafa;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uivpiS96Qw .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uivpiS96Qw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uivpiS96Qw .navbar .navbar-logo img {
  width: auto;
}
.cid-uivpiS96Qw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uivpiS96Qw .navbar.collapsed {
  justify-content: center;
}
.cid-uivpiS96Qw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uivpiS96Qw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uivpiS96Qw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uivpiS96Qw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uivpiS96Qw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uivpiS96Qw .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-uivpiS96Qw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uivpiS96Qw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uivpiS96Qw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uivpiS96Qw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uivpiS96Qw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uivpiS96Qw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uivpiS96Qw .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-uivpiS96Qw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uivpiS96Qw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uivpiS96Qw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uivpiS96Qw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uivpiS96Qw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uivpiS96Qw .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uivpiS96Qw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uivpiS96Qw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uivpiS96Qw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uivpiS96Qw .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uivpiS96Qw .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uivpiS96Qw .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uivpiS96Qw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uivpiS96Qw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uivpiS96Qw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uivpiS96Qw .dropdown-item.active,
.cid-uivpiS96Qw .dropdown-item:active {
  background-color: transparent;
}
.cid-uivpiS96Qw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uivpiS96Qw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uivpiS96Qw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uivpiS96Qw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uivpiS96Qw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uivpiS96Qw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uivpiS96Qw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uivpiS96Qw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uivpiS96Qw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uivpiS96Qw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uivpiS96Qw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uivpiS96Qw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uivpiS96Qw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uivpiS96Qw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uivpiS96Qw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uivpiS96Qw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uivpiS96Qw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uivpiS96Qw .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uivpiS96Qw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uivpiS96Qw .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-uivpiS96Qw .navbar {
    height: 70px;
  }
  .cid-uivpiS96Qw .navbar.opened {
    height: auto;
  }
  .cid-uivpiS96Qw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uivpiS96Qw .navbar-short {
  background-color: #fafafa !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uivpiS96Qw .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uivpiS96Qw .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uivpiS96Qw .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uivpiS96Qw .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uivpiS96Qw .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uivpiS96Qw .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uivpiS96Qw .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uivpiS96Qw .nav-item .nav-link:hover:after {
  color: #00bcb7;
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uivpiS96Qw .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uivpiS96Qw .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .nav-item {
    width: 100%;
  }
  .cid-uivpiS96Qw .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uivpiS96Qw .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uivpiS96Qw .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uivpiS96Qw .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uivpiS96Qw .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uivpiS96Qw .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #00bcb7 !important;
  }
}
.cid-uivpiS96Qw .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-uivpiS96Qw nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uivpiS96Qw .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uivpiS96Qw .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uivpiS96Qw .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uivpiS96Qw .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uivpiS96Qw .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uivpiS96Qw .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uivpiS96Qw .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uivpiS96Qw .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uivpiS96Qw .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uivpiS96Qw .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #fafafa;
  }
  .cid-uivpiS96Qw .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #000000 0, #000000 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #000000 66.66666667%, #000000 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uivpiS96Qw .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uivpiS96Qw .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uivpiS96Qw .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uivpiS96Qw .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uivpiS96Qw .offcanvas_box {
    display: none;
  }
}
.cid-uivpiS96Qw .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uivpiS96Qw .list li {
  display: flex;
  align-items: center;
}
.cid-uivpiS96Qw .list a {
  display: flex;
  align-items: center;
}
.cid-uivpiS96Qw .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uivpiS96Qw .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uivpiS96Qw .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uivy1Pr6hT {
  background-image: url("../../../assets/images/leonardchan-sense-of-improvement-using-advanced-technology-ar-8613b372-0ec4-4ec3-95c3-33a4d516d424.png");
}
.cid-uivy1Pr6hT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uivy1Pr6hT .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-uivy1Pr6hT .container {
    padding: 0 22px;
  }
}
.cid-uivy1Pr6hT .content-wrapper {
  padding-bottom: 60%;
}
.cid-uivy1Pr6hT .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uivy1Pr6hT .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uivy1Pr6hT .mbr-section-title {
  color: #ffffff;
}
.cid-uivy1Pr6hT .mbr-text {
  color: #ffffff;
}
.cid-uivytZPUR0 {
  display: flex;
  background-image: url("../../../assets/images/leonardchan-sense-of-improvement-using-advanced-technology-ar-12b2da34-2b0b-4f2e-81bf-b1c5fcf49b94.png");
  align-items: flex-end;
}
.cid-uivytZPUR0 .mbr-overlay {
  background-color: #45494e;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .cid-uivytZPUR0 .row {
    justify-content: flex-start;
  }
  .cid-uivytZPUR0 .content-wrap {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-uivytZPUR0 .content-wrap {
    width: 100%;
  }
}
.cid-uivytZPUR0 .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uivytZPUR0 .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uivytZPUR0 .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-uivytZPUR0 .mbr-section-btn {
    text-align: center;
  }
}
.cid-uiwtYUCyoE {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f8f6f2;
}
.cid-uiwtYUCyoE img {
  width: 180px;
  margin: auto;
}
.cid-uiwtYUCyoE .card {
  transition: all 0.3s;
  height: fit-content;
  text-align: center;
  margin: auto;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uiwtYUCyoE .card {
    max-width: 16.66%;
  }
}
.cid-uiwtYUCyoE .mbr-section-subtitle {
  text-align: left;
}
@media (max-width: 992px) {
  .cid-uiwtYUCyoE .mbr-section-subtitle {
    text-align: center;
    padding: 0 1rem;
  }
}
.cid-uivyPOAegg {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #f8f6f2;
}
.cid-uivyPOAegg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uivyPOAegg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uivyPOAegg .row {
  justify-content: flex-start;
}
.cid-uivyPOAegg .mbr-section-title {
  color: #45494E;
}
.cid-uivyPOAegg .mbr-text {
  margin-top: 36px;
  color: #5c6064;
  max-width: 655px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uivyPOAegg .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uivyPOAegg .mbr-text {
    margin-top: 20px;
  }
}
.cid-uivyPOAegg .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uivyPOAegg .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uivyPOAegg .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uivyPOAegg .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uivyPOAegg .mbr-text,
.cid-uivyPOAegg .mbr-section-btn {
  text-align: left;
}
.cid-uiwyUuUlkX {
  background-image: url("../../../assets/images/leonard-1.png");
}
.cid-uiwyUuUlkX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiwyUuUlkX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiwyUuUlkX .mbr-section-title {
  color: #FFFFFF;
}
.cid-uiwyUuUlkX .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uiwyUuUlkX .mbr-section-btn {
  margin-top: 30px;
}
.cid-uiwEiLlYNR.popup-builder {
  background-color: #ffffff;
}
.cid-uiwEiLlYNR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uiwEiLlYNR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0;
  height: 100%;
}
.cid-uiwEiLlYNR .modal-content,
.cid-uiwEiLlYNR .modal-dialog {
  height: auto;
}
.cid-uiwEiLlYNR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uiwEiLlYNR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uiwEiLlYNR .form-wrapper .mbr-form .form-group,
  .cid-uiwEiLlYNR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uiwEiLlYNR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uiwEiLlYNR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uiwEiLlYNR .mbr-text {
  text-align: left;
}
.cid-uiwEiLlYNR .pt-0 {
  padding-top: 0 !important;
}
.cid-uiwEiLlYNR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uiwEiLlYNR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uiwEiLlYNR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uiwEiLlYNR .modal-open {
  overflow: hidden;
}
.cid-uiwEiLlYNR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uiwEiLlYNR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uiwEiLlYNR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
  max-width: 100%;
  height: 100%;
  margin: 0;
}
.cid-uiwEiLlYNR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uiwEiLlYNR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uiwEiLlYNR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uiwEiLlYNR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uiwEiLlYNR .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
  height: 100%;
  overflow: auto;
}
.cid-uiwEiLlYNR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uiwEiLlYNR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uiwEiLlYNR .modal-backdrop.fade {
  opacity: 0;
}
.cid-uiwEiLlYNR .modal-backdrop.show {
  opacity: .5;
}
.cid-uiwEiLlYNR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uiwEiLlYNR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uiwEiLlYNR .modal-header {
    padding: 1rem;
  }
}
.cid-uiwEiLlYNR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uiwEiLlYNR .modal-header .close svg {
  fill: #353535;
}
.cid-uiwEiLlYNR .modal-header .close:hover {
  opacity: 1;
}
.cid-uiwEiLlYNR .modal-header .close:focus {
  outline: none;
}
.cid-uiwEiLlYNR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uiwEiLlYNR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uiwEiLlYNR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uiwEiLlYNR .modal-body {
    padding: 1rem;
  }
}
.cid-uiwEiLlYNR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uiwEiLlYNR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uiwEiLlYNR .modal-footer {
    padding: 1rem;
  }
}
.cid-uiwEiLlYNR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uiwEiLlYNR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uiwEiLlYNR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uiwEiLlYNR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uiwEiLlYNR .modal-lg,
  .cid-uiwEiLlYNR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uiwEiLlYNR .modal-xl {
    max-width: 1140px;
  }
}
.cid-uiwEiLlYNR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uiwEiLlYNR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uiwEiLlYNR .form-group {
  margin-bottom: 1rem;
}
.cid-uiwEiLlYNR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uiwEiLlYNR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uiwEiLlYNR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uiwEiLlYNR .mbr-section-btn {
  margin: 0;
}
.cid-uiwEiLlYNR .mbr-section-btn .btn {
  margin: 0;
}
.cid-uiwF79838I.popup-builder {
  background-color: #ffffff;
}
.cid-uiwF79838I.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uiwF79838I.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0;
  height: 100%;
}
.cid-uiwF79838I .modal-content,
.cid-uiwF79838I .modal-dialog {
  height: auto;
}
.cid-uiwF79838I .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uiwF79838I .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uiwF79838I .form-wrapper .mbr-form .form-group,
  .cid-uiwF79838I .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uiwF79838I .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uiwF79838I .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uiwF79838I .mbr-text {
  text-align: left;
}
.cid-uiwF79838I .pt-0 {
  padding-top: 0 !important;
}
.cid-uiwF79838I .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uiwF79838I .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uiwF79838I .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uiwF79838I .modal-open {
  overflow: hidden;
}
.cid-uiwF79838I .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uiwF79838I .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uiwF79838I .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
  max-width: 100%;
  height: 100%;
  margin: 0;
}
.cid-uiwF79838I .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uiwF79838I .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uiwF79838I .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uiwF79838I .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uiwF79838I .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
  height: 100%;
  overflow: auto;
}
.cid-uiwF79838I .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uiwF79838I .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uiwF79838I .modal-backdrop.fade {
  opacity: 0;
}
.cid-uiwF79838I .modal-backdrop.show {
  opacity: .5;
}
.cid-uiwF79838I .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uiwF79838I .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uiwF79838I .modal-header {
    padding: 1rem;
  }
}
.cid-uiwF79838I .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uiwF79838I .modal-header .close svg {
  fill: #353535;
}
.cid-uiwF79838I .modal-header .close:hover {
  opacity: 1;
}
.cid-uiwF79838I .modal-header .close:focus {
  outline: none;
}
.cid-uiwF79838I .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uiwF79838I .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uiwF79838I .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uiwF79838I .modal-body {
    padding: 1rem;
  }
}
.cid-uiwF79838I .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uiwF79838I .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uiwF79838I .modal-footer {
    padding: 1rem;
  }
}
.cid-uiwF79838I .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uiwF79838I .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uiwF79838I .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uiwF79838I .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uiwF79838I .modal-lg,
  .cid-uiwF79838I .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uiwF79838I .modal-xl {
    max-width: 1140px;
  }
}
.cid-uiwF79838I .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uiwF79838I .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uiwF79838I .form-group {
  margin-bottom: 1rem;
}
.cid-uiwF79838I .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uiwF79838I .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uiwF79838I .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uiwF79838I .mbr-section-btn {
  margin: 0;
}
.cid-uiwF79838I .mbr-section-btn .btn {
  margin: 0;
}
.cid-uiwGB4GD0P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bdd3d4;
}
.cid-uiwGB4GD0P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiwGB4GD0P .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-uiwGB4GD0P .container {
    padding: 0 30px;
  }
}
.cid-uiwGB4GD0P .card-wrapper {
  overflow: hidden;
  padding: 50px;
  border-radius: 3.75em;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uiwGB4GD0P .card-wrapper {
    padding: 30px 20px;
    display: block;
  }
}
.cid-uiwGB4GD0P .card-wrapper .card-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uiwGB4GD0P .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uiwGB4GD0P .card-wrapper .card-wrap:last-child {
  margin-left: 70px;
}
@media (max-width: 992px) {
  .cid-uiwGB4GD0P .card-wrapper .card-wrap:last-child {
    margin: 0;
    width: 100%;
  }
}
.cid-uiwGB4GD0P .card-wrapper .card-wrap .number-wrapper {
  margin-bottom: 20px;
}
.cid-uiwGB4GD0P .card-wrapper .card-wrap .number-wrapper .number-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uiwGB4GD0P .card-wrapper .card-wrap .number-wrapper .number-wrap .mbr-iconfont {
  display: block;
  font-size: 32px;
  color: #fe5115;
  margin-right: 16px;
}
.cid-uiwGB4GD0P .card-wrapper .card-wrap .number-wrapper .number-wrap .mbr-number {
  margin-bottom: 0;
}
.cid-uiwGB4GD0P .card-wrapper .card-wrap .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uiwGB4GD0P .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 20px;
}
.cid-uiwGB4GD0P .card-wrapper .card-wrap .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uiwGB4GD0P .card-wrapper .card-wrap .image-wrapper img {
  height: 150px;
  object-fit: cover;
  margin-right: -30%;
  border-radius: 25px;
}
.cid-uiwGB4GD0P .mbr-card-title {
  color: #2B2B2B;
}
.cid-uiwGB4GD0P .mbr-number {
  color: #2B2B2B;
}
.cid-uiwGB4GD0P .mbr-text {
  color: #4E4E4E;
}
.cid-uiyBz3kST7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 845px;
  background-image: url("../../../assets/images/313686-1624682112816-1709428032-915212-249871727-n-1.jpg");
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uiyBz3kST7 {
    min-height: 667px;
  }
}
.cid-uiyBz3kST7 .row {
  align-items: stretch;
  width: 100%;
}
.cid-uiyBz3kST7 .col-text {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-uiyBz3kST7 .col-text {
    width: 50%;
  }
}
@media (min-width: 758px) {
  .cid-uiyBz3kST7 .col-text {
    width: 60%;
  }
}
.cid-uiyBz3kST7 .text-container {
  width: 100%;
}
@media (max-width: 1440px) {
  .cid-uiyBz3kST7 .text-container {
    padding: 0 0 0 16% !important;
  }
}
@media (max-width: 880px) {
  .cid-uiyBz3kST7 .text-container {
    padding: 0 !important;
  }
}
@media (min-width: 1441px) {
  .cid-uiyBz3kST7 .text-container {
    padding: 10px !important;
  }
}
.cid-uiyBz3kST7 .text-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
@media (min-width: 1441px) {
  .cid-uiyBz3kST7 .text-wrapper {
    padding: 0 55% 0 0;
  }
}
@media (max-width: 1440px) {
  .cid-uiyBz3kST7 .text-wrapper {
    padding: 0 30% 0 0;
  }
}
@media (max-width: 1024px) {
  .cid-uiyBz3kST7 .text-wrapper {
    padding: 0 25% 0 0;
  }
}
@media (max-width: 880px) {
  .cid-uiyBz3kST7 .text-wrapper {
    padding: 0 15% 0 0;
  }
}
@media (max-width: 767px) {
  .cid-uiyBz3kST7 .text-wrapper {
    padding: 0;
  }
}
.cid-uiyBz3kST7 .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-uiyBz3kST7 .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-uiyBz3kST7 .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uiyBz3kST7 .mbr-section-btn .btn-transform {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-uiyBz3kST7 .mbr-section-btn .btn-white-outline {
  color: #ffffff !important;
  border: 1px solid #ffffff;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-uiyBz3kST7 .mbr-section-btn .btn-white-outline:hover {
  color: #fff !important;
  background: #ffffff !important;
}
.cid-uiyBz3kST7 .mbr-section-btn .btn-white-outline:hover .btn-transform {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-uiyBz3kST7 .col-img {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-uiyBz3kST7 .col-img {
    width: 50%;
  }
}
@media (min-width: 758px) {
  .cid-uiyBz3kST7 .col-img {
    width: 40%;
  }
}
.cid-uiyAPc05n9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eae8e4;
}
.cid-uiyAPc05n9 .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uiyAPc05n9 .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-uiyAPc05n9 .mbr-text {
  margin-bottom: 2rem;
}
.cid-uiyAPc05n9 .image-wrapper,
.cid-uiyAPc05n9 img {
  width: 100%;
}
.cid-uiyAPc05n9 .image-wrapper {
  overflow: hidden;
}
.cid-uiyAPc05n9 .image-wrapper img {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uiyAPc05n9 .image-wrapper img:hover {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  .cid-uiyAPc05n9 .content_box {
    padding-right: 5rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uiyAPc05n9 .row {
    flex-direction: column-reverse;
  }
  .cid-uiyAPc05n9 .content_box,
  .cid-uiyAPc05n9 .mbr-text {
    padding: 0;
  }
  .cid-uiyAPc05n9 .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-uiyAPc05n9 .mbr-text {
    margin-bottom: 1.25rem;
  }
  .cid-uiyAPc05n9 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uiyAPc05n9 .flash:hover {
  opacity: 1;
  -webkit-animation: flash 1s;
  animation: flash 1s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .3;
  }
  100% {
    opacity: 1;
  }
}
.cid-uiyTq8i8zc {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uiyTq8i8zc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiyTq8i8zc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiyTq8i8zc .container {
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-uiyTq8i8zc .container {
    padding: 0 20px;
  }
}
.cid-uiyTq8i8zc .row {
  height: 100%;
}
.cid-uiyTq8i8zc .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uiyTq8i8zc .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-uiyTq8i8zc .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 1440px) {
  .cid-uiyTq8i8zc .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uiyTq8i8zc .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uiyTq8i8zc .mbr-section-title {
  color: #ffffff;
}
.cid-uiyTq8i8zc .mbr-desc {
  color: #ffffff;
}
.cid-uiyGU8eeBz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #eff3f3;
}
.cid-uiyGU8eeBz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiyGU8eeBz .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-uiyGU8eeBz .container {
    padding: 0 25px;
  }
}
.cid-uiyGU8eeBz .mbr-section-title {
  margin-bottom: 25px;
  color: #2f2e30;
}
.cid-uiyGU8eeBz .cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
@media (max-width: 992px) {
  .cid-uiyGU8eeBz .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uiyGU8eeBz .cards {
    grid-template-columns: 1fr;
  }
}
.cid-uiyGU8eeBz .cards .item .item-wrapper a:hover .item-img img,
.cid-uiyGU8eeBz .cards .item .item-wrapper a:focus .item-img img {
  transform: scale(1.02);
}
.cid-uiyGU8eeBz .cards .item .item-wrapper a .item-img img {
  height: 115px;
  object-fit: cover;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}
.cid-uiyIwzwfWR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uiyIwzwfWR .row {
  justify-content: center;
}
.cid-uiyIwzwfWR .item-img {
  height: auto;
  width: 100%;
  margin-bottom: 24px;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .cid-uiyIwzwfWR .item-img:hover img {
    transform: translateY(-8px);
  }
}
.cid-uiyIwzwfWR img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
}
.cid-uiyIwzwfWR .item:focus,
.cid-uiyIwzwfWR span:focus {
  outline: none;
}
.cid-uiyIwzwfWR .col-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uiyIwzwfWR .col-items {
    flex-wrap: wrap;
  }
}
.cid-uiyIwzwfWR .item {
  cursor: pointer;
  padding: 12px;
}
@media (min-width: 992px) {
  .cid-uiyIwzwfWR .item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uiyIwzwfWR .item {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.cid-uiyIwzwfWR .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}
.cid-uiyIwzwfWR .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uiyIwzwfWR .item-content {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-uiyIwzwfWR .item-content {
    padding-left: 16px;
  }
}
.cid-uiyIwzwfWR .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #00bcb7;
}
@media (max-width: 767px) {
  .cid-uiyIwzwfWR .label-text {
    text-align: center !important;
  }
}
.cid-uiyIwzwfWR .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-uiyIwzwfWR .mbr-text {
  color: #555555;
}
.cid-uiyIwzwfWR .item-title {
  color: #222222;
}
.cid-uiyIwzwfWR .mbr-section-head {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uiyIwzwfWR .mbr-section-head {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uiyIwzwfWR .mbr-section-head {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uiyIwzwfWR .mbr-section-head {
    text-align: center !important;
  }
}
.cid-uiyIwzwfWR .social-row {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uiyIwzwfWR .social-row {
    justify-content: center;
  }
}
.cid-uiyIwzwfWR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #00bcb7;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 6px;
  transition: 0.5s all;
}
.cid-uiyIwzwfWR .soc-item span {
  font-size: 16px;
  color: #00bcb7;
}
.cid-uiyIwzwfWR .soc-item:hover {
  background-color: #00bcb7;
  border-color: #00bcb7;
}
.cid-uiyIwzwfWR .soc-item:hover span {
  color: #ffffff;
}
