body {
  font-family: Spartan;
}
.display-1 {
  font-family: 'Spartan', sans-serif;
  font-size: 3.75rem;
  line-height: 1.25;
  letter-spacing: -0.07em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.6875rem;
}
.display-2 {
  font-family: 'Spartan', sans-serif;
  font-size: 3.3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.125rem;
}
.display-4 {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.09375rem;
}
.display-5 {
  font-family: 'Spartan', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 3rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.625rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.64rem;
    font-size: calc( 1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #2b9b9d !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #2b9b9d !important;
  border-color: #2b9b9d !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: #185859 !important;
  border-color: #185859 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #185859 !important;
  border-color: #185859 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff4712 !important;
  border-color: #ff4712 !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: #ba2a00 !important;
  border-color: #ba2a00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ba2a00 !important;
  border-color: #ba2a00 !important;
}
.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-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.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-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-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: #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-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2b9b9d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #185859 !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: #2b9b9d !important;
  border-color: #2b9b9d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff4712;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ba2a00 !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: #ff4712 !important;
  border-color: #ff4712 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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-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: #2b9b9d !important;
}
.text-secondary {
  color: #ff4712 !important;
}
.text-success {
  color: #ffffff !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: #154c4d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ab2600 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !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: #2b9b9d;
}
.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: #2b9b9d;
  border-color: #2b9b9d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #2b9b9d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #70d6d8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.09375rem;
}
.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: #2b9b9d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.09375rem;
}
blockquote {
  border-color: #2b9b9d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2b9b9d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2b9b9d;
}
.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: #2b9b9d;
  border-bottom-color: #2b9b9d;
}
.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: #2b9b9d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff4712 !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='%232b9b9d' %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;
}
.cid-uJCDWEbV21 .navbar-dropdown {
  position: relative !important;
}
.cid-uJCDWEbV21 .navbar-dropdown {
  position: absolute !important;
}
.cid-uJCDWEbV21 .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-uJCDWEbV21 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uJCDWEbV21 .dropdown-item:hover,
.cid-uJCDWEbV21 .dropdown-item:focus {
  color: #2b9b9d !important;
}
.cid-uJCDWEbV21 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uJCDWEbV21 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJCDWEbV21 .nav-link {
  position: relative;
  padding: 0;
}
.cid-uJCDWEbV21 .container {
  display: flex;
  margin: auto;
}
.cid-uJCDWEbV21 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJCDWEbV21 .dropdown-menu,
.cid-uJCDWEbV21 .navbar.opened {
  background: #ffffff !important;
}
.cid-uJCDWEbV21 .nav-item:focus,
.cid-uJCDWEbV21 .nav-link:focus {
  outline: none;
}
.cid-uJCDWEbV21 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJCDWEbV21 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJCDWEbV21 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJCDWEbV21 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJCDWEbV21 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJCDWEbV21 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJCDWEbV21 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.2);
}
.cid-uJCDWEbV21 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJCDWEbV21 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJCDWEbV21 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJCDWEbV21 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJCDWEbV21 .navbar.collapsed {
  justify-content: center;
}
.cid-uJCDWEbV21 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJCDWEbV21 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJCDWEbV21 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJCDWEbV21 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJCDWEbV21 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJCDWEbV21 .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-uJCDWEbV21 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJCDWEbV21 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJCDWEbV21 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJCDWEbV21 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJCDWEbV21 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJCDWEbV21 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJCDWEbV21 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJCDWEbV21 .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-uJCDWEbV21 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJCDWEbV21 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJCDWEbV21 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJCDWEbV21 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJCDWEbV21 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJCDWEbV21 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJCDWEbV21 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJCDWEbV21 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJCDWEbV21 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJCDWEbV21 .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-uJCDWEbV21 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJCDWEbV21 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJCDWEbV21 .dropdown-item.active,
.cid-uJCDWEbV21 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJCDWEbV21 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJCDWEbV21 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJCDWEbV21 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJCDWEbV21 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJCDWEbV21 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJCDWEbV21 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJCDWEbV21 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJCDWEbV21 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJCDWEbV21 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJCDWEbV21 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJCDWEbV21 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJCDWEbV21 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJCDWEbV21 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJCDWEbV21 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJCDWEbV21 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJCDWEbV21 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJCDWEbV21 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJCDWEbV21 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJCDWEbV21 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uJCDWEbV21 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJCDWEbV21 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJCDWEbV21 .navbar {
    height: 70px;
  }
  .cid-uJCDWEbV21 .navbar.opened {
    height: auto;
  }
  .cid-uJCDWEbV21 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJCDWEbV21 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uJCDWEbV21 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uJCDWEbV21 a {
  display: inline;
  font-weight: bold;
}
.cid-uJCDWEbV21 img {
  display: inline;
  padding-right: 10px;
}
.cid-uJCDWEbV21 .text-black:hover {
  color: #000000 !important;
}
.cid-uJCDWEbV21 .dropdown-toggle:after {
  display: none;
}
.cid-uJCDWEbV21 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uJCDWEbV21 .dropdown-item:hover {
  color: #2b9b9d !important;
}
.cid-uJCDWEbV21 a.text-black:hover,
.cid-uJCDWEbV21 a.text-black:focus,
.cid-uJCDWEbV21 a.text-black.active {
  color: #000000;
}
@media (max-width: 990px) {
  .cid-uJCDWEbV21 .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uJCDWEPHEN {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/photo-1621944668311-7a97c80f0190-cleanup.png-1974x1480.png");
}
.cid-uJCDWEPHEN P {
  color: #767676;
}
.cid-uJCDWEPHEN H1 {
  color: #000000;
}
.cid-uJCDWEPHEN .mbr-text,
.cid-uJCDWEPHEN .mbr-section-btn {
  color: #cf2f00;
}
.cid-uJCEam0LGo {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #f8f8f8;
}
.cid-uJCEam0LGo .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uJCEam0LGo .team-card:hover {
  transform: translateY(-10px);
}
.cid-uJCEam0LGo .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #2b9b9d;
}
.cid-uJCEam0LGo .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uJCEam0LGo .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uJCEam0LGo .image-wrap {
  height: 300px;
  padding-bottom: 2rem;
}
.cid-uJCEam0LGo .image-wrap img {
  height: 100%;
  object-fit: contain;
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (max-width: 991px) {
  .cid-uJCEam0LGo .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uJCEam0LGo .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uJCEam0LGo .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uJCEam0LGo .card-title,
.cid-uJCEam0LGo .social-row {
  color: #1a449a;
}
.cid-uJCEam0LGo .mbr-role,
.cid-uJCEam0LGo .social-row {
  color: #1a449a;
}
.cid-uJCEam0LGo .card-text,
.cid-uJCEam0LGo .mbr-section-btn,
.cid-uJCEam0LGo .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-uJCEam0LGo .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJCEam0LGo .card-title,
.cid-uJCEam0LGo .content-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uJCEam0LGo .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uJCDWMEGUk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c6c6c6;
}
.cid-uJCDWMEGUk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCDWMEGUk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJCDWMEGUk .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uJCDWMEGUk .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uJCDWMEGUk .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJCDWMEGUk .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uJCDWMEGUk .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uJCDWMEGUk .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uJCDWMEGUk .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uJCDWMEGUk .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uJCDWMEGUk .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uJCDWMEGUk .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJCDWMEGUk .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uJCDWMEGUk .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uJCDWMEGUk .items-wrapper .card {
  padding: 0 32px;
}
.cid-uJCDWMEGUk .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJCDWMEGUk .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJCDWMEGUk .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uJCDWMEGUk .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uJCDWMEGUk .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uJCDWMEGUk .list-wrapper .list .item-wrap:hover,
.cid-uJCDWMEGUk .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uJCDWMEGUk .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uJCDWMEGUk .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJCDWMEGUk .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJCDWMEGUk .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uJCDWMEGUk .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uJCDWMEGUk .mbr-copy {
  margin-bottom: 0;
  color: #111111;
  text-align: center;
}
.cid-uJCDWMEGUk .mbr-desc {
  color: #ffffff;
}
.cid-uJCDWMEGUk .mbr-text,
.cid-uJCDWMEGUk .text-wrapper {
  color: #9aa0a6;
}
.cid-uJCDWMEGUk .list {
  color: #9aa0a6;
}
.cid-uJCDWMEGUk .list,
.cid-uJCDWMEGUk .item-wrap {
  color: #111111;
}
.cid-uJCDWMEGUk .mbr-desc,
.cid-uJCDWMEGUk .content-wrapper {
  color: #111111;
}
.cid-uJCDWMEGUk .mbr-text,
.cid-uJCDWMEGUk .mbr-section-btn {
  color: #111111;
}
.cid-uJCDWMEGUk P {
  color: #111111;
}
.cid-uJCExhGOQy .navbar-dropdown {
  position: relative !important;
}
.cid-uJCExhGOQy .navbar-dropdown {
  position: absolute !important;
}
.cid-uJCExhGOQy .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-uJCExhGOQy .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uJCExhGOQy .dropdown-item:hover,
.cid-uJCExhGOQy .dropdown-item:focus {
  color: #2b9b9d !important;
}
.cid-uJCExhGOQy .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uJCExhGOQy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJCExhGOQy .nav-link {
  position: relative;
  padding: 0;
}
.cid-uJCExhGOQy .container {
  display: flex;
  margin: auto;
}
.cid-uJCExhGOQy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJCExhGOQy .dropdown-menu,
.cid-uJCExhGOQy .navbar.opened {
  background: #ffffff !important;
}
.cid-uJCExhGOQy .nav-item:focus,
.cid-uJCExhGOQy .nav-link:focus {
  outline: none;
}
.cid-uJCExhGOQy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJCExhGOQy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJCExhGOQy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJCExhGOQy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJCExhGOQy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJCExhGOQy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJCExhGOQy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.2);
}
.cid-uJCExhGOQy .navbar.opened {
  transition: all 0.3s;
}
.cid-uJCExhGOQy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJCExhGOQy .navbar .navbar-logo img {
  width: auto;
}
.cid-uJCExhGOQy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJCExhGOQy .navbar.collapsed {
  justify-content: center;
}
.cid-uJCExhGOQy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJCExhGOQy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJCExhGOQy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJCExhGOQy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJCExhGOQy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJCExhGOQy .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-uJCExhGOQy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJCExhGOQy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJCExhGOQy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJCExhGOQy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJCExhGOQy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJCExhGOQy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJCExhGOQy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJCExhGOQy .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-uJCExhGOQy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJCExhGOQy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJCExhGOQy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJCExhGOQy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJCExhGOQy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJCExhGOQy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJCExhGOQy .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJCExhGOQy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJCExhGOQy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJCExhGOQy .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-uJCExhGOQy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJCExhGOQy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJCExhGOQy .dropdown-item.active,
.cid-uJCExhGOQy .dropdown-item:active {
  background-color: transparent;
}
.cid-uJCExhGOQy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJCExhGOQy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJCExhGOQy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJCExhGOQy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJCExhGOQy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJCExhGOQy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJCExhGOQy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJCExhGOQy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJCExhGOQy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJCExhGOQy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJCExhGOQy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJCExhGOQy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJCExhGOQy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJCExhGOQy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJCExhGOQy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJCExhGOQy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJCExhGOQy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJCExhGOQy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJCExhGOQy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uJCExhGOQy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJCExhGOQy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJCExhGOQy .navbar {
    height: 70px;
  }
  .cid-uJCExhGOQy .navbar.opened {
    height: auto;
  }
  .cid-uJCExhGOQy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJCExhGOQy .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uJCExhGOQy .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uJCExhGOQy a {
  display: inline;
  font-weight: bold;
}
.cid-uJCExhGOQy img {
  display: inline;
  padding-right: 10px;
}
.cid-uJCExhGOQy .text-black:hover {
  color: #000000 !important;
}
.cid-uJCExhGOQy .dropdown-toggle:after {
  display: none;
}
.cid-uJCExhGOQy .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uJCExhGOQy .dropdown-item:hover {
  color: #2b9b9d !important;
}
.cid-uJCExhGOQy a.text-black:hover,
.cid-uJCExhGOQy a.text-black:focus,
.cid-uJCExhGOQy a.text-black.active {
  color: #000000;
}
@media (max-width: 990px) {
  .cid-uJCExhGOQy .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uJCExifMqn {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/photo-1621944668311-7a97c80f0190-cleanup.png-1974x1480.png");
}
.cid-uJCExifMqn P {
  color: #767676;
}
.cid-uJCExifMqn H1 {
  color: #000000;
}
.cid-uJCExifMqn .mbr-text,
.cid-uJCExifMqn .mbr-section-btn {
  color: #cf2f00;
}
.cid-uJCExiFyJi {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #f8f8f8;
}
.cid-uJCExiFyJi .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uJCExiFyJi .team-card:hover {
  transform: translateY(-10px);
}
.cid-uJCExiFyJi .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #2b9b9d;
}
.cid-uJCExiFyJi .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uJCExiFyJi .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uJCExiFyJi .image-wrap {
  height: 300px;
  padding-bottom: 2rem;
}
.cid-uJCExiFyJi .image-wrap img {
  height: 100%;
  object-fit: contain;
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (max-width: 991px) {
  .cid-uJCExiFyJi .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uJCExiFyJi .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uJCExiFyJi .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uJCExiFyJi .card-title,
.cid-uJCExiFyJi .social-row {
  color: #1a449a;
}
.cid-uJCExiFyJi .mbr-role,
.cid-uJCExiFyJi .social-row {
  color: #1a449a;
}
.cid-uJCExiFyJi .card-text,
.cid-uJCExiFyJi .mbr-section-btn,
.cid-uJCExiFyJi .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-uJCExiFyJi .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJCExiFyJi .card-title,
.cid-uJCExiFyJi .content-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uJCExiFyJi .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uJCExjCrgJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c6c6c6;
}
.cid-uJCExjCrgJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCExjCrgJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJCExjCrgJ .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uJCExjCrgJ .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uJCExjCrgJ .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJCExjCrgJ .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uJCExjCrgJ .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uJCExjCrgJ .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uJCExjCrgJ .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uJCExjCrgJ .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uJCExjCrgJ .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uJCExjCrgJ .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJCExjCrgJ .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uJCExjCrgJ .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uJCExjCrgJ .items-wrapper .card {
  padding: 0 32px;
}
.cid-uJCExjCrgJ .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJCExjCrgJ .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJCExjCrgJ .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uJCExjCrgJ .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uJCExjCrgJ .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uJCExjCrgJ .list-wrapper .list .item-wrap:hover,
.cid-uJCExjCrgJ .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uJCExjCrgJ .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uJCExjCrgJ .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJCExjCrgJ .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJCExjCrgJ .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uJCExjCrgJ .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uJCExjCrgJ .mbr-copy {
  margin-bottom: 0;
  color: #111111;
  text-align: center;
}
.cid-uJCExjCrgJ .mbr-desc {
  color: #ffffff;
}
.cid-uJCExjCrgJ .mbr-text,
.cid-uJCExjCrgJ .text-wrapper {
  color: #9aa0a6;
}
.cid-uJCExjCrgJ .list {
  color: #9aa0a6;
}
.cid-uJCExjCrgJ .list,
.cid-uJCExjCrgJ .item-wrap {
  color: #111111;
}
.cid-uJCExjCrgJ .mbr-desc,
.cid-uJCExjCrgJ .content-wrapper {
  color: #111111;
}
.cid-uJCExjCrgJ .mbr-text,
.cid-uJCExjCrgJ .mbr-section-btn {
  color: #111111;
}
.cid-uJCExjCrgJ P {
  color: #111111;
}
.cid-uHOBvgUA1P .navbar-dropdown {
  position: relative !important;
}
.cid-uHOBvgUA1P .navbar-dropdown {
  position: absolute !important;
}
.cid-uHOBvgUA1P .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-uHOBvgUA1P .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uHOBvgUA1P .dropdown-item:hover,
.cid-uHOBvgUA1P .dropdown-item:focus {
  color: #2b9b9d !important;
}
.cid-uHOBvgUA1P .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uHOBvgUA1P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHOBvgUA1P .nav-link {
  position: relative;
  padding: 0;
}
.cid-uHOBvgUA1P .container {
  display: flex;
  margin: auto;
}
.cid-uHOBvgUA1P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHOBvgUA1P .dropdown-menu,
.cid-uHOBvgUA1P .navbar.opened {
  background: #ffffff !important;
}
.cid-uHOBvgUA1P .nav-item:focus,
.cid-uHOBvgUA1P .nav-link:focus {
  outline: none;
}
.cid-uHOBvgUA1P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHOBvgUA1P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHOBvgUA1P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHOBvgUA1P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHOBvgUA1P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHOBvgUA1P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHOBvgUA1P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.2);
}
.cid-uHOBvgUA1P .navbar.opened {
  transition: all 0.3s;
}
.cid-uHOBvgUA1P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHOBvgUA1P .navbar .navbar-logo img {
  width: auto;
}
.cid-uHOBvgUA1P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHOBvgUA1P .navbar.collapsed {
  justify-content: center;
}
.cid-uHOBvgUA1P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHOBvgUA1P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHOBvgUA1P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uHOBvgUA1P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHOBvgUA1P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHOBvgUA1P .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-uHOBvgUA1P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHOBvgUA1P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHOBvgUA1P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHOBvgUA1P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHOBvgUA1P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHOBvgUA1P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHOBvgUA1P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHOBvgUA1P .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-uHOBvgUA1P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHOBvgUA1P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHOBvgUA1P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHOBvgUA1P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHOBvgUA1P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHOBvgUA1P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHOBvgUA1P .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHOBvgUA1P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHOBvgUA1P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHOBvgUA1P .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-uHOBvgUA1P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHOBvgUA1P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHOBvgUA1P .dropdown-item.active,
.cid-uHOBvgUA1P .dropdown-item:active {
  background-color: transparent;
}
.cid-uHOBvgUA1P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHOBvgUA1P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHOBvgUA1P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHOBvgUA1P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHOBvgUA1P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHOBvgUA1P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHOBvgUA1P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHOBvgUA1P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHOBvgUA1P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHOBvgUA1P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHOBvgUA1P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHOBvgUA1P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHOBvgUA1P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHOBvgUA1P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHOBvgUA1P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHOBvgUA1P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHOBvgUA1P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHOBvgUA1P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHOBvgUA1P .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHOBvgUA1P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHOBvgUA1P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHOBvgUA1P .navbar {
    height: 70px;
  }
  .cid-uHOBvgUA1P .navbar.opened {
    height: auto;
  }
  .cid-uHOBvgUA1P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHOBvgUA1P .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uHOBvgUA1P .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uHOBvgUA1P a {
  display: inline;
  font-weight: bold;
}
.cid-uHOBvgUA1P img {
  display: inline;
  padding-right: 10px;
}
.cid-uHOBvgUA1P .text-black:hover {
  color: #000000 !important;
}
.cid-uHOBvgUA1P .dropdown-toggle:after {
  display: none;
}
.cid-uHOBvgUA1P .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uHOBvgUA1P .dropdown-item:hover {
  color: #2b9b9d !important;
}
.cid-uHOBvgUA1P a.text-black:hover,
.cid-uHOBvgUA1P a.text-black:focus,
.cid-uHOBvgUA1P a.text-black.active {
  color: #000000;
}
@media (max-width: 990px) {
  .cid-uHOBvgUA1P .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uHOyNIHqQJ .parallax-slider-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}
