.btn {
  border-width: 2px;
}
body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-7 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #d5c409 !important;
}
.bg-success {
  background-color: #d5c409 !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: #d5c409 !important;
  border-color: #d5c409 !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: #827705 !important;
  border-color: #827705 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #827705 !important;
  border-color: #827705 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #1d5356 !important;
  border-color: #1d5356 !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: #071415 !important;
  border-color: #071415 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #071415 !important;
  border-color: #071415 !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: #d5c409 !important;
  border-color: #d5c409 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #827705 !important;
  border-color: #827705 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #827705 !important;
  border-color: #827705 !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: #d5c409;
  color: #d5c409;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #827705 !important;
  background-color: transparent !important;
  border-color: #827705 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #d5c409 !important;
  border-color: #d5c409 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #1d5356;
  color: #1d5356;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #071415 !important;
  background-color: transparent !important;
  border-color: #071415 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1d5356 !important;
  border-color: #1d5356 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: #148cca !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #d5c409;
  color: #d5c409;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #827705 !important;
  background-color: transparent !important;
  border-color: #827705 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #d5c409 !important;
  border-color: #d5c409 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #d5c409 !important;
}
.text-secondary {
  color: #1d5356 !important;
}
.text-success {
  color: #d5c409 !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: #736a05 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #03090a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #736a05 !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;
}
.nav-tabs .nav-link.active {
  color: #d5c409;
}
.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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #d5c409;
  border-color: #d5c409;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #d5c409;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fcf5ae;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fcf5ae;
}
.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: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #d5c409 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #d5c409;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #d5c409;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #d5c409;
}
.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: #d5c409;
  border-bottom-color: #d5c409;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #d5c409 !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: #1d5356 !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='%23d5c409' %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-toEkkhFSpv {
  z-index: 1000;
  width: 100%;
}
.cid-toEkkhFSpv nav.navbar {
  position: fixed;
}
.cid-toEkkhFSpv .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-toEkkhFSpv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toEkkhFSpv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toEkkhFSpv .dropdown-item:hover,
.cid-toEkkhFSpv .dropdown-item:focus {
  background: #d5c409 !important;
  color: white !important;
}
.cid-toEkkhFSpv .dropdown-item:hover span {
  color: white;
}
.cid-toEkkhFSpv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toEkkhFSpv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toEkkhFSpv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toEkkhFSpv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toEkkhFSpv .nav-link {
  position: relative;
}
.cid-toEkkhFSpv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toEkkhFSpv .container {
    flex-wrap: nowrap;
  }
}
.cid-toEkkhFSpv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toEkkhFSpv .dropdown-menu,
.cid-toEkkhFSpv .navbar.opened {
  background: #ecede8 !important;
}
.cid-toEkkhFSpv .nav-item:focus,
.cid-toEkkhFSpv .nav-link:focus {
  outline: none;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toEkkhFSpv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toEkkhFSpv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toEkkhFSpv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(236, 237, 232, 0.7);
  backdrop-filter: blur(5px);
}
.cid-toEkkhFSpv .navbar.opened {
  transition: all 0.3s;
}
.cid-toEkkhFSpv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toEkkhFSpv .navbar .navbar-logo img {
  width: auto;
}
.cid-toEkkhFSpv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toEkkhFSpv .navbar.collapsed {
  justify-content: center;
}
.cid-toEkkhFSpv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toEkkhFSpv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toEkkhFSpv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-toEkkhFSpv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toEkkhFSpv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toEkkhFSpv .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-toEkkhFSpv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toEkkhFSpv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toEkkhFSpv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toEkkhFSpv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toEkkhFSpv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toEkkhFSpv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toEkkhFSpv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toEkkhFSpv .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-toEkkhFSpv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toEkkhFSpv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toEkkhFSpv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toEkkhFSpv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toEkkhFSpv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toEkkhFSpv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toEkkhFSpv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toEkkhFSpv .navbar.navbar-short {
  min-height: 60px;
}
.cid-toEkkhFSpv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toEkkhFSpv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toEkkhFSpv .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-toEkkhFSpv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toEkkhFSpv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toEkkhFSpv .dropdown-item.active,
.cid-toEkkhFSpv .dropdown-item:active {
  background-color: transparent;
}
.cid-toEkkhFSpv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toEkkhFSpv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toEkkhFSpv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toEkkhFSpv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ecede8;
}
.cid-toEkkhFSpv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toEkkhFSpv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toEkkhFSpv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toEkkhFSpv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toEkkhFSpv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toEkkhFSpv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toEkkhFSpv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toEkkhFSpv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-toEkkhFSpv .navbar {
    height: 70px;
  }
  .cid-toEkkhFSpv .navbar.opened {
    height: auto;
  }
  .cid-toEkkhFSpv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toEkoxVW1G {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/aed-usage-faq-2000x1467.jpg");
}
.cid-toEkoxVW1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-toEkoxVW1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-toEkoxVW1G .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-toEkoxVW1G .col {
    width: 45%;
  }
}
.cid-toEkoxVW1G .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-toEkoxVW1G .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-toEkoxVW1G .card-wrapper h1,
.cid-toEkoxVW1G .card-wrapper h2,
.cid-toEkoxVW1G .card-wrapper p,
.cid-toEkoxVW1G .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-toEkoxVW1G .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1d5356;
  opacity: 0.8;
}
.cid-toEkoxVW1G .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-toEkoxVW1G .mbr-section-subtitle {
  color: #ffffff;
}
.cid-toEkoxVW1G .mbr-text,
.cid-toEkoxVW1G .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tV58Im2626 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-tV58Im2626 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV58Im2626 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV58Im2626 img {
  border-radius: 3rem;
  border-bottom-left-radius: 20rem;
}
@media (max-width: 767px) {
  .cid-tV58Im2626 img {
    border-bottom-left-radius: 3rem;
  }
}
.cid-tV58Im2626 .row {
  flex-direction: row-reverse;
}
.cid-tV58Im2626 .row {
  align-items: center;
}
.cid-tV58Im2626 .mbr-section-title {
  color: #491414;
  text-align: center;
}
.cid-tV58Im2626 .mbr-text,
.cid-tV58Im2626 .mbr-section-btn {
  color: #491414;
}
.cid-tV598vpYrQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tV598vpYrQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV598vpYrQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV598vpYrQ .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tV598vpYrQ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tV598vpYrQ .container {
    padding: 0 24px;
  }
}
.cid-tV598vpYrQ .row {
  justify-content: center;
}
.cid-tV598vpYrQ .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tV598vpYrQ .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tV598vpYrQ .content-wrapper {
    padding: 32px;
  }
}
.cid-tV598vpYrQ .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tV598vpYrQ .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tV598vpYrQ .mbr-section-title {
  color: #FF3399;
}
.cid-tV598vpYrQ .mbr-text {
  color: #262642;
}
.cid-tV5chMOUEo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tV5chMOUEo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5chMOUEo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5chMOUEo .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-tV5chMOUEo .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-tV5chMOUEo .container {
    padding: 0 6px;
  }
}
.cid-tV5chMOUEo .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-tV5chMOUEo .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-tV5chMOUEo .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-tV5chMOUEo .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-tV5chMOUEo .row {
    padding: 70px 30px;
  }
}
.cid-tV5chMOUEo .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-tV5chMOUEo .desc-wrapper {
  padding-right: 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tV5chMOUEo .desc-wrapper {
    padding: 0;
  }
}
.cid-tV5chMOUEo .desc-wrapper .mbr-desc {
  padding: 10px 18px;
  display: inline-flex;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  margin-bottom: 0;
}
.cid-tV5chMOUEo .title-wrapper {
  margin-bottom: 64px;
}
.cid-tV5chMOUEo .title-wrapper span {
  color: #009472;
}
.cid-tV5chMOUEo .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tV5chMOUEo .buttons-wrap {
  display: flex;
  height: 100%;
  align-items: flex-end;
  margin-bottom: 64px;
}
.cid-tV5chMOUEo .cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .cid-tV5chMOUEo .cards-wrapper {
    display: block;
  }
}
.cid-tV5chMOUEo .cards-wrapper .item {
  position: relative;
  margin-bottom: 90px;
}
.cid-tV5chMOUEo .cards-wrapper .item:hover,
.cid-tV5chMOUEo .cards-wrapper .item:focus {
  cursor: pointer;
}
.cid-tV5chMOUEo .cards-wrapper .item:nth-child(3n) .item-decor {
  background-color: #009472;
}
.cid-tV5chMOUEo .cards-wrapper .item:nth-child(3n) .item-wrapper .item-img {
  background-color: #009472;
}
.cid-tV5chMOUEo .cards-wrapper .item .item-decor {
  position: absolute;
  top: -30px;
  left: 0;
  height: 50px;
  width: 150px;
  background-color: #009472;
  border-radius: 16px 16px 0 0;
}
.cid-tV5chMOUEo .cards-wrapper .item .item-wrapper {
  border-radius: 16px !important;
  background-color: #ffffff;
  height: 100%;
}
.cid-tV5chMOUEo .cards-wrapper .item .item-wrapper .item-img {
  padding: 150px 30px 30px;
  background-color: #009472;
  margin-bottom: 40px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tV5chMOUEo .cards-wrapper .item .item-wrapper .item-img {
    padding: 150px 22px 22px;
  }
}
.cid-tV5chMOUEo .cards-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: -2rem;
  right: -1rem;
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 50% !important;
}
.cid-tV5chMOUEo .cards-wrapper .item .item-wrapper .item-img .card-title {
  margin: 0;
}
.cid-tV5chMOUEo .cards-wrapper .item .item-wrapper .item-content {
  padding: 0 30px 30px;
}
@media (max-width: 992px) {
  .cid-tV5chMOUEo .cards-wrapper .item .item-wrapper .item-content {
    padding: 0 22px 22px;
  }
}
.cid-tV5chMOUEo .cards-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-tV5chMOUEo .mbr-desc {
  color: #262626;
}
.cid-tV5chMOUEo .mbr-section-title {
  color: #131313;
}
.cid-tV5chMOUEo .card-title {
  color: #ffffff;
}
.cid-tV5chMOUEo .card-text {
  color: #131313;
}
.cid-tV5chMOUEo .card-title,
.cid-tV5chMOUEo .mbr-section-btn {
  text-align: center;
}
.cid-toEmRuwj7k {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-toEmRuwj7k .mbr-fallback-image.disabled {
  display: none;
}
.cid-toEmRuwj7k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toEmRuwj7k .text-wrapper {
  border-left: 4px solid #1d5356;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .cid-toEmRuwj7k .text-wrapper {
    padding-left: 0rem;
    border-left: 0;
  }
}
.cid-toEmRuwj7k .image-wrapper {
  position: relative;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-toEmRuwj7k .image-wrapper {
    padding: 1rem;
  }
}
.cid-toEmRuwj7k .image-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  transform: rotate(-2deg);
  top: 0;
  width: 100%;
  height: 100%;
  border: 6px solid #1d5356;
  opacity: 0.8;
  border-radius: 3rem;
}
.cid-toEmRuwj7k .image-wrapper img {
  transform: rotate(2deg);
  border-radius: 3rem;
}
.cid-toEmRuwj7k .row {
  flex-direction: row-reverse;
}
.cid-toEmRuwj7k .row {
  align-items: center;
}
.cid-toEmRuwj7k .mbr-section-title {
  color: #491414;
}
.cid-toEmRuwj7k .mbr-text,
.cid-toEmRuwj7k .mbr-section-btn {
  color: #491414;
}
.cid-toEmRuwj7k .mbr-section-subtitle {
  color: #491414;
}
.cid-toEmQsMKBu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1d5356;
}
.cid-toEmQsMKBu .mbr-fallback-image.disabled {
  display: none;
}
.cid-toEmQsMKBu .mbr-section-title {
  padding-bottom: 5rem;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-toEmQsMKBu .mbr-section-title {
    padding-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-toEmQsMKBu .text-wrapper {
    padding: 0 3rem;
  }
}
.cid-toEmQsMKBu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toEmQsMKBu img {
  border-radius: 3rem;
}
.cid-toEmQsMKBu .mbr-text,
.cid-toEmQsMKBu .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tV5hbQZX7H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV5hbQZX7H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5hbQZX7H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5hbQZX7H .mbr-section-subtitle {
  color: #491414;
}
.cid-tV5hbQZX7H .mbr-section-title {
  color: #491414;
}
.cid-tV5FdhuqoK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
@media (max-width: 992px) {
  .cid-tV5FdhuqoK .container {
    padding: 0 25px;
  }
}
.cid-tV5FdhuqoK .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tV5FdhuqoK .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tV5FdhuqoK .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tV5FdhuqoK .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tV5FdhuqoK .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tV5FdhuqoK .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tV5FdhuqoK .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tV5FdhuqoK .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tV5FdhuqoK .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tV5FdhuqoK .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tV5FdhuqoK .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tV5FdhuqoK .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tV5FdhuqoK .mbr-section-title {
  color: #ffffff;
}
.cid-tV5FdhuqoK .panel-title-edit {
  color: #ffffff;
}
.cid-tV5FdhuqoK .panel-text {
  color: #000000;
}
.cid-tV5kIQyWkS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV5kIQyWkS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5kIQyWkS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5kIQyWkS .mbr-section-subtitle {
  color: #491414;
}
.cid-tV5kIQyWkS .mbr-section-title {
  color: #491414;
}
.cid-toEmW2WSSS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-toEmW2WSSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-toEmW2WSSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1400px) {
  .cid-toEmW2WSSS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-toEmW2WSSS img {
  border-radius: 3rem;
}
.cid-toEmW2WSSS .row {
  align-items: center;
}
.cid-toEmW2WSSS .mbr-section-title {
  color: #1d5356;
}
.cid-toEmW2WSSS .mbr-text,
.cid-toEmW2WSSS .mbr-section-btn {
  color: #491414;
}
.cid-toEmW2WSSS .mbr-section-subtitle {
  color: #491414;
}
.cid-toEniKl7D8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-toEniKl7D8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-toEniKl7D8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toEniKl7D8 .mbr-section-subtitle {
  text-align: center;
}
.cid-toEniKl7D8 .mbr-section-subtitle,
.cid-toEniKl7D8 .iconfont-wrapper {
  text-align: center;
  color: #1d5356;
}
.cid-toEniKl7D8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d5c409;
  margin-bottom: 2rem;
}
.cid-toEniKl7D8 .mbr-section-maintitle,
.cid-toEniKl7D8 .iconfont-wrapper {
  color: #1d5356;
}
.cid-toEniKl7D8 .mbr-section-title,
.cid-toEniKl7D8 .iconfont-wrapper {
  color: #1d5356;
}
.cid-tV5rJnepbY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tV5rJnepbY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5rJnepbY .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-tV5rJnepbY .container {
    padding: 0 30px;
  }
}
.cid-tV5rJnepbY .row {
  justify-content: center;
}
.cid-tV5rJnepbY .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tV5rJnepbY .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tV5rJnepbY .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-tV5rJnepbY .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-tV5rJnepbY .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tV5rJnepbY .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tV5rJnepbY .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-toEn5ljGj7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/adobestock-129091255-scaled-2000x1334.jpg");
}
.cid-toEn5ljGj7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-toEn5ljGj7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-toEn5ljGj7 .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-toEn5ljGj7 .col {
    width: 40%;
  }
}
.cid-toEn5ljGj7 .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-toEn5ljGj7 .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-toEn5ljGj7 .card-wrapper h1,
.cid-toEn5ljGj7 .card-wrapper h2,
.cid-toEn5ljGj7 .card-wrapper p,
.cid-toEn5ljGj7 .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-toEn5ljGj7 .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ecede8;
  opacity: 1;
}
.cid-toEn5ljGj7 .mbr-section-title {
  color: #491414;
}
.cid-toEn5ljGj7 .mbr-section-subtitle {
  color: #491414;
}
.cid-toEn5ljGj7 .mbr-text,
.cid-toEn5ljGj7 .mbr-section-btn {
  color: #491414;
}
.cid-toEmXnDXvr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-toEmXnDXvr .mbr-fallback-image.disabled {
  display: none;
}
.cid-toEmXnDXvr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toEmXnDXvr .row {
  position: relative;
  padding: 8rem 4rem;
  border-radius: 20rem;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-toEmXnDXvr .row {
    padding: 2rem 1rem;
    border-radius: 3rem;
  }
}
.cid-toEmXnDXvr .row:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 20rem;
  height: 100%;
  background: #1d5356;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-toEmXnDXvr .row:before {
    border-radius: 3rem;
  }
}
.cid-toEmXnDXvr .row .col-12 {
  position: relative;
}
.cid-toEmXnDXvr .mbr-section-title {
  color: #ffffff;
}
.cid-toEmXnDXvr .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-toEmXnDXvr .mbr-text,
.cid-toEmXnDXvr .mbr-section-btn {
  color: #ffffff;
}
.cid-toEmYvXKk0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #1d5356;
}
.cid-toEmYvXKk0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-toEmYvXKk0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toEmYvXKk0 .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-toEmYvXKk0 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-toEmYvXKk0 .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-toEmYvXKk0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-toEmYvXKk0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-toEmYvXKk0 .mbr-section-title {
  color: #ffffff;
}
.cid-tV5tVrMx3N {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #dfdbd7;
}
.cid-tV5tVrMx3N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5tVrMx3N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5tVrMx3N .container {
  max-width: 1600px;
}
.cid-tV5tVrMx3N .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5tVrMx3N .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tV5tVrMx3N .border-container {
    padding: 30px 0;
  }
}
.cid-tV5tVrMx3N .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tV5tVrMx3N .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tV5tVrMx3N .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tV5tVrMx3N .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tV5tVrMx3N .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #dfdbd7;
  border-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5tVrMx3N .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tV5tVrMx3N .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tV5tVrMx3N .border-frame {
    width: 7%;
  }
}
.cid-tV5tVrMx3N .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tV5tVrMx3N .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tV5tVrMx3N .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5tVrMx3N .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tV5tVrMx3N .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
  }
}
@media (max-width: 575px) {
  .cid-tV5tVrMx3N .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tV5tVrMx3N .footer-item {
  height: 100%;
}
.cid-tV5tVrMx3N .mbr-section-subtitle {
  color: #009472;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tV5tVrMx3N .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tV5tVrMx3N .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tV5tVrMx3N .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tV5tVrMx3N .mbr-section-btn {
  margin-top: 20px;
}
.cid-tV5tVrMx3N .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tV5tVrMx3N .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tV5tVrMx3N .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tV5tVrMx3N .list li:hover {
  color: #d5c409 !important;
}
.cid-tV5tVrMx3N .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5tVrMx3N .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5tVrMx3N .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5tVrMx3N .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5tVrMx3N .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tV5tVrMx3N .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tV5tVrMx3N .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tV5tVrMx3N .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tV5tVrMx3N .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tV5tVrMx3N .soc-item:hover .mbr-iconfont {
  color: #d5c409 !important;
}
.cid-tV5tVrMx3N .soc-item:hover .social-text {
  color: #d5c409 !important;
}
.cid-tV5tVrMx3N .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tV5tVrMx3N .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tV5tVrMx3N .copyright-container {
    margin-top: 30px;
  }
}
.cid-tV5tVrMx3N .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tV5tVrMx3N .copyright-text {
    text-align: center !important;
  }
}
.cid-tV5tVrMx3N .mbr-text,
.cid-tV5tVrMx3N .mbr-section-btn {
  color: #009472;
}
.cid-toEkkhFSpv {
  z-index: 1000;
  width: 100%;
}
.cid-toEkkhFSpv nav.navbar {
  position: fixed;
}
.cid-toEkkhFSpv .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-toEkkhFSpv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toEkkhFSpv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toEkkhFSpv .dropdown-item:hover,
.cid-toEkkhFSpv .dropdown-item:focus {
  background: #d5c409 !important;
  color: white !important;
}
.cid-toEkkhFSpv .dropdown-item:hover span {
  color: white;
}
.cid-toEkkhFSpv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toEkkhFSpv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toEkkhFSpv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toEkkhFSpv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toEkkhFSpv .nav-link {
  position: relative;
}
.cid-toEkkhFSpv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toEkkhFSpv .container {
    flex-wrap: nowrap;
  }
}
.cid-toEkkhFSpv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toEkkhFSpv .dropdown-menu,
.cid-toEkkhFSpv .navbar.opened {
  background: #ecede8 !important;
}
.cid-toEkkhFSpv .nav-item:focus,
.cid-toEkkhFSpv .nav-link:focus {
  outline: none;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toEkkhFSpv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toEkkhFSpv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toEkkhFSpv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(236, 237, 232, 0.7);
  backdrop-filter: blur(5px);
}
.cid-toEkkhFSpv .navbar.opened {
  transition: all 0.3s;
}
.cid-toEkkhFSpv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toEkkhFSpv .navbar .navbar-logo img {
  width: auto;
}
.cid-toEkkhFSpv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toEkkhFSpv .navbar.collapsed {
  justify-content: center;
}
.cid-toEkkhFSpv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toEkkhFSpv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toEkkhFSpv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-toEkkhFSpv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toEkkhFSpv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toEkkhFSpv .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-toEkkhFSpv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toEkkhFSpv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toEkkhFSpv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toEkkhFSpv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toEkkhFSpv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toEkkhFSpv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toEkkhFSpv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toEkkhFSpv .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-toEkkhFSpv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toEkkhFSpv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toEkkhFSpv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toEkkhFSpv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toEkkhFSpv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toEkkhFSpv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toEkkhFSpv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toEkkhFSpv .navbar.navbar-short {
  min-height: 60px;
}
.cid-toEkkhFSpv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toEkkhFSpv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toEkkhFSpv .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-toEkkhFSpv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toEkkhFSpv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toEkkhFSpv .dropdown-item.active,
.cid-toEkkhFSpv .dropdown-item:active {
  background-color: transparent;
}
.cid-toEkkhFSpv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toEkkhFSpv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toEkkhFSpv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toEkkhFSpv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ecede8;
}
.cid-toEkkhFSpv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toEkkhFSpv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toEkkhFSpv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toEkkhFSpv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toEkkhFSpv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toEkkhFSpv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toEkkhFSpv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toEkkhFSpv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-toEkkhFSpv .navbar {
    height: 70px;
  }
  .cid-toEkkhFSpv .navbar.opened {
    height: auto;
  }
  .cid-toEkkhFSpv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tV5zDEP55s {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-tV5zDEP55s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5zDEP55s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5zDEP55s img {
  border-radius: 3rem;
}
.cid-tV5zDEP55s .row {
  flex-direction: row-reverse;
}
.cid-tV5zDEP55s .row {
  align-items: center;
}
.cid-tV5zDEP55s .mbr-section-title {
  color: #491414;
}
.cid-tV5zDEP55s .mbr-text,
.cid-tV5zDEP55s .mbr-section-btn {
  color: #491414;
}
.cid-tV5zBdLa9c {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #009472;
}
.cid-tV5zBdLa9c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5zBdLa9c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5zBdLa9c .mbr-text,
.cid-tV5zBdLa9c .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tV5zBdLa9c .mbr-section-title {
  text-align: center;
  color: #491414;
}
.cid-tV5zBdLa9c .mbr-section-subtitle {
  text-align: center;
}
.cid-tV5zNRxZ5s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ecede8;
}
.cid-tV5zNRxZ5s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5zNRxZ5s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5zNRxZ5s .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tV5zNRxZ5s .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tV5zNRxZ5s .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-tV5zNRxZ5s .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tV5zNRxZ5s .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tV5zNRxZ5s .mbr-section-title {
  color: #491414;
}
.cid-tV5tVrMx3N {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #dfdbd7;
}
.cid-tV5tVrMx3N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5tVrMx3N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5tVrMx3N .container {
  max-width: 1600px;
}
.cid-tV5tVrMx3N .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5tVrMx3N .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tV5tVrMx3N .border-container {
    padding: 30px 0;
  }
}
.cid-tV5tVrMx3N .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tV5tVrMx3N .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tV5tVrMx3N .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tV5tVrMx3N .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tV5tVrMx3N .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #dfdbd7;
  border-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5tVrMx3N .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tV5tVrMx3N .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tV5tVrMx3N .border-frame {
    width: 7%;
  }
}
.cid-tV5tVrMx3N .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tV5tVrMx3N .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tV5tVrMx3N .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5tVrMx3N .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tV5tVrMx3N .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
  }
}
@media (max-width: 575px) {
  .cid-tV5tVrMx3N .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tV5tVrMx3N .footer-item {
  height: 100%;
}
.cid-tV5tVrMx3N .mbr-section-subtitle {
  color: #009472;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tV5tVrMx3N .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tV5tVrMx3N .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tV5tVrMx3N .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tV5tVrMx3N .mbr-section-btn {
  margin-top: 20px;
}
.cid-tV5tVrMx3N .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tV5tVrMx3N .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tV5tVrMx3N .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tV5tVrMx3N .list li:hover {
  color: #d5c409 !important;
}
.cid-tV5tVrMx3N .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5tVrMx3N .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5tVrMx3N .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5tVrMx3N .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5tVrMx3N .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tV5tVrMx3N .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tV5tVrMx3N .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tV5tVrMx3N .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tV5tVrMx3N .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tV5tVrMx3N .soc-item:hover .mbr-iconfont {
  color: #d5c409 !important;
}
.cid-tV5tVrMx3N .soc-item:hover .social-text {
  color: #d5c409 !important;
}
.cid-tV5tVrMx3N .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tV5tVrMx3N .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tV5tVrMx3N .copyright-container {
    margin-top: 30px;
  }
}
.cid-tV5tVrMx3N .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tV5tVrMx3N .copyright-text {
    text-align: center !important;
  }
}
.cid-tV5tVrMx3N .mbr-text,
.cid-tV5tVrMx3N .mbr-section-btn {
  color: #009472;
}
.cid-tV5ArdQnNZ {
  z-index: 1000;
  width: 100%;
}
.cid-tV5ArdQnNZ nav.navbar {
  position: fixed;
}
.cid-tV5ArdQnNZ .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-tV5ArdQnNZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV5ArdQnNZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV5ArdQnNZ .dropdown-item:hover,
.cid-tV5ArdQnNZ .dropdown-item:focus {
  background: #d5c409 !important;
  color: white !important;
}
.cid-tV5ArdQnNZ .dropdown-item:hover span {
  color: white;
}
.cid-tV5ArdQnNZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV5ArdQnNZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV5ArdQnNZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV5ArdQnNZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV5ArdQnNZ .nav-link {
  position: relative;
}
.cid-tV5ArdQnNZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV5ArdQnNZ .container {
    flex-wrap: nowrap;
  }
}
.cid-tV5ArdQnNZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tV5ArdQnNZ .dropdown-menu,
.cid-tV5ArdQnNZ .navbar.opened {
  background: #ecede8 !important;
}
.cid-tV5ArdQnNZ .nav-item:focus,
.cid-tV5ArdQnNZ .nav-link:focus {
  outline: none;
}
.cid-tV5ArdQnNZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV5ArdQnNZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV5ArdQnNZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV5ArdQnNZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV5ArdQnNZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV5ArdQnNZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV5ArdQnNZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(236, 237, 232, 0.7);
  backdrop-filter: blur(5px);
}
.cid-tV5ArdQnNZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tV5ArdQnNZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV5ArdQnNZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tV5ArdQnNZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV5ArdQnNZ .navbar.collapsed {
  justify-content: center;
}
.cid-tV5ArdQnNZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV5ArdQnNZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV5ArdQnNZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tV5ArdQnNZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV5ArdQnNZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV5ArdQnNZ .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-tV5ArdQnNZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV5ArdQnNZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV5ArdQnNZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV5ArdQnNZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV5ArdQnNZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV5ArdQnNZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV5ArdQnNZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV5ArdQnNZ .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-tV5ArdQnNZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV5ArdQnNZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV5ArdQnNZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV5ArdQnNZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV5ArdQnNZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV5ArdQnNZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV5ArdQnNZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV5ArdQnNZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tV5ArdQnNZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV5ArdQnNZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tV5ArdQnNZ .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-tV5ArdQnNZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV5ArdQnNZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV5ArdQnNZ .dropdown-item.active,
.cid-tV5ArdQnNZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tV5ArdQnNZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV5ArdQnNZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV5ArdQnNZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV5ArdQnNZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ecede8;
}
.cid-tV5ArdQnNZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV5ArdQnNZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV5ArdQnNZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV5ArdQnNZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tV5ArdQnNZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tV5ArdQnNZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tV5ArdQnNZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tV5ArdQnNZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV5ArdQnNZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV5ArdQnNZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tV5ArdQnNZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV5ArdQnNZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tV5ArdQnNZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV5ArdQnNZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV5ArdQnNZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV5ArdQnNZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV5ArdQnNZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tV5ArdQnNZ .navbar {
    height: 70px;
  }
  .cid-tV5ArdQnNZ .navbar.opened {
    height: auto;
  }
  .cid-tV5ArdQnNZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tV5AreXSqV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #009472;
}
.cid-tV5AreXSqV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5AreXSqV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5AreXSqV img {
  border-radius: 3rem;
}
.cid-tV5AreXSqV .row {
  align-items: center;
}
.cid-tV5AreXSqV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tV5AreXSqV .mbr-text,
.cid-tV5AreXSqV .mbr-section-btn {
  color: #491414;
}
.cid-tV5ArfQY0Y {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #dfdbd7;
}
.cid-tV5ArfQY0Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5ArfQY0Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5ArfQY0Y .mbr-text,
.cid-tV5ArfQY0Y .mbr-section-btn {
  text-align: left;
  color: #262626;
}
.cid-tV5ArfQY0Y .mbr-section-title {
  text-align: center;
  color: #491414;
}
.cid-tV5ArfQY0Y .mbr-section-subtitle {
  text-align: center;
}
.cid-tV5ArgGP8U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #009472;
}
.cid-tV5ArgGP8U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5ArgGP8U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5ArgGP8U .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tV5ArgGP8U .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tV5ArgGP8U .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-tV5ArgGP8U .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tV5ArgGP8U .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tV5ArgGP8U .mbr-section-title {
  color: #ffffff;
}
.cid-tV5Ari88fC {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #dfdbd7;
}
.cid-tV5Ari88fC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5Ari88fC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5Ari88fC .container {
  max-width: 1600px;
}
.cid-tV5Ari88fC .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5Ari88fC .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tV5Ari88fC .border-container {
    padding: 30px 0;
  }
}
.cid-tV5Ari88fC .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tV5Ari88fC .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tV5Ari88fC .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tV5Ari88fC .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tV5Ari88fC .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #dfdbd7;
  border-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5Ari88fC .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tV5Ari88fC .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tV5Ari88fC .border-frame {
    width: 7%;
  }
}
.cid-tV5Ari88fC .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tV5Ari88fC .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tV5Ari88fC .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5Ari88fC .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tV5Ari88fC .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
  }
}
@media (max-width: 575px) {
  .cid-tV5Ari88fC .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tV5Ari88fC .footer-item {
  height: 100%;
}
.cid-tV5Ari88fC .mbr-section-subtitle {
  color: #009472;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tV5Ari88fC .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tV5Ari88fC .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tV5Ari88fC .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tV5Ari88fC .mbr-section-btn {
  margin-top: 20px;
}
.cid-tV5Ari88fC .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tV5Ari88fC .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tV5Ari88fC .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tV5Ari88fC .list li:hover {
  color: #d5c409 !important;
}
.cid-tV5Ari88fC .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5Ari88fC .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5Ari88fC .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5Ari88fC .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5Ari88fC .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tV5Ari88fC .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tV5Ari88fC .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tV5Ari88fC .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tV5Ari88fC .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tV5Ari88fC .soc-item:hover .mbr-iconfont {
  color: #d5c409 !important;
}
.cid-tV5Ari88fC .soc-item:hover .social-text {
  color: #d5c409 !important;
}
.cid-tV5Ari88fC .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tV5Ari88fC .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tV5Ari88fC .copyright-container {
    margin-top: 30px;
  }
}
.cid-tV5Ari88fC .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tV5Ari88fC .copyright-text {
    text-align: center !important;
  }
}
.cid-tV5Ari88fC .mbr-text,
.cid-tV5Ari88fC .mbr-section-btn {
  color: #009472;
}
.cid-tV60jPieVq {
  z-index: 1000;
  width: 100%;
}
.cid-tV60jPieVq nav.navbar {
  position: fixed;
}
.cid-tV60jPieVq .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-tV60jPieVq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV60jPieVq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV60jPieVq .dropdown-item:hover,
.cid-tV60jPieVq .dropdown-item:focus {
  background: #d5c409 !important;
  color: white !important;
}
.cid-tV60jPieVq .dropdown-item:hover span {
  color: white;
}
.cid-tV60jPieVq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV60jPieVq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV60jPieVq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV60jPieVq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV60jPieVq .nav-link {
  position: relative;
}
.cid-tV60jPieVq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV60jPieVq .container {
    flex-wrap: nowrap;
  }
}
.cid-tV60jPieVq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tV60jPieVq .dropdown-menu,
.cid-tV60jPieVq .navbar.opened {
  background: #ecede8 !important;
}
.cid-tV60jPieVq .nav-item:focus,
.cid-tV60jPieVq .nav-link:focus {
  outline: none;
}
.cid-tV60jPieVq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV60jPieVq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV60jPieVq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV60jPieVq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV60jPieVq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV60jPieVq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV60jPieVq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(236, 237, 232, 0.7);
  backdrop-filter: blur(5px);
}
.cid-tV60jPieVq .navbar.opened {
  transition: all 0.3s;
}
.cid-tV60jPieVq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV60jPieVq .navbar .navbar-logo img {
  width: auto;
}
.cid-tV60jPieVq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV60jPieVq .navbar.collapsed {
  justify-content: center;
}
.cid-tV60jPieVq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV60jPieVq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV60jPieVq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tV60jPieVq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV60jPieVq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV60jPieVq .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-tV60jPieVq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV60jPieVq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV60jPieVq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV60jPieVq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV60jPieVq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV60jPieVq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV60jPieVq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV60jPieVq .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-tV60jPieVq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV60jPieVq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV60jPieVq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV60jPieVq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV60jPieVq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV60jPieVq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV60jPieVq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV60jPieVq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tV60jPieVq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV60jPieVq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tV60jPieVq .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-tV60jPieVq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV60jPieVq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV60jPieVq .dropdown-item.active,
.cid-tV60jPieVq .dropdown-item:active {
  background-color: transparent;
}
.cid-tV60jPieVq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV60jPieVq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV60jPieVq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV60jPieVq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ecede8;
}
.cid-tV60jPieVq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV60jPieVq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV60jPieVq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV60jPieVq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tV60jPieVq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tV60jPieVq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tV60jPieVq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tV60jPieVq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV60jPieVq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV60jPieVq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tV60jPieVq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV60jPieVq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tV60jPieVq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV60jPieVq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV60jPieVq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV60jPieVq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV60jPieVq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tV60jPieVq .navbar {
    height: 70px;
  }
  .cid-tV60jPieVq .navbar.opened {
    height: auto;
  }
  .cid-tV60jPieVq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tV60jQNKd1 {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/11sci-aeds-04-vlpt-videosixteenbynine3000-2000x1125.jpg");
}
.cid-tV60jQNKd1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60jQNKd1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV60jQNKd1 .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-tV60jQNKd1 .col {
    width: 45%;
  }
}
.cid-tV60jQNKd1 .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tV60jQNKd1 .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-tV60jQNKd1 .card-wrapper h1,
.cid-tV60jQNKd1 .card-wrapper h2,
.cid-tV60jQNKd1 .card-wrapper p,
.cid-tV60jQNKd1 .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-tV60jQNKd1 .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1d5356;
  opacity: 0.8;
}
.cid-tV60jQNKd1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tV60jQNKd1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tV60jQNKd1 .mbr-text,
.cid-tV60jQNKd1 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tV60jROdJ9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-tV60jROdJ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60jROdJ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV60jROdJ9 img {
  border-radius: 3rem;
  border-bottom-left-radius: 20rem;
}
@media (max-width: 767px) {
  .cid-tV60jROdJ9 img {
    border-bottom-left-radius: 3rem;
  }
}
.cid-tV60jROdJ9 .row {
  flex-direction: row-reverse;
}
.cid-tV60jROdJ9 .row {
  align-items: center;
}
.cid-tV60jROdJ9 .mbr-section-title {
  color: #491414;
  text-align: center;
}
.cid-tV60jROdJ9 .mbr-text,
.cid-tV60jROdJ9 .mbr-section-btn {
  color: #491414;
}
.cid-tV60jSR7V2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tV60jSR7V2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60jSR7V2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV60jSR7V2 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tV60jSR7V2 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tV60jSR7V2 .container {
    padding: 0 24px;
  }
}
.cid-tV60jSR7V2 .row {
  justify-content: center;
}
.cid-tV60jSR7V2 .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tV60jSR7V2 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tV60jSR7V2 .content-wrapper {
    padding: 32px;
  }
}
.cid-tV60jSR7V2 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tV60jSR7V2 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tV60jSR7V2 .mbr-section-title {
  color: #FF3399;
}
.cid-tV60jSR7V2 .mbr-text {
  color: #262642;
}
.cid-tV60jTKsoQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e6e6e6;
}
.cid-tV60jTKsoQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60jTKsoQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV60jTKsoQ .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-tV60jTKsoQ .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-tV60jTKsoQ .container {
    padding: 0 6px;
  }
}
.cid-tV60jTKsoQ .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-tV60jTKsoQ .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-tV60jTKsoQ .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-tV60jTKsoQ .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-tV60jTKsoQ .row {
    padding: 70px 30px;
  }
}
.cid-tV60jTKsoQ .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-tV60jTKsoQ .desc-wrapper {
  padding-right: 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tV60jTKsoQ .desc-wrapper {
    padding: 0;
  }
}
.cid-tV60jTKsoQ .desc-wrapper .mbr-desc {
  padding: 10px 18px;
  display: inline-flex;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  margin-bottom: 0;
}
.cid-tV60jTKsoQ .title-wrapper {
  margin-bottom: 64px;
}
.cid-tV60jTKsoQ .title-wrapper span {
  color: #009472;
}
.cid-tV60jTKsoQ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tV60jTKsoQ .buttons-wrap {
  display: flex;
  height: 100%;
  align-items: flex-end;
  margin-bottom: 64px;
}
.cid-tV60jTKsoQ .cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .cid-tV60jTKsoQ .cards-wrapper {
    display: block;
  }
}
.cid-tV60jTKsoQ .cards-wrapper .item {
  position: relative;
  margin-bottom: 90px;
}
.cid-tV60jTKsoQ .cards-wrapper .item:hover,
.cid-tV60jTKsoQ .cards-wrapper .item:focus {
  cursor: pointer;
}
.cid-tV60jTKsoQ .cards-wrapper .item:nth-child(3n) .item-decor {
  background-color: #009472;
}
.cid-tV60jTKsoQ .cards-wrapper .item:nth-child(3n) .item-wrapper .item-img {
  background-color: #009472;
}
.cid-tV60jTKsoQ .cards-wrapper .item .item-decor {
  position: absolute;
  top: -30px;
  left: 0;
  height: 50px;
  width: 150px;
  background-color: #009472;
  border-radius: 16px 16px 0 0;
}
.cid-tV60jTKsoQ .cards-wrapper .item .item-wrapper {
  border-radius: 16px !important;
  background-color: #ffffff;
  height: 100%;
}
.cid-tV60jTKsoQ .cards-wrapper .item .item-wrapper .item-img {
  padding: 150px 30px 30px;
  background-color: #009472;
  margin-bottom: 40px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tV60jTKsoQ .cards-wrapper .item .item-wrapper .item-img {
    padding: 150px 22px 22px;
  }
}
.cid-tV60jTKsoQ .cards-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: -2rem;
  right: -1rem;
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 50% !important;
}
.cid-tV60jTKsoQ .cards-wrapper .item .item-wrapper .item-img .card-title {
  margin: 0;
}
.cid-tV60jTKsoQ .cards-wrapper .item .item-wrapper .item-content {
  padding: 0 30px 30px;
}
@media (max-width: 992px) {
  .cid-tV60jTKsoQ .cards-wrapper .item .item-wrapper .item-content {
    padding: 0 22px 22px;
  }
}
.cid-tV60jTKsoQ .cards-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-tV60jTKsoQ .mbr-desc {
  color: #262626;
}
.cid-tV60jTKsoQ .mbr-section-title {
  color: #131313;
}
.cid-tV60jTKsoQ .card-title {
  color: #ffffff;
}
.cid-tV60jTKsoQ .card-text {
  color: #131313;
}
.cid-tV60jTKsoQ .card-title,
.cid-tV60jTKsoQ .mbr-section-btn {
  text-align: center;
}
.cid-tV60jV6VH4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-tV60jV6VH4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60jV6VH4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV60jV6VH4 .text-wrapper {
  border-left: 4px solid #1d5356;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .cid-tV60jV6VH4 .text-wrapper {
    padding-left: 0rem;
    border-left: 0;
  }
}
.cid-tV60jV6VH4 .image-wrapper {
  position: relative;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-tV60jV6VH4 .image-wrapper {
    padding: 1rem;
  }
}
.cid-tV60jV6VH4 .image-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  transform: rotate(-2deg);
  top: 0;
  width: 100%;
  height: 100%;
  border: 6px solid #1d5356;
  opacity: 0.8;
  border-radius: 3rem;
}
.cid-tV60jV6VH4 .image-wrapper img {
  transform: rotate(2deg);
  border-radius: 3rem;
}
.cid-tV60jV6VH4 .row {
  flex-direction: row-reverse;
}
.cid-tV60jV6VH4 .row {
  align-items: center;
}
.cid-tV60jV6VH4 .mbr-section-title {
  color: #491414;
}
.cid-tV60jV6VH4 .mbr-text,
.cid-tV60jV6VH4 .mbr-section-btn {
  color: #491414;
}
.cid-tV60jV6VH4 .mbr-section-subtitle {
  color: #491414;
}
.cid-tV60jW7u9P {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1d5356;
}
.cid-tV60jW7u9P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60jW7u9P .mbr-section-title {
  padding-bottom: 5rem;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tV60jW7u9P .mbr-section-title {
    padding-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tV60jW7u9P .text-wrapper {
    padding: 0 3rem;
  }
}
.cid-tV60jW7u9P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV60jW7u9P img {
  border-radius: 3rem;
}
.cid-tV60jW7u9P .mbr-text,
.cid-tV60jW7u9P .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tV60jXexuE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV60jXexuE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60jXexuE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV60jXexuE .mbr-section-subtitle {
  color: #491414;
}
.cid-tV60jXexuE .mbr-section-title {
  color: #491414;
}
.cid-tV60jYsg7X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
@media (max-width: 992px) {
  .cid-tV60jYsg7X .container {
    padding: 0 25px;
  }
}
.cid-tV60jYsg7X .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tV60jYsg7X .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tV60jYsg7X .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tV60jYsg7X .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tV60jYsg7X .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tV60jYsg7X .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tV60jYsg7X .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tV60jYsg7X .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tV60jYsg7X .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tV60jYsg7X .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tV60jYsg7X .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tV60jYsg7X .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tV60jYsg7X .mbr-section-title {
  color: #ffffff;
}
.cid-tV60jYsg7X .panel-title-edit {
  color: #ffffff;
}
.cid-tV60jYsg7X .panel-text {
  color: #000000;
}
.cid-tV60k0WofW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV60k0WofW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60k0WofW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV60k0WofW .mbr-section-subtitle {
  color: #491414;
}
.cid-tV60k0WofW .mbr-section-title {
  color: #491414;
}
.cid-tV60k25PU8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-tV60k25PU8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60k25PU8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1400px) {
  .cid-tV60k25PU8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tV60k25PU8 img {
  border-radius: 3rem;
}
.cid-tV60k25PU8 .row {
  align-items: center;
}
.cid-tV60k25PU8 .mbr-section-title {
  color: #1d5356;
}
.cid-tV60k25PU8 .mbr-text,
.cid-tV60k25PU8 .mbr-section-btn {
  color: #491414;
}
.cid-tV60k25PU8 .mbr-section-subtitle {
  color: #491414;
}
.cid-tV60k3iaA3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV60k3iaA3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60k3iaA3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV60k3iaA3 .mbr-section-subtitle {
  text-align: center;
}
.cid-tV60k3iaA3 .mbr-section-subtitle,
.cid-tV60k3iaA3 .iconfont-wrapper {
  text-align: center;
  color: #1d5356;
}
.cid-tV60k3iaA3 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d5c409;
  margin-bottom: 2rem;
}
.cid-tV60k3iaA3 .mbr-section-maintitle,
.cid-tV60k3iaA3 .iconfont-wrapper {
  color: #1d5356;
}
.cid-tV60k3iaA3 .mbr-section-title,
.cid-tV60k3iaA3 .iconfont-wrapper {
  color: #1d5356;
}
.cid-tV60k5FzIv {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/51sexbej11l-1000x1000.jpg");
}
.cid-tV60k5FzIv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60k5FzIv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV60k5FzIv .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-tV60k5FzIv .col {
    width: 40%;
  }
}
.cid-tV60k5FzIv .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tV60k5FzIv .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-tV60k5FzIv .card-wrapper h1,
.cid-tV60k5FzIv .card-wrapper h2,
.cid-tV60k5FzIv .card-wrapper p,
.cid-tV60k5FzIv .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-tV60k5FzIv .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ecede8;
  opacity: 1;
}
.cid-tV60k5FzIv .mbr-section-title {
  color: #491414;
}
.cid-tV60k5FzIv .mbr-section-subtitle {
  color: #491414;
}
.cid-tV60k5FzIv .mbr-text,
.cid-tV60k5FzIv .mbr-section-btn {
  color: #491414;
}
.cid-tV60k9mrZw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV60k9mrZw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60k9mrZw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV60k9mrZw .row {
  position: relative;
  padding: 8rem 4rem;
  border-radius: 20rem;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-tV60k9mrZw .row {
    padding: 2rem 1rem;
    border-radius: 3rem;
  }
}
.cid-tV60k9mrZw .row:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 20rem;
  height: 100%;
  background: #1d5356;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-tV60k9mrZw .row:before {
    border-radius: 3rem;
  }
}
.cid-tV60k9mrZw .row .col-12 {
  position: relative;
}
.cid-tV60k9mrZw .mbr-section-title {
  color: #ffffff;
}
.cid-tV60k9mrZw .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tV60k9mrZw .mbr-text,
.cid-tV60k9mrZw .mbr-section-btn {
  color: #ffffff;
}
.cid-tV60kaLxFU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tV60kaLxFU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60kaLxFU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-tV60kaLxFU .container {
    padding: 0 24px;
  }
}
.cid-tV60kaLxFU .row {
  border-top: 1px solid #72716b;
}
@media (min-width: 992px) {
  .cid-tV60kaLxFU .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tV60kaLxFU .row {
    border: none;
  }
}
.cid-tV60kaLxFU .row .card {
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-tV60kaLxFU .row .card {
    padding: 0 16px;
  }
}
.cid-tV60kaLxFU .content-wrapper {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tV60kaLxFU .content-wrapper {
    padding: 24px;
  }
}
.cid-tV60kaLxFU .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tV60kaLxFU .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-tV60kaLxFU .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tV60kaLxFU .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-tV60kaLxFU .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-tV60kaLxFU .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-tV60kaLxFU .panel-group .card {
  padding: 32px;
  border-top: 1px solid #72716b;
  border-left: 1px solid #72716b;
  border-radius: 0 !important;
}
.cid-tV60kaLxFU .panel-group .card:first-child {
  border-top: none;
}
@media (max-width: 992px) {
  .cid-tV60kaLxFU .panel-group .card:first-child {
    border-top: 1px solid #72716b;
  }
}
@media (max-width: 992px) {
  .cid-tV60kaLxFU .panel-group .card {
    padding: 24px;
    border-left: none;
  }
}
.cid-tV60kaLxFU .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-tV60kaLxFU .panel-group .card .card-header .panel-title {
  display: block;
}
.cid-tV60kaLxFU .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  display: inline;
  padding-left: 24px;
  border-left: 1px solid #e0b548;
}
.cid-tV60kaLxFU .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.cid-tV60kaLxFU .panel-group .card .card-header .panel-title .panel-title-edit span {
  color: #f9f6e0;
}
.cid-tV60kaLxFU .panel-group .card .panel-collapse .panel-body {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .cid-tV60kaLxFU .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-tV60kaLxFU .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tV60kaLxFU .mbr-section-title {
  color: #F9F6E0;
}
.cid-tV60kaLxFU .mbr-text {
  color: #F9F6E0;
  text-align: right;
}
.cid-tV60kaLxFU .panel-title-edit {
  color: #E0B548;
}
.cid-tV60kaLxFU .panel-text {
  color: #F9F6E0;
}
.cid-tV60kaLxFU .mbr-section-title,
.cid-tV60kaLxFU .mbr-section-btn {
  text-align: right;
}
.cid-tV60kbZtAF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #1d5356;
}
.cid-tV60kbZtAF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60kbZtAF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV60kbZtAF .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tV60kbZtAF .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tV60kbZtAF .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-tV60kbZtAF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tV60kbZtAF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tV60kbZtAF .mbr-section-title {
  color: #ffffff;
}
.cid-tV60kdfbS1 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #dfdbd7;
}
.cid-tV60kdfbS1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV60kdfbS1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV60kdfbS1 .container {
  max-width: 1600px;
}
.cid-tV60kdfbS1 .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV60kdfbS1 .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tV60kdfbS1 .border-container {
    padding: 30px 0;
  }
}
.cid-tV60kdfbS1 .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tV60kdfbS1 .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tV60kdfbS1 .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tV60kdfbS1 .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tV60kdfbS1 .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #dfdbd7;
  border-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV60kdfbS1 .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tV60kdfbS1 .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tV60kdfbS1 .border-frame {
    width: 7%;
  }
}
.cid-tV60kdfbS1 .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tV60kdfbS1 .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tV60kdfbS1 .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV60kdfbS1 .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tV60kdfbS1 .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
  }
}
@media (max-width: 575px) {
  .cid-tV60kdfbS1 .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tV60kdfbS1 .footer-item {
  height: 100%;
}
.cid-tV60kdfbS1 .mbr-section-subtitle {
  color: #009472;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tV60kdfbS1 .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tV60kdfbS1 .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tV60kdfbS1 .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tV60kdfbS1 .mbr-section-btn {
  margin-top: 20px;
}
.cid-tV60kdfbS1 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tV60kdfbS1 .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tV60kdfbS1 .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tV60kdfbS1 .list li:hover {
  color: #d5c409 !important;
}
.cid-tV60kdfbS1 .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV60kdfbS1 .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV60kdfbS1 .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV60kdfbS1 .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV60kdfbS1 .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tV60kdfbS1 .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tV60kdfbS1 .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tV60kdfbS1 .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tV60kdfbS1 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tV60kdfbS1 .soc-item:hover .mbr-iconfont {
  color: #d5c409 !important;
}
.cid-tV60kdfbS1 .soc-item:hover .social-text {
  color: #d5c409 !important;
}
.cid-tV60kdfbS1 .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tV60kdfbS1 .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tV60kdfbS1 .copyright-container {
    margin-top: 30px;
  }
}
.cid-tV60kdfbS1 .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tV60kdfbS1 .copyright-text {
    text-align: center !important;
  }
}
.cid-tV60kdfbS1 .mbr-text,
.cid-tV60kdfbS1 .mbr-section-btn {
  color: #009472;
}
.cid-tV6gPb3wIT {
  z-index: 1000;
  width: 100%;
}
.cid-tV6gPb3wIT nav.navbar {
  position: fixed;
}
.cid-tV6gPb3wIT .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-tV6gPb3wIT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV6gPb3wIT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV6gPb3wIT .dropdown-item:hover,
.cid-tV6gPb3wIT .dropdown-item:focus {
  background: #d5c409 !important;
  color: white !important;
}
.cid-tV6gPb3wIT .dropdown-item:hover span {
  color: white;
}
.cid-tV6gPb3wIT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV6gPb3wIT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV6gPb3wIT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV6gPb3wIT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV6gPb3wIT .nav-link {
  position: relative;
}
.cid-tV6gPb3wIT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV6gPb3wIT .container {
    flex-wrap: nowrap;
  }
}
.cid-tV6gPb3wIT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tV6gPb3wIT .dropdown-menu,
.cid-tV6gPb3wIT .navbar.opened {
  background: #ecede8 !important;
}
.cid-tV6gPb3wIT .nav-item:focus,
.cid-tV6gPb3wIT .nav-link:focus {
  outline: none;
}
.cid-tV6gPb3wIT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV6gPb3wIT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV6gPb3wIT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV6gPb3wIT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV6gPb3wIT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV6gPb3wIT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV6gPb3wIT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(236, 237, 232, 0.7);
  backdrop-filter: blur(5px);
}
.cid-tV6gPb3wIT .navbar.opened {
  transition: all 0.3s;
}
.cid-tV6gPb3wIT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV6gPb3wIT .navbar .navbar-logo img {
  width: auto;
}
.cid-tV6gPb3wIT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV6gPb3wIT .navbar.collapsed {
  justify-content: center;
}
.cid-tV6gPb3wIT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV6gPb3wIT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV6gPb3wIT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tV6gPb3wIT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV6gPb3wIT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV6gPb3wIT .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-tV6gPb3wIT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV6gPb3wIT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV6gPb3wIT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV6gPb3wIT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV6gPb3wIT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV6gPb3wIT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV6gPb3wIT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV6gPb3wIT .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-tV6gPb3wIT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV6gPb3wIT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV6gPb3wIT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV6gPb3wIT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV6gPb3wIT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV6gPb3wIT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV6gPb3wIT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV6gPb3wIT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tV6gPb3wIT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV6gPb3wIT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tV6gPb3wIT .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-tV6gPb3wIT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV6gPb3wIT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV6gPb3wIT .dropdown-item.active,
.cid-tV6gPb3wIT .dropdown-item:active {
  background-color: transparent;
}
.cid-tV6gPb3wIT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV6gPb3wIT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV6gPb3wIT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV6gPb3wIT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ecede8;
}
.cid-tV6gPb3wIT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV6gPb3wIT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV6gPb3wIT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV6gPb3wIT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tV6gPb3wIT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tV6gPb3wIT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tV6gPb3wIT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tV6gPb3wIT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV6gPb3wIT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV6gPb3wIT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tV6gPb3wIT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV6gPb3wIT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tV6gPb3wIT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV6gPb3wIT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV6gPb3wIT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV6gPb3wIT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV6gPb3wIT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tV6gPb3wIT .navbar {
    height: 70px;
  }
  .cid-tV6gPb3wIT .navbar.opened {
    height: auto;
  }
  .cid-tV6gPb3wIT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tV6gPcFVu8 {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/11-1920x1200.jpg");
}
.cid-tV6gPcFVu8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPcFVu8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV6gPcFVu8 .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-tV6gPcFVu8 .col {
    width: 45%;
  }
}
.cid-tV6gPcFVu8 .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tV6gPcFVu8 .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-tV6gPcFVu8 .card-wrapper h1,
.cid-tV6gPcFVu8 .card-wrapper h2,
.cid-tV6gPcFVu8 .card-wrapper p,
.cid-tV6gPcFVu8 .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-tV6gPcFVu8 .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1d5356;
  opacity: 0.8;
}
.cid-tV6gPcFVu8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tV6gPcFVu8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tV6gPcFVu8 .mbr-text,
.cid-tV6gPcFVu8 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tV6gPdMi22 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-tV6gPdMi22 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPdMi22 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6gPdMi22 img {
  border-radius: 3rem;
  border-bottom-left-radius: 20rem;
}
@media (max-width: 767px) {
  .cid-tV6gPdMi22 img {
    border-bottom-left-radius: 3rem;
  }
}
.cid-tV6gPdMi22 .row {
  flex-direction: row-reverse;
}
.cid-tV6gPdMi22 .row {
  align-items: center;
}
.cid-tV6gPdMi22 .mbr-section-title {
  color: #491414;
  text-align: center;
}
.cid-tV6gPdMi22 .mbr-text,
.cid-tV6gPdMi22 .mbr-section-btn {
  color: #491414;
}
.cid-tV6gPeNwy8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tV6gPeNwy8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPeNwy8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6gPeNwy8 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tV6gPeNwy8 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tV6gPeNwy8 .container {
    padding: 0 24px;
  }
}
.cid-tV6gPeNwy8 .row {
  justify-content: center;
}
.cid-tV6gPeNwy8 .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tV6gPeNwy8 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tV6gPeNwy8 .content-wrapper {
    padding: 32px;
  }
}
.cid-tV6gPeNwy8 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tV6gPeNwy8 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tV6gPeNwy8 .mbr-section-title {
  color: #FF3399;
}
.cid-tV6gPeNwy8 .mbr-text {
  color: #262642;
}
.cid-tV6gPfFp1q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e6e6e6;
}
.cid-tV6gPfFp1q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPfFp1q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6gPfFp1q .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-tV6gPfFp1q .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-tV6gPfFp1q .container {
    padding: 0 6px;
  }
}
.cid-tV6gPfFp1q .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-tV6gPfFp1q .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-tV6gPfFp1q .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-tV6gPfFp1q .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-tV6gPfFp1q .row {
    padding: 70px 30px;
  }
}
.cid-tV6gPfFp1q .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-tV6gPfFp1q .desc-wrapper {
  padding-right: 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tV6gPfFp1q .desc-wrapper {
    padding: 0;
  }
}
.cid-tV6gPfFp1q .desc-wrapper .mbr-desc {
  padding: 10px 18px;
  display: inline-flex;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  margin-bottom: 0;
}
.cid-tV6gPfFp1q .title-wrapper {
  margin-bottom: 64px;
}
.cid-tV6gPfFp1q .title-wrapper span {
  color: #009472;
}
.cid-tV6gPfFp1q .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tV6gPfFp1q .buttons-wrap {
  display: flex;
  height: 100%;
  align-items: flex-end;
  margin-bottom: 64px;
}
.cid-tV6gPfFp1q .cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .cid-tV6gPfFp1q .cards-wrapper {
    display: block;
  }
}
.cid-tV6gPfFp1q .cards-wrapper .item {
  position: relative;
  margin-bottom: 90px;
}
.cid-tV6gPfFp1q .cards-wrapper .item:hover,
.cid-tV6gPfFp1q .cards-wrapper .item:focus {
  cursor: pointer;
}
.cid-tV6gPfFp1q .cards-wrapper .item:nth-child(3n) .item-decor {
  background-color: #009472;
}
.cid-tV6gPfFp1q .cards-wrapper .item:nth-child(3n) .item-wrapper .item-img {
  background-color: #009472;
}
.cid-tV6gPfFp1q .cards-wrapper .item .item-decor {
  position: absolute;
  top: -30px;
  left: 0;
  height: 50px;
  width: 150px;
  background-color: #009472;
  border-radius: 16px 16px 0 0;
}
.cid-tV6gPfFp1q .cards-wrapper .item .item-wrapper {
  border-radius: 16px !important;
  background-color: #ffffff;
  height: 100%;
}
.cid-tV6gPfFp1q .cards-wrapper .item .item-wrapper .item-img {
  padding: 150px 30px 30px;
  background-color: #009472;
  margin-bottom: 40px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tV6gPfFp1q .cards-wrapper .item .item-wrapper .item-img {
    padding: 150px 22px 22px;
  }
}
.cid-tV6gPfFp1q .cards-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: -2rem;
  right: -1rem;
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 50% !important;
}
.cid-tV6gPfFp1q .cards-wrapper .item .item-wrapper .item-img .card-title {
  margin: 0;
}
.cid-tV6gPfFp1q .cards-wrapper .item .item-wrapper .item-content {
  padding: 0 30px 30px;
}
@media (max-width: 992px) {
  .cid-tV6gPfFp1q .cards-wrapper .item .item-wrapper .item-content {
    padding: 0 22px 22px;
  }
}
.cid-tV6gPfFp1q .cards-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-tV6gPfFp1q .mbr-desc {
  color: #262626;
}
.cid-tV6gPfFp1q .mbr-section-title {
  color: #131313;
}
.cid-tV6gPfFp1q .card-title {
  color: #ffffff;
}
.cid-tV6gPfFp1q .card-text {
  color: #131313;
}
.cid-tV6gPfFp1q .card-title,
.cid-tV6gPfFp1q .mbr-section-btn {
  text-align: center;
}
.cid-tV6gPgWyoS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-tV6gPgWyoS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPgWyoS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6gPgWyoS .text-wrapper {
  border-left: 4px solid #1d5356;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .cid-tV6gPgWyoS .text-wrapper {
    padding-left: 0rem;
    border-left: 0;
  }
}
.cid-tV6gPgWyoS .image-wrapper {
  position: relative;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-tV6gPgWyoS .image-wrapper {
    padding: 1rem;
  }
}
.cid-tV6gPgWyoS .image-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  transform: rotate(-2deg);
  top: 0;
  width: 100%;
  height: 100%;
  border: 6px solid #1d5356;
  opacity: 0.8;
  border-radius: 3rem;
}
.cid-tV6gPgWyoS .image-wrapper img {
  transform: rotate(2deg);
  border-radius: 3rem;
}
.cid-tV6gPgWyoS .row {
  flex-direction: row-reverse;
}
.cid-tV6gPgWyoS .row {
  align-items: center;
}
.cid-tV6gPgWyoS .mbr-section-title {
  color: #491414;
}
.cid-tV6gPgWyoS .mbr-text,
.cid-tV6gPgWyoS .mbr-section-btn {
  color: #491414;
}
.cid-tV6gPgWyoS .mbr-section-subtitle {
  color: #491414;
}
.cid-tV6gPhTQBB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1d5356;
}
.cid-tV6gPhTQBB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPhTQBB .mbr-section-title {
  padding-bottom: 5rem;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tV6gPhTQBB .mbr-section-title {
    padding-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tV6gPhTQBB .text-wrapper {
    padding: 0 3rem;
  }
}
.cid-tV6gPhTQBB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6gPhTQBB img {
  border-radius: 3rem;
}
.cid-tV6gPhTQBB .mbr-text,
.cid-tV6gPhTQBB .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tV6gPiWG9M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV6gPiWG9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPiWG9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6gPiWG9M .mbr-section-subtitle {
  color: #491414;
}
.cid-tV6gPiWG9M .mbr-section-title {
  color: #491414;
}
.cid-tV6gPjOJvK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
@media (max-width: 992px) {
  .cid-tV6gPjOJvK .container {
    padding: 0 25px;
  }
}
.cid-tV6gPjOJvK .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tV6gPjOJvK .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tV6gPjOJvK .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tV6gPjOJvK .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tV6gPjOJvK .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tV6gPjOJvK .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tV6gPjOJvK .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tV6gPjOJvK .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tV6gPjOJvK .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tV6gPjOJvK .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tV6gPjOJvK .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tV6gPjOJvK .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tV6gPjOJvK .mbr-section-title {
  color: #ffffff;
}
.cid-tV6gPjOJvK .panel-title-edit {
  color: #ffffff;
}
.cid-tV6gPjOJvK .panel-text {
  color: #000000;
}
.cid-tV6gPndEYi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV6gPndEYi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPndEYi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6gPndEYi .mbr-section-subtitle {
  color: #491414;
}
.cid-tV6gPndEYi .mbr-section-title {
  color: #491414;
}
.cid-tV6gPpxGor {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-tV6gPpxGor .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPpxGor .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1400px) {
  .cid-tV6gPpxGor .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tV6gPpxGor img {
  border-radius: 3rem;
}
.cid-tV6gPpxGor .row {
  align-items: center;
}
.cid-tV6gPpxGor .mbr-section-title {
  color: #1d5356;
}
.cid-tV6gPpxGor .mbr-text,
.cid-tV6gPpxGor .mbr-section-btn {
  color: #491414;
}
.cid-tV6gPpxGor .mbr-section-subtitle {
  color: #491414;
}
.cid-tV6gPrY2Fh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV6gPrY2Fh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPrY2Fh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6gPrY2Fh .mbr-section-subtitle {
  text-align: center;
}
.cid-tV6gPrY2Fh .mbr-section-subtitle,
.cid-tV6gPrY2Fh .iconfont-wrapper {
  text-align: center;
  color: #1d5356;
}
.cid-tV6gPrY2Fh .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d5c409;
  margin-bottom: 2rem;
}
.cid-tV6gPrY2Fh .mbr-section-maintitle,
.cid-tV6gPrY2Fh .iconfont-wrapper {
  color: #1d5356;
}
.cid-tV6gPrY2Fh .mbr-section-title,
.cid-tV6gPrY2Fh .iconfont-wrapper {
  color: #1d5356;
}
.cid-tV6gPtmLcY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tV6gPtmLcY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPtmLcY .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-tV6gPtmLcY .container {
    padding: 0 30px;
  }
}
.cid-tV6gPtmLcY .row {
  justify-content: center;
}
.cid-tV6gPtmLcY .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tV6gPtmLcY .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tV6gPtmLcY .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-tV6gPtmLcY .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-tV6gPtmLcY .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tV6gPtmLcY .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tV6gPtmLcY .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tV6gPuPMv5 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/adobestock-129091255-scaled-2000x1334.jpg");
}
.cid-tV6gPuPMv5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPuPMv5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV6gPuPMv5 .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-tV6gPuPMv5 .col {
    width: 40%;
  }
}
.cid-tV6gPuPMv5 .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tV6gPuPMv5 .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-tV6gPuPMv5 .card-wrapper h1,
.cid-tV6gPuPMv5 .card-wrapper h2,
.cid-tV6gPuPMv5 .card-wrapper p,
.cid-tV6gPuPMv5 .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-tV6gPuPMv5 .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ecede8;
  opacity: 1;
}
.cid-tV6gPuPMv5 .mbr-section-title {
  color: #491414;
}
.cid-tV6gPuPMv5 .mbr-section-subtitle {
  color: #491414;
}
.cid-tV6gPuPMv5 .mbr-text,
.cid-tV6gPuPMv5 .mbr-section-btn {
  color: #491414;
}
.cid-tV6gPxNWfh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV6gPxNWfh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPxNWfh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6gPxNWfh .row {
  position: relative;
  padding: 8rem 4rem;
  border-radius: 20rem;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-tV6gPxNWfh .row {
    padding: 2rem 1rem;
    border-radius: 3rem;
  }
}
.cid-tV6gPxNWfh .row:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 20rem;
  height: 100%;
  background: #1d5356;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-tV6gPxNWfh .row:before {
    border-radius: 3rem;
  }
}
.cid-tV6gPxNWfh .row .col-12 {
  position: relative;
}
.cid-tV6gPxNWfh .mbr-section-title {
  color: #ffffff;
}
.cid-tV6gPxNWfh .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tV6gPxNWfh .mbr-text,
.cid-tV6gPxNWfh .mbr-section-btn {
  color: #ffffff;
}
.cid-tV6gPyXD3O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tV6gPyXD3O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPyXD3O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-tV6gPyXD3O .container {
    padding: 0 24px;
  }
}
.cid-tV6gPyXD3O .row {
  border-top: 1px solid #72716b;
}
@media (min-width: 992px) {
  .cid-tV6gPyXD3O .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tV6gPyXD3O .row {
    border: none;
  }
}
.cid-tV6gPyXD3O .row .card {
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-tV6gPyXD3O .row .card {
    padding: 0 16px;
  }
}
.cid-tV6gPyXD3O .content-wrapper {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tV6gPyXD3O .content-wrapper {
    padding: 24px;
  }
}
.cid-tV6gPyXD3O .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tV6gPyXD3O .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-tV6gPyXD3O .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tV6gPyXD3O .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-tV6gPyXD3O .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-tV6gPyXD3O .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-tV6gPyXD3O .panel-group .card {
  padding: 32px;
  border-top: 1px solid #72716b;
  border-left: 1px solid #72716b;
  border-radius: 0 !important;
}
.cid-tV6gPyXD3O .panel-group .card:first-child {
  border-top: none;
}
@media (max-width: 992px) {
  .cid-tV6gPyXD3O .panel-group .card:first-child {
    border-top: 1px solid #72716b;
  }
}
@media (max-width: 992px) {
  .cid-tV6gPyXD3O .panel-group .card {
    padding: 24px;
    border-left: none;
  }
}
.cid-tV6gPyXD3O .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-tV6gPyXD3O .panel-group .card .card-header .panel-title {
  display: block;
}
.cid-tV6gPyXD3O .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  display: inline;
  padding-left: 24px;
  border-left: 1px solid #e0b548;
}
.cid-tV6gPyXD3O .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.cid-tV6gPyXD3O .panel-group .card .card-header .panel-title .panel-title-edit span {
  color: #f9f6e0;
}
.cid-tV6gPyXD3O .panel-group .card .panel-collapse .panel-body {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .cid-tV6gPyXD3O .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-tV6gPyXD3O .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tV6gPyXD3O .mbr-section-title {
  color: #F9F6E0;
}
.cid-tV6gPyXD3O .mbr-text {
  color: #F9F6E0;
  text-align: right;
}
.cid-tV6gPyXD3O .panel-title-edit {
  color: #E0B548;
}
.cid-tV6gPyXD3O .panel-text {
  color: #F9F6E0;
}
.cid-tV6gPyXD3O .mbr-section-title,
.cid-tV6gPyXD3O .mbr-section-btn {
  text-align: right;
}
.cid-tV6gPAp42p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #1d5356;
}
.cid-tV6gPAp42p .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPAp42p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6gPAp42p .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tV6gPAp42p .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tV6gPAp42p .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-tV6gPAp42p .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tV6gPAp42p .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tV6gPAp42p .mbr-section-title {
  color: #ffffff;
}
.cid-tV6gPBKMlE {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #dfdbd7;
}
.cid-tV6gPBKMlE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6gPBKMlE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6gPBKMlE .container {
  max-width: 1600px;
}
.cid-tV6gPBKMlE .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV6gPBKMlE .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tV6gPBKMlE .border-container {
    padding: 30px 0;
  }
}
.cid-tV6gPBKMlE .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tV6gPBKMlE .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tV6gPBKMlE .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tV6gPBKMlE .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tV6gPBKMlE .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #dfdbd7;
  border-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV6gPBKMlE .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tV6gPBKMlE .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tV6gPBKMlE .border-frame {
    width: 7%;
  }
}
.cid-tV6gPBKMlE .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tV6gPBKMlE .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tV6gPBKMlE .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV6gPBKMlE .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tV6gPBKMlE .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
  }
}
@media (max-width: 575px) {
  .cid-tV6gPBKMlE .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tV6gPBKMlE .footer-item {
  height: 100%;
}
.cid-tV6gPBKMlE .mbr-section-subtitle {
  color: #009472;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tV6gPBKMlE .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tV6gPBKMlE .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tV6gPBKMlE .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tV6gPBKMlE .mbr-section-btn {
  margin-top: 20px;
}
.cid-tV6gPBKMlE .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tV6gPBKMlE .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tV6gPBKMlE .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tV6gPBKMlE .list li:hover {
  color: #d5c409 !important;
}
.cid-tV6gPBKMlE .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV6gPBKMlE .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV6gPBKMlE .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV6gPBKMlE .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV6gPBKMlE .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tV6gPBKMlE .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tV6gPBKMlE .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tV6gPBKMlE .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tV6gPBKMlE .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tV6gPBKMlE .soc-item:hover .mbr-iconfont {
  color: #d5c409 !important;
}
.cid-tV6gPBKMlE .soc-item:hover .social-text {
  color: #d5c409 !important;
}
.cid-tV6gPBKMlE .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tV6gPBKMlE .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tV6gPBKMlE .copyright-container {
    margin-top: 30px;
  }
}
.cid-tV6gPBKMlE .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tV6gPBKMlE .copyright-text {
    text-align: center !important;
  }
}
.cid-tV6gPBKMlE .mbr-text,
.cid-tV6gPBKMlE .mbr-section-btn {
  color: #009472;
}
.cid-tV5SAwQXcq {
  z-index: 1000;
  width: 100%;
}
.cid-tV5SAwQXcq nav.navbar {
  position: fixed;
}
.cid-tV5SAwQXcq .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-tV5SAwQXcq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV5SAwQXcq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV5SAwQXcq .dropdown-item:hover,
.cid-tV5SAwQXcq .dropdown-item:focus {
  background: #d5c409 !important;
  color: white !important;
}
.cid-tV5SAwQXcq .dropdown-item:hover span {
  color: white;
}
.cid-tV5SAwQXcq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV5SAwQXcq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV5SAwQXcq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV5SAwQXcq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV5SAwQXcq .nav-link {
  position: relative;
}
.cid-tV5SAwQXcq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV5SAwQXcq .container {
    flex-wrap: nowrap;
  }
}
.cid-tV5SAwQXcq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tV5SAwQXcq .dropdown-menu,
.cid-tV5SAwQXcq .navbar.opened {
  background: #ecede8 !important;
}
.cid-tV5SAwQXcq .nav-item:focus,
.cid-tV5SAwQXcq .nav-link:focus {
  outline: none;
}
.cid-tV5SAwQXcq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV5SAwQXcq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV5SAwQXcq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV5SAwQXcq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV5SAwQXcq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV5SAwQXcq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV5SAwQXcq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(236, 237, 232, 0.7);
  backdrop-filter: blur(5px);
}
.cid-tV5SAwQXcq .navbar.opened {
  transition: all 0.3s;
}
.cid-tV5SAwQXcq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV5SAwQXcq .navbar .navbar-logo img {
  width: auto;
}
.cid-tV5SAwQXcq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV5SAwQXcq .navbar.collapsed {
  justify-content: center;
}
.cid-tV5SAwQXcq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV5SAwQXcq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV5SAwQXcq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tV5SAwQXcq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV5SAwQXcq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV5SAwQXcq .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-tV5SAwQXcq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV5SAwQXcq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV5SAwQXcq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV5SAwQXcq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV5SAwQXcq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV5SAwQXcq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV5SAwQXcq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV5SAwQXcq .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-tV5SAwQXcq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV5SAwQXcq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV5SAwQXcq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV5SAwQXcq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV5SAwQXcq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV5SAwQXcq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV5SAwQXcq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV5SAwQXcq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tV5SAwQXcq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV5SAwQXcq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tV5SAwQXcq .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-tV5SAwQXcq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV5SAwQXcq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV5SAwQXcq .dropdown-item.active,
.cid-tV5SAwQXcq .dropdown-item:active {
  background-color: transparent;
}
.cid-tV5SAwQXcq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV5SAwQXcq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV5SAwQXcq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV5SAwQXcq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ecede8;
}
.cid-tV5SAwQXcq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV5SAwQXcq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV5SAwQXcq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV5SAwQXcq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tV5SAwQXcq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tV5SAwQXcq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tV5SAwQXcq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tV5SAwQXcq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV5SAwQXcq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tV5SAwQXcq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tV5SAwQXcq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV5SAwQXcq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tV5SAwQXcq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV5SAwQXcq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tV5SAwQXcq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV5SAwQXcq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV5SAwQXcq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tV5SAwQXcq .navbar {
    height: 70px;
  }
  .cid-tV5SAwQXcq .navbar.opened {
    height: auto;
  }
  .cid-tV5SAwQXcq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tV5SAywxuN {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/67060036-m-2000x1333.jpg");
}
.cid-tV5SAywxuN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SAywxuN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV5SAywxuN .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-tV5SAywxuN .col {
    width: 45%;
  }
}
.cid-tV5SAywxuN .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tV5SAywxuN .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-tV5SAywxuN .card-wrapper h1,
.cid-tV5SAywxuN .card-wrapper h2,
.cid-tV5SAywxuN .card-wrapper p,
.cid-tV5SAywxuN .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-tV5SAywxuN .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1d5356;
  opacity: 0.8;
}
.cid-tV5SAywxuN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tV5SAywxuN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tV5SAywxuN .mbr-text,
.cid-tV5SAywxuN .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tV5SAA3pT3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-tV5SAA3pT3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SAA3pT3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5SAA3pT3 img {
  border-radius: 3rem;
  border-bottom-left-radius: 20rem;
}
@media (max-width: 767px) {
  .cid-tV5SAA3pT3 img {
    border-bottom-left-radius: 3rem;
  }
}
.cid-tV5SAA3pT3 .row {
  flex-direction: row-reverse;
}
.cid-tV5SAA3pT3 .row {
  align-items: center;
}
.cid-tV5SAA3pT3 .mbr-section-title {
  color: #491414;
  text-align: center;
}
.cid-tV5SAA3pT3 .mbr-text,
.cid-tV5SAA3pT3 .mbr-section-btn {
  color: #491414;
}
.cid-tV5SABjG5L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tV5SABjG5L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SABjG5L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5SABjG5L .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tV5SABjG5L .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tV5SABjG5L .container {
    padding: 0 24px;
  }
}
.cid-tV5SABjG5L .row {
  justify-content: center;
}
.cid-tV5SABjG5L .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tV5SABjG5L .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tV5SABjG5L .content-wrapper {
    padding: 32px;
  }
}
.cid-tV5SABjG5L .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tV5SABjG5L .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tV5SABjG5L .mbr-section-title {
  color: #FF3399;
}
.cid-tV5SABjG5L .mbr-text {
  color: #262642;
}
.cid-tV5SACtFFm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e6e6e6;
}
.cid-tV5SACtFFm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SACtFFm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5SACtFFm .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-tV5SACtFFm .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-tV5SACtFFm .container {
    padding: 0 6px;
  }
}
.cid-tV5SACtFFm .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-tV5SACtFFm .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-tV5SACtFFm .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-tV5SACtFFm .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-tV5SACtFFm .row {
    padding: 70px 30px;
  }
}
.cid-tV5SACtFFm .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-tV5SACtFFm .desc-wrapper {
  padding-right: 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tV5SACtFFm .desc-wrapper {
    padding: 0;
  }
}
.cid-tV5SACtFFm .desc-wrapper .mbr-desc {
  padding: 10px 18px;
  display: inline-flex;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  margin-bottom: 0;
}
.cid-tV5SACtFFm .title-wrapper {
  margin-bottom: 64px;
}
.cid-tV5SACtFFm .title-wrapper span {
  color: #009472;
}
.cid-tV5SACtFFm .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tV5SACtFFm .buttons-wrap {
  display: flex;
  height: 100%;
  align-items: flex-end;
  margin-bottom: 64px;
}
.cid-tV5SACtFFm .cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .cid-tV5SACtFFm .cards-wrapper {
    display: block;
  }
}
.cid-tV5SACtFFm .cards-wrapper .item {
  position: relative;
  margin-bottom: 90px;
}
.cid-tV5SACtFFm .cards-wrapper .item:hover,
.cid-tV5SACtFFm .cards-wrapper .item:focus {
  cursor: pointer;
}
.cid-tV5SACtFFm .cards-wrapper .item:nth-child(3n) .item-decor {
  background-color: #009472;
}
.cid-tV5SACtFFm .cards-wrapper .item:nth-child(3n) .item-wrapper .item-img {
  background-color: #009472;
}
.cid-tV5SACtFFm .cards-wrapper .item .item-decor {
  position: absolute;
  top: -30px;
  left: 0;
  height: 50px;
  width: 150px;
  background-color: #009472;
  border-radius: 16px 16px 0 0;
}
.cid-tV5SACtFFm .cards-wrapper .item .item-wrapper {
  border-radius: 16px !important;
  background-color: #ffffff;
  height: 100%;
}
.cid-tV5SACtFFm .cards-wrapper .item .item-wrapper .item-img {
  padding: 150px 30px 30px;
  background-color: #009472;
  margin-bottom: 40px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tV5SACtFFm .cards-wrapper .item .item-wrapper .item-img {
    padding: 150px 22px 22px;
  }
}
.cid-tV5SACtFFm .cards-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: -2rem;
  right: -1rem;
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 50% !important;
}
.cid-tV5SACtFFm .cards-wrapper .item .item-wrapper .item-img .card-title {
  margin: 0;
}
.cid-tV5SACtFFm .cards-wrapper .item .item-wrapper .item-content {
  padding: 0 30px 30px;
}
@media (max-width: 992px) {
  .cid-tV5SACtFFm .cards-wrapper .item .item-wrapper .item-content {
    padding: 0 22px 22px;
  }
}
.cid-tV5SACtFFm .cards-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-tV5SACtFFm .mbr-desc {
  color: #262626;
}
.cid-tV5SACtFFm .mbr-section-title {
  color: #131313;
}
.cid-tV5SACtFFm .card-title {
  color: #ffffff;
}
.cid-tV5SACtFFm .card-text {
  color: #131313;
}
.cid-tV5SACtFFm .card-title,
.cid-tV5SACtFFm .mbr-section-btn {
  text-align: center;
}
.cid-tV5SAEf5PT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-tV5SAEf5PT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SAEf5PT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5SAEf5PT .text-wrapper {
  border-left: 4px solid #1d5356;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .cid-tV5SAEf5PT .text-wrapper {
    padding-left: 0rem;
    border-left: 0;
  }
}
.cid-tV5SAEf5PT .image-wrapper {
  position: relative;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-tV5SAEf5PT .image-wrapper {
    padding: 1rem;
  }
}
.cid-tV5SAEf5PT .image-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  transform: rotate(-2deg);
  top: 0;
  width: 100%;
  height: 100%;
  border: 6px solid #1d5356;
  opacity: 0.8;
  border-radius: 3rem;
}
.cid-tV5SAEf5PT .image-wrapper img {
  transform: rotate(2deg);
  border-radius: 3rem;
}
.cid-tV5SAEf5PT .row {
  flex-direction: row-reverse;
}
.cid-tV5SAEf5PT .row {
  align-items: center;
}
.cid-tV5SAEf5PT .mbr-section-title {
  color: #491414;
}
.cid-tV5SAEf5PT .mbr-text,
.cid-tV5SAEf5PT .mbr-section-btn {
  color: #491414;
}
.cid-tV5SAEf5PT .mbr-section-subtitle {
  color: #491414;
}
.cid-tV5SAFztOI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1d5356;
}
.cid-tV5SAFztOI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SAFztOI .mbr-section-title {
  padding-bottom: 5rem;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tV5SAFztOI .mbr-section-title {
    padding-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tV5SAFztOI .text-wrapper {
    padding: 0 3rem;
  }
}
.cid-tV5SAFztOI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5SAFztOI img {
  border-radius: 3rem;
}
.cid-tV5SAFztOI .mbr-text,
.cid-tV5SAFztOI .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tV5SAHhYOU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV5SAHhYOU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SAHhYOU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5SAHhYOU .mbr-section-subtitle {
  color: #491414;
}
.cid-tV5SAHhYOU .mbr-section-title {
  color: #491414;
}
.cid-tV5SAIKgSX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
@media (max-width: 992px) {
  .cid-tV5SAIKgSX .container {
    padding: 0 25px;
  }
}
.cid-tV5SAIKgSX .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tV5SAIKgSX .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tV5SAIKgSX .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tV5SAIKgSX .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tV5SAIKgSX .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tV5SAIKgSX .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tV5SAIKgSX .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tV5SAIKgSX .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tV5SAIKgSX .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tV5SAIKgSX .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tV5SAIKgSX .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tV5SAIKgSX .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tV5SAIKgSX .mbr-section-title {
  color: #ffffff;
}
.cid-tV5SAIKgSX .panel-title-edit {
  color: #ffffff;
}
.cid-tV5SAIKgSX .panel-text {
  color: #000000;
}
.cid-tV5SAKy97x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV5SAKy97x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SAKy97x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5SAKy97x .mbr-section-subtitle {
  color: #491414;
}
.cid-tV5SAKy97x .mbr-section-title {
  color: #491414;
}
.cid-tV5SALY8XF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-tV5SALY8XF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SALY8XF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1400px) {
  .cid-tV5SALY8XF .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tV5SALY8XF img {
  border-radius: 3rem;
}
.cid-tV5SALY8XF .row {
  align-items: center;
}
.cid-tV5SALY8XF .mbr-section-title {
  color: #1d5356;
}
.cid-tV5SALY8XF .mbr-text,
.cid-tV5SALY8XF .mbr-section-btn {
  color: #491414;
}
.cid-tV5SALY8XF .mbr-section-subtitle {
  color: #491414;
}
.cid-tV5SANoGug {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV5SANoGug .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SANoGug .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5SANoGug .mbr-section-subtitle {
  text-align: center;
}
.cid-tV5SANoGug .mbr-section-subtitle,
.cid-tV5SANoGug .iconfont-wrapper {
  text-align: center;
  color: #1d5356;
}
.cid-tV5SANoGug .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d5c409;
  margin-bottom: 2rem;
}
.cid-tV5SANoGug .mbr-section-maintitle,
.cid-tV5SANoGug .iconfont-wrapper {
  color: #1d5356;
}
.cid-tV5SANoGug .mbr-section-title,
.cid-tV5SANoGug .iconfont-wrapper {
  color: #1d5356;
}
.cid-tV5SAOR1pu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tV5SAOR1pu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SAOR1pu .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-tV5SAOR1pu .container {
    padding: 0 30px;
  }
}
.cid-tV5SAOR1pu .row {
  justify-content: center;
}
.cid-tV5SAOR1pu .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tV5SAOR1pu .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tV5SAOR1pu .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-tV5SAOR1pu .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-tV5SAOR1pu .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tV5SAOR1pu .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tV5SAOR1pu .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tV5SAQsGKJ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/portable-aed-equipment-1290x770.jpg");
}
.cid-tV5SAQsGKJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SAQsGKJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV5SAQsGKJ .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-tV5SAQsGKJ .col {
    width: 40%;
  }
}
.cid-tV5SAQsGKJ .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tV5SAQsGKJ .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-tV5SAQsGKJ .card-wrapper h1,
.cid-tV5SAQsGKJ .card-wrapper h2,
.cid-tV5SAQsGKJ .card-wrapper p,
.cid-tV5SAQsGKJ .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-tV5SAQsGKJ .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ecede8;
  opacity: 1;
}
.cid-tV5SAQsGKJ .mbr-section-title {
  color: #491414;
}
.cid-tV5SAQsGKJ .mbr-section-subtitle {
  color: #491414;
}
.cid-tV5SAQsGKJ .mbr-text,
.cid-tV5SAQsGKJ .mbr-section-btn {
  color: #491414;
}
.cid-tV5SATnKw1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-tV5SATnKw1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SATnKw1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5SATnKw1 .row {
  position: relative;
  padding: 8rem 4rem;
  border-radius: 20rem;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-tV5SATnKw1 .row {
    padding: 2rem 1rem;
    border-radius: 3rem;
  }
}
.cid-tV5SATnKw1 .row:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 20rem;
  height: 100%;
  background: #1d5356;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-tV5SATnKw1 .row:before {
    border-radius: 3rem;
  }
}
.cid-tV5SATnKw1 .row .col-12 {
  position: relative;
}
.cid-tV5SATnKw1 .mbr-section-title {
  color: #ffffff;
}
.cid-tV5SATnKw1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tV5SATnKw1 .mbr-text,
.cid-tV5SATnKw1 .mbr-section-btn {
  color: #ffffff;
}
.cid-tV5YNk4pQY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tV5YNk4pQY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5YNk4pQY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-tV5YNk4pQY .container {
    padding: 0 24px;
  }
}
.cid-tV5YNk4pQY .row {
  border-top: 1px solid #72716b;
}
@media (min-width: 992px) {
  .cid-tV5YNk4pQY .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tV5YNk4pQY .row {
    border: none;
  }
}
.cid-tV5YNk4pQY .row .card {
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-tV5YNk4pQY .row .card {
    padding: 0 16px;
  }
}
.cid-tV5YNk4pQY .content-wrapper {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tV5YNk4pQY .content-wrapper {
    padding: 24px;
  }
}
.cid-tV5YNk4pQY .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tV5YNk4pQY .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-tV5YNk4pQY .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tV5YNk4pQY .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-tV5YNk4pQY .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-tV5YNk4pQY .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-tV5YNk4pQY .panel-group .card {
  padding: 32px;
  border-top: 1px solid #72716b;
  border-left: 1px solid #72716b;
  border-radius: 0 !important;
}
.cid-tV5YNk4pQY .panel-group .card:first-child {
  border-top: none;
}
@media (max-width: 992px) {
  .cid-tV5YNk4pQY .panel-group .card:first-child {
    border-top: 1px solid #72716b;
  }
}
@media (max-width: 992px) {
  .cid-tV5YNk4pQY .panel-group .card {
    padding: 24px;
    border-left: none;
  }
}
.cid-tV5YNk4pQY .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-tV5YNk4pQY .panel-group .card .card-header .panel-title {
  display: block;
}
.cid-tV5YNk4pQY .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  display: inline;
  padding-left: 24px;
  border-left: 1px solid #e0b548;
}
.cid-tV5YNk4pQY .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.cid-tV5YNk4pQY .panel-group .card .card-header .panel-title .panel-title-edit span {
  color: #f9f6e0;
}
.cid-tV5YNk4pQY .panel-group .card .panel-collapse .panel-body {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .cid-tV5YNk4pQY .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-tV5YNk4pQY .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tV5YNk4pQY .mbr-section-title {
  color: #F9F6E0;
}
.cid-tV5YNk4pQY .mbr-text {
  color: #F9F6E0;
  text-align: right;
}
.cid-tV5YNk4pQY .panel-title-edit {
  color: #E0B548;
}
.cid-tV5YNk4pQY .panel-text {
  color: #F9F6E0;
}
.cid-tV5YNk4pQY .mbr-section-title,
.cid-tV5YNk4pQY .mbr-section-btn {
  text-align: right;
}
.cid-tV5SAUNs2J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #1d5356;
}
.cid-tV5SAUNs2J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SAUNs2J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5SAUNs2J .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tV5SAUNs2J .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tV5SAUNs2J .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-tV5SAUNs2J .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tV5SAUNs2J .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tV5SAUNs2J .mbr-section-title {
  color: #ffffff;
}
.cid-tV5SAWi5JD {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #dfdbd7;
}
.cid-tV5SAWi5JD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5SAWi5JD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5SAWi5JD .container {
  max-width: 1600px;
}
.cid-tV5SAWi5JD .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5SAWi5JD .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tV5SAWi5JD .border-container {
    padding: 30px 0;
  }
}
.cid-tV5SAWi5JD .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tV5SAWi5JD .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tV5SAWi5JD .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tV5SAWi5JD .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tV5SAWi5JD .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #dfdbd7;
  border-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5SAWi5JD .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tV5SAWi5JD .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tV5SAWi5JD .border-frame {
    width: 7%;
  }
}
.cid-tV5SAWi5JD .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tV5SAWi5JD .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tV5SAWi5JD .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cid-tV5SAWi5JD .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tV5SAWi5JD .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
  }
}
@media (max-width: 575px) {
  .cid-tV5SAWi5JD .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tV5SAWi5JD .footer-item {
  height: 100%;
}
.cid-tV5SAWi5JD .mbr-section-subtitle {
  color: #009472;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tV5SAWi5JD .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tV5SAWi5JD .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tV5SAWi5JD .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tV5SAWi5JD .mbr-section-btn {
  margin-top: 20px;
}
.cid-tV5SAWi5JD .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tV5SAWi5JD .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tV5SAWi5JD .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tV5SAWi5JD .list li:hover {
  color: #d5c409 !important;
}
.cid-tV5SAWi5JD .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5SAWi5JD .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5SAWi5JD .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5SAWi5JD .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tV5SAWi5JD .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tV5SAWi5JD .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tV5SAWi5JD .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tV5SAWi5JD .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tV5SAWi5JD .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tV5SAWi5JD .soc-item:hover .mbr-iconfont {
  color: #d5c409 !important;
}
.cid-tV5SAWi5JD .soc-item:hover .social-text {
  color: #d5c409 !important;
}
.cid-tV5SAWi5JD .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tV5SAWi5JD .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tV5SAWi5JD .copyright-container {
    margin-top: 30px;
  }
}
.cid-tV5SAWi5JD .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tV5SAWi5JD .copyright-text {
    text-align: center !important;
  }
}
.cid-tV5SAWi5JD .mbr-text,
.cid-tV5SAWi5JD .mbr-section-btn {
  color: #009472;
}
