.btn {
  border-width: 2px;
}
body {
  font-family: Anuphan;
}
.display-1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Anuphan', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Anuphan', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Anuphan', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-7 {
  font-family: 'Anuphan', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #2ba7ff !important;
}
.bg-success {
  background-color: #40b0bf !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: #2ba7ff !important;
  border-color: #2ba7ff !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #129cff !important;
  border-color: #129cff !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #129cff !important;
  border-color: #129cff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #cdfb0a !important;
  border-color: #cdfb0a !important;
  color: #050600 !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #000000 !important;
  background-color: #bce804 !important;
  border-color: #bce804 !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #050600 !important;
  background-color: #bce804 !important;
  border-color: #bce804 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #30aceb !important;
  border-color: #30aceb !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #30aceb !important;
  border-color: #30aceb !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #3a9eac !important;
  border-color: #3a9eac !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #3a9eac !important;
  border-color: #3a9eac !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #473a00 !important;
  background-color: #ffdc47 !important;
  border-color: #ffdc47 !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffdc47 !important;
  border-color: #ffdc47 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff884c !important;
  border-color: #ff884c !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff884c !important;
  border-color: #ff884c !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #6e6e6e !important;
  background-color: #ededed !important;
  border-color: #ededed !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #ededed !important;
  border-color: #ededed !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #161616 !important;
  border-color: #161616 !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #161616 !important;
  border-color: #161616 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #2ba7ff;
  color: #2ba7ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #007cd3 !important;
  background-color: transparent !important;
  border-color: #007cd3 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2ba7ff !important;
  border-color: #2ba7ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #cdfb0a;
  color: #cdfb0a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8bab03 !important;
  background-color: transparent !important;
  border-color: #8bab03 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #050600 !important;
  background-color: #cdfb0a !important;
  border-color: #cdfb0a !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: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: #2a747e !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2ba7ff !important;
}
.text-secondary {
  color: #cdfb0a !important;
}
.text-success {
  color: #40b0bf !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: #0073c4 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #7f9c03 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #2ba7ff;
}
.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: #2ba7ff;
  border-color: #2ba7ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #2ba7ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f7fcff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: 'Anuphan', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #2ba7ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Anuphan', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #2ba7ff;
}
/* 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: #2ba7ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2ba7ff;
}
.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: #2ba7ff;
  border-bottom-color: #2ba7ff;
}
.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: #2ba7ff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #cdfb0a !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='%232ba7ff' %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-tBnM1aClNb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tBnM1aClNb nav.navbar {
  position: fixed;
}
.cid-tBnM1aClNb .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-tBnM1aClNb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBnM1aClNb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBnM1aClNb .dropdown-item:hover,
.cid-tBnM1aClNb .dropdown-item:focus {
  background: #2ba7ff !important;
  color: white !important;
}
.cid-tBnM1aClNb .dropdown-item:hover span {
  color: white;
}
.cid-tBnM1aClNb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBnM1aClNb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBnM1aClNb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBnM1aClNb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBnM1aClNb .nav-link {
  position: relative;
}
.cid-tBnM1aClNb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBnM1aClNb .container {
    flex-wrap: nowrap;
  }
}
.cid-tBnM1aClNb .iconfont-wrapper {
  color: #04492e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBnM1aClNb .navbar-caption {
  font-weight: 500;
}
.cid-tBnM1aClNb .dropdown-menu,
.cid-tBnM1aClNb .navbar.opened {
  background: #111010 !important;
}
.cid-tBnM1aClNb .nav-item:focus,
.cid-tBnM1aClNb .nav-link:focus {
  outline: none;
}
.cid-tBnM1aClNb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBnM1aClNb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBnM1aClNb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBnM1aClNb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBnM1aClNb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBnM1aClNb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBnM1aClNb .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #111010;
}
.cid-tBnM1aClNb .navbar.opened {
  transition: all 0.3s;
}
.cid-tBnM1aClNb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBnM1aClNb .navbar .navbar-logo img {
  width: auto;
}
.cid-tBnM1aClNb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBnM1aClNb .navbar.collapsed {
  justify-content: center;
}
.cid-tBnM1aClNb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBnM1aClNb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBnM1aClNb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-tBnM1aClNb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBnM1aClNb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBnM1aClNb .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-tBnM1aClNb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBnM1aClNb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBnM1aClNb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBnM1aClNb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBnM1aClNb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBnM1aClNb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBnM1aClNb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBnM1aClNb .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-tBnM1aClNb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBnM1aClNb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBnM1aClNb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBnM1aClNb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBnM1aClNb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBnM1aClNb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBnM1aClNb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBnM1aClNb .navbar.navbar-short {
  min-height: 80px;
}
.cid-tBnM1aClNb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBnM1aClNb .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tBnM1aClNb .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-tBnM1aClNb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBnM1aClNb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBnM1aClNb .dropdown-item.active,
.cid-tBnM1aClNb .dropdown-item:active {
  background-color: transparent;
}
.cid-tBnM1aClNb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBnM1aClNb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBnM1aClNb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBnM1aClNb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111010;
}
.cid-tBnM1aClNb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBnM1aClNb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBnM1aClNb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBnM1aClNb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBnM1aClNb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBnM1aClNb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #04492e;
}
.cid-tBnM1aClNb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBnM1aClNb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBnM1aClNb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBnM1aClNb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBnM1aClNb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBnM1aClNb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBnM1aClNb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBnM1aClNb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBnM1aClNb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBnM1aClNb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBnM1aClNb .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-tBnM1aClNb .navbar {
    height: 70px;
  }
  .cid-tBnM1aClNb .navbar.opened {
    height: auto;
  }
  .cid-tBnM1aClNb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2fsOaxP6C {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2fsOaxP6C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fsOaxP6C .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-v2fsOaxP6C .container {
    padding: 0 30px;
  }
}
.cid-v2fsOaxP6C .row .card {
  justify-content: center;
}
.cid-v2fsOaxP6C .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v2fsOaxP6C .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2fsOaxP6C .image-wrapper {
    margin-top: 30px;
  }
}
.cid-v2fsOaxP6C .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-v2fsOaxP6C .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-v2fsOaxP6C .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-v2fsOaxP6C .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-v2fsOaxP6C .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-v2fsOaxP6C .mbr-section-title {
  color: #ffffff;
}
.cid-v2fsOaxP6C .mbr-section-subtitle {
  color: #000000;
}
.cid-v2fsOaxP6C .mbr-section-title,
.cid-v2fsOaxP6C .mbr-section-btn {
  color: #000000;
}
.cid-v2aev5F4kI {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2aev5F4kI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2aev5F4kI .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-v2aev5F4kI .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v2aev5F4kI .container {
    padding: 0 12px;
  }
}
.cid-v2aev5F4kI .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v2aev5F4kI .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v2aev5F4kI .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v2aev5F4kI .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #111010;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v2aev5F4kI .mbr-section-title {
  color: #222222;
}
.cid-v2af0Nu3RR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2af0Nu3RR .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v2af0Nu3RR .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v2af0Nu3RR .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v2af0Nu3RR .mbr-text {
  color: #000000;
}
.cid-v2af0Nu3RR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2af0Nu3RR .mbr-section-title {
  color: #000000;
}
.cid-v2fFpRx51W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2fFpRx51W .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fFpRx51W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fFpRx51W .row {
  justify-content: center;
}
.cid-v2fFpRx51W .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v2fFpRx51W .title-wrapper .title-wrap {
    margin-bottom: 30px;
  }
}
.cid-v2fFpRx51W .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2fFpRx51W .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
}
.cid-v2fFpRx51W .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-v2fFpRx51W .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2fFpRx51W .mbr-section-title,
.cid-v2fFpRx51W .mbr-iconfont {
  color: #FFBE0D;
}
.cid-v2fFpRx51W .mbr-desc {
  color: #fff7ee;
}
.cid-v2fFpRx51W .mbr-text {
  color: #000000;
}
.cid-v2fFpRx51W .mbr-section-title,
.cid-v2fFpRx51W .title-wrapper,
.cid-v2fFpRx51W .mbr-iconfont {
  color: #000000;
}
.cid-tBnXUPCVJr {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tBnXUPCVJr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBnXUPCVJr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBnXUPCVJr img {
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.cid-tBnXUPCVJr .card-wrapper {
  border: 3px solid #2ba7ff;
  padding: 2rem;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-tBnXUPCVJr .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tBnXUPCVJr .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tBnXUPCVJr .mbr-section-subtitle {
  background: #2ba7ff;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-tBnXUPCVJr .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  padding-left: 20px;
  background: #cdfb0a;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tBnXUPCVJr .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #2ba7ff;
  font-size: 1.5rem;
}
.cid-tBnXUPCVJr .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tBnXUPCVJr .mbr-text,
.cid-tBnXUPCVJr .mbr-section-btn {
  color: #6e6e6e;
}
.cid-tBnXUPCVJr .mbr-section-subtitle2,
.cid-tBnXUPCVJr .align-wrapper {
  color: #04492e;
}
.cid-tBnXUPCVJr .mbr-section-maintitle {
  text-align: center;
  color: #000000;
}
.cid-v2fuCGXPKg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #02050a;
}
.cid-v2fuCGXPKg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fuCGXPKg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fuCGXPKg .row {
  margin: 0 -6px;
}
.cid-v2fuCGXPKg .card {
  padding: 0 6px;
}
.cid-v2fuCGXPKg .image-wrapper {
  position: relative;
  height: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 992px) {
  .cid-v2fuCGXPKg .image-wrapper {
    margin-top: 3px;
    margin-bottom: 3px;
    height: 400px;
  }
}
.cid-v2fuCGXPKg .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v2fuCGXPKg .card-wrapper {
  height: 100%;
  padding: 54px 100px;
  background-color: #f5f8ff;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 1440px) {
  .cid-v2fuCGXPKg .card-wrapper {
    padding: 48px 64px;
  }
}
@media (max-width: 992px) {
  .cid-v2fuCGXPKg .card-wrapper {
    padding: 48px 24px;
    margin-top: 3px;
    margin-bottom: 3px;
  }
}
.cid-v2fuCGXPKg .card-wrapper .title-wrapper .mbr-label {
  margin-bottom: 200px;
}
@media (max-width: 1440px) {
  .cid-v2fuCGXPKg .card-wrapper .title-wrapper .mbr-label {
    margin-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .cid-v2fuCGXPKg .card-wrapper .title-wrapper .mbr-label {
    margin-bottom: 24px;
  }
}
.cid-v2fuCGXPKg .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v2fuCGXPKg .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2fuCGXPKg .card-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 200px;
}
@media (max-width: 1440px) {
  .cid-v2fuCGXPKg .card-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 100px;
  }
}
@media (max-width: 992px) {
  .cid-v2fuCGXPKg .card-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-v2fuCGXPKg .card-wrapper .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v2fuCGXPKg .mbr-label {
  color: #000000;
  text-align: center;
}
.cid-v2fuCGXPKg .mbr-section-title {
  color: #000000;
}
.cid-v2fuCGXPKg .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v2fuCGXPKg .mbr-section-title,
.cid-v2fuCGXPKg .mbr-section-btn {
  text-align: center;
}
.cid-v2adsecDQx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2adsecDQx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2adsecDQx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2adsecDQx .row {
  justify-content: flex-start;
}
.cid-v2adsecDQx .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-v2adsecDQx .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2d4QeQqA4 {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-color: #3d8c92;
}
.cid-v2d4QeQqA4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2d4QeQqA4 .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-v2d4QeQqA4 .container {
    padding: 0 20px;
  }
}
.cid-v2d4QeQqA4 .row {
  margin: 0;
}
.cid-v2d4QeQqA4 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2d4QeQqA4 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2d4QeQqA4 .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v2d4QeQqA4 .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v2d4QeQqA4 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v2d4QeQqA4 .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v2d4QeQqA4 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2adqrrkLO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2adqrrkLO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2adqrrkLO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2adqrrkLO .row {
  justify-content: flex-start;
}
.cid-v2adqrrkLO .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-v2adqrrkLO .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2dsnGbBK6 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3d8c92;
}
.cid-v2dsnGbBK6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2dsnGbBK6 .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-v2dsnGbBK6 .container {
    padding: 0 30px;
  }
}
.cid-v2dsnGbBK6 .row {
  justify-content: center;
}
.cid-v2dsnGbBK6 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v2dsnGbBK6 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v2dsnGbBK6 .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #000000;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-v2dsnGbBK6 .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-v2dsnGbBK6 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2dsnGbBK6 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v2dsnGbBK6 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v2dsnGbBK6 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  background-color: #000000;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-v2dsnGbBK6 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-v2dsnGbBK6 .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-v2dsnGbBK6 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2dsnGbBK6 .mbr-section-title {
  color: #000000;
}
.cid-v2dsnGbBK6 .panel-title-edit {
  color: #000000;
}
.cid-v2dsnGbBK6 .panel-text {
  color: #000000;
}
.cid-v2fV7c4c9H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2fV7c4c9H .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fV7c4c9H .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-v2fV7c4c9H .container {
    padding: 0 16px;
  }
}
.cid-v2fV7c4c9H .card {
  justify-content: center;
}
.cid-v2fV7c4c9H .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #3d8c92;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-v2fV7c4c9H .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2fV7c4c9H .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-v2fV7c4c9H .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-v2fV7c4c9H .mbr-section-title {
  color: #000000;
}
.cid-v2fV7c4c9H .mbr-text {
  color: #000000;
}
.cid-v2fV7c4c9H .mbr-desc {
  color: #000000;
}
.cid-v2fwLl0qi2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2fwLl0qi2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fwLl0qi2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fwLl0qi2 .items-wrapper {
  justify-content: center;
  margin: 0 -15px;
}
.cid-v2fwLl0qi2 .item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v2fwLl0qi2 .item {
    margin-bottom: 15px;
  }
}
.cid-v2fwLl0qi2 .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  border: 1px solid #111010;
}
@media (max-width: 992px) {
  .cid-v2fwLl0qi2 .item .item-wrapper {
    padding: 30px;
  }
}
.cid-v2fwLl0qi2 .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v2fwLl0qi2 .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v2fwLl0qi2 .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  font-size: 25px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-v2fwLl0qi2 .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-v2fwLl0qi2 .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-v2fwLl0qi2 .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-v2fwLl0qi2 .item .item-wrapper .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v2fwLl0qi2 .item .item-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-v2fwLl0qi2 .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-v2fwLl0qi2 .card-title {
  color: #000000;
}
.cid-v2fwLl0qi2 .card-text {
  color: #8a8a8a;
}
.cid-v2fwLl0qi2 .card-text,
.cid-v2fwLl0qi2 .mbr-section-btn {
  color: #000000;
}
.cid-v2fCP9Q4FW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-v2fCP9Q4FW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fCP9Q4FW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fCP9Q4FW .row {
  justify-content: center;
}
.cid-v2fCP9Q4FW .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v2fCP9Q4FW .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v2fCP9Q4FW .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-v2fCP9Q4FW .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2fCP9Q4FW .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-v2fCP9Q4FW .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2fCP9Q4FW .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v2fCP9Q4FW .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v2fCP9Q4FW .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v2fCP9Q4FW .mbr-section-title {
  color: #ffffff;
}
.cid-v2fCP9Q4FW .mbr-section-subtitle {
  color: #cbff5b;
  text-align: center;
}
.cid-v2fCP9Q4FW .mbr-text,
.cid-v2fCP9Q4FW .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v2fCP9Q4FW .mbr-section-title,
.cid-v2fCP9Q4FW .mbr-section-btn {
  text-align: center;
}
.cid-v2fCz2bNin {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-v2fCz2bNin .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fCz2bNin .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fCz2bNin .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-v2fCz2bNin .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-v2fCz2bNin .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-v2fCz2bNin .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-v2fCz2bNin .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-v2fCz2bNin .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-v2fCz2bNin .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v2fCz2bNin .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v2fCz2bNin .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2fCz2bNin .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-v2fCz2bNin .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-v2fCz2bNin .mbr-section-title,
.cid-v2fCz2bNin .mbr-section-btn {
  color: #000000;
}
.cid-tBnYUulbUC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #3d8c92;
}
.cid-tBnYUulbUC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBnYUulbUC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBnYUulbUC .google-map {
  height: 35rem;
  position: relative;
}
.cid-tBnYUulbUC .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tBnYUulbUC .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-tBnYUulbUC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tBnYUulbUC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tBnYUulbUC .mbr-section-title {
  color: #ffffff;
}
.cid-v2a7ycyXhQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111010;
  overflow: hidden;
}
.cid-v2a7ycyXhQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2a7ycyXhQ .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-v2a7ycyXhQ .container {
    padding: 0 30px;
  }
}
.cid-v2a7ycyXhQ .row {
  justify-content: center;
}
.cid-v2a7ycyXhQ .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2a7ycyXhQ .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2a7ycyXhQ .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2a7ycyXhQ .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2a7ycyXhQ .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-v2a7ycyXhQ .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2a7ycyXhQ .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2a7ycyXhQ .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2a7ycyXhQ .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2a7ycyXhQ .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-v2a7ycyXhQ .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2a7ycyXhQ .nav-wrapper .list .item-wrap:hover,
.cid-v2a7ycyXhQ .nav-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2a7ycyXhQ .nav-wrapper .list .item-wrap:hover::before,
.cid-v2a7ycyXhQ .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-v2a7ycyXhQ .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-v2a7ycyXhQ .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2a7ycyXhQ .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2a7ycyXhQ .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #ffffff;
}
.cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2a7ycyXhQ .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2a7ycyXhQ .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2a7ycyXhQ .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2a7ycyXhQ .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #ffffff;
}
.cid-v2a7ycyXhQ .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v2a7ycyXhQ .mbr-section-title {
  color: #bee0d6;
}
.cid-v2a7ycyXhQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2a7ycyXhQ .list {
  color: #bee0d6;
}
.cid-v2a7ycyXhQ .mbr-address {
  color: #ffffff;
}
.cid-v2a7ycyXhQ .mbr-copy {
  color: #ffffff;
}
.cid-v2a7ycyXhQ .list,
.cid-v2a7ycyXhQ .item-wrap,
.cid-v2a7ycyXhQ .nav-wrapper {
  color: #ffffff;
}
.cid-v2a7ycyXhQ .mbr-section-title,
.cid-v2a7ycyXhQ .logo-wrapper {
  color: #2ba7ff;
}
.cid-v2asUTyhAm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v2asUTyhAm nav.navbar {
  position: fixed;
}
.cid-v2asUTyhAm .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-v2asUTyhAm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2asUTyhAm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2asUTyhAm .dropdown-item:hover,
.cid-v2asUTyhAm .dropdown-item:focus {
  background: #2ba7ff !important;
  color: white !important;
}
.cid-v2asUTyhAm .dropdown-item:hover span {
  color: white;
}
.cid-v2asUTyhAm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2asUTyhAm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2asUTyhAm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2asUTyhAm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2asUTyhAm .nav-link {
  position: relative;
}
.cid-v2asUTyhAm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v2asUTyhAm .container {
    flex-wrap: nowrap;
  }
}
.cid-v2asUTyhAm .iconfont-wrapper {
  color: #04492e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2asUTyhAm .navbar-caption {
  font-weight: 500;
}
.cid-v2asUTyhAm .dropdown-menu,
.cid-v2asUTyhAm .navbar.opened {
  background: #111010 !important;
}
.cid-v2asUTyhAm .nav-item:focus,
.cid-v2asUTyhAm .nav-link:focus {
  outline: none;
}
.cid-v2asUTyhAm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2asUTyhAm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2asUTyhAm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2asUTyhAm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2asUTyhAm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2asUTyhAm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2asUTyhAm .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #111010;
}
.cid-v2asUTyhAm .navbar.opened {
  transition: all 0.3s;
}
.cid-v2asUTyhAm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2asUTyhAm .navbar .navbar-logo img {
  width: auto;
}
.cid-v2asUTyhAm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2asUTyhAm .navbar.collapsed {
  justify-content: center;
}
.cid-v2asUTyhAm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2asUTyhAm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2asUTyhAm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-v2asUTyhAm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2asUTyhAm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2asUTyhAm .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-v2asUTyhAm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2asUTyhAm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2asUTyhAm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2asUTyhAm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2asUTyhAm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2asUTyhAm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2asUTyhAm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2asUTyhAm .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-v2asUTyhAm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2asUTyhAm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2asUTyhAm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2asUTyhAm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2asUTyhAm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2asUTyhAm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v2asUTyhAm .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v2asUTyhAm .navbar.navbar-short {
  min-height: 80px;
}
.cid-v2asUTyhAm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2asUTyhAm .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-v2asUTyhAm .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-v2asUTyhAm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2asUTyhAm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2asUTyhAm .dropdown-item.active,
.cid-v2asUTyhAm .dropdown-item:active {
  background-color: transparent;
}
.cid-v2asUTyhAm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2asUTyhAm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2asUTyhAm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2asUTyhAm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111010;
}
.cid-v2asUTyhAm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2asUTyhAm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2asUTyhAm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2asUTyhAm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2asUTyhAm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2asUTyhAm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #04492e;
}
.cid-v2asUTyhAm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2asUTyhAm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2asUTyhAm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2asUTyhAm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2asUTyhAm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2asUTyhAm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2asUTyhAm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2asUTyhAm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2asUTyhAm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2asUTyhAm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2asUTyhAm .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-v2asUTyhAm .navbar {
    height: 70px;
  }
  .cid-v2asUTyhAm .navbar.opened {
    height: auto;
  }
  .cid-v2asUTyhAm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2g35Tw6FV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafaf9;
}
.cid-v2g35Tw6FV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g35Tw6FV .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-v2g35Tw6FV .container {
    padding: 0 16px;
  }
}
.cid-v2g35Tw6FV .row {
  position: relative;
  z-index: 1;
}
.cid-v2g35Tw6FV .card {
  justify-content: flex-end;
}
.cid-v2g35Tw6FV .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-v2g35Tw6FV .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-v2g35Tw6FV .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2g35Tw6FV .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-v2g35Tw6FV .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-v2g35Tw6FV .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-v2g35Tw6FV .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-v2g35Tw6FV .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-v2g35Tw6FV .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-v2g35Tw6FV .card-wrapper .card-wrap {
  background-color: #3d8c92;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-v2g35Tw6FV .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-v2g35Tw6FV .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-v2g35Tw6FV .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-v2g35Tw6FV .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-v2g35Tw6FV .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-v2g35Tw6FV .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2g35Tw6FV .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-v2g35Tw6FV .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2g35Tw6FV .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-v2g35Tw6FV .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-v2g35Tw6FV .text-wrapper {
    margin-left: 0;
  }
}
.cid-v2g35Tw6FV .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-v2g35Tw6FV .mbr-section-title {
  color: #000000;
  text-align: right;
}
.cid-v2g35Tw6FV .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-v2g35Tw6FV .mbr-text {
  color: #000000;
}
.cid-v2g35Tw6FV .card-desc {
  color: #000000;
}
.cid-v2g35Tw6FV .card-text {
  color: #ffffff;
}
.cid-v2g35Tw6FV .card-name {
  color: #ffffff;
}
.cid-v2g35Tw6FV .card-role {
  color: #ffffff;
}
.cid-v2asUXdrT0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2asUXdrT0 .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v2asUXdrT0 .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v2asUXdrT0 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v2asUXdrT0 .mbr-text {
  color: #000000;
}
.cid-v2asUXdrT0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2asUXdrT0 .mbr-section-title {
  color: #000000;
}
.cid-v2asV9UFhN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #3d8c92;
}
.cid-v2asV9UFhN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2asV9UFhN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2asV9UFhN .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2asV9UFhN .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2asV9UFhN .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-v2asV9UFhN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2asV9UFhN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2asV9UFhN .mbr-section-title {
  color: #ffffff;
}
.cid-v2asVbcT3C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111010;
  overflow: hidden;
}
.cid-v2asVbcT3C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2asVbcT3C .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-v2asVbcT3C .container {
    padding: 0 30px;
  }
}
.cid-v2asVbcT3C .row {
  justify-content: center;
}
.cid-v2asVbcT3C .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2asVbcT3C .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2asVbcT3C .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2asVbcT3C .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2asVbcT3C .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-v2asVbcT3C .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2asVbcT3C .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2asVbcT3C .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2asVbcT3C .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2asVbcT3C .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-v2asVbcT3C .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2asVbcT3C .nav-wrapper .list .item-wrap:hover,
.cid-v2asVbcT3C .nav-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2asVbcT3C .nav-wrapper .list .item-wrap:hover::before,
.cid-v2asVbcT3C .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-v2asVbcT3C .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-v2asVbcT3C .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2asVbcT3C .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2asVbcT3C .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2asVbcT3C .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2asVbcT3C .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2asVbcT3C .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-v2asVbcT3C .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2asVbcT3C .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2asVbcT3C .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-v2asVbcT3C .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #ffffff;
}
.cid-v2asVbcT3C .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v2asVbcT3C .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2asVbcT3C .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-v2asVbcT3C .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2asVbcT3C .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2asVbcT3C .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2asVbcT3C .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2asVbcT3C .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #ffffff;
}
.cid-v2asVbcT3C .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v2asVbcT3C .mbr-section-title {
  color: #bee0d6;
}
.cid-v2asVbcT3C .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2asVbcT3C .list {
  color: #bee0d6;
}
.cid-v2asVbcT3C .mbr-address {
  color: #ffffff;
}
.cid-v2asVbcT3C .mbr-copy {
  color: #ffffff;
}
.cid-v2asVbcT3C .list,
.cid-v2asVbcT3C .item-wrap,
.cid-v2asVbcT3C .nav-wrapper {
  color: #ffffff;
}
.cid-v2asVbcT3C .mbr-section-title,
.cid-v2asVbcT3C .logo-wrapper {
  color: #2ba7ff;
}
.cid-v2atykUjF5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v2atykUjF5 nav.navbar {
  position: fixed;
}
.cid-v2atykUjF5 .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-v2atykUjF5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2atykUjF5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2atykUjF5 .dropdown-item:hover,
.cid-v2atykUjF5 .dropdown-item:focus {
  background: #2ba7ff !important;
  color: white !important;
}
.cid-v2atykUjF5 .dropdown-item:hover span {
  color: white;
}
.cid-v2atykUjF5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2atykUjF5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2atykUjF5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2atykUjF5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2atykUjF5 .nav-link {
  position: relative;
}
.cid-v2atykUjF5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v2atykUjF5 .container {
    flex-wrap: nowrap;
  }
}
.cid-v2atykUjF5 .iconfont-wrapper {
  color: #04492e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2atykUjF5 .navbar-caption {
  font-weight: 500;
}
.cid-v2atykUjF5 .dropdown-menu,
.cid-v2atykUjF5 .navbar.opened {
  background: #111010 !important;
}
.cid-v2atykUjF5 .nav-item:focus,
.cid-v2atykUjF5 .nav-link:focus {
  outline: none;
}
.cid-v2atykUjF5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2atykUjF5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2atykUjF5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2atykUjF5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2atykUjF5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2atykUjF5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2atykUjF5 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #111010;
}
.cid-v2atykUjF5 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2atykUjF5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2atykUjF5 .navbar .navbar-logo img {
  width: auto;
}
.cid-v2atykUjF5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2atykUjF5 .navbar.collapsed {
  justify-content: center;
}
.cid-v2atykUjF5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2atykUjF5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2atykUjF5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-v2atykUjF5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2atykUjF5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2atykUjF5 .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-v2atykUjF5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2atykUjF5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2atykUjF5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2atykUjF5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2atykUjF5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2atykUjF5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2atykUjF5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2atykUjF5 .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-v2atykUjF5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2atykUjF5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2atykUjF5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2atykUjF5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2atykUjF5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2atykUjF5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v2atykUjF5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v2atykUjF5 .navbar.navbar-short {
  min-height: 80px;
}
.cid-v2atykUjF5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2atykUjF5 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-v2atykUjF5 .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-v2atykUjF5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2atykUjF5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2atykUjF5 .dropdown-item.active,
.cid-v2atykUjF5 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2atykUjF5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2atykUjF5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2atykUjF5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2atykUjF5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111010;
}
.cid-v2atykUjF5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2atykUjF5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2atykUjF5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2atykUjF5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2atykUjF5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2atykUjF5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #04492e;
}
.cid-v2atykUjF5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2atykUjF5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2atykUjF5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2atykUjF5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2atykUjF5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2atykUjF5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2atykUjF5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2atykUjF5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2atykUjF5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2atykUjF5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2atykUjF5 .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-v2atykUjF5 .navbar {
    height: 70px;
  }
  .cid-v2atykUjF5 .navbar.opened {
    height: auto;
  }
  .cid-v2atykUjF5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2g3B93SMP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafaf9;
}
.cid-v2g3B93SMP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g3B93SMP .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-v2g3B93SMP .container {
    padding: 0 16px;
  }
}
.cid-v2g3B93SMP .row {
  position: relative;
  z-index: 1;
}
.cid-v2g3B93SMP .card {
  justify-content: flex-end;
}
.cid-v2g3B93SMP .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-v2g3B93SMP .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-v2g3B93SMP .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2g3B93SMP .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-v2g3B93SMP .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-v2g3B93SMP .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-v2g3B93SMP .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-v2g3B93SMP .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-v2g3B93SMP .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-v2g3B93SMP .card-wrapper .card-wrap {
  background-color: #3d8c92;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-v2g3B93SMP .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-v2g3B93SMP .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-v2g3B93SMP .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-v2g3B93SMP .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-v2g3B93SMP .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-v2g3B93SMP .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2g3B93SMP .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-v2g3B93SMP .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2g3B93SMP .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-v2g3B93SMP .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-v2g3B93SMP .text-wrapper {
    margin-left: 0;
  }
}
.cid-v2g3B93SMP .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-v2g3B93SMP .mbr-section-title {
  color: #000000;
  text-align: right;
}
.cid-v2g3B93SMP .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-v2g3B93SMP .mbr-text {
  color: #000000;
}
.cid-v2g3B93SMP .card-desc {
  color: #000000;
}
.cid-v2g3B93SMP .card-text {
  color: #ffffff;
}
.cid-v2g3B93SMP .card-name {
  color: #ffffff;
}
.cid-v2g3B93SMP .card-role {
  color: #ffffff;
}
.cid-v2atyoNplZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2atyoNplZ .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v2atyoNplZ .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v2atyoNplZ .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v2atyoNplZ .mbr-text {
  color: #000000;
}
.cid-v2atyoNplZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2atyoNplZ .mbr-section-title {
  color: #000000;
}
.cid-v2atypCpq0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #3d8c92;
}
.cid-v2atypCpq0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2atypCpq0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2atypCpq0 .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2atypCpq0 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2atypCpq0 .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-v2atypCpq0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2atypCpq0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2atypCpq0 .mbr-section-title {
  color: #ffffff;
}
.cid-v2atyqEYAV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111010;
  overflow: hidden;
}
.cid-v2atyqEYAV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2atyqEYAV .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-v2atyqEYAV .container {
    padding: 0 30px;
  }
}
.cid-v2atyqEYAV .row {
  justify-content: center;
}
.cid-v2atyqEYAV .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2atyqEYAV .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2atyqEYAV .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2atyqEYAV .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2atyqEYAV .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-v2atyqEYAV .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2atyqEYAV .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2atyqEYAV .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2atyqEYAV .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2atyqEYAV .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-v2atyqEYAV .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2atyqEYAV .nav-wrapper .list .item-wrap:hover,
.cid-v2atyqEYAV .nav-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2atyqEYAV .nav-wrapper .list .item-wrap:hover::before,
.cid-v2atyqEYAV .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-v2atyqEYAV .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-v2atyqEYAV .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2atyqEYAV .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2atyqEYAV .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2atyqEYAV .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2atyqEYAV .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2atyqEYAV .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-v2atyqEYAV .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2atyqEYAV .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2atyqEYAV .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-v2atyqEYAV .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #ffffff;
}
.cid-v2atyqEYAV .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v2atyqEYAV .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2atyqEYAV .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-v2atyqEYAV .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2atyqEYAV .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2atyqEYAV .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2atyqEYAV .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2atyqEYAV .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #ffffff;
}
.cid-v2atyqEYAV .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v2atyqEYAV .mbr-section-title {
  color: #bee0d6;
}
.cid-v2atyqEYAV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2atyqEYAV .list {
  color: #bee0d6;
}
.cid-v2atyqEYAV .mbr-address {
  color: #ffffff;
}
.cid-v2atyqEYAV .mbr-copy {
  color: #ffffff;
}
.cid-v2atyqEYAV .list,
.cid-v2atyqEYAV .item-wrap,
.cid-v2atyqEYAV .nav-wrapper {
  color: #ffffff;
}
.cid-v2atyqEYAV .mbr-section-title,
.cid-v2atyqEYAV .logo-wrapper {
  color: #2ba7ff;
}
.cid-v2g7AycueT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v2g7AycueT nav.navbar {
  position: fixed;
}
.cid-v2g7AycueT .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-v2g7AycueT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2g7AycueT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2g7AycueT .dropdown-item:hover,
.cid-v2g7AycueT .dropdown-item:focus {
  background: #2ba7ff !important;
  color: white !important;
}
.cid-v2g7AycueT .dropdown-item:hover span {
  color: white;
}
.cid-v2g7AycueT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2g7AycueT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2g7AycueT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2g7AycueT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2g7AycueT .nav-link {
  position: relative;
}
.cid-v2g7AycueT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v2g7AycueT .container {
    flex-wrap: nowrap;
  }
}
.cid-v2g7AycueT .iconfont-wrapper {
  color: #04492e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2g7AycueT .navbar-caption {
  font-weight: 500;
}
.cid-v2g7AycueT .dropdown-menu,
.cid-v2g7AycueT .navbar.opened {
  background: #111010 !important;
}
.cid-v2g7AycueT .nav-item:focus,
.cid-v2g7AycueT .nav-link:focus {
  outline: none;
}
.cid-v2g7AycueT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2g7AycueT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2g7AycueT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2g7AycueT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2g7AycueT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2g7AycueT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2g7AycueT .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #111010;
}
.cid-v2g7AycueT .navbar.opened {
  transition: all 0.3s;
}
.cid-v2g7AycueT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2g7AycueT .navbar .navbar-logo img {
  width: auto;
}
.cid-v2g7AycueT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2g7AycueT .navbar.collapsed {
  justify-content: center;
}
.cid-v2g7AycueT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2g7AycueT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2g7AycueT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-v2g7AycueT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2g7AycueT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2g7AycueT .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-v2g7AycueT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2g7AycueT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2g7AycueT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2g7AycueT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2g7AycueT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2g7AycueT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2g7AycueT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2g7AycueT .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-v2g7AycueT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2g7AycueT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2g7AycueT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2g7AycueT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2g7AycueT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2g7AycueT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v2g7AycueT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v2g7AycueT .navbar.navbar-short {
  min-height: 80px;
}
.cid-v2g7AycueT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2g7AycueT .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-v2g7AycueT .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-v2g7AycueT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2g7AycueT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2g7AycueT .dropdown-item.active,
.cid-v2g7AycueT .dropdown-item:active {
  background-color: transparent;
}
.cid-v2g7AycueT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2g7AycueT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2g7AycueT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2g7AycueT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111010;
}
.cid-v2g7AycueT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2g7AycueT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2g7AycueT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2g7AycueT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2g7AycueT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2g7AycueT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #04492e;
}
.cid-v2g7AycueT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2g7AycueT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2g7AycueT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2g7AycueT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2g7AycueT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2g7AycueT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2g7AycueT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2g7AycueT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2g7AycueT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2g7AycueT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2g7AycueT .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-v2g7AycueT .navbar {
    height: 70px;
  }
  .cid-v2g7AycueT .navbar.opened {
    height: auto;
  }
  .cid-v2g7AycueT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2g7AyODRW {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2g7AyODRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7AyODRW .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-v2g7AyODRW .container {
    padding: 0 30px;
  }
}
.cid-v2g7AyODRW .row .card {
  justify-content: center;
}
.cid-v2g7AyODRW .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v2g7AyODRW .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2g7AyODRW .image-wrapper {
    margin-top: 30px;
  }
}
.cid-v2g7AyODRW .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-v2g7AyODRW .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-v2g7AyODRW .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7AyODRW .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-v2g7AyODRW .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-v2g7AyODRW .mbr-section-title {
  color: #ffffff;
}
.cid-v2g7AyODRW .mbr-section-subtitle {
  color: #000000;
}
.cid-v2g7AyODRW .mbr-section-title,
.cid-v2g7AyODRW .mbr-section-btn {
  color: #000000;
}
.cid-v2g7Azg9CD {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2g7Azg9CD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Azg9CD .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-v2g7Azg9CD .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v2g7Azg9CD .container {
    padding: 0 12px;
  }
}
.cid-v2g7Azg9CD .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v2g7Azg9CD .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v2g7Azg9CD .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v2g7Azg9CD .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #111010;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v2g7Azg9CD .mbr-section-title {
  color: #222222;
}
.cid-v2g7AzNjoX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2g7AzNjoX .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v2g7AzNjoX .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v2g7AzNjoX .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v2g7AzNjoX .mbr-text {
  color: #000000;
}
.cid-v2g7AzNjoX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2g7AzNjoX .mbr-section-title {
  color: #000000;
}
.cid-v2g7AAfPmq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2g7AAfPmq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7AAfPmq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7AAfPmq .row {
  justify-content: center;
}
.cid-v2g7AAfPmq .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v2g7AAfPmq .title-wrapper .title-wrap {
    margin-bottom: 30px;
  }
}
.cid-v2g7AAfPmq .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2g7AAfPmq .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
}
.cid-v2g7AAfPmq .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-v2g7AAfPmq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2g7AAfPmq .mbr-section-title,
.cid-v2g7AAfPmq .mbr-iconfont {
  color: #FFBE0D;
}
.cid-v2g7AAfPmq .mbr-desc {
  color: #fff7ee;
}
.cid-v2g7AAfPmq .mbr-text {
  color: #000000;
}
.cid-v2g7AAfPmq .mbr-section-title,
.cid-v2g7AAfPmq .title-wrapper,
.cid-v2g7AAfPmq .mbr-iconfont {
  color: #000000;
}
.cid-v2g7AAOfQx {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v2g7AAOfQx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7AAOfQx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7AAOfQx img {
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.cid-v2g7AAOfQx .card-wrapper {
  border: 3px solid #2ba7ff;
  padding: 2rem;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-v2g7AAOfQx .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2g7AAOfQx .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v2g7AAOfQx .mbr-section-subtitle {
  background: #2ba7ff;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-v2g7AAOfQx .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  padding-left: 20px;
  background: #cdfb0a;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2g7AAOfQx .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #2ba7ff;
  font-size: 1.5rem;
}
.cid-v2g7AAOfQx .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2g7AAOfQx .mbr-text,
.cid-v2g7AAOfQx .mbr-section-btn {
  color: #6e6e6e;
}
.cid-v2g7AAOfQx .mbr-section-subtitle2,
.cid-v2g7AAOfQx .align-wrapper {
  color: #04492e;
}
.cid-v2g7AAOfQx .mbr-section-maintitle {
  text-align: center;
  color: #000000;
}
.cid-v2g7ABxCEU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #02050a;
}
.cid-v2g7ABxCEU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7ABxCEU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7ABxCEU .row {
  margin: 0 -6px;
}
.cid-v2g7ABxCEU .card {
  padding: 0 6px;
}
.cid-v2g7ABxCEU .image-wrapper {
  position: relative;
  height: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 992px) {
  .cid-v2g7ABxCEU .image-wrapper {
    margin-top: 3px;
    margin-bottom: 3px;
    height: 400px;
  }
}
.cid-v2g7ABxCEU .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v2g7ABxCEU .card-wrapper {
  height: 100%;
  padding: 54px 100px;
  background-color: #f5f8ff;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 1440px) {
  .cid-v2g7ABxCEU .card-wrapper {
    padding: 48px 64px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7ABxCEU .card-wrapper {
    padding: 48px 24px;
    margin-top: 3px;
    margin-bottom: 3px;
  }
}
.cid-v2g7ABxCEU .card-wrapper .title-wrapper .mbr-label {
  margin-bottom: 200px;
}
@media (max-width: 1440px) {
  .cid-v2g7ABxCEU .card-wrapper .title-wrapper .mbr-label {
    margin-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7ABxCEU .card-wrapper .title-wrapper .mbr-label {
    margin-bottom: 24px;
  }
}
.cid-v2g7ABxCEU .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v2g7ABxCEU .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2g7ABxCEU .card-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 200px;
}
@media (max-width: 1440px) {
  .cid-v2g7ABxCEU .card-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 100px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7ABxCEU .card-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-v2g7ABxCEU .card-wrapper .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v2g7ABxCEU .mbr-label {
  color: #000000;
  text-align: center;
}
.cid-v2g7ABxCEU .mbr-section-title {
  color: #000000;
}
.cid-v2g7ABxCEU .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v2g7ABxCEU .mbr-section-title,
.cid-v2g7ABxCEU .mbr-section-btn {
  text-align: center;
}
.cid-v2g7AC55qD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2g7AC55qD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7AC55qD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7AC55qD .row {
  justify-content: flex-start;
}
.cid-v2g7AC55qD .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-v2g7AC55qD .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2g7ACBVD3 {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-color: #3d8c92;
}
.cid-v2g7ACBVD3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7ACBVD3 .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-v2g7ACBVD3 .container {
    padding: 0 20px;
  }
}
.cid-v2g7ACBVD3 .row {
  margin: 0;
}
.cid-v2g7ACBVD3 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2g7ACBVD3 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2g7ACBVD3 .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v2g7ACBVD3 .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v2g7ACBVD3 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v2g7ACBVD3 .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v2g7ACBVD3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2g7AD50zY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2g7AD50zY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7AD50zY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7AD50zY .row {
  justify-content: flex-start;
}
.cid-v2g7AD50zY .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-v2g7AD50zY .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2g7ADCoQn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3d8c92;
}
.cid-v2g7ADCoQn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7ADCoQn .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-v2g7ADCoQn .container {
    padding: 0 30px;
  }
}
.cid-v2g7ADCoQn .row {
  justify-content: center;
}
.cid-v2g7ADCoQn .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v2g7ADCoQn .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v2g7ADCoQn .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #000000;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-v2g7ADCoQn .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-v2g7ADCoQn .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2g7ADCoQn .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v2g7ADCoQn .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v2g7ADCoQn .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  background-color: #000000;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-v2g7ADCoQn .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-v2g7ADCoQn .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-v2g7ADCoQn .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2g7ADCoQn .mbr-section-title {
  color: #000000;
}
.cid-v2g7ADCoQn .panel-title-edit {
  color: #000000;
}
.cid-v2g7ADCoQn .panel-text {
  color: #000000;
}
.cid-v2g7AEmVEV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2g7AEmVEV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7AEmVEV .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-v2g7AEmVEV .container {
    padding: 0 16px;
  }
}
.cid-v2g7AEmVEV .card {
  justify-content: center;
}
.cid-v2g7AEmVEV .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #3d8c92;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-v2g7AEmVEV .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2g7AEmVEV .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-v2g7AEmVEV .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-v2g7AEmVEV .mbr-section-title {
  color: #000000;
}
.cid-v2g7AEmVEV .mbr-text {
  color: #000000;
}
.cid-v2g7AEmVEV .mbr-desc {
  color: #000000;
}
.cid-v2g7AEUBWT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2g7AEUBWT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7AEUBWT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7AEUBWT .items-wrapper {
  justify-content: center;
  margin: 0 -15px;
}
.cid-v2g7AEUBWT .item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v2g7AEUBWT .item {
    margin-bottom: 15px;
  }
}
.cid-v2g7AEUBWT .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  border: 1px solid #111010;
}
@media (max-width: 992px) {
  .cid-v2g7AEUBWT .item .item-wrapper {
    padding: 30px;
  }
}
.cid-v2g7AEUBWT .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v2g7AEUBWT .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v2g7AEUBWT .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  font-size: 25px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-v2g7AEUBWT .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-v2g7AEUBWT .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-v2g7AEUBWT .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-v2g7AEUBWT .item .item-wrapper .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v2g7AEUBWT .item .item-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-v2g7AEUBWT .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-v2g7AEUBWT .card-title {
  color: #000000;
}
.cid-v2g7AEUBWT .card-text {
  color: #8a8a8a;
}
.cid-v2g7AEUBWT .card-text,
.cid-v2g7AEUBWT .mbr-section-btn {
  color: #000000;
}
.cid-v2g7AFBGDp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-v2g7AFBGDp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7AFBGDp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7AFBGDp .row {
  justify-content: center;
}
.cid-v2g7AFBGDp .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v2g7AFBGDp .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7AFBGDp .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-v2g7AFBGDp .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2g7AFBGDp .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-v2g7AFBGDp .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2g7AFBGDp .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v2g7AFBGDp .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v2g7AFBGDp .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v2g7AFBGDp .mbr-section-title {
  color: #ffffff;
}
.cid-v2g7AFBGDp .mbr-section-subtitle {
  color: #cbff5b;
  text-align: center;
}
.cid-v2g7AFBGDp .mbr-text,
.cid-v2g7AFBGDp .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v2g7AFBGDp .mbr-section-title,
.cid-v2g7AFBGDp .mbr-section-btn {
  text-align: center;
}
.cid-v2g7AGcgj2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-v2g7AGcgj2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7AGcgj2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7AGcgj2 .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-v2g7AGcgj2 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-v2g7AGcgj2 .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-v2g7AGcgj2 .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-v2g7AGcgj2 .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-v2g7AGcgj2 .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-v2g7AGcgj2 .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v2g7AGcgj2 .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v2g7AGcgj2 .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2g7AGcgj2 .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-v2g7AGcgj2 .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-v2g7AGcgj2 .mbr-section-title,
.cid-v2g7AGcgj2 .mbr-section-btn {
  color: #000000;
}
.cid-v2gquI3GCr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}
.cid-v2gquI3GCr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gquI3GCr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gquI3GCr .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v2gquI3GCr .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2gquI3GCr .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-v2gquI3GCr .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-v2gquI3GCr .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-v2gquI3GCr .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v2gquI3GCr .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v2gquI3GCr .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2gquI3GCr .panel-group .card {
  position: relative;
  padding: 7px 16px;
  background-color: #f5f5f5;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #9c9c9c;
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
.cid-v2gquI3GCr .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2gquI3GCr .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v2gquI3GCr .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v2gquI3GCr .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
.cid-v2gquI3GCr .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-v2gquI3GCr .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-v2gquI3GCr .panel-group .card .panel-collapse .panel-body {
  padding: 8px 0;
}
.cid-v2gquI3GCr .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 95%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-v2gquI3GCr .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-v2gquI3GCr .mbr-label,
.cid-v2gquI3GCr .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v2gquI3GCr .mbr-section-title,
.cid-v2gquI3GCr .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v2gquI3GCr .mbr-text,
.cid-v2gquI3GCr .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-v2gquI3GCr .panel-title-edit {
  color: #000000;
}
.cid-v2gquI3GCr .panel-text {
  color: #515151;
}
.cid-v2g7AGJycK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #3d8c92;
}
.cid-v2g7AGJycK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7AGJycK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7AGJycK .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2g7AGJycK .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2g7AGJycK .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-v2g7AGJycK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2g7AGJycK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2g7AGJycK .mbr-section-title {
  color: #ffffff;
}
.cid-v2g7AHkIgV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111010;
  overflow: hidden;
}
.cid-v2g7AHkIgV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7AHkIgV .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-v2g7AHkIgV .container {
    padding: 0 30px;
  }
}
.cid-v2g7AHkIgV .row {
  justify-content: center;
}
.cid-v2g7AHkIgV .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2g7AHkIgV .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7AHkIgV .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2g7AHkIgV .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7AHkIgV .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-v2g7AHkIgV .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2g7AHkIgV .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2g7AHkIgV .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7AHkIgV .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2g7AHkIgV .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-v2g7AHkIgV .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2g7AHkIgV .nav-wrapper .list .item-wrap:hover,
.cid-v2g7AHkIgV .nav-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2g7AHkIgV .nav-wrapper .list .item-wrap:hover::before,
.cid-v2g7AHkIgV .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-v2g7AHkIgV .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-v2g7AHkIgV .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2g7AHkIgV .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2g7AHkIgV .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7AHkIgV .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2g7AHkIgV .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7AHkIgV .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-v2g7AHkIgV .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2g7AHkIgV .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2g7AHkIgV .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-v2g7AHkIgV .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #ffffff;
}
.cid-v2g7AHkIgV .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v2g7AHkIgV .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2g7AHkIgV .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-v2g7AHkIgV .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2g7AHkIgV .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2g7AHkIgV .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2g7AHkIgV .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7AHkIgV .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #ffffff;
}
.cid-v2g7AHkIgV .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v2g7AHkIgV .mbr-section-title {
  color: #bee0d6;
}
.cid-v2g7AHkIgV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2g7AHkIgV .list {
  color: #bee0d6;
}
.cid-v2g7AHkIgV .mbr-address {
  color: #ffffff;
}
.cid-v2g7AHkIgV .mbr-copy {
  color: #ffffff;
}
.cid-v2g7AHkIgV .list,
.cid-v2g7AHkIgV .item-wrap,
.cid-v2g7AHkIgV .nav-wrapper {
  color: #ffffff;
}
.cid-v2g7AHkIgV .mbr-section-title,
.cid-v2g7AHkIgV .logo-wrapper {
  color: #2ba7ff;
}
.cid-v2g7BdNxR0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v2g7BdNxR0 nav.navbar {
  position: fixed;
}
.cid-v2g7BdNxR0 .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-v2g7BdNxR0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2g7BdNxR0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2g7BdNxR0 .dropdown-item:hover,
.cid-v2g7BdNxR0 .dropdown-item:focus {
  background: #2ba7ff !important;
  color: white !important;
}
.cid-v2g7BdNxR0 .dropdown-item:hover span {
  color: white;
}
.cid-v2g7BdNxR0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2g7BdNxR0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2g7BdNxR0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2g7BdNxR0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2g7BdNxR0 .nav-link {
  position: relative;
}
.cid-v2g7BdNxR0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v2g7BdNxR0 .container {
    flex-wrap: nowrap;
  }
}
.cid-v2g7BdNxR0 .iconfont-wrapper {
  color: #04492e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2g7BdNxR0 .navbar-caption {
  font-weight: 500;
}
.cid-v2g7BdNxR0 .dropdown-menu,
.cid-v2g7BdNxR0 .navbar.opened {
  background: #111010 !important;
}
.cid-v2g7BdNxR0 .nav-item:focus,
.cid-v2g7BdNxR0 .nav-link:focus {
  outline: none;
}
.cid-v2g7BdNxR0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2g7BdNxR0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2g7BdNxR0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2g7BdNxR0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2g7BdNxR0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2g7BdNxR0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2g7BdNxR0 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #111010;
}
.cid-v2g7BdNxR0 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2g7BdNxR0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2g7BdNxR0 .navbar .navbar-logo img {
  width: auto;
}
.cid-v2g7BdNxR0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2g7BdNxR0 .navbar.collapsed {
  justify-content: center;
}
.cid-v2g7BdNxR0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2g7BdNxR0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2g7BdNxR0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-v2g7BdNxR0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2g7BdNxR0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2g7BdNxR0 .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-v2g7BdNxR0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2g7BdNxR0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2g7BdNxR0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2g7BdNxR0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2g7BdNxR0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2g7BdNxR0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2g7BdNxR0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2g7BdNxR0 .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-v2g7BdNxR0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2g7BdNxR0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2g7BdNxR0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2g7BdNxR0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2g7BdNxR0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2g7BdNxR0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v2g7BdNxR0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v2g7BdNxR0 .navbar.navbar-short {
  min-height: 80px;
}
.cid-v2g7BdNxR0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2g7BdNxR0 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-v2g7BdNxR0 .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-v2g7BdNxR0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2g7BdNxR0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2g7BdNxR0 .dropdown-item.active,
.cid-v2g7BdNxR0 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2g7BdNxR0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2g7BdNxR0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2g7BdNxR0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2g7BdNxR0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111010;
}
.cid-v2g7BdNxR0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2g7BdNxR0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2g7BdNxR0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2g7BdNxR0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2g7BdNxR0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2g7BdNxR0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #04492e;
}
.cid-v2g7BdNxR0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2g7BdNxR0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2g7BdNxR0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2g7BdNxR0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2g7BdNxR0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2g7BdNxR0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2g7BdNxR0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2g7BdNxR0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2g7BdNxR0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2g7BdNxR0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2g7BdNxR0 .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-v2g7BdNxR0 .navbar {
    height: 70px;
  }
  .cid-v2g7BdNxR0 .navbar.opened {
    height: auto;
  }
  .cid-v2g7BdNxR0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2g7BemQ2q {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2g7BemQ2q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BemQ2q .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-v2g7BemQ2q .container {
    padding: 0 30px;
  }
}
.cid-v2g7BemQ2q .row .card {
  justify-content: center;
}
.cid-v2g7BemQ2q .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v2g7BemQ2q .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2g7BemQ2q .image-wrapper {
    margin-top: 30px;
  }
}
.cid-v2g7BemQ2q .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-v2g7BemQ2q .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-v2g7BemQ2q .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7BemQ2q .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-v2g7BemQ2q .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-v2g7BemQ2q .mbr-section-title {
  color: #ffffff;
}
.cid-v2g7BemQ2q .mbr-section-subtitle {
  color: #000000;
}
.cid-v2g7BemQ2q .mbr-section-title,
.cid-v2g7BemQ2q .mbr-section-btn {
  color: #000000;
}
.cid-v2g7BeMgIL {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2g7BeMgIL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BeMgIL .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-v2g7BeMgIL .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v2g7BeMgIL .container {
    padding: 0 12px;
  }
}
.cid-v2g7BeMgIL .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v2g7BeMgIL .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v2g7BeMgIL .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v2g7BeMgIL .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #111010;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v2g7BeMgIL .mbr-section-title {
  color: #222222;
}
.cid-v2g7BffIID {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2g7BffIID .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v2g7BffIID .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v2g7BffIID .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v2g7BffIID .mbr-text {
  color: #000000;
}
.cid-v2g7BffIID .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2g7BffIID .mbr-section-title {
  color: #000000;
}
.cid-v2g7BfD4ga {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2g7BfD4ga .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BfD4ga .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7BfD4ga .row {
  justify-content: center;
}
.cid-v2g7BfD4ga .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v2g7BfD4ga .title-wrapper .title-wrap {
    margin-bottom: 30px;
  }
}
.cid-v2g7BfD4ga .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2g7BfD4ga .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
}
.cid-v2g7BfD4ga .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-v2g7BfD4ga .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2g7BfD4ga .mbr-section-title,
.cid-v2g7BfD4ga .mbr-iconfont {
  color: #FFBE0D;
}
.cid-v2g7BfD4ga .mbr-desc {
  color: #fff7ee;
}
.cid-v2g7BfD4ga .mbr-text {
  color: #000000;
}
.cid-v2g7BfD4ga .mbr-section-title,
.cid-v2g7BfD4ga .title-wrapper,
.cid-v2g7BfD4ga .mbr-iconfont {
  color: #000000;
}
.cid-v2g7Bg55Ii {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v2g7Bg55Ii .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Bg55Ii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7Bg55Ii img {
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.cid-v2g7Bg55Ii .card-wrapper {
  border: 3px solid #2ba7ff;
  padding: 2rem;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-v2g7Bg55Ii .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2g7Bg55Ii .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v2g7Bg55Ii .mbr-section-subtitle {
  background: #2ba7ff;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-v2g7Bg55Ii .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  padding-left: 20px;
  background: #cdfb0a;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2g7Bg55Ii .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #2ba7ff;
  font-size: 1.5rem;
}
.cid-v2g7Bg55Ii .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2g7Bg55Ii .mbr-text,
.cid-v2g7Bg55Ii .mbr-section-btn {
  color: #6e6e6e;
}
.cid-v2g7Bg55Ii .mbr-section-subtitle2,
.cid-v2g7Bg55Ii .align-wrapper {
  color: #04492e;
}
.cid-v2g7Bg55Ii .mbr-section-maintitle {
  text-align: center;
  color: #000000;
}
.cid-v2g7BgLS8A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #02050a;
}
.cid-v2g7BgLS8A .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BgLS8A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7BgLS8A .row {
  margin: 0 -6px;
}
.cid-v2g7BgLS8A .card {
  padding: 0 6px;
}
.cid-v2g7BgLS8A .image-wrapper {
  position: relative;
  height: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 992px) {
  .cid-v2g7BgLS8A .image-wrapper {
    margin-top: 3px;
    margin-bottom: 3px;
    height: 400px;
  }
}
.cid-v2g7BgLS8A .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v2g7BgLS8A .card-wrapper {
  height: 100%;
  padding: 54px 100px;
  background-color: #f5f8ff;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 1440px) {
  .cid-v2g7BgLS8A .card-wrapper {
    padding: 48px 64px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7BgLS8A .card-wrapper {
    padding: 48px 24px;
    margin-top: 3px;
    margin-bottom: 3px;
  }
}
.cid-v2g7BgLS8A .card-wrapper .title-wrapper .mbr-label {
  margin-bottom: 200px;
}
@media (max-width: 1440px) {
  .cid-v2g7BgLS8A .card-wrapper .title-wrapper .mbr-label {
    margin-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7BgLS8A .card-wrapper .title-wrapper .mbr-label {
    margin-bottom: 24px;
  }
}
.cid-v2g7BgLS8A .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v2g7BgLS8A .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2g7BgLS8A .card-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 200px;
}
@media (max-width: 1440px) {
  .cid-v2g7BgLS8A .card-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 100px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7BgLS8A .card-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-v2g7BgLS8A .card-wrapper .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v2g7BgLS8A .mbr-label {
  color: #000000;
  text-align: center;
}
.cid-v2g7BgLS8A .mbr-section-title {
  color: #000000;
}
.cid-v2g7BgLS8A .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v2g7BgLS8A .mbr-section-title,
.cid-v2g7BgLS8A .mbr-section-btn {
  text-align: center;
}
.cid-v2g7BhiZQk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2g7BhiZQk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BhiZQk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7BhiZQk .row {
  justify-content: flex-start;
}
.cid-v2g7BhiZQk .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-v2g7BhiZQk .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2g7BhKxHn {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-color: #3d8c92;
}
.cid-v2g7BhKxHn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BhKxHn .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-v2g7BhKxHn .container {
    padding: 0 20px;
  }
}
.cid-v2g7BhKxHn .row {
  margin: 0;
}
.cid-v2g7BhKxHn .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2g7BhKxHn .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2g7BhKxHn .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v2g7BhKxHn .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v2g7BhKxHn .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v2g7BhKxHn .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v2g7BhKxHn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2g7BibmtN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2g7BibmtN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BibmtN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7BibmtN .row {
  justify-content: flex-start;
}
.cid-v2g7BibmtN .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-v2g7BibmtN .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2g7BiJAqF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3d8c92;
}
.cid-v2g7BiJAqF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BiJAqF .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-v2g7BiJAqF .container {
    padding: 0 30px;
  }
}
.cid-v2g7BiJAqF .row {
  justify-content: center;
}
.cid-v2g7BiJAqF .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v2g7BiJAqF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v2g7BiJAqF .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #000000;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-v2g7BiJAqF .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-v2g7BiJAqF .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2g7BiJAqF .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v2g7BiJAqF .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v2g7BiJAqF .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  background-color: #000000;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-v2g7BiJAqF .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-v2g7BiJAqF .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-v2g7BiJAqF .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2g7BiJAqF .mbr-section-title {
  color: #000000;
}
.cid-v2g7BiJAqF .panel-title-edit {
  color: #000000;
}
.cid-v2g7BiJAqF .panel-text {
  color: #000000;
}
.cid-v2g7BjnXzq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2g7BjnXzq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BjnXzq .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-v2g7BjnXzq .container {
    padding: 0 16px;
  }
}
.cid-v2g7BjnXzq .card {
  justify-content: center;
}
.cid-v2g7BjnXzq .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #3d8c92;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-v2g7BjnXzq .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2g7BjnXzq .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-v2g7BjnXzq .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-v2g7BjnXzq .mbr-section-title {
  color: #000000;
}
.cid-v2g7BjnXzq .mbr-text {
  color: #000000;
}
.cid-v2g7BjnXzq .mbr-desc {
  color: #000000;
}
.cid-v2g7BjT3ev {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2g7BjT3ev .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BjT3ev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7BjT3ev .items-wrapper {
  justify-content: center;
  margin: 0 -15px;
}
.cid-v2g7BjT3ev .item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v2g7BjT3ev .item {
    margin-bottom: 15px;
  }
}
.cid-v2g7BjT3ev .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  border: 1px solid #111010;
}
@media (max-width: 992px) {
  .cid-v2g7BjT3ev .item .item-wrapper {
    padding: 30px;
  }
}
.cid-v2g7BjT3ev .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v2g7BjT3ev .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v2g7BjT3ev .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  font-size: 25px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-v2g7BjT3ev .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-v2g7BjT3ev .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-v2g7BjT3ev .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-v2g7BjT3ev .item .item-wrapper .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v2g7BjT3ev .item .item-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-v2g7BjT3ev .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-v2g7BjT3ev .card-title {
  color: #000000;
}
.cid-v2g7BjT3ev .card-text {
  color: #8a8a8a;
}
.cid-v2g7BjT3ev .card-text,
.cid-v2g7BjT3ev .mbr-section-btn {
  color: #000000;
}
.cid-v2g7BkzmEX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-v2g7BkzmEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BkzmEX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7BkzmEX .row {
  justify-content: center;
}
.cid-v2g7BkzmEX .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v2g7BkzmEX .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7BkzmEX .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-v2g7BkzmEX .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2g7BkzmEX .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-v2g7BkzmEX .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2g7BkzmEX .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v2g7BkzmEX .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v2g7BkzmEX .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v2g7BkzmEX .mbr-section-title {
  color: #ffffff;
}
.cid-v2g7BkzmEX .mbr-section-subtitle {
  color: #cbff5b;
  text-align: center;
}
.cid-v2g7BkzmEX .mbr-text,
.cid-v2g7BkzmEX .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v2g7BkzmEX .mbr-section-title,
.cid-v2g7BkzmEX .mbr-section-btn {
  text-align: center;
}
.cid-v2g7Bl4F3v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-v2g7Bl4F3v .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Bl4F3v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7Bl4F3v .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-v2g7Bl4F3v .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-v2g7Bl4F3v .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-v2g7Bl4F3v .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-v2g7Bl4F3v .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-v2g7Bl4F3v .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-v2g7Bl4F3v .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v2g7Bl4F3v .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v2g7Bl4F3v .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2g7Bl4F3v .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-v2g7Bl4F3v .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-v2g7Bl4F3v .mbr-section-title,
.cid-v2g7Bl4F3v .mbr-section-btn {
  color: #000000;
}
.cid-v2grvRJUDa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}
.cid-v2grvRJUDa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2grvRJUDa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2grvRJUDa .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v2grvRJUDa .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2grvRJUDa .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-v2grvRJUDa .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-v2grvRJUDa .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-v2grvRJUDa .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v2grvRJUDa .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v2grvRJUDa .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2grvRJUDa .panel-group .card {
  position: relative;
  padding: 7px 16px;
  background-color: #f5f5f5;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #9c9c9c;
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
.cid-v2grvRJUDa .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2grvRJUDa .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v2grvRJUDa .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v2grvRJUDa .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
.cid-v2grvRJUDa .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-v2grvRJUDa .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-v2grvRJUDa .panel-group .card .panel-collapse .panel-body {
  padding: 8px 0;
}
.cid-v2grvRJUDa .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 95%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-v2grvRJUDa .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-v2grvRJUDa .mbr-label,
.cid-v2grvRJUDa .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v2grvRJUDa .mbr-section-title,
.cid-v2grvRJUDa .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v2grvRJUDa .mbr-text,
.cid-v2grvRJUDa .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-v2grvRJUDa .panel-title-edit {
  color: #000000;
}
.cid-v2grvRJUDa .panel-text {
  color: #515151;
}
.cid-v2g7BlCl4m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #3d8c92;
}
.cid-v2g7BlCl4m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7BlCl4m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7BlCl4m .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2g7BlCl4m .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2g7BlCl4m .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-v2g7BlCl4m .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2g7BlCl4m .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2g7BlCl4m .mbr-section-title {
  color: #ffffff;
}
.cid-v2g7Bmc6qq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111010;
  overflow: hidden;
}
.cid-v2g7Bmc6qq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Bmc6qq .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-v2g7Bmc6qq .container {
    padding: 0 30px;
  }
}
.cid-v2g7Bmc6qq .row {
  justify-content: center;
}
.cid-v2g7Bmc6qq .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2g7Bmc6qq .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Bmc6qq .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2g7Bmc6qq .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Bmc6qq .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-v2g7Bmc6qq .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2g7Bmc6qq .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2g7Bmc6qq .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Bmc6qq .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2g7Bmc6qq .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-v2g7Bmc6qq .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2g7Bmc6qq .nav-wrapper .list .item-wrap:hover,
.cid-v2g7Bmc6qq .nav-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2g7Bmc6qq .nav-wrapper .list .item-wrap:hover::before,
.cid-v2g7Bmc6qq .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-v2g7Bmc6qq .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-v2g7Bmc6qq .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2g7Bmc6qq .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2g7Bmc6qq .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #ffffff;
}
.cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2g7Bmc6qq .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2g7Bmc6qq .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2g7Bmc6qq .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Bmc6qq .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #ffffff;
}
.cid-v2g7Bmc6qq .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v2g7Bmc6qq .mbr-section-title {
  color: #bee0d6;
}
.cid-v2g7Bmc6qq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2g7Bmc6qq .list {
  color: #bee0d6;
}
.cid-v2g7Bmc6qq .mbr-address {
  color: #ffffff;
}
.cid-v2g7Bmc6qq .mbr-copy {
  color: #ffffff;
}
.cid-v2g7Bmc6qq .list,
.cid-v2g7Bmc6qq .item-wrap,
.cid-v2g7Bmc6qq .nav-wrapper {
  color: #ffffff;
}
.cid-v2g7Bmc6qq .mbr-section-title,
.cid-v2g7Bmc6qq .logo-wrapper {
  color: #2ba7ff;
}
.cid-v2g7CpZQ2p {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v2g7CpZQ2p nav.navbar {
  position: fixed;
}
.cid-v2g7CpZQ2p .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-v2g7CpZQ2p .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2g7CpZQ2p .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2g7CpZQ2p .dropdown-item:hover,
.cid-v2g7CpZQ2p .dropdown-item:focus {
  background: #2ba7ff !important;
  color: white !important;
}
.cid-v2g7CpZQ2p .dropdown-item:hover span {
  color: white;
}
.cid-v2g7CpZQ2p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2g7CpZQ2p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2g7CpZQ2p .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2g7CpZQ2p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2g7CpZQ2p .nav-link {
  position: relative;
}
.cid-v2g7CpZQ2p .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v2g7CpZQ2p .container {
    flex-wrap: nowrap;
  }
}
.cid-v2g7CpZQ2p .iconfont-wrapper {
  color: #04492e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2g7CpZQ2p .navbar-caption {
  font-weight: 500;
}
.cid-v2g7CpZQ2p .dropdown-menu,
.cid-v2g7CpZQ2p .navbar.opened {
  background: #111010 !important;
}
.cid-v2g7CpZQ2p .nav-item:focus,
.cid-v2g7CpZQ2p .nav-link:focus {
  outline: none;
}
.cid-v2g7CpZQ2p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2g7CpZQ2p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2g7CpZQ2p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2g7CpZQ2p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2g7CpZQ2p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2g7CpZQ2p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2g7CpZQ2p .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #111010;
}
.cid-v2g7CpZQ2p .navbar.opened {
  transition: all 0.3s;
}
.cid-v2g7CpZQ2p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2g7CpZQ2p .navbar .navbar-logo img {
  width: auto;
}
.cid-v2g7CpZQ2p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2g7CpZQ2p .navbar.collapsed {
  justify-content: center;
}
.cid-v2g7CpZQ2p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2g7CpZQ2p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2g7CpZQ2p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-v2g7CpZQ2p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2g7CpZQ2p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2g7CpZQ2p .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-v2g7CpZQ2p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2g7CpZQ2p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2g7CpZQ2p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2g7CpZQ2p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2g7CpZQ2p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2g7CpZQ2p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2g7CpZQ2p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2g7CpZQ2p .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-v2g7CpZQ2p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2g7CpZQ2p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2g7CpZQ2p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2g7CpZQ2p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2g7CpZQ2p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2g7CpZQ2p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v2g7CpZQ2p .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v2g7CpZQ2p .navbar.navbar-short {
  min-height: 80px;
}
.cid-v2g7CpZQ2p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2g7CpZQ2p .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-v2g7CpZQ2p .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-v2g7CpZQ2p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2g7CpZQ2p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2g7CpZQ2p .dropdown-item.active,
.cid-v2g7CpZQ2p .dropdown-item:active {
  background-color: transparent;
}
.cid-v2g7CpZQ2p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2g7CpZQ2p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2g7CpZQ2p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2g7CpZQ2p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111010;
}
.cid-v2g7CpZQ2p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2g7CpZQ2p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2g7CpZQ2p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2g7CpZQ2p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2g7CpZQ2p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2g7CpZQ2p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #04492e;
}
.cid-v2g7CpZQ2p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2g7CpZQ2p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2g7CpZQ2p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2g7CpZQ2p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2g7CpZQ2p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2g7CpZQ2p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2g7CpZQ2p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2g7CpZQ2p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2g7CpZQ2p .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2g7CpZQ2p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2g7CpZQ2p .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-v2g7CpZQ2p .navbar {
    height: 70px;
  }
  .cid-v2g7CpZQ2p .navbar.opened {
    height: auto;
  }
  .cid-v2g7CpZQ2p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2g7CqyLzD {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2g7CqyLzD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7CqyLzD .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-v2g7CqyLzD .container {
    padding: 0 30px;
  }
}
.cid-v2g7CqyLzD .row .card {
  justify-content: center;
}
.cid-v2g7CqyLzD .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v2g7CqyLzD .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2g7CqyLzD .image-wrapper {
    margin-top: 30px;
  }
}
.cid-v2g7CqyLzD .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-v2g7CqyLzD .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-v2g7CqyLzD .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7CqyLzD .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-v2g7CqyLzD .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-v2g7CqyLzD .mbr-section-title {
  color: #ffffff;
}
.cid-v2g7CqyLzD .mbr-section-subtitle {
  color: #000000;
}
.cid-v2g7CqyLzD .mbr-section-title,
.cid-v2g7CqyLzD .mbr-section-btn {
  color: #000000;
}
.cid-v2g7Cr4GjC {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2g7Cr4GjC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Cr4GjC .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-v2g7Cr4GjC .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v2g7Cr4GjC .container {
    padding: 0 12px;
  }
}
.cid-v2g7Cr4GjC .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v2g7Cr4GjC .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v2g7Cr4GjC .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v2g7Cr4GjC .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #111010;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v2g7Cr4GjC .mbr-section-title {
  color: #222222;
}
.cid-v2g7CrvMA1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2g7CrvMA1 .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v2g7CrvMA1 .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v2g7CrvMA1 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v2g7CrvMA1 .mbr-text {
  color: #000000;
}
.cid-v2g7CrvMA1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2g7CrvMA1 .mbr-section-title {
  color: #000000;
}
.cid-v2g7Cs1NI5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2g7Cs1NI5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Cs1NI5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7Cs1NI5 .row {
  justify-content: center;
}
.cid-v2g7Cs1NI5 .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v2g7Cs1NI5 .title-wrapper .title-wrap {
    margin-bottom: 30px;
  }
}
.cid-v2g7Cs1NI5 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2g7Cs1NI5 .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
}
.cid-v2g7Cs1NI5 .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-v2g7Cs1NI5 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2g7Cs1NI5 .mbr-section-title,
.cid-v2g7Cs1NI5 .mbr-iconfont {
  color: #FFBE0D;
}
.cid-v2g7Cs1NI5 .mbr-desc {
  color: #fff7ee;
}
.cid-v2g7Cs1NI5 .mbr-text {
  color: #000000;
}
.cid-v2g7Cs1NI5 .mbr-section-title,
.cid-v2g7Cs1NI5 .title-wrapper,
.cid-v2g7Cs1NI5 .mbr-iconfont {
  color: #000000;
}
.cid-v2g7Csvwy5 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v2g7Csvwy5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Csvwy5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7Csvwy5 img {
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.cid-v2g7Csvwy5 .card-wrapper {
  border: 3px solid #2ba7ff;
  padding: 2rem;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-v2g7Csvwy5 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2g7Csvwy5 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v2g7Csvwy5 .mbr-section-subtitle {
  background: #2ba7ff;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-v2g7Csvwy5 .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  padding-left: 20px;
  background: #cdfb0a;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2g7Csvwy5 .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #2ba7ff;
  font-size: 1.5rem;
}
.cid-v2g7Csvwy5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2g7Csvwy5 .mbr-text,
.cid-v2g7Csvwy5 .mbr-section-btn {
  color: #6e6e6e;
}
.cid-v2g7Csvwy5 .mbr-section-subtitle2,
.cid-v2g7Csvwy5 .align-wrapper {
  color: #04492e;
}
.cid-v2g7Csvwy5 .mbr-section-maintitle {
  text-align: center;
  color: #000000;
}
.cid-v2g7Ctgz2w {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #02050a;
}
.cid-v2g7Ctgz2w .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Ctgz2w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7Ctgz2w .row {
  margin: 0 -6px;
}
.cid-v2g7Ctgz2w .card {
  padding: 0 6px;
}
.cid-v2g7Ctgz2w .image-wrapper {
  position: relative;
  height: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 992px) {
  .cid-v2g7Ctgz2w .image-wrapper {
    margin-top: 3px;
    margin-bottom: 3px;
    height: 400px;
  }
}
.cid-v2g7Ctgz2w .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v2g7Ctgz2w .card-wrapper {
  height: 100%;
  padding: 54px 100px;
  background-color: #f5f8ff;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 1440px) {
  .cid-v2g7Ctgz2w .card-wrapper {
    padding: 48px 64px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7Ctgz2w .card-wrapper {
    padding: 48px 24px;
    margin-top: 3px;
    margin-bottom: 3px;
  }
}
.cid-v2g7Ctgz2w .card-wrapper .title-wrapper .mbr-label {
  margin-bottom: 200px;
}
@media (max-width: 1440px) {
  .cid-v2g7Ctgz2w .card-wrapper .title-wrapper .mbr-label {
    margin-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7Ctgz2w .card-wrapper .title-wrapper .mbr-label {
    margin-bottom: 24px;
  }
}
.cid-v2g7Ctgz2w .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v2g7Ctgz2w .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2g7Ctgz2w .card-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 200px;
}
@media (max-width: 1440px) {
  .cid-v2g7Ctgz2w .card-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 100px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7Ctgz2w .card-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-v2g7Ctgz2w .card-wrapper .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v2g7Ctgz2w .mbr-label {
  color: #000000;
  text-align: center;
}
.cid-v2g7Ctgz2w .mbr-section-title {
  color: #000000;
}
.cid-v2g7Ctgz2w .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v2g7Ctgz2w .mbr-section-title,
.cid-v2g7Ctgz2w .mbr-section-btn {
  text-align: center;
}
.cid-v2g7CtRaTo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2g7CtRaTo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7CtRaTo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7CtRaTo .row {
  justify-content: flex-start;
}
.cid-v2g7CtRaTo .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-v2g7CtRaTo .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2g7Culp6L {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-color: #3d8c92;
}
.cid-v2g7Culp6L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Culp6L .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-v2g7Culp6L .container {
    padding: 0 20px;
  }
}
.cid-v2g7Culp6L .row {
  margin: 0;
}
.cid-v2g7Culp6L .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2g7Culp6L .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2g7Culp6L .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v2g7Culp6L .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v2g7Culp6L .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v2g7Culp6L .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v2g7Culp6L .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2g7CuRa6f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2g7CuRa6f .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7CuRa6f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7CuRa6f .row {
  justify-content: flex-start;
}
.cid-v2g7CuRa6f .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-v2g7CuRa6f .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2g7CvmgBo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3d8c92;
}
.cid-v2g7CvmgBo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7CvmgBo .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-v2g7CvmgBo .container {
    padding: 0 30px;
  }
}
.cid-v2g7CvmgBo .row {
  justify-content: center;
}
.cid-v2g7CvmgBo .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v2g7CvmgBo .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v2g7CvmgBo .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #000000;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-v2g7CvmgBo .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-v2g7CvmgBo .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2g7CvmgBo .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v2g7CvmgBo .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v2g7CvmgBo .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  background-color: #000000;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-v2g7CvmgBo .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-v2g7CvmgBo .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-v2g7CvmgBo .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2g7CvmgBo .mbr-section-title {
  color: #000000;
}
.cid-v2g7CvmgBo .panel-title-edit {
  color: #000000;
}
.cid-v2g7CvmgBo .panel-text {
  color: #000000;
}
.cid-v2g7Cw7rO4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2g7Cw7rO4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Cw7rO4 .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-v2g7Cw7rO4 .container {
    padding: 0 16px;
  }
}
.cid-v2g7Cw7rO4 .card {
  justify-content: center;
}
.cid-v2g7Cw7rO4 .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #3d8c92;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-v2g7Cw7rO4 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2g7Cw7rO4 .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-v2g7Cw7rO4 .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-v2g7Cw7rO4 .mbr-section-title {
  color: #000000;
}
.cid-v2g7Cw7rO4 .mbr-text {
  color: #000000;
}
.cid-v2g7Cw7rO4 .mbr-desc {
  color: #000000;
}
.cid-v2g7CwGQAb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d8c92;
}
.cid-v2g7CwGQAb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7CwGQAb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7CwGQAb .items-wrapper {
  justify-content: center;
  margin: 0 -15px;
}
.cid-v2g7CwGQAb .item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v2g7CwGQAb .item {
    margin-bottom: 15px;
  }
}
.cid-v2g7CwGQAb .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  border: 1px solid #111010;
}
@media (max-width: 992px) {
  .cid-v2g7CwGQAb .item .item-wrapper {
    padding: 30px;
  }
}
.cid-v2g7CwGQAb .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v2g7CwGQAb .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v2g7CwGQAb .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  font-size: 25px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-v2g7CwGQAb .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-v2g7CwGQAb .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-v2g7CwGQAb .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-v2g7CwGQAb .item .item-wrapper .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v2g7CwGQAb .item .item-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-v2g7CwGQAb .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-v2g7CwGQAb .card-title {
  color: #000000;
}
.cid-v2g7CwGQAb .card-text {
  color: #8a8a8a;
}
.cid-v2g7CwGQAb .card-text,
.cid-v2g7CwGQAb .mbr-section-btn {
  color: #000000;
}
.cid-v2g7Cxkr9C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-v2g7Cxkr9C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Cxkr9C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7Cxkr9C .row {
  justify-content: center;
}
.cid-v2g7Cxkr9C .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v2g7Cxkr9C .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v2g7Cxkr9C .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-v2g7Cxkr9C .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2g7Cxkr9C .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-v2g7Cxkr9C .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2g7Cxkr9C .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v2g7Cxkr9C .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v2g7Cxkr9C .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v2g7Cxkr9C .mbr-section-title {
  color: #ffffff;
}
.cid-v2g7Cxkr9C .mbr-section-subtitle {
  color: #cbff5b;
  text-align: center;
}
.cid-v2g7Cxkr9C .mbr-text,
.cid-v2g7Cxkr9C .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v2g7Cxkr9C .mbr-section-title,
.cid-v2g7Cxkr9C .mbr-section-btn {
  text-align: center;
}
.cid-v2g7CxUWQ7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-v2g7CxUWQ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7CxUWQ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7CxUWQ7 .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-v2g7CxUWQ7 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-v2g7CxUWQ7 .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-v2g7CxUWQ7 .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-v2g7CxUWQ7 .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-v2g7CxUWQ7 .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-v2g7CxUWQ7 .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v2g7CxUWQ7 .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v2g7CxUWQ7 .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2g7CxUWQ7 .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-v2g7CxUWQ7 .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-v2g7CxUWQ7 .mbr-section-title,
.cid-v2g7CxUWQ7 .mbr-section-btn {
  color: #000000;
}
.cid-v2gt7pHqxa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}
.cid-v2gt7pHqxa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gt7pHqxa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gt7pHqxa .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v2gt7pHqxa .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2gt7pHqxa .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-v2gt7pHqxa .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-v2gt7pHqxa .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-v2gt7pHqxa .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v2gt7pHqxa .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v2gt7pHqxa .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2gt7pHqxa .panel-group .card {
  position: relative;
  padding: 7px 16px;
  background-color: #f5f5f5;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #9c9c9c;
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
.cid-v2gt7pHqxa .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2gt7pHqxa .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v2gt7pHqxa .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v2gt7pHqxa .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
.cid-v2gt7pHqxa .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-v2gt7pHqxa .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-v2gt7pHqxa .panel-group .card .panel-collapse .panel-body {
  padding: 8px 0;
}
.cid-v2gt7pHqxa .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 95%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-v2gt7pHqxa .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-v2gt7pHqxa .mbr-label,
.cid-v2gt7pHqxa .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v2gt7pHqxa .mbr-section-title,
.cid-v2gt7pHqxa .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v2gt7pHqxa .mbr-text,
.cid-v2gt7pHqxa .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-v2gt7pHqxa .panel-title-edit {
  color: #000000;
}
.cid-v2gt7pHqxa .panel-text {
  color: #515151;
}
.cid-v2g7Cytgbd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #3d8c92;
}
.cid-v2g7Cytgbd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Cytgbd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2g7Cytgbd .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2g7Cytgbd .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2g7Cytgbd .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-v2g7Cytgbd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2g7Cytgbd .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2g7Cytgbd .mbr-section-title {
  color: #ffffff;
}
.cid-v2g7Cz3v3o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111010;
  overflow: hidden;
}
.cid-v2g7Cz3v3o .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2g7Cz3v3o .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-v2g7Cz3v3o .container {
    padding: 0 30px;
  }
}
.cid-v2g7Cz3v3o .row {
  justify-content: center;
}
.cid-v2g7Cz3v3o .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2g7Cz3v3o .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Cz3v3o .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2g7Cz3v3o .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Cz3v3o .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-v2g7Cz3v3o .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2g7Cz3v3o .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2g7Cz3v3o .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Cz3v3o .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2g7Cz3v3o .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-v2g7Cz3v3o .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2g7Cz3v3o .nav-wrapper .list .item-wrap:hover,
.cid-v2g7Cz3v3o .nav-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2g7Cz3v3o .nav-wrapper .list .item-wrap:hover::before,
.cid-v2g7Cz3v3o .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-v2g7Cz3v3o .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-v2g7Cz3v3o .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2g7Cz3v3o .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v2g7Cz3v3o .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #ffffff;
}
.cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v2g7Cz3v3o .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2g7Cz3v3o .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2g7Cz3v3o .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2g7Cz3v3o .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #ffffff;
}
.cid-v2g7Cz3v3o .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v2g7Cz3v3o .mbr-section-title {
  color: #bee0d6;
}
.cid-v2g7Cz3v3o .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2g7Cz3v3o .list {
  color: #bee0d6;
}
.cid-v2g7Cz3v3o .mbr-address {
  color: #ffffff;
}
.cid-v2g7Cz3v3o .mbr-copy {
  color: #ffffff;
}
.cid-v2g7Cz3v3o .list,
.cid-v2g7Cz3v3o .item-wrap,
.cid-v2g7Cz3v3o .nav-wrapper {
  color: #ffffff;
}
.cid-v2g7Cz3v3o .mbr-section-title,
.cid-v2g7Cz3v3o .logo-wrapper {
  color: #2ba7ff;
}