.cid-uHOyNIHqQJ .parallax-bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cid-uHOyNIHqQJ .parallax-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease-in-out, transform 10s ease-in-out;
}
.cid-uHOyNIHqQJ .parallax-image.active {
  opacity: 1;
  transform: scale(1.5);
  z-index: 1;
}
.cid-uHOyNIHqQJ .parallax-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
}
.cid-uHOyNIHqQJ .title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.cid-uHOyNIHqQJ .subtitle {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .cid-uHOyNIHqQJ .title {
    font-size: 2rem;
  }
  .cid-uHOyNIHqQJ .subtitle {
    font-size: 1.1rem;
  }
}
.cid-uHOyNIHqQJ H1 {
  color: #164e4f;
}
.cid-uHOyNIHqQJ .audio-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  padding: 6px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
  opacity: 0.7;
}
.cid-uHOyNIHqQJ .audio-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}
.cid-uHOyNIHqQJ .audio-toggle img {
  width: 28px;
  height: 28px;
  filter: invert(1);
}
.cid-uHOyNIHqQJ .buttons-wrapper {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHOyNIHqQJ .btn-ver-destinos,
.cid-uHOyNIHqQJ .btn-fale-conosco {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.cid-uHOyNIHqQJ .btn-ver-destinos {
  background-color: #0d3b36;
  color: white;
}
.cid-uHOyNIHqQJ .btn-ver-destinos:hover {
  background-color: #145c53;
}
.cid-uHOyNIHqQJ .btn-fale-conosco {
  background-color: #e2b93b;
  color: black;
}
.cid-uHOyNIHqQJ .btn-fale-conosco:hover {
  background-color: #d9a620;
}
.cid-uHOyNIHqQJ H2 {
  color: #ff4712;
}
.cid-uHOyNIHqQJ H3 {
  color: #ff4712;
}
.cid-uJCzNaTlfi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uJCzNaTlfi .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 768px) {
  .cid-uJCzNaTlfi .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-uJCzNaTlfi .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-uJCzNaTlfi .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uJCzNaTlfi .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #84858a;
}
@media (max-width: 768px) {
  .cid-uJCzNaTlfi .mbr-text {
    padding: 0;
  }
}
.cid-t3PhwUgKcN {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3PhwUgKcN .row {
  justify-content: center;
}
.cid-t3PhwUgKcN .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PhwUgKcN .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
}
.cid-t3PhwUgKcN .card {
  padding: 0 15px;
}
.cid-t3PhwUgKcN .item-wrapper {
  height: 100%;
}
.cid-t3PhwUgKcN .card-wrapper {
  margin-bottom: 30px;
  border-radius: 0;
}
.cid-t3PhwUgKcN .card-wrapper .card-image {
  height: 306px;
  overflow: hidden;
  margin-bottom: 22px;
}
.cid-t3PhwUgKcN .card-wrapper .card-image img {
  height: 306px;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-t3PhwUgKcN .card-wrapper .card-text {
  margin: 0 0 26px 0;
  display: flex;
}
.cid-t3PhwUgKcN .card-wrapper .card-text .mbr-card-title {
  margin-bottom: 0;
}
.cid-t3PhwUgKcN .card-wrapper .card-text p {
  margin-right: 13px;
}
.cid-t3PhwUgKcN .card-wrapper .card-border {
  height: 1px;
  background: #20232a;
  opacity: .3;
  transition: all 1s linear;
}
.cid-t3PhwUgKcN .mbr-section-btn {
  margin-top: 33px;
}
.cid-t3PhwUgKcN .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PhwUgKcN .btn:hover {
  box-shadow: none;
}
.cid-t3PhwUgKcN .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-t3PhwUgKcN .card:hover .card-border {
  opacity: 1;
}
.cid-t3PhwUgKcN .mbr-section-title,
.cid-t3PhwUgKcN .mbr-section-btn {
  text-align: center;
  color: #164e4f;
}
.cid-uJC4ooDnMY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJC4ooDnMY .row {
  justify-content: center;
}
.cid-uJC4ooDnMY .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uJC4ooDnMY .mbr-section-title {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uJC4ooDnMY .content-card {
  margin-top: 40px;
}
.cid-uJC4ooDnMY .content-card .content-card-icon {
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  margin: 0 auto 38px;
}
.cid-uJC4ooDnMY .content-card .content-card-icon span {
  width: 42px;
  height: 42px;
  color: #ff4712;
  font-size: 42px;
}
.cid-uJC4ooDnMY .content-card .content-card-text .mbr-card-title {
  margin-bottom: 15px;
}
.cid-uJC4ooDnMY .content-card .content-card-text .mbr-card-text {
  margin-bottom: 0;
}
.cid-uJC4ooDnMY .mbr-card-title {
  color: #080808;
  text-align: center;
}
.cid-uJC4ooDnMY .mbr-card-text {
  color: #65676c;
  text-align: center;
}
.cid-uJC4ooDnMY .mbr-section-title,
.cid-uJC4ooDnMY .mbr-section-btn {
  color: #164e4f;
}
.cid-uHOyP75eZ8 {
  padding-top: 300px;
  padding-bottom: 300px;
  background-image: url("../../../assets/images/background2-3.jpg");
}
.cid-uHOyP75eZ8 .ico {
  position: absolute;
  right: 30px;
  top: 12px;
  z-index: 100;
}
.cid-uHOyP75eZ8 .ico span {
  font-size: 1.5rem;
  color: #656565;
}
.cid-uHOyP75eZ8 .relative {
  position: relative;
}
.cid-uHOyP75eZ8 .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHOyP75eZ8 .jq-selectbox__trigger-arrow {
  display: none;
}
.cid-uHOyP75eZ8 .jq-selectbox__select {
  padding: 10px 25px;
  min-height: 20px;
  height: 100%;
}
.cid-uHOyP75eZ8 .form-control {
  min-height: 49px;
  padding: 0;
}
.cid-uHOyP75eZ8 .form-group {
  text-align: left;
  border: 0px solid #CCC;
  border-radius: 5px;
}
.cid-uHOyP75eZ8 .jq-selectbox li.selected {
  background-color: #2c1ec6;
}
.cid-uHOyP75eZ8 .jq-selectbox li:hover {
  background-color: #2c1ec6;
}
.cid-uHOyP75eZ8 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #2c1ec6;
}
.cid-uHOyP75eZ8 .mbr-iconfont-btn {
  margin: 0;
}
.cid-uHOyP75eZ8 .jq-selectbox__dropdown {
  top: 45px !important;
}
.cid-uHOyP75eZ8 input.form-control {
  padding: 10px 25px;
  min-height: 49px;
}
.cid-uHOyP75eZ8 input.form-control:focus {
  outline: none;
  box-shadow: 0;
}
.cid-uHOyP75eZ8 input.form-control:active {
  outline: none;
  box-shadow: 0;
}
.cid-uHOyP75eZ8 .input-group-btn .btn {
  margin: 0 !important;
  border-radius: 5px;
  height: 49px;
  display: block;
  width: 100%;
}
.cid-uHOyP75eZ8 .input-group-btn {
  max-width: 260px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uHOyP75eZ8 .form-group {
    margin-bottom: 2rem;
  }
  .cid-uHOyP75eZ8 .align-left {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .cid-uHOyP75eZ8 .input-group-btn {
    margin: auto;
  }
}
.cid-uHOyP75eZ8 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uHOyP75eZ8 .mbr-section-sub-title {
  color: #ececec;
  text-align: center;
}
.cid-uHOyP75eZ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHOyP75eZ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHOyP75eZ8 LABEL {
  color: #ffffff;
}
.cid-uJCAmy8vIF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uJCAmy8vIF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCAmy8vIF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJCAmy8vIF .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uJCAmy8vIF .container-fluid {
    padding: 0 20px;
  }
}
.cid-uJCAmy8vIF .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJCAmy8vIF .container {
    padding: 0 20px;
  }
}
.cid-uJCAmy8vIF .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-uJCAmy8vIF .content-wrapper {
    padding: 46px 0;
  }
}
.cid-uJCAmy8vIF .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uJCAmy8vIF .dragArea.row .mbr-section-title {
  margin-bottom: 32px !important;
}
.cid-uJCAmy8vIF .dragArea.row .mbr-text {
  margin-bottom: 60px !important;
}
@media (max-width: 992px) {
  .cid-uJCAmy8vIF .dragArea.row .mbr-text {
    margin-bottom: 46px !important;
  }
}
.cid-uJCAmy8vIF .dragArea.row .form-group {
  margin-bottom: 46px !important;
}
.cid-uJCAmy8vIF .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uJCAmy8vIF .dragArea.row .form-group .form-control {
  padding: 0 0 8px 0;
  border: none !important;
  border-bottom: 1px solid #dcdde0 !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
}
.cid-uJCAmy8vIF .dragArea.row .form-group .form-control:hover,
.cid-uJCAmy8vIF .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #000000 !important;
}
.cid-uJCAmy8vIF .dragArea.row .form-group .form-control::placeholder {
  color: #dcdde0;
}
.cid-uJCAmy8vIF .dragArea.row .form-group textarea {
  min-height: 150px;
}
.cid-uJCAmy8vIF .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uJCAmy8vIF .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
  border-radius: 0;
}
.cid-uJCAmy8vIF .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uJCAmy8vIF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJCAmy8vIF .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uJCAmy8vIF .mbr-text,
.cid-uJCAmy8vIF .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uJCAmy8vIF label {
  color: #000000;
}
.cid-uJCAmy8vIF .mbr-section-btn {
  text-align: center;
}
.cid-uR0LT16Hc9 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f9f9fc;
}
.cid-uR0LT16Hc9 .text-content {
  padding-right: 10%;
}
@media (max-width: 992px) {
  .cid-uR0LT16Hc9 .text-content {
    padding: 0 12px;
  }
}
.cid-uR0LT16Hc9 .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-uR0LT16Hc9 .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
.cid-uR0LT16Hc9 .mbr-text {
  margin: 13.5px 0 0 0;
  color: #84858a;
}
.cid-uR0LT16Hc9 .address-wrapper {
  margin-top: 96px;
}
@media (max-width: 768px) {
  .cid-uR0LT16Hc9 .address-wrapper {
    margin: 20px 0 0 0;
  }
}
.cid-uR0LT16Hc9 .address-wrapper .mbr-address {
  margin: 0;
}
.cid-uR0LT16Hc9 .address-wrapper .mbr-address span {
  width: 58px;
  height: 58px;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin-right: 14px;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-uR0LT16Hc9 .address-wrapper .mbr-address span {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .cid-uR0LT16Hc9 .address-wrapper .mbr-address span {
    margin-bottom: 0;
  }
}
.cid-uR0LT16Hc9 .address-wrapper .mbr-text {
  margin: 14px 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uR0LT16Hc9 .address-wrapper .mbr-text {
    margin: 14px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-uR0LT16Hc9 .address-wrapper .mbr-text {
    margin: 6px 0 0 72px;
  }
}
.cid-uR0LT16Hc9 .address-wrapper:hover span {
  color: #2b9b9d;
}
.cid-uR0LT16Hc9 .contact-wrapper {
  margin-top: 96px;
}
@media (max-width: 768px) {
  .cid-uR0LT16Hc9 .contact-wrapper {
    margin: 20px 0 0 0;
  }
}
.cid-uR0LT16Hc9 .contact-wrapper .mbr-contact {
  margin: 0;
}
.cid-uR0LT16Hc9 .contact-wrapper .mbr-contact span {
  width: 58px;
  height: 58px;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin-right: 14px;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-uR0LT16Hc9 .contact-wrapper .mbr-contact span {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .cid-uR0LT16Hc9 .contact-wrapper .mbr-contact span {
    margin-bottom: 0;
  }
}
.cid-uR0LT16Hc9 .contact-wrapper .item-link {
  margin-top: 14px;
  margin-left: 72px;
  display: block;
}
@media (max-width: 992px) {
  .cid-uR0LT16Hc9 .contact-wrapper .item-link {
    margin: 14px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-uR0LT16Hc9 .contact-wrapper .item-link {
    margin: 6px 0 0 72px;
  }
}
.cid-uR0LT16Hc9 .contact-wrapper .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-uR0LT16Hc9 .contact-wrapper .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background-color: #6a6a6a;
  transition: all .4s ease;
}
.cid-uR0LT16Hc9 .contact-wrapper .mbr-phone {
  margin: 22px 0 0 0;
  padding-left: 0;
}
@media (max-width: 768px) {
  .cid-uR0LT16Hc9 .contact-wrapper .mbr-phone {
    margin: 6px 0 0 0;
  }
}
.cid-uR0LT16Hc9 .contact-wrapper:hover span {
  color: #2b9b9d;
}
.cid-uR0LT16Hc9 .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-uR0LT16Hc9 .mbr-address,
.cid-uR0LT16Hc9 .mbr-iconfont,
.cid-uR0LT16Hc9 .mbr-contact {
  color: #20232a;
}
.cid-uR0LT16Hc9 .mbr-link {
  color: #84858a;
}
.cid-uR0LT16Hc9 .mbr-phone {
  color: #20232a;
  text-align: left;
}
.cid-uR0LT16Hc9 .contact-wrapper .mbr-link {
  font-size: 1rem;
  line-height: 1.6;
  word-break: break-word;
  max-width: 100%;
}
.cid-uR0LT16Hc9 .contact-wrapper .item-link {
  margin-left: 0;
  width: 100%;
}
.cid-t3Pi11o6NE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background: #f0f0f5;
}
.cid-t3Pi11o6NE .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-t3Pi11o6NE .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-t3Pi11o6NE .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-t3Pi11o6NE .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-t3Pi11o6NE .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-t3Pi11o6NE .google-map {
  height: 30rem;
  position: relative;
}
.cid-t3Pi11o6NE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t3Pi11o6NE .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-t3Pi11o6NE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t3Pi11o6NE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t3Pi11o6NE .mbr-section-subtitle {
  color: #FF4712;
  text-align: center;
}
.cid-t3Pi11o6NE .mbr-section-title {
  color: #20232a;
  text-align: center;
}
.cid-t3Pk5tSusi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3Pk5tSusi .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-t3Pk5tSusi .row {
    padding: 0 12px;
  }
}
.cid-t3Pk5tSusi .card {
  padding: 0;
  height: 380px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-t3Pk5tSusi .card {
    height: 280px;
  }
}
.cid-t3Pk5tSusi .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-t3Pk5tSusi .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-t3Pk5tSusi .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3Pk5tSusi .card-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #20232a;
  opacity: .3;
  z-index: 1;
  pointer-events: none;
}
.cid-t3Pk5tSusi .card-wrapper {
  padding: 44px 34px;
}
.cid-t3Pk5tSusi .card-wrapper .mbr-section-title {
  margin: 0;
  pointer-events: visible;
}
.cid-t3Pk5tSusi .card-wrapper .mbr-text {
  margin: 7px 0 0 0;
  pointer-events: visible;
  letter-spacing: 1px;
}
.cid-t3Pk5tSusi .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3Pk5tSusi .mbr-text {
  color: #fffa00;
  text-align: center;
}
.cid-uJCsUkWMBu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c6c6c6;
}
.cid-uJCsUkWMBu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCsUkWMBu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uJCsUkWMBu .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJCsUkWMBu .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uJCsUkWMBu .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJCsUkWMBu .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uJCsUkWMBu .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uJCsUkWMBu .items-wrapper .card {
  padding: 0 32px;
}
.cid-uJCsUkWMBu .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJCsUkWMBu .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJCsUkWMBu .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uJCsUkWMBu .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uJCsUkWMBu .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uJCsUkWMBu .list-wrapper .list .item-wrap:hover,
.cid-uJCsUkWMBu .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uJCsUkWMBu .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uJCsUkWMBu .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJCsUkWMBu .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJCsUkWMBu .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uJCsUkWMBu .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uJCsUkWMBu .mbr-copy {
  margin-bottom: 0;
  color: #111111;
  text-align: center;
}
.cid-uJCsUkWMBu .mbr-desc {
  color: #ffffff;
}
.cid-uJCsUkWMBu .mbr-text,
.cid-uJCsUkWMBu .text-wrapper {
  color: #9aa0a6;
}
.cid-uJCsUkWMBu .list {
  color: #9aa0a6;
}
.cid-uJCsUkWMBu .list,
.cid-uJCsUkWMBu .item-wrap {
  color: #111111;
}
.cid-uJCsUkWMBu .mbr-desc,
.cid-uJCsUkWMBu .content-wrapper {
  color: #111111;
}
.cid-uJCsUkWMBu .mbr-text,
.cid-uJCsUkWMBu .mbr-section-btn {
  color: #111111;
}
.cid-uJCsUkWMBu P {
  color: #111111;
}
.cid-uJCd89WI8L .navbar-dropdown {
  position: relative !important;
}
.cid-uJCd89WI8L .navbar-dropdown {
  position: absolute !important;
}
.cid-uJCd89WI8L .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-uJCd89WI8L .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uJCd89WI8L .dropdown-item:hover,
.cid-uJCd89WI8L .dropdown-item:focus {
  color: #2b9b9d !important;
}
.cid-uJCd89WI8L .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uJCd89WI8L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJCd89WI8L .nav-link {
  position: relative;
  padding: 0;
}
.cid-uJCd89WI8L .container {
  display: flex;
  margin: auto;
}
.cid-uJCd89WI8L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJCd89WI8L .dropdown-menu,
.cid-uJCd89WI8L .navbar.opened {
  background: #ffffff !important;
}
.cid-uJCd89WI8L .nav-item:focus,
.cid-uJCd89WI8L .nav-link:focus {
  outline: none;
}
.cid-uJCd89WI8L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJCd89WI8L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJCd89WI8L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJCd89WI8L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJCd89WI8L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJCd89WI8L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJCd89WI8L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.2);
}
.cid-uJCd89WI8L .navbar.opened {
  transition: all 0.3s;
}
.cid-uJCd89WI8L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJCd89WI8L .navbar .navbar-logo img {
  width: auto;
}
.cid-uJCd89WI8L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJCd89WI8L .navbar.collapsed {
  justify-content: center;
}
.cid-uJCd89WI8L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJCd89WI8L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJCd89WI8L .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-uJCd89WI8L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJCd89WI8L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJCd89WI8L .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-uJCd89WI8L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJCd89WI8L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJCd89WI8L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJCd89WI8L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJCd89WI8L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJCd89WI8L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJCd89WI8L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJCd89WI8L .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-uJCd89WI8L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJCd89WI8L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJCd89WI8L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJCd89WI8L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJCd89WI8L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJCd89WI8L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJCd89WI8L .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJCd89WI8L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJCd89WI8L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJCd89WI8L .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-uJCd89WI8L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJCd89WI8L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJCd89WI8L .dropdown-item.active,
.cid-uJCd89WI8L .dropdown-item:active {
  background-color: transparent;
}
.cid-uJCd89WI8L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJCd89WI8L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJCd89WI8L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJCd89WI8L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJCd89WI8L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJCd89WI8L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJCd89WI8L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJCd89WI8L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJCd89WI8L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJCd89WI8L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJCd89WI8L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJCd89WI8L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJCd89WI8L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJCd89WI8L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJCd89WI8L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJCd89WI8L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJCd89WI8L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJCd89WI8L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJCd89WI8L .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uJCd89WI8L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJCd89WI8L .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJCd89WI8L .navbar {
    height: 70px;
  }
  .cid-uJCd89WI8L .navbar.opened {
    height: auto;
  }
  .cid-uJCd89WI8L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJCd89WI8L .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uJCd89WI8L .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uJCd89WI8L a {
  display: inline;
  font-weight: bold;
}
.cid-uJCd89WI8L img {
  display: inline;
  padding-right: 10px;
}
.cid-uJCd89WI8L .text-black:hover {
  color: #000000 !important;
}
.cid-uJCd89WI8L .dropdown-toggle:after {
  display: none;
}
.cid-uJCd89WI8L .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uJCd89WI8L .dropdown-item:hover {
  color: #2b9b9d !important;
}
.cid-uJCd89WI8L a.text-black:hover,
.cid-uJCd89WI8L a.text-black:focus,
.cid-uJCd89WI8L a.text-black.active {
  color: #000000;
}
@media (max-width: 990px) {
  .cid-uJCd89WI8L .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uJCd8hx5Af {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/photo-1621944668311-7a97c80f0190-cleanup.png-1974x1480.png");
}
.cid-uJCd8hx5Af P {
  color: #767676;
}
.cid-uJCd8hx5Af H1 {
  color: #000000;
}
.cid-uJCd8hx5Af .mbr-text,
.cid-uJCd8hx5Af .mbr-section-btn {
  color: #cf2f00;
}
.cid-uJCfZfM745 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f0f0f5;
}
.cid-uJCfZfM745 .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uJCfZfM745 .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uJCfZfM745 .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uJCfZfM745 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uJCfZfM745 .btn:hover {
  box-shadow: none;
}
.cid-uJCfZfM745 .mbr-section-title,
.cid-uJCfZfM745 .mbr-section-btn {
  text-align: center;
  color: #164e4f;
}
.cid-uJCezrp3bt {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJCezrp3bt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCezrp3bt .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-uJCezrp3bt .container {
    padding: 0 30px;
  }
}
.cid-uJCezrp3bt .items-wrapper .item:first-child {
  position: relative;
}
.cid-uJCezrp3bt .items-wrapper .item:first-child::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: 2rem;
  width: 98px;
  height: 98px;
  border-radius: 100%;
  background-color: #f1d788;
  opacity: .9;
}
.cid-uJCezrp3bt .items-wrapper .item:first-child .item-wrapper .item-content {
  position: relative;
  overflow: hidden;
}
.cid-uJCezrp3bt .items-wrapper .item:first-child .item-wrapper .item-content::before {
  content: '';
  position: absolute;
  bottom: -131px;
  right: 4rem;
  width: 222px;
  height: 222px;
  border-radius: 100%;
  background-color: #f5eedb;
}
.cid-uJCezrp3bt .items-wrapper .item:last-child {
  position: relative;
}
.cid-uJCezrp3bt .items-wrapper .item:last-child::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 43%;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: #f1c7b1;
  opacity: .9;
}
.cid-uJCezrp3bt .items-wrapper .item:nth-child(2n) .item-wrapper {
  flex-direction: row;
}
.cid-uJCezrp3bt .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-uJCezrp3bt .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uJCezrp3bt .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uJCezrp3bt .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uJCezrp3bt .items-wrapper .item .item-wrapper .item-img img {
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uJCezrp3bt .items-wrapper .item .item-wrapper .item-img img {
    min-height: auto;
    height: 350px;
  }
}
.cid-uJCezrp3bt .items-wrapper .item .item-wrapper .card {
  justify-content: center;
}
.cid-uJCezrp3bt .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uJCezrp3bt .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 40px 0;
  }
}
.cid-uJCezrp3bt .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 35px;
}
.cid-uJCezrp3bt .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 25px;
}
.cid-uJCezrp3bt .item-title {
  color: #144031;
}
.cid-uJCezrp3bt .item-text {
  color: #144031;
}
.cid-uJChUf13jH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJChUf13jH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJChUf13jH .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-uJChUf13jH .container {
    padding: 0 30px;
  }
}
.cid-uJChUf13jH .items-wrapper .item:first-child {
  position: relative;
}
.cid-uJChUf13jH .items-wrapper .item:first-child::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: 2rem;
  width: 98px;
  height: 98px;
  border-radius: 100%;
  background-color: #f1d788;
  opacity: .9;
}
.cid-uJChUf13jH .items-wrapper .item:first-child .item-wrapper .item-content {
  position: relative;
  overflow: hidden;
}
.cid-uJChUf13jH .items-wrapper .item:first-child .item-wrapper .item-content::before {
  content: '';
  position: absolute;
  bottom: -131px;
  right: 4rem;
  width: 222px;
  height: 222px;
  border-radius: 100%;
  background-color: #f5eedb;
}
.cid-uJChUf13jH .items-wrapper .item:last-child {
  position: relative;
}
.cid-uJChUf13jH .items-wrapper .item:last-child::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 43%;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: #f1c7b1;
  opacity: .9;
}
.cid-uJChUf13jH .items-wrapper .item:nth-child(2n) .item-wrapper {
  flex-direction: row;
}
.cid-uJChUf13jH .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-uJChUf13jH .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uJChUf13jH .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uJChUf13jH .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uJChUf13jH .items-wrapper .item .item-wrapper .item-img img {
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uJChUf13jH .items-wrapper .item .item-wrapper .item-img img {
    min-height: auto;
    height: 350px;
  }
}
.cid-uJChUf13jH .items-wrapper .item .item-wrapper .card {
  justify-content: center;
}
.cid-uJChUf13jH .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uJChUf13jH .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 40px 0;
  }
}
.cid-uJChUf13jH .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 35px;
}
.cid-uJChUf13jH .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 25px;
}
.cid-uJChUf13jH .item-title {
  color: #144031;
}
.cid-uJChUf13jH .item-text {
  color: #144031;
}
.cid-uJCjyzY3LU {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f0f0f5;
}
.cid-uJCjyzY3LU .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uJCjyzY3LU .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uJCjyzY3LU .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uJCjyzY3LU .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uJCjyzY3LU .btn:hover {
  box-shadow: none;
}
.cid-uJCjyzY3LU .mbr-section-title,
.cid-uJCjyzY3LU .mbr-section-btn {
  text-align: center;
  color: #164e4f;
}
.cid-uJCjBFYcKA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJCjBFYcKA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCjBFYcKA .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-uJCjBFYcKA .container {
    padding: 0 30px;
  }
}
.cid-uJCjBFYcKA .items-wrapper .item:first-child {
  position: relative;
}
.cid-uJCjBFYcKA .items-wrapper .item:first-child::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: 2rem;
  width: 98px;
  height: 98px;
  border-radius: 100%;
  background-color: #f1d788;
  opacity: .9;
}
.cid-uJCjBFYcKA .items-wrapper .item:first-child .item-wrapper .item-content {
  position: relative;
  overflow: hidden;
}
.cid-uJCjBFYcKA .items-wrapper .item:first-child .item-wrapper .item-content::before {
  content: '';
  position: absolute;
  bottom: -131px;
  right: 4rem;
  width: 222px;
  height: 222px;
  border-radius: 100%;
  background-color: #f5eedb;
}
.cid-uJCjBFYcKA .items-wrapper .item:last-child {
  position: relative;
}
.cid-uJCjBFYcKA .items-wrapper .item:last-child::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 43%;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: #f1c7b1;
  opacity: .9;
}
.cid-uJCjBFYcKA .items-wrapper .item:nth-child(2n) .item-wrapper {
  flex-direction: row;
}
.cid-uJCjBFYcKA .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-uJCjBFYcKA .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uJCjBFYcKA .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uJCjBFYcKA .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uJCjBFYcKA .items-wrapper .item .item-wrapper .item-img img {
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uJCjBFYcKA .items-wrapper .item .item-wrapper .item-img img {
    min-height: auto;
    height: 350px;
  }
}
.cid-uJCjBFYcKA .items-wrapper .item .item-wrapper .card {
  justify-content: center;
}
.cid-uJCjBFYcKA .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uJCjBFYcKA .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 40px 0;
  }
}
.cid-uJCjBFYcKA .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 35px;
}
.cid-uJCjBFYcKA .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 25px;
}
.cid-uJCjBFYcKA .item-title {
  color: #144031;
}
.cid-uJCjBFYcKA .item-text {
  color: #144031;
}
.cid-uJClukZEDb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJClukZEDb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJClukZEDb .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-uJClukZEDb .container {
    padding: 0 30px;
  }
}
.cid-uJClukZEDb .items-wrapper .item:first-child {
  position: relative;
}
.cid-uJClukZEDb .items-wrapper .item:first-child::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: 2rem;
  width: 98px;
  height: 98px;
  border-radius: 100%;
  background-color: #f1d788;
  opacity: .9;
}
.cid-uJClukZEDb .items-wrapper .item:first-child .item-wrapper .item-content {
  position: relative;
  overflow: hidden;
}
.cid-uJClukZEDb .items-wrapper .item:first-child .item-wrapper .item-content::before {
  content: '';
  position: absolute;
  bottom: -131px;
  right: 4rem;
  width: 222px;
  height: 222px;
  border-radius: 100%;
  background-color: #f5eedb;
}
.cid-uJClukZEDb .items-wrapper .item:last-child {
  position: relative;
}
.cid-uJClukZEDb .items-wrapper .item:last-child::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 43%;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: #f1c7b1;
  opacity: .9;
}
.cid-uJClukZEDb .items-wrapper .item:nth-child(2n) .item-wrapper {
  flex-direction: row;
}
.cid-uJClukZEDb .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-uJClukZEDb .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uJClukZEDb .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uJClukZEDb .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uJClukZEDb .items-wrapper .item .item-wrapper .item-img img {
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uJClukZEDb .items-wrapper .item .item-wrapper .item-img img {
    min-height: auto;
    height: 350px;
  }
}
.cid-uJClukZEDb .items-wrapper .item .item-wrapper .card {
  justify-content: center;
}
.cid-uJClukZEDb .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uJClukZEDb .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 40px 0;
  }
}
.cid-uJClukZEDb .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 35px;
}
.cid-uJClukZEDb .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 25px;
}
.cid-uJClukZEDb .item-title {
  color: #144031;
}
.cid-uJClukZEDb .item-text {
  color: #144031;
}
.cid-uJCnixpelB {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f0f0f5;
}
.cid-uJCnixpelB .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uJCnixpelB .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uJCnixpelB .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uJCnixpelB .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uJCnixpelB .btn:hover {
  box-shadow: none;
}
.cid-uJCnixpelB .mbr-section-title,
.cid-uJCnixpelB .mbr-section-btn {
  text-align: center;
  color: #164e4f;
}
.cid-uJCnJmdxU7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJCnJmdxU7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCnJmdxU7 .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-uJCnJmdxU7 .container {
    padding: 0 30px;
  }
}
.cid-uJCnJmdxU7 .items-wrapper .item:first-child {
  position: relative;
}
.cid-uJCnJmdxU7 .items-wrapper .item:first-child::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: 2rem;
  width: 98px;
  height: 98px;
  border-radius: 100%;
  background-color: #f1d788;
  opacity: .9;
}
.cid-uJCnJmdxU7 .items-wrapper .item:first-child .item-wrapper .item-content {
  position: relative;
  overflow: hidden;
}
.cid-uJCnJmdxU7 .items-wrapper .item:first-child .item-wrapper .item-content::before {
  content: '';
  position: absolute;
  bottom: -131px;
  right: 4rem;
  width: 222px;
  height: 222px;
  border-radius: 100%;
  background-color: #f5eedb;
}
.cid-uJCnJmdxU7 .items-wrapper .item:last-child {
  position: relative;
}
.cid-uJCnJmdxU7 .items-wrapper .item:last-child::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 43%;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: #f1c7b1;
  opacity: .9;
}
.cid-uJCnJmdxU7 .items-wrapper .item:nth-child(2n) .item-wrapper {
  flex-direction: row;
}
.cid-uJCnJmdxU7 .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-uJCnJmdxU7 .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uJCnJmdxU7 .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uJCnJmdxU7 .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uJCnJmdxU7 .items-wrapper .item .item-wrapper .item-img img {
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uJCnJmdxU7 .items-wrapper .item .item-wrapper .item-img img {
    min-height: auto;
    height: 350px;
  }
}
.cid-uJCnJmdxU7 .items-wrapper .item .item-wrapper .card {
  justify-content: center;
}
.cid-uJCnJmdxU7 .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uJCnJmdxU7 .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 40px 0;
  }
}
.cid-uJCnJmdxU7 .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 35px;
}
.cid-uJCnJmdxU7 .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 25px;
}
.cid-uJCnJmdxU7 .item-title {
  color: #144031;
}
.cid-uJCnJmdxU7 .item-text {
  color: #144031;
}
.cid-uJCnOrFLGY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJCnOrFLGY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCnOrFLGY .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-uJCnOrFLGY .container {
    padding: 0 30px;
  }
}
.cid-uJCnOrFLGY .items-wrapper .item:first-child {
  position: relative;
}
.cid-uJCnOrFLGY .items-wrapper .item:first-child::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: 2rem;
  width: 98px;
  height: 98px;
  border-radius: 100%;
  background-color: #f1d788;
  opacity: .9;
}
.cid-uJCnOrFLGY .items-wrapper .item:first-child .item-wrapper .item-content {
  position: relative;
  overflow: hidden;
}
.cid-uJCnOrFLGY .items-wrapper .item:first-child .item-wrapper .item-content::before {
  content: '';
  position: absolute;
  bottom: -131px;
  right: 4rem;
  width: 222px;
  height: 222px;
  border-radius: 100%;
  background-color: #f5eedb;
}
.cid-uJCnOrFLGY .items-wrapper .item:last-child {
  position: relative;
}
.cid-uJCnOrFLGY .items-wrapper .item:last-child::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 43%;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: #f1c7b1;
  opacity: .9;
}
.cid-uJCnOrFLGY .items-wrapper .item:nth-child(2n) .item-wrapper {
  flex-direction: row;
}
.cid-uJCnOrFLGY .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-uJCnOrFLGY .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uJCnOrFLGY .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uJCnOrFLGY .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uJCnOrFLGY .items-wrapper .item .item-wrapper .item-img img {
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uJCnOrFLGY .items-wrapper .item .item-wrapper .item-img img {
    min-height: auto;
    height: 350px;
  }
}
.cid-uJCnOrFLGY .items-wrapper .item .item-wrapper .card {
  justify-content: center;
}
.cid-uJCnOrFLGY .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uJCnOrFLGY .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 40px 0;
  }
}
.cid-uJCnOrFLGY .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 35px;
}
.cid-uJCnOrFLGY .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 25px;
}
.cid-uJCnOrFLGY .item-title {
  color: #144031;
}
.cid-uJCnOrFLGY .item-text {
  color: #144031;
}
.cid-uJCd8bKFUv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJCd8bKFUv .row {
  justify-content: center;
}
.cid-uJCd8bKFUv .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uJCd8bKFUv .mbr-section-title {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uJCd8bKFUv .content-card {
  margin-top: 40px;
}
.cid-uJCd8bKFUv .content-card .content-card-icon {
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  margin: 0 auto 38px;
}
.cid-uJCd8bKFUv .content-card .content-card-icon span {
  width: 42px;
  height: 42px;
  color: #ff4712;
  font-size: 42px;
}
.cid-uJCd8bKFUv .content-card .content-card-text .mbr-card-title {
  margin-bottom: 15px;
}
.cid-uJCd8bKFUv .content-card .content-card-text .mbr-card-text {
  margin-bottom: 0;
}
.cid-uJCd8bKFUv .mbr-card-title {
  color: #080808;
  text-align: center;
}
.cid-uJCd8bKFUv .mbr-card-text {
  color: #65676c;
  text-align: center;
}
.cid-uJCd8bKFUv .mbr-section-title,
.cid-uJCd8bKFUv .mbr-section-btn {
  color: #164e4f;
}
.cid-uJCDQ1DgqM {
  padding-top: 300px;
  padding-bottom: 300px;
  background-image: url("../../../assets/images/background2-3.jpg");
}
.cid-uJCDQ1DgqM .ico {
  position: absolute;
  right: 30px;
  top: 12px;
  z-index: 100;
}
.cid-uJCDQ1DgqM .ico span {
  font-size: 1.5rem;
  color: #656565;
}
.cid-uJCDQ1DgqM .relative {
  position: relative;
}
.cid-uJCDQ1DgqM .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uJCDQ1DgqM .jq-selectbox__trigger-arrow {
  display: none;
}
.cid-uJCDQ1DgqM .jq-selectbox__select {
  padding: 10px 25px;
  min-height: 20px;
  height: 100%;
}
.cid-uJCDQ1DgqM .form-control {
  min-height: 49px;
  padding: 0;
}
.cid-uJCDQ1DgqM .form-group {
  text-align: left;
  border: 0px solid #CCC;
  border-radius: 5px;
}
.cid-uJCDQ1DgqM .jq-selectbox li.selected {
  background-color: #2c1ec6;
}
.cid-uJCDQ1DgqM .jq-selectbox li:hover {
  background-color: #2c1ec6;
}
.cid-uJCDQ1DgqM .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #2c1ec6;
}
.cid-uJCDQ1DgqM .mbr-iconfont-btn {
  margin: 0;
}
.cid-uJCDQ1DgqM .jq-selectbox__dropdown {
  top: 45px !important;
}
.cid-uJCDQ1DgqM input.form-control {
  padding: 10px 25px;
  min-height: 49px;
}
.cid-uJCDQ1DgqM input.form-control:focus {
  outline: none;
  box-shadow: 0;
}
.cid-uJCDQ1DgqM input.form-control:active {
  outline: none;
  box-shadow: 0;
}
.cid-uJCDQ1DgqM .input-group-btn .btn {
  margin: 0 !important;
  border-radius: 5px;
  height: 49px;
  display: block;
  width: 100%;
}
.cid-uJCDQ1DgqM .input-group-btn {
  max-width: 260px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uJCDQ1DgqM .form-group {
    margin-bottom: 2rem;
  }
  .cid-uJCDQ1DgqM .align-left {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .cid-uJCDQ1DgqM .input-group-btn {
    margin: auto;
  }
}
.cid-uJCDQ1DgqM .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uJCDQ1DgqM .mbr-section-sub-title {
  color: #ececec;
  text-align: center;
}
.cid-uJCDQ1DgqM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCDQ1DgqM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJCDQ1DgqM LABEL {
  color: #ffffff;
}
.cid-uJCd8g3Ifr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJCd8g3Ifr .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uJCd8g3Ifr .row {
    padding: 0 12px;
  }
}
.cid-uJCd8g3Ifr .card {
  padding: 0;
  height: 380px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uJCd8g3Ifr .card {
    height: 280px;
  }
}
.cid-uJCd8g3Ifr .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-uJCd8g3Ifr .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-uJCd8g3Ifr .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJCd8g3Ifr .card-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #20232a;
  opacity: .3;
  z-index: 1;
  pointer-events: none;
}
.cid-uJCd8g3Ifr .card-wrapper {
  padding: 44px 34px;
}
.cid-uJCd8g3Ifr .card-wrapper .mbr-section-title {
  margin: 0;
  pointer-events: visible;
}
.cid-uJCd8g3Ifr .card-wrapper .mbr-text {
  margin: 7px 0 0 0;
  pointer-events: visible;
  letter-spacing: 1px;
}
.cid-uJCd8g3Ifr .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-uJCd8g3Ifr .mbr-text {
  color: #fffa00;
  text-align: center;
}
.cid-uJCsUkWMBu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c6c6c6;
}
.cid-uJCsUkWMBu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCsUkWMBu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uJCsUkWMBu .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJCsUkWMBu .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uJCsUkWMBu .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uJCsUkWMBu .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJCsUkWMBu .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uJCsUkWMBu .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uJCsUkWMBu .items-wrapper .card {
  padding: 0 32px;
}
.cid-uJCsUkWMBu .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJCsUkWMBu .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJCsUkWMBu .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uJCsUkWMBu .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uJCsUkWMBu .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uJCsUkWMBu .list-wrapper .list .item-wrap:hover,
.cid-uJCsUkWMBu .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uJCsUkWMBu .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uJCsUkWMBu .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJCsUkWMBu .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJCsUkWMBu .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uJCsUkWMBu .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uJCsUkWMBu .mbr-copy {
  margin-bottom: 0;
  color: #111111;
  text-align: center;
}
.cid-uJCsUkWMBu .mbr-desc {
  color: #ffffff;
}
.cid-uJCsUkWMBu .mbr-text,
.cid-uJCsUkWMBu .text-wrapper {
  color: #9aa0a6;
}
.cid-uJCsUkWMBu .list {
  color: #9aa0a6;
}
.cid-uJCsUkWMBu .list,
.cid-uJCsUkWMBu .item-wrap {
  color: #111111;
}
.cid-uJCsUkWMBu .mbr-desc,
.cid-uJCsUkWMBu .content-wrapper {
  color: #111111;
}
.cid-uJCsUkWMBu .mbr-text,
.cid-uJCsUkWMBu .mbr-section-btn {
  color: #111111;
}
.cid-uJCsUkWMBu P {
  color: #111111;
}
