body {
  font-family: Jost;
}
.display-1 {
  font-family: 'EB Garamond', serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'EB Garamond', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'EB Garamond', serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-5 {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 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: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #650d0d !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: #650d0d !important;
  border-color: #650d0d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #180303 !important;
  border-color: #180303 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #180303 !important;
  border-color: #180303 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #650d0d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #180303 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #650d0d !important;
  border-color: #650d0d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #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: transparent!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: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #650d0d !important;
}
.text-secondary {
  color: #ff6666 !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: #0b0101 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !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: #650d0d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #650d0d;
  border-color: #650d0d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #650d0d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d61c1c;
}
.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: 'EB Garamond', serif;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2.25rem;
}
.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: #650d0d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'EB Garamond', serif;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.25rem;
}
blockquote {
  border-color: #650d0d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #650d0d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #650d0d;
}
.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: #650d0d;
  border-bottom-color: #650d0d;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #650d0d !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: #ff6666 !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='%23650d0d' %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-tWoseawnqa .navbar-dropdown {
  position: relative !important;
}
.cid-tWoseawnqa .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-tWoseawnqa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWoseawnqa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWoseawnqa .dropdown-item:hover,
.cid-tWoseawnqa .dropdown-item:focus {
  background: #650d0d !important;
  color: white !important;
}
.cid-tWoseawnqa .dropdown-item:hover span {
  color: white;
}
.cid-tWoseawnqa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWoseawnqa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWoseawnqa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWoseawnqa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWoseawnqa .nav-link {
  position: relative;
}
.cid-tWoseawnqa .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWoseawnqa .container {
    flex-wrap: wrap;
  }
}
.cid-tWoseawnqa .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWoseawnqa .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tWoseawnqa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWoseawnqa .dropdown-menu,
.cid-tWoseawnqa .navbar.opened {
  background: #2e254f !important;
}
.cid-tWoseawnqa .nav-item:focus,
.cid-tWoseawnqa .nav-link:focus {
  outline: none;
}
.cid-tWoseawnqa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWoseawnqa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWoseawnqa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWoseawnqa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWoseawnqa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWoseawnqa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWoseawnqa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2e254f;
}
.cid-tWoseawnqa .navbar.opened {
  transition: all 0.3s;
}
.cid-tWoseawnqa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWoseawnqa .navbar .navbar-logo img {
  width: auto;
}
.cid-tWoseawnqa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWoseawnqa .navbar.collapsed {
  justify-content: center;
}
.cid-tWoseawnqa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWoseawnqa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWoseawnqa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tWoseawnqa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWoseawnqa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWoseawnqa .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-tWoseawnqa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWoseawnqa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWoseawnqa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWoseawnqa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWoseawnqa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWoseawnqa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWoseawnqa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWoseawnqa .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-tWoseawnqa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWoseawnqa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWoseawnqa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWoseawnqa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWoseawnqa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWoseawnqa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWoseawnqa .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWoseawnqa .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWoseawnqa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWoseawnqa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWoseawnqa .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-tWoseawnqa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWoseawnqa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWoseawnqa .dropdown-item.active,
.cid-tWoseawnqa .dropdown-item:active {
  background-color: transparent;
}
.cid-tWoseawnqa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWoseawnqa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWoseawnqa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWoseawnqa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2e254f;
}
.cid-tWoseawnqa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWoseawnqa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWoseawnqa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWoseawnqa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWoseawnqa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWoseawnqa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWoseawnqa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWoseawnqa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWoseawnqa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWoseawnqa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWoseawnqa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWoseawnqa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWoseawnqa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWoseawnqa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWoseawnqa .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWoseawnqa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWoseawnqa .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-tWoseawnqa .navbar {
    height: 70px;
  }
  .cid-tWoseawnqa .navbar.opened {
    height: auto;
  }
  .cid-tWoseawnqa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWvCjA2ILd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWvCjA2ILd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvCjA2ILd img {
  border-radius: 2rem;
  margin-top: 6rem;
  box-shadow: 0 0 100px 0 #650d0d;
}
@media (max-width: 767px) {
  .cid-tWvCjA2ILd img {
    margin-top: 2rem;
  }
}
.cid-tWvCjA2ILd .row {
  background: #111019;
  border-radius: 4rem;
  padding: 8rem 1rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tWvCjA2ILd .row {
    border-radius: 2rem;
    padding: 2rem 1rem;
  }
}
.cid-tWvCjA2ILd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvCjA2ILd .mbr-text,
.cid-tWvCjA2ILd .mbr-section-btn {
  text-align: center;
  color: #bbbbbb;
}
.cid-tWvCjA2ILd .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tWvCjA2ILd .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tWpnoWn0Xw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWpnoWn0Xw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWpnoWn0Xw .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-tWpnoWn0Xw .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tWpnoWn0Xw .container {
    padding: 0 12px;
  }
}
.cid-tWpnoWn0Xw .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tWpnoWn0Xw .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tWpnoWn0Xw .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tWpnoWn0Xw .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff3399;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tWpnoWn0Xw .mbr-section-title {
  color: #47b5ed;
}
.cid-tWpeE2EISw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWpeE2EISw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWpeE2EISw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWpeE2EISw .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWpeE2EISw .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWpeE2EISw .container {
    padding: 0 24px;
  }
}
.cid-tWpeE2EISw .row {
  justify-content: center;
}
.cid-tWpeE2EISw .content-wrapper {
  border-radius: 40px;
  background-color: #98dee8;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWpeE2EISw .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWpeE2EISw .content-wrapper {
    padding: 32px;
  }
}
.cid-tWpeE2EISw .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWpeE2EISw .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWpeE2EISw .mbr-section-title {
  color: #FF3399;
}
.cid-tWpeE2EISw .mbr-text {
  color: #262642;
}
.cid-tWosHkuZ30 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWosHkuZ30 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWosHkuZ30 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWosHkuZ30 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWosHkuZ30 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWosHkuZ30 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWosHkuZ30 .mbr-section-title {
  color: #131313;
}
.cid-tWosHkuZ30 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWosHkuZ30 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWosHkuZ30 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWosHkuZ30 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #6ec7f2;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWosHkuZ30 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWosHkuZ30 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWosHkuZ30 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWosHkuZ30 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWosHkuZ30 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWosHkuZ30 .card-title {
  color: #131313;
}
.cid-tWosHkuZ30 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWosHkuZ30 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWosHkuZ30 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWosHkuZ30 .card-link {
    margin-top: 15px;
  }
}
.cid-tWosHkuZ30 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWoDJ7mnEC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWoDJ7mnEC .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWoDJ7mnEC .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-tWoDJ7mnEC .col-title,
.cid-tWoDJ7mnEC .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-tWoDJ7mnEC .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWoDJ7mnEC .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tWoDJ7mnEC .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWoDJ7mnEC .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tWoDJ7mnEC .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-tWoDJ7mnEC .mbr-text {
    text-align: center !important;
  }
}
.cid-tWpiBZJIUl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
@media (max-width: 992px) {
  .cid-tWpiBZJIUl .container {
    padding: 0 25px;
  }
}
.cid-tWpiBZJIUl .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWpiBZJIUl .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWpiBZJIUl .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWpiBZJIUl .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWpiBZJIUl .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWpiBZJIUl .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWpiBZJIUl .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWpiBZJIUl .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWpiBZJIUl .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWpiBZJIUl .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWpiBZJIUl .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWpiBZJIUl .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWpiBZJIUl .mbr-section-title {
  color: #000000;
}
.cid-tWpiBZJIUl .panel-title-edit {
  color: #000000;
}
.cid-tWpiBZJIUl .panel-text {
  color: #000000;
}
.cid-tWosPIiO28 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
.cid-tWosPIiO28 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWosPIiO28 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWosPIiO28 .container {
    padding: 0 25px;
  }
}
.cid-tWosPIiO28 .row {
  margin: 0;
}
.cid-tWosPIiO28 .row .card {
  padding: 0;
  justify-content: center;
}
.cid-tWosPIiO28 .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-tWosPIiO28 .image-wrapper {
    min-height: 350px;
  }
}
.cid-tWosPIiO28 .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tWosPIiO28 .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-tWosPIiO28 .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-tWosPIiO28 .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tWosPIiO28 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWosPIiO28 .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-tWosPIiO28 .mbr-section-title {
  color: #000000;
}
.cid-tWosPIiO28 .mbr-text {
  color: #000000;
}
.cid-tWosZ4lZOr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWosZ4lZOr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWosZ4lZOr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWosZ4lZOr .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWosZ4lZOr .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWosZ4lZOr .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWosZ4lZOr .mbr-section-title {
  color: #131313;
}
.cid-tWosZ4lZOr .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWosZ4lZOr .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWosZ4lZOr .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWosZ4lZOr .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #e43f3f;
  box-shadow: 4px 4px 0 #e43f3f;
  background: #6ec7f2;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWosZ4lZOr .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWosZ4lZOr .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWosZ4lZOr .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWosZ4lZOr .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWosZ4lZOr .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWosZ4lZOr .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWosZ4lZOr .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWosZ4lZOr .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWosZ4lZOr .content-wrap {
    margin-top: 0;
  }
}
.cid-tWosZ4lZOr .card-title {
  color: #131313;
}
.cid-tWosZ4lZOr .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWosZ4lZOr .card-text {
    margin-top: 15px;
  }
}
.cid-tWosZ4lZOr .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWosZ4lZOr .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWosZ4lZOr .card-link {
    margin-top: 15px;
  }
}
.cid-tWosZ4lZOr .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWoCxuCsel {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWoCxuCsel .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWoCxuCsel .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWoCxuCsel .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWoCxuCsel .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWoCxuCsel .container {
    padding: 0 30px;
  }
}
.cid-tWoCxuCsel .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tWoCxuCsel .title-wrapper {
    padding: 0 30px;
    height: auto;
  }
}
.cid-tWoCxuCsel .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWoCxuCsel .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tWoCxuCsel .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWoCxuCsel .mbr-section-title {
  color: #000000;
}
.cid-tWoCxuCsel .mbr-text {
  color: #000000;
}
.cid-tWp9CcY9nX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWp9CcY9nX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWp9CcY9nX .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-tWp9CcY9nX .container {
    padding: 0 30px;
  }
}
.cid-tWp9CcY9nX .row {
  justify-content: center;
}
.cid-tWp9CcY9nX .title-wrapper {
  margin-bottom: 40px;
}
.cid-tWp9CcY9nX .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tWp9CcY9nX .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWp9CcY9nX .card {
  margin-bottom: 40px;
}
.cid-tWp9CcY9nX .card .card-wrapper .mbr-number {
  margin: 20px 0;
}
.cid-tWp9CcY9nX .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-tWp9CcY9nX .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tWp9CcY9nX .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tWp9CcY9nX .mbr-section-title {
  color: #212529;
}
.cid-tWp9CcY9nX .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tWp9CcY9nX .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tWp9CcY9nX .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tWp9CcY9nX .mbr-section-title,
.cid-tWp9CcY9nX .mbr-section-btn {
  text-align: center;
}
.cid-tWoD3ee2Ed {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWoD3ee2Ed .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWoD3ee2Ed .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWoD3ee2Ed .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWoD3ee2Ed .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWoD3ee2Ed .container {
    padding: 0 30px;
  }
}
.cid-tWoD3ee2Ed .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tWoD3ee2Ed .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tWoD3ee2Ed .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #98dee8;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tWoD3ee2Ed .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tWoD3ee2Ed .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tWoD3ee2Ed .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tWoD3ee2Ed .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWoD3ee2Ed .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tWoD3ee2Ed .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tWoD3ee2Ed .mbr-section-title {
  color: #ffffff;
}
.cid-tWoD3ee2Ed .mbr-card-title {
  color: #000000;
}
.cid-tWoD3ee2Ed .mbr-text {
  color: #000000;
}
.cid-tWoD3ee2Ed .mbr-number {
  color: #FE5115;
}
.cid-tWpj24wEtR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #98dee8;
}
.cid-tWpj24wEtR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWpj24wEtR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWpj24wEtR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWpj24wEtR .row {
  flex-direction: row-reverse;
}
.cid-tWpj24wEtR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWpj24wEtR .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWpj24wEtR .mbr-section-title {
  color: #000000;
}
.cid-tWpjycQosF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWpjycQosF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWpjycQosF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWpjycQosF .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWpjycQosF .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWpjycQosF .container {
    padding: 0 24px;
  }
}
.cid-tWpjycQosF .row {
  justify-content: center;
}
.cid-tWpjycQosF .content-wrapper {
  border-radius: 40px;
  background-color: #98dee8;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWpjycQosF .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWpjycQosF .content-wrapper {
    padding: 32px;
  }
}
.cid-tWpjycQosF .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWpjycQosF .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWpjycQosF .mbr-section-title {
  color: #000000;
}
.cid-tWpjycQosF .mbr-text {
  color: #262642;
}
.cid-tWoCFrfkbl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #98dee8;
}
.cid-tWoCFrfkbl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWoCFrfkbl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWoCFrfkbl .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWoCFrfkbl .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWoCFrfkbl .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-tWoCFrfkbl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWoCFrfkbl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWoCFrfkbl .mbr-section-title {
  color: #000000;
}
.cid-tWoCHcSRwU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-tWoCHcSRwU .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWoCHcSRwU .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWoCHcSRwU .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWoCHcSRwU .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWoCHcSRwU a {
  background-image: none !important;
}
.cid-tWoCHcSRwU .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWoCHcSRwU .container {
  padding: 5rem 1rem;
}
.cid-tWoCHcSRwU p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWoCHcSRwU p {
    text-align: center !important;
  }
}
.cid-tWoCHcSRwU .media-container-row .mbr-text2,
.cid-tWoCHcSRwU .line {
  color: #232323;
  text-align: left;
}
.cid-tWoseawnqa .navbar-dropdown {
  position: relative !important;
}
.cid-tWoseawnqa .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-tWoseawnqa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWoseawnqa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWoseawnqa .dropdown-item:hover,
.cid-tWoseawnqa .dropdown-item:focus {
  background: #650d0d !important;
  color: white !important;
}
.cid-tWoseawnqa .dropdown-item:hover span {
  color: white;
}
.cid-tWoseawnqa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWoseawnqa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWoseawnqa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWoseawnqa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWoseawnqa .nav-link {
  position: relative;
}
.cid-tWoseawnqa .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWoseawnqa .container {
    flex-wrap: wrap;
  }
}
.cid-tWoseawnqa .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWoseawnqa .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tWoseawnqa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWoseawnqa .dropdown-menu,
.cid-tWoseawnqa .navbar.opened {
  background: #2e254f !important;
}
.cid-tWoseawnqa .nav-item:focus,
.cid-tWoseawnqa .nav-link:focus {
  outline: none;
}
.cid-tWoseawnqa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWoseawnqa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWoseawnqa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWoseawnqa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWoseawnqa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWoseawnqa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWoseawnqa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2e254f;
}
.cid-tWoseawnqa .navbar.opened {
  transition: all 0.3s;
}
.cid-tWoseawnqa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWoseawnqa .navbar .navbar-logo img {
  width: auto;
}
.cid-tWoseawnqa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWoseawnqa .navbar.collapsed {
  justify-content: center;
}
.cid-tWoseawnqa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWoseawnqa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWoseawnqa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tWoseawnqa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWoseawnqa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWoseawnqa .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-tWoseawnqa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWoseawnqa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWoseawnqa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWoseawnqa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWoseawnqa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWoseawnqa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWoseawnqa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWoseawnqa .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-tWoseawnqa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWoseawnqa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWoseawnqa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWoseawnqa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWoseawnqa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWoseawnqa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWoseawnqa .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWoseawnqa .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWoseawnqa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWoseawnqa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWoseawnqa .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-tWoseawnqa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWoseawnqa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWoseawnqa .dropdown-item.active,
.cid-tWoseawnqa .dropdown-item:active {
  background-color: transparent;
}
.cid-tWoseawnqa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWoseawnqa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWoseawnqa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWoseawnqa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2e254f;
}
.cid-tWoseawnqa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWoseawnqa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWoseawnqa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWoseawnqa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWoseawnqa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWoseawnqa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWoseawnqa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWoseawnqa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWoseawnqa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWoseawnqa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWoseawnqa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWoseawnqa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWoseawnqa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWoseawnqa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWoseawnqa .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWoseawnqa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWoseawnqa .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-tWoseawnqa .navbar {
    height: 70px;
  }
  .cid-tWoseawnqa .navbar.opened {
    height: auto;
  }
  .cid-tWoseawnqa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWpbblo8LQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tWpbblo8LQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWpbblo8LQ .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-tWpbblo8LQ .container {
    padding: 0 15px;
  }
}
.cid-tWpbblo8LQ .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-tWpbblo8LQ .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWpbblo8LQ .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-tWpbblo8LQ .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tWpbblo8LQ .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWpbblo8LQ .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWpbblo8LQ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWpbblo8LQ .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-tWpbblo8LQ .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-tWpbblo8LQ .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #373d52;
  box-shadow: 10px 10px 50px #d2d2df;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-tWpbblo8LQ .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-tWpbblo8LQ .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-tWpbblo8LQ .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-tWpbblo8LQ .mbr-section-title {
  color: #ffffff;
}
.cid-tWpbblo8LQ .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-tWpbblo8LQ .mbr-text {
  color: #fafafa;
}
.cid-tWpbrEjWdV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWpbrEjWdV blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #9fdbf8;
}
.cid-tWpbrEjWdV .mbr-text {
  text-align: center;
}
.cid-tWpbgicGWA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-tWpbgicGWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWpbgicGWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWpbgicGWA .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWpbgicGWA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWpbgicGWA .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-tWpbgicGWA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWpbgicGWA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWpbgicGWA .mbr-section-title {
  color: #000000;
}
.cid-tWpbegCpnD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tWpbegCpnD .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWpbegCpnD .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWpbegCpnD .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWpbegCpnD .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWpbegCpnD a {
  background-image: none !important;
}
.cid-tWpbegCpnD .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWpbegCpnD .container {
  padding: 5rem 1rem;
}
.cid-tWpbegCpnD p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWpbegCpnD p {
    text-align: center !important;
  }
}
.cid-tWpbegCpnD .media-container-row .mbr-text2,
.cid-tWpbegCpnD .line {
  color: #232323;
  text-align: left;
}
.cid-tWpuDaFqL7 .navbar-dropdown {
  position: relative !important;
}
.cid-tWpuDaFqL7 .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-tWpuDaFqL7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWpuDaFqL7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWpuDaFqL7 .dropdown-item:hover,
.cid-tWpuDaFqL7 .dropdown-item:focus {
  background: #650d0d !important;
  color: white !important;
}
.cid-tWpuDaFqL7 .dropdown-item:hover span {
  color: white;
}
.cid-tWpuDaFqL7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWpuDaFqL7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWpuDaFqL7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWpuDaFqL7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWpuDaFqL7 .nav-link {
  position: relative;
}
.cid-tWpuDaFqL7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWpuDaFqL7 .container {
    flex-wrap: wrap;
  }
}
.cid-tWpuDaFqL7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWpuDaFqL7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tWpuDaFqL7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWpuDaFqL7 .dropdown-menu,
.cid-tWpuDaFqL7 .navbar.opened {
  background: #2e254f !important;
}
.cid-tWpuDaFqL7 .nav-item:focus,
.cid-tWpuDaFqL7 .nav-link:focus {
  outline: none;
}
.cid-tWpuDaFqL7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWpuDaFqL7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWpuDaFqL7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWpuDaFqL7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWpuDaFqL7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWpuDaFqL7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWpuDaFqL7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2e254f;
}
.cid-tWpuDaFqL7 .navbar.opened {
  transition: all 0.3s;
}
.cid-tWpuDaFqL7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWpuDaFqL7 .navbar .navbar-logo img {
  width: auto;
}
.cid-tWpuDaFqL7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWpuDaFqL7 .navbar.collapsed {
  justify-content: center;
}
.cid-tWpuDaFqL7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWpuDaFqL7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWpuDaFqL7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tWpuDaFqL7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWpuDaFqL7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWpuDaFqL7 .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-tWpuDaFqL7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWpuDaFqL7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWpuDaFqL7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWpuDaFqL7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWpuDaFqL7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWpuDaFqL7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWpuDaFqL7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWpuDaFqL7 .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-tWpuDaFqL7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWpuDaFqL7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWpuDaFqL7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWpuDaFqL7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWpuDaFqL7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWpuDaFqL7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWpuDaFqL7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWpuDaFqL7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWpuDaFqL7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWpuDaFqL7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWpuDaFqL7 .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-tWpuDaFqL7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWpuDaFqL7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWpuDaFqL7 .dropdown-item.active,
.cid-tWpuDaFqL7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tWpuDaFqL7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWpuDaFqL7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWpuDaFqL7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWpuDaFqL7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2e254f;
}
.cid-tWpuDaFqL7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWpuDaFqL7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWpuDaFqL7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWpuDaFqL7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWpuDaFqL7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWpuDaFqL7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWpuDaFqL7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWpuDaFqL7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWpuDaFqL7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWpuDaFqL7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWpuDaFqL7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWpuDaFqL7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWpuDaFqL7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWpuDaFqL7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWpuDaFqL7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWpuDaFqL7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWpuDaFqL7 .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-tWpuDaFqL7 .navbar {
    height: 70px;
  }
  .cid-tWpuDaFqL7 .navbar.opened {
    height: auto;
  }
  .cid-tWpuDaFqL7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWpuDbpPjY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tWpuDbpPjY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWpuDbpPjY .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-tWpuDbpPjY .container {
    padding: 0 15px;
  }
}
.cid-tWpuDbpPjY .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-tWpuDbpPjY .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWpuDbpPjY .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-tWpuDbpPjY .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tWpuDbpPjY .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWpuDbpPjY .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWpuDbpPjY .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWpuDbpPjY .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-tWpuDbpPjY .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-tWpuDbpPjY .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #373d52;
  box-shadow: 10px 10px 50px #98dee8;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-tWpuDbpPjY .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-tWpuDbpPjY .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-tWpuDbpPjY .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-tWpuDbpPjY .mbr-section-title {
  color: #ffffff;
}
.cid-tWpuDbpPjY .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-tWpuDbpPjY .mbr-text {
  color: #fafafa;
}
.cid-tWpuDbYBI6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWpuDbYBI6 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #6ec7f2;
}
.cid-tWpuDbYBI6 .mbr-text {
  text-align: center;
}
.cid-tWpuDcSpQF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-tWpuDcSpQF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWpuDcSpQF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWpuDcSpQF .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWpuDcSpQF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWpuDcSpQF .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-tWpuDcSpQF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWpuDcSpQF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWpuDcSpQF .mbr-section-title {
  color: #000000;
}
.cid-tWpuDdyjtu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tWpuDdyjtu .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWpuDdyjtu .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWpuDdyjtu .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWpuDdyjtu .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWpuDdyjtu a {
  background-image: none !important;
}
.cid-tWpuDdyjtu .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWpuDdyjtu .container {
  padding: 5rem 1rem;
}
.cid-tWpuDdyjtu p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWpuDdyjtu p {
    text-align: center !important;
  }
}
.cid-tWpuDdyjtu .media-container-row .mbr-text2,
.cid-tWpuDdyjtu .line {
  color: #232323;
  text-align: left;
}
.cid-tWvJ39QAUO .navbar-dropdown {
  position: relative !important;
}
.cid-tWvJ39QAUO .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-tWvJ39QAUO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWvJ39QAUO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWvJ39QAUO .dropdown-item:hover,
.cid-tWvJ39QAUO .dropdown-item:focus {
  background: #650d0d !important;
  color: white !important;
}
.cid-tWvJ39QAUO .dropdown-item:hover span {
  color: white;
}
.cid-tWvJ39QAUO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWvJ39QAUO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWvJ39QAUO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWvJ39QAUO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWvJ39QAUO .nav-link {
  position: relative;
}
.cid-tWvJ39QAUO .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWvJ39QAUO .container {
    flex-wrap: wrap;
  }
}
.cid-tWvJ39QAUO .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWvJ39QAUO .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tWvJ39QAUO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWvJ39QAUO .dropdown-menu,
.cid-tWvJ39QAUO .navbar.opened {
  background: #2e254f !important;
}
.cid-tWvJ39QAUO .nav-item:focus,
.cid-tWvJ39QAUO .nav-link:focus {
  outline: none;
}
.cid-tWvJ39QAUO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWvJ39QAUO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWvJ39QAUO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWvJ39QAUO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWvJ39QAUO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWvJ39QAUO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWvJ39QAUO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2e254f;
}
.cid-tWvJ39QAUO .navbar.opened {
  transition: all 0.3s;
}
.cid-tWvJ39QAUO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWvJ39QAUO .navbar .navbar-logo img {
  width: auto;
}
.cid-tWvJ39QAUO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWvJ39QAUO .navbar.collapsed {
  justify-content: center;
}
.cid-tWvJ39QAUO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWvJ39QAUO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWvJ39QAUO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tWvJ39QAUO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWvJ39QAUO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWvJ39QAUO .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-tWvJ39QAUO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWvJ39QAUO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWvJ39QAUO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWvJ39QAUO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWvJ39QAUO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWvJ39QAUO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWvJ39QAUO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWvJ39QAUO .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-tWvJ39QAUO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWvJ39QAUO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWvJ39QAUO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWvJ39QAUO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWvJ39QAUO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWvJ39QAUO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWvJ39QAUO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWvJ39QAUO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWvJ39QAUO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWvJ39QAUO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWvJ39QAUO .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-tWvJ39QAUO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWvJ39QAUO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWvJ39QAUO .dropdown-item.active,
.cid-tWvJ39QAUO .dropdown-item:active {
  background-color: transparent;
}
.cid-tWvJ39QAUO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWvJ39QAUO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWvJ39QAUO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWvJ39QAUO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2e254f;
}
.cid-tWvJ39QAUO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWvJ39QAUO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWvJ39QAUO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWvJ39QAUO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWvJ39QAUO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWvJ39QAUO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWvJ39QAUO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWvJ39QAUO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWvJ39QAUO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWvJ39QAUO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWvJ39QAUO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWvJ39QAUO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWvJ39QAUO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWvJ39QAUO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWvJ39QAUO .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWvJ39QAUO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWvJ39QAUO .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-tWvJ39QAUO .navbar {
    height: 70px;
  }
  .cid-tWvJ39QAUO .navbar.opened {
    height: auto;
  }
  .cid-tWvJ39QAUO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWvJ3aybmj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWvJ3aybmj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvJ3aybmj img {
  border-radius: 2rem;
  margin-top: 6rem;
  box-shadow: 0 0 100px 0 #650d0d;
}
@media (max-width: 767px) {
  .cid-tWvJ3aybmj img {
    margin-top: 2rem;
  }
}
.cid-tWvJ3aybmj .row {
  background: #111019;
  border-radius: 4rem;
  padding: 8rem 1rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tWvJ3aybmj .row {
    border-radius: 2rem;
    padding: 2rem 1rem;
  }
}
.cid-tWvJ3aybmj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvJ3aybmj .mbr-text,
.cid-tWvJ3aybmj .mbr-section-btn {
  text-align: center;
  color: #bbbbbb;
}
.cid-tWvJ3aybmj .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tWvJ3aybmj .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tWvJ3bhJEG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWvJ3bhJEG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvJ3bhJEG .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-tWvJ3bhJEG .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tWvJ3bhJEG .container {
    padding: 0 12px;
  }
}
.cid-tWvJ3bhJEG .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tWvJ3bhJEG .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tWvJ3bhJEG .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tWvJ3bhJEG .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff3399;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tWvJ3bhJEG .mbr-section-title {
  color: #47b5ed;
}
.cid-tWvJ3c1SDk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvJ3c1SDk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvJ3c1SDk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvJ3c1SDk .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWvJ3c1SDk .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWvJ3c1SDk .container {
    padding: 0 24px;
  }
}
.cid-tWvJ3c1SDk .row {
  justify-content: center;
}
.cid-tWvJ3c1SDk .content-wrapper {
  border-radius: 40px;
  background-color: #98dee8;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWvJ3c1SDk .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWvJ3c1SDk .content-wrapper {
    padding: 32px;
  }
}
.cid-tWvJ3c1SDk .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWvJ3c1SDk .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWvJ3c1SDk .mbr-section-title {
  color: #FF3399;
}
.cid-tWvJ3c1SDk .mbr-text {
  color: #262642;
}
.cid-tWvJ3cLvu3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWvJ3cLvu3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvJ3cLvu3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvJ3cLvu3 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWvJ3cLvu3 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWvJ3cLvu3 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWvJ3cLvu3 .mbr-section-title {
  color: #131313;
}
.cid-tWvJ3cLvu3 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWvJ3cLvu3 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWvJ3cLvu3 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWvJ3cLvu3 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #6ec7f2;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWvJ3cLvu3 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWvJ3cLvu3 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWvJ3cLvu3 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWvJ3cLvu3 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWvJ3cLvu3 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWvJ3cLvu3 .card-title {
  color: #131313;
}
.cid-tWvJ3cLvu3 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWvJ3cLvu3 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWvJ3cLvu3 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWvJ3cLvu3 .card-link {
    margin-top: 15px;
  }
}
.cid-tWvJ3cLvu3 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWvJ3dQ7i9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvJ3dQ7i9 .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWvJ3dQ7i9 .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-tWvJ3dQ7i9 .col-title,
.cid-tWvJ3dQ7i9 .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-tWvJ3dQ7i9 .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWvJ3dQ7i9 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tWvJ3dQ7i9 .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWvJ3dQ7i9 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tWvJ3dQ7i9 .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-tWvJ3dQ7i9 .mbr-text {
    text-align: center !important;
  }
}
.cid-tWvJ3egLAc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
@media (max-width: 992px) {
  .cid-tWvJ3egLAc .container {
    padding: 0 25px;
  }
}
.cid-tWvJ3egLAc .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWvJ3egLAc .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWvJ3egLAc .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWvJ3egLAc .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWvJ3egLAc .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWvJ3egLAc .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWvJ3egLAc .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvJ3egLAc .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvJ3egLAc .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWvJ3egLAc .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWvJ3egLAc .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWvJ3egLAc .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWvJ3egLAc .mbr-section-title {
  color: #000000;
}
.cid-tWvJ3egLAc .panel-title-edit {
  color: #000000;
}
.cid-tWvJ3egLAc .panel-text {
  color: #000000;
}
.cid-tWvJ3f8dSg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
.cid-tWvJ3f8dSg .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWvJ3f8dSg .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWvJ3f8dSg .container {
    padding: 0 25px;
  }
}
.cid-tWvJ3f8dSg .row {
  margin: 0;
}
.cid-tWvJ3f8dSg .row .card {
  padding: 0;
  justify-content: center;
}
.cid-tWvJ3f8dSg .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-tWvJ3f8dSg .image-wrapper {
    min-height: 350px;
  }
}
.cid-tWvJ3f8dSg .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tWvJ3f8dSg .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-tWvJ3f8dSg .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-tWvJ3f8dSg .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tWvJ3f8dSg .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWvJ3f8dSg .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-tWvJ3f8dSg .mbr-section-title {
  color: #000000;
}
.cid-tWvJ3f8dSg .mbr-text {
  color: #000000;
}
.cid-tWvJ3fKe0C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWvJ3fKe0C .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvJ3fKe0C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvJ3fKe0C .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWvJ3fKe0C .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWvJ3fKe0C .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWvJ3fKe0C .mbr-section-title {
  color: #131313;
}
.cid-tWvJ3fKe0C .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWvJ3fKe0C .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWvJ3fKe0C .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWvJ3fKe0C .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #e43f3f;
  box-shadow: 4px 4px 0 #e43f3f;
  background: #6ec7f2;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWvJ3fKe0C .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWvJ3fKe0C .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWvJ3fKe0C .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWvJ3fKe0C .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWvJ3fKe0C .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWvJ3fKe0C .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWvJ3fKe0C .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWvJ3fKe0C .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWvJ3fKe0C .content-wrap {
    margin-top: 0;
  }
}
.cid-tWvJ3fKe0C .card-title {
  color: #131313;
}
.cid-tWvJ3fKe0C .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWvJ3fKe0C .card-text {
    margin-top: 15px;
  }
}
.cid-tWvJ3fKe0C .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWvJ3fKe0C .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWvJ3fKe0C .card-link {
    margin-top: 15px;
  }
}
.cid-tWvJ3fKe0C .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWvJ3gysfu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvJ3gysfu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvJ3gysfu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvJ3gysfu .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWvJ3gysfu .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWvJ3gysfu .container {
    padding: 0 30px;
  }
}
.cid-tWvJ3gysfu .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tWvJ3gysfu .title-wrapper {
    padding: 0 30px;
    height: auto;
  }
}
.cid-tWvJ3gysfu .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWvJ3gysfu .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tWvJ3gysfu .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWvJ3gysfu .mbr-section-title {
  color: #000000;
}
.cid-tWvJ3gysfu .mbr-text {
  color: #000000;
}
.cid-tWvJ3h3Aam {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWvJ3h3Aam .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvJ3h3Aam .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-tWvJ3h3Aam .container {
    padding: 0 30px;
  }
}
.cid-tWvJ3h3Aam .row {
  justify-content: center;
}
.cid-tWvJ3h3Aam .title-wrapper {
  margin-bottom: 40px;
}
.cid-tWvJ3h3Aam .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tWvJ3h3Aam .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWvJ3h3Aam .card {
  margin-bottom: 40px;
}
.cid-tWvJ3h3Aam .card .card-wrapper .mbr-number {
  margin: 20px 0;
}
.cid-tWvJ3h3Aam .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-tWvJ3h3Aam .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tWvJ3h3Aam .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tWvJ3h3Aam .mbr-section-title {
  color: #212529;
}
.cid-tWvJ3h3Aam .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tWvJ3h3Aam .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tWvJ3h3Aam .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tWvJ3h3Aam .mbr-section-title,
.cid-tWvJ3h3Aam .mbr-section-btn {
  text-align: center;
}
.cid-tWvJ3hDIDJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvJ3hDIDJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvJ3hDIDJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvJ3hDIDJ .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWvJ3hDIDJ .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWvJ3hDIDJ .container {
    padding: 0 30px;
  }
}
.cid-tWvJ3hDIDJ .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tWvJ3hDIDJ .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tWvJ3hDIDJ .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #98dee8;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tWvJ3hDIDJ .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tWvJ3hDIDJ .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tWvJ3hDIDJ .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tWvJ3hDIDJ .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWvJ3hDIDJ .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tWvJ3hDIDJ .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tWvJ3hDIDJ .mbr-section-title {
  color: #ffffff;
}
.cid-tWvJ3hDIDJ .mbr-card-title {
  color: #000000;
}
.cid-tWvJ3hDIDJ .mbr-text {
  color: #000000;
}
.cid-tWvJ3hDIDJ .mbr-number {
  color: #FE5115;
}
.cid-tWvJ3ibI9K {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #98dee8;
}
.cid-tWvJ3ibI9K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvJ3ibI9K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWvJ3ibI9K .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWvJ3ibI9K .row {
  flex-direction: row-reverse;
}
.cid-tWvJ3ibI9K img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWvJ3ibI9K .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWvJ3ibI9K .mbr-section-title {
  color: #000000;
}
.cid-tWvJ3iJed3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvJ3iJed3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvJ3iJed3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvJ3iJed3 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWvJ3iJed3 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWvJ3iJed3 .container {
    padding: 0 24px;
  }
}
.cid-tWvJ3iJed3 .row {
  justify-content: center;
}
.cid-tWvJ3iJed3 .content-wrapper {
  border-radius: 40px;
  background-color: #98dee8;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWvJ3iJed3 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWvJ3iJed3 .content-wrapper {
    padding: 32px;
  }
}
.cid-tWvJ3iJed3 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWvJ3iJed3 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWvJ3iJed3 .mbr-section-title {
  color: #000000;
}
.cid-tWvJ3iJed3 .mbr-text {
  color: #262642;
}
.cid-tWvR3GigBA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWvR3GigBA .container {
    padding: 0 25px;
  }
}
.cid-tWvR3GigBA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWvR3GigBA .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWvR3GigBA .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWvR3GigBA .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWvR3GigBA .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWvR3GigBA .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWvR3GigBA .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvR3GigBA .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvR3GigBA .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWvR3GigBA .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWvR3GigBA .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWvR3GigBA .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWvR3GigBA .mbr-section-title {
  color: #000000;
}
.cid-tWvR3GigBA .panel-title-edit {
  color: #000000;
}
.cid-tWvR3GigBA .panel-text {
  color: #000000;
}
.cid-tWvJ3jhczJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #98dee8;
}
.cid-tWvJ3jhczJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvJ3jhczJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvJ3jhczJ .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWvJ3jhczJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWvJ3jhczJ .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-tWvJ3jhczJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWvJ3jhczJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWvJ3jhczJ .mbr-section-title {
  color: #000000;
}
.cid-tWvJ3jUUqU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-tWvJ3jUUqU .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWvJ3jUUqU .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWvJ3jUUqU .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWvJ3jUUqU .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWvJ3jUUqU a {
  background-image: none !important;
}
.cid-tWvJ3jUUqU .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWvJ3jUUqU .container {
  padding: 5rem 1rem;
}
.cid-tWvJ3jUUqU p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWvJ3jUUqU p {
    text-align: center !important;
  }
}
.cid-tWvJ3jUUqU .media-container-row .mbr-text2,
.cid-tWvJ3jUUqU .line {
  color: #232323;
  text-align: left;
}
.cid-tWvS1T6rOf .navbar-dropdown {
  position: relative !important;
}
.cid-tWvS1T6rOf .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-tWvS1T6rOf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWvS1T6rOf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWvS1T6rOf .dropdown-item:hover,
.cid-tWvS1T6rOf .dropdown-item:focus {
  background: #650d0d !important;
  color: white !important;
}
.cid-tWvS1T6rOf .dropdown-item:hover span {
  color: white;
}
.cid-tWvS1T6rOf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWvS1T6rOf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWvS1T6rOf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWvS1T6rOf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWvS1T6rOf .nav-link {
  position: relative;
}
.cid-tWvS1T6rOf .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWvS1T6rOf .container {
    flex-wrap: wrap;
  }
}
.cid-tWvS1T6rOf .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWvS1T6rOf .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tWvS1T6rOf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWvS1T6rOf .dropdown-menu,
.cid-tWvS1T6rOf .navbar.opened {
  background: #2e254f !important;
}
.cid-tWvS1T6rOf .nav-item:focus,
.cid-tWvS1T6rOf .nav-link:focus {
  outline: none;
}
.cid-tWvS1T6rOf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWvS1T6rOf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWvS1T6rOf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWvS1T6rOf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWvS1T6rOf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWvS1T6rOf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWvS1T6rOf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2e254f;
}
.cid-tWvS1T6rOf .navbar.opened {
  transition: all 0.3s;
}
.cid-tWvS1T6rOf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWvS1T6rOf .navbar .navbar-logo img {
  width: auto;
}
.cid-tWvS1T6rOf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWvS1T6rOf .navbar.collapsed {
  justify-content: center;
}
.cid-tWvS1T6rOf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWvS1T6rOf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWvS1T6rOf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tWvS1T6rOf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWvS1T6rOf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWvS1T6rOf .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-tWvS1T6rOf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWvS1T6rOf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWvS1T6rOf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWvS1T6rOf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWvS1T6rOf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWvS1T6rOf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWvS1T6rOf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWvS1T6rOf .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-tWvS1T6rOf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWvS1T6rOf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWvS1T6rOf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWvS1T6rOf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWvS1T6rOf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWvS1T6rOf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWvS1T6rOf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWvS1T6rOf .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWvS1T6rOf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWvS1T6rOf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWvS1T6rOf .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-tWvS1T6rOf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWvS1T6rOf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWvS1T6rOf .dropdown-item.active,
.cid-tWvS1T6rOf .dropdown-item:active {
  background-color: transparent;
}
.cid-tWvS1T6rOf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWvS1T6rOf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWvS1T6rOf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWvS1T6rOf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2e254f;
}
.cid-tWvS1T6rOf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWvS1T6rOf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWvS1T6rOf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWvS1T6rOf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWvS1T6rOf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWvS1T6rOf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWvS1T6rOf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWvS1T6rOf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWvS1T6rOf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWvS1T6rOf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWvS1T6rOf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWvS1T6rOf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWvS1T6rOf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWvS1T6rOf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWvS1T6rOf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWvS1T6rOf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWvS1T6rOf .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-tWvS1T6rOf .navbar {
    height: 70px;
  }
  .cid-tWvS1T6rOf .navbar.opened {
    height: auto;
  }
  .cid-tWvS1T6rOf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWvS1TPx98 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWvS1TPx98 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvS1TPx98 img {
  border-radius: 2rem;
  margin-top: 6rem;
  box-shadow: 0 0 100px 0 #650d0d;
}
@media (max-width: 767px) {
  .cid-tWvS1TPx98 img {
    margin-top: 2rem;
  }
}
.cid-tWvS1TPx98 .row {
  background: #111019;
  border-radius: 4rem;
  padding: 8rem 1rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tWvS1TPx98 .row {
    border-radius: 2rem;
    padding: 2rem 1rem;
  }
}
.cid-tWvS1TPx98 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvS1TPx98 .mbr-text,
.cid-tWvS1TPx98 .mbr-section-btn {
  text-align: center;
  color: #bbbbbb;
}
.cid-tWvS1TPx98 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tWvS1TPx98 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tWvS1UibLE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWvS1UibLE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvS1UibLE .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-tWvS1UibLE .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tWvS1UibLE .container {
    padding: 0 12px;
  }
}
.cid-tWvS1UibLE .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tWvS1UibLE .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tWvS1UibLE .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tWvS1UibLE .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff3399;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tWvS1UibLE .mbr-section-title {
  color: #47b5ed;
}
.cid-tWvS1UKs6d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvS1UKs6d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvS1UKs6d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvS1UKs6d .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWvS1UKs6d .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWvS1UKs6d .container {
    padding: 0 24px;
  }
}
.cid-tWvS1UKs6d .row {
  justify-content: center;
}
.cid-tWvS1UKs6d .content-wrapper {
  border-radius: 40px;
  background-color: #98dee8;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWvS1UKs6d .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWvS1UKs6d .content-wrapper {
    padding: 32px;
  }
}
.cid-tWvS1UKs6d .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWvS1UKs6d .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWvS1UKs6d .mbr-section-title {
  color: #FF3399;
}
.cid-tWvS1UKs6d .mbr-text {
  color: #262642;
}
.cid-tWvS1Vc2lN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWvS1Vc2lN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvS1Vc2lN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvS1Vc2lN .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWvS1Vc2lN .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWvS1Vc2lN .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWvS1Vc2lN .mbr-section-title {
  color: #131313;
}
.cid-tWvS1Vc2lN .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWvS1Vc2lN .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWvS1Vc2lN .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWvS1Vc2lN .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #6ec7f2;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWvS1Vc2lN .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWvS1Vc2lN .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWvS1Vc2lN .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWvS1Vc2lN .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWvS1Vc2lN .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWvS1Vc2lN .card-title {
  color: #131313;
}
.cid-tWvS1Vc2lN .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWvS1Vc2lN .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWvS1Vc2lN .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWvS1Vc2lN .card-link {
    margin-top: 15px;
  }
}
.cid-tWvS1Vc2lN .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWvS1VU2Lx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvS1VU2Lx .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWvS1VU2Lx .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-tWvS1VU2Lx .col-title,
.cid-tWvS1VU2Lx .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-tWvS1VU2Lx .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWvS1VU2Lx .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tWvS1VU2Lx .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWvS1VU2Lx .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tWvS1VU2Lx .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-tWvS1VU2Lx .mbr-text {
    text-align: center !important;
  }
}
.cid-tWvS1WjLqT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
@media (max-width: 992px) {
  .cid-tWvS1WjLqT .container {
    padding: 0 25px;
  }
}
.cid-tWvS1WjLqT .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWvS1WjLqT .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWvS1WjLqT .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWvS1WjLqT .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWvS1WjLqT .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWvS1WjLqT .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWvS1WjLqT .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvS1WjLqT .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvS1WjLqT .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWvS1WjLqT .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWvS1WjLqT .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWvS1WjLqT .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWvS1WjLqT .mbr-section-title {
  color: #000000;
}
.cid-tWvS1WjLqT .panel-title-edit {
  color: #000000;
}
.cid-tWvS1WjLqT .panel-text {
  color: #000000;
}
.cid-tWvS1X0AJs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
.cid-tWvS1X0AJs .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWvS1X0AJs .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWvS1X0AJs .container {
    padding: 0 25px;
  }
}
.cid-tWvS1X0AJs .row {
  margin: 0;
}
.cid-tWvS1X0AJs .row .card {
  padding: 0;
  justify-content: center;
}
.cid-tWvS1X0AJs .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-tWvS1X0AJs .image-wrapper {
    min-height: 350px;
  }
}
.cid-tWvS1X0AJs .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tWvS1X0AJs .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-tWvS1X0AJs .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-tWvS1X0AJs .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tWvS1X0AJs .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWvS1X0AJs .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-tWvS1X0AJs .mbr-section-title {
  color: #000000;
}
.cid-tWvS1X0AJs .mbr-text {
  color: #000000;
}
.cid-tWvS1Xx11r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWvS1Xx11r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvS1Xx11r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvS1Xx11r .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWvS1Xx11r .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWvS1Xx11r .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWvS1Xx11r .mbr-section-title {
  color: #131313;
}
.cid-tWvS1Xx11r .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWvS1Xx11r .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWvS1Xx11r .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWvS1Xx11r .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #e43f3f;
  box-shadow: 4px 4px 0 #e43f3f;
  background: #6ec7f2;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWvS1Xx11r .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWvS1Xx11r .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWvS1Xx11r .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWvS1Xx11r .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWvS1Xx11r .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWvS1Xx11r .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWvS1Xx11r .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWvS1Xx11r .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWvS1Xx11r .content-wrap {
    margin-top: 0;
  }
}
.cid-tWvS1Xx11r .card-title {
  color: #131313;
}
.cid-tWvS1Xx11r .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWvS1Xx11r .card-text {
    margin-top: 15px;
  }
}
.cid-tWvS1Xx11r .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWvS1Xx11r .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWvS1Xx11r .card-link {
    margin-top: 15px;
  }
}
.cid-tWvS1Xx11r .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWvS1YonZV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvS1YonZV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvS1YonZV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvS1YonZV .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWvS1YonZV .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWvS1YonZV .container {
    padding: 0 30px;
  }
}
.cid-tWvS1YonZV .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tWvS1YonZV .title-wrapper {
    padding: 0 30px;
    height: auto;
  }
}
.cid-tWvS1YonZV .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWvS1YonZV .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tWvS1YonZV .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWvS1YonZV .mbr-section-title {
  color: #000000;
}
.cid-tWvS1YonZV .mbr-text {
  color: #000000;
}
.cid-tWvS1YWjZe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWvS1YWjZe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvS1YWjZe .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-tWvS1YWjZe .container {
    padding: 0 30px;
  }
}
.cid-tWvS1YWjZe .row {
  justify-content: center;
}
.cid-tWvS1YWjZe .title-wrapper {
  margin-bottom: 40px;
}
.cid-tWvS1YWjZe .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tWvS1YWjZe .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWvS1YWjZe .card {
  margin-bottom: 40px;
}
.cid-tWvS1YWjZe .card .card-wrapper .mbr-number {
  margin: 20px 0;
}
.cid-tWvS1YWjZe .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-tWvS1YWjZe .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tWvS1YWjZe .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tWvS1YWjZe .mbr-section-title {
  color: #212529;
}
.cid-tWvS1YWjZe .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tWvS1YWjZe .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tWvS1YWjZe .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tWvS1YWjZe .mbr-section-title,
.cid-tWvS1YWjZe .mbr-section-btn {
  text-align: center;
}
.cid-tWvS1ZGFce {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvS1ZGFce .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvS1ZGFce .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvS1ZGFce .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWvS1ZGFce .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWvS1ZGFce .container {
    padding: 0 30px;
  }
}
.cid-tWvS1ZGFce .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tWvS1ZGFce .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tWvS1ZGFce .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #98dee8;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tWvS1ZGFce .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tWvS1ZGFce .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tWvS1ZGFce .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tWvS1ZGFce .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWvS1ZGFce .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tWvS1ZGFce .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tWvS1ZGFce .mbr-section-title {
  color: #2e254f;
}
.cid-tWvS1ZGFce .mbr-card-title {
  color: #000000;
}
.cid-tWvS1ZGFce .mbr-text {
  color: #000000;
}
.cid-tWvS1ZGFce .mbr-number {
  color: #FE5115;
}
.cid-tWvS20fYJN {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #98dee8;
}
.cid-tWvS20fYJN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvS20fYJN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWvS20fYJN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWvS20fYJN .row {
  flex-direction: row-reverse;
}
.cid-tWvS20fYJN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWvS20fYJN .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWvS20fYJN .mbr-section-title {
  color: #000000;
}
.cid-tWvS20Oqqm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvS20Oqqm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvS20Oqqm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvS20Oqqm .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWvS20Oqqm .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWvS20Oqqm .container {
    padding: 0 24px;
  }
}
.cid-tWvS20Oqqm .row {
  justify-content: center;
}
.cid-tWvS20Oqqm .content-wrapper {
  border-radius: 40px;
  background-color: #98dee8;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWvS20Oqqm .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWvS20Oqqm .content-wrapper {
    padding: 32px;
  }
}
.cid-tWvS20Oqqm .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWvS20Oqqm .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWvS20Oqqm .mbr-section-title {
  color: #000000;
}
.cid-tWvS20Oqqm .mbr-text {
  color: #262642;
}
.cid-tWvS21lETH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWvS21lETH .container {
    padding: 0 25px;
  }
}
.cid-tWvS21lETH .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWvS21lETH .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWvS21lETH .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWvS21lETH .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWvS21lETH .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWvS21lETH .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWvS21lETH .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvS21lETH .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvS21lETH .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWvS21lETH .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWvS21lETH .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWvS21lETH .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWvS21lETH .mbr-section-title {
  color: #000000;
}
.cid-tWvS21lETH .panel-title-edit {
  color: #000000;
}
.cid-tWvS21lETH .panel-text {
  color: #000000;
}
.cid-tWvVSnY24R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #98dee8;
}
.cid-tWvVSnY24R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvVSnY24R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvVSnY24R .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWvVSnY24R .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWvVSnY24R .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-tWvVSnY24R .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWvVSnY24R .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWvVSnY24R .mbr-section-title {
  color: #000000;
}
.cid-tWvS22GvMj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-tWvS22GvMj .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWvS22GvMj .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWvS22GvMj .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWvS22GvMj .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWvS22GvMj a {
  background-image: none !important;
}
.cid-tWvS22GvMj .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWvS22GvMj .container {
  padding: 5rem 1rem;
}
.cid-tWvS22GvMj p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWvS22GvMj p {
    text-align: center !important;
  }
}
.cid-tWvS22GvMj .media-container-row .mbr-text2,
.cid-tWvS22GvMj .line {
  color: #232323;
  text-align: left;
}
.cid-tWvW0j57EU .navbar-dropdown {
  position: relative !important;
}
.cid-tWvW0j57EU .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-tWvW0j57EU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWvW0j57EU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWvW0j57EU .dropdown-item:hover,
.cid-tWvW0j57EU .dropdown-item:focus {
  background: #650d0d !important;
  color: white !important;
}
.cid-tWvW0j57EU .dropdown-item:hover span {
  color: white;
}
.cid-tWvW0j57EU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWvW0j57EU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWvW0j57EU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWvW0j57EU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWvW0j57EU .nav-link {
  position: relative;
}
.cid-tWvW0j57EU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWvW0j57EU .container {
    flex-wrap: wrap;
  }
}
.cid-tWvW0j57EU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWvW0j57EU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tWvW0j57EU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWvW0j57EU .dropdown-menu,
.cid-tWvW0j57EU .navbar.opened {
  background: #2e254f !important;
}
.cid-tWvW0j57EU .nav-item:focus,
.cid-tWvW0j57EU .nav-link:focus {
  outline: none;
}
.cid-tWvW0j57EU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWvW0j57EU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWvW0j57EU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWvW0j57EU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWvW0j57EU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWvW0j57EU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWvW0j57EU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2e254f;
}
.cid-tWvW0j57EU .navbar.opened {
  transition: all 0.3s;
}
.cid-tWvW0j57EU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWvW0j57EU .navbar .navbar-logo img {
  width: auto;
}
.cid-tWvW0j57EU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWvW0j57EU .navbar.collapsed {
  justify-content: center;
}
.cid-tWvW0j57EU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWvW0j57EU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWvW0j57EU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tWvW0j57EU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWvW0j57EU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWvW0j57EU .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-tWvW0j57EU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWvW0j57EU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWvW0j57EU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWvW0j57EU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWvW0j57EU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWvW0j57EU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWvW0j57EU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWvW0j57EU .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-tWvW0j57EU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWvW0j57EU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWvW0j57EU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWvW0j57EU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWvW0j57EU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWvW0j57EU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWvW0j57EU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWvW0j57EU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWvW0j57EU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWvW0j57EU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWvW0j57EU .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-tWvW0j57EU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWvW0j57EU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWvW0j57EU .dropdown-item.active,
.cid-tWvW0j57EU .dropdown-item:active {
  background-color: transparent;
}
.cid-tWvW0j57EU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWvW0j57EU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWvW0j57EU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWvW0j57EU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2e254f;
}
.cid-tWvW0j57EU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWvW0j57EU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWvW0j57EU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWvW0j57EU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWvW0j57EU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWvW0j57EU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWvW0j57EU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWvW0j57EU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWvW0j57EU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWvW0j57EU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWvW0j57EU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWvW0j57EU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWvW0j57EU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWvW0j57EU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWvW0j57EU .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWvW0j57EU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWvW0j57EU .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-tWvW0j57EU .navbar {
    height: 70px;
  }
  .cid-tWvW0j57EU .navbar.opened {
    height: auto;
  }
  .cid-tWvW0j57EU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWvW0jKGht {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWvW0jKGht .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvW0jKGht img {
  border-radius: 2rem;
  margin-top: 6rem;
  box-shadow: 0 0 100px 0 #650d0d;
}
@media (max-width: 767px) {
  .cid-tWvW0jKGht img {
    margin-top: 2rem;
  }
}
.cid-tWvW0jKGht .row {
  background: #111019;
  border-radius: 4rem;
  padding: 8rem 1rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tWvW0jKGht .row {
    border-radius: 2rem;
    padding: 2rem 1rem;
  }
}
.cid-tWvW0jKGht .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvW0jKGht .mbr-text,
.cid-tWvW0jKGht .mbr-section-btn {
  text-align: center;
  color: #bbbbbb;
}
.cid-tWvW0jKGht .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tWvW0jKGht .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tWvW0kkfEX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWvW0kkfEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvW0kkfEX .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-tWvW0kkfEX .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tWvW0kkfEX .container {
    padding: 0 12px;
  }
}
.cid-tWvW0kkfEX .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tWvW0kkfEX .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tWvW0kkfEX .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tWvW0kkfEX .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff3399;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tWvW0kkfEX .mbr-section-title {
  color: #47b5ed;
}
.cid-tWvW0kMNXk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvW0kMNXk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvW0kMNXk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvW0kMNXk .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWvW0kMNXk .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWvW0kMNXk .container {
    padding: 0 24px;
  }
}
.cid-tWvW0kMNXk .row {
  justify-content: center;
}
.cid-tWvW0kMNXk .content-wrapper {
  border-radius: 40px;
  background-color: #98dee8;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWvW0kMNXk .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWvW0kMNXk .content-wrapper {
    padding: 32px;
  }
}
.cid-tWvW0kMNXk .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWvW0kMNXk .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWvW0kMNXk .mbr-section-title {
  color: #FF3399;
}
.cid-tWvW0kMNXk .mbr-text {
  color: #262642;
}
.cid-tWvW0lk1SH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWvW0lk1SH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvW0lk1SH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvW0lk1SH .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWvW0lk1SH .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWvW0lk1SH .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWvW0lk1SH .mbr-section-title {
  color: #131313;
}
.cid-tWvW0lk1SH .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWvW0lk1SH .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWvW0lk1SH .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWvW0lk1SH .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #6ec7f2;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWvW0lk1SH .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWvW0lk1SH .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWvW0lk1SH .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWvW0lk1SH .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWvW0lk1SH .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWvW0lk1SH .card-title {
  color: #131313;
}
.cid-tWvW0lk1SH .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWvW0lk1SH .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWvW0lk1SH .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWvW0lk1SH .card-link {
    margin-top: 15px;
  }
}
.cid-tWvW0lk1SH .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWvW0m24U5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvW0m24U5 .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWvW0m24U5 .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-tWvW0m24U5 .col-title,
.cid-tWvW0m24U5 .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-tWvW0m24U5 .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWvW0m24U5 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tWvW0m24U5 .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWvW0m24U5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tWvW0m24U5 .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-tWvW0m24U5 .mbr-text {
    text-align: center !important;
  }
}
.cid-tWvW0muFMF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
@media (max-width: 992px) {
  .cid-tWvW0muFMF .container {
    padding: 0 25px;
  }
}
.cid-tWvW0muFMF .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWvW0muFMF .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWvW0muFMF .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWvW0muFMF .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWvW0muFMF .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWvW0muFMF .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWvW0muFMF .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvW0muFMF .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvW0muFMF .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWvW0muFMF .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWvW0muFMF .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWvW0muFMF .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWvW0muFMF .mbr-section-title {
  color: #000000;
}
.cid-tWvW0muFMF .panel-title-edit {
  color: #000000;
}
.cid-tWvW0muFMF .panel-text {
  color: #000000;
}
.cid-tWvW0nfplZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
.cid-tWvW0nfplZ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWvW0nfplZ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWvW0nfplZ .container {
    padding: 0 25px;
  }
}
.cid-tWvW0nfplZ .row {
  margin: 0;
}
.cid-tWvW0nfplZ .row .card {
  padding: 0;
  justify-content: center;
}
.cid-tWvW0nfplZ .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-tWvW0nfplZ .image-wrapper {
    min-height: 350px;
  }
}
.cid-tWvW0nfplZ .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tWvW0nfplZ .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-tWvW0nfplZ .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-tWvW0nfplZ .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tWvW0nfplZ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWvW0nfplZ .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-tWvW0nfplZ .mbr-section-title {
  color: #000000;
}
.cid-tWvW0nfplZ .mbr-text {
  color: #000000;
}
.cid-tWvW0nK1Ur {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWvW0nK1Ur .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvW0nK1Ur .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvW0nK1Ur .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWvW0nK1Ur .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWvW0nK1Ur .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWvW0nK1Ur .mbr-section-title {
  color: #131313;
}
.cid-tWvW0nK1Ur .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWvW0nK1Ur .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWvW0nK1Ur .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWvW0nK1Ur .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #e43f3f;
  box-shadow: 4px 4px 0 #e43f3f;
  background: #6ec7f2;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWvW0nK1Ur .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWvW0nK1Ur .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWvW0nK1Ur .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWvW0nK1Ur .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWvW0nK1Ur .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWvW0nK1Ur .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWvW0nK1Ur .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWvW0nK1Ur .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWvW0nK1Ur .content-wrap {
    margin-top: 0;
  }
}
.cid-tWvW0nK1Ur .card-title {
  color: #131313;
}
.cid-tWvW0nK1Ur .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWvW0nK1Ur .card-text {
    margin-top: 15px;
  }
}
.cid-tWvW0nK1Ur .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWvW0nK1Ur .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWvW0nK1Ur .card-link {
    margin-top: 15px;
  }
}
.cid-tWvW0nK1Ur .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWvW0oz8fl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvW0oz8fl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvW0oz8fl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvW0oz8fl .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWvW0oz8fl .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWvW0oz8fl .container {
    padding: 0 30px;
  }
}
.cid-tWvW0oz8fl .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tWvW0oz8fl .title-wrapper {
    padding: 0 30px;
    height: auto;
  }
}
.cid-tWvW0oz8fl .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWvW0oz8fl .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tWvW0oz8fl .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWvW0oz8fl .mbr-section-title {
  color: #000000;
}
.cid-tWvW0oz8fl .mbr-text {
  color: #000000;
}
.cid-tWvW0p6GyH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tWvW0p6GyH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvW0p6GyH .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-tWvW0p6GyH .container {
    padding: 0 30px;
  }
}
.cid-tWvW0p6GyH .row {
  justify-content: center;
}
.cid-tWvW0p6GyH .title-wrapper {
  margin-bottom: 40px;
}
.cid-tWvW0p6GyH .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tWvW0p6GyH .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWvW0p6GyH .card {
  margin-bottom: 40px;
}
.cid-tWvW0p6GyH .card .card-wrapper .mbr-number {
  margin: 20px 0;
}
.cid-tWvW0p6GyH .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-tWvW0p6GyH .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tWvW0p6GyH .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tWvW0p6GyH .mbr-section-title {
  color: #212529;
}
.cid-tWvW0p6GyH .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tWvW0p6GyH .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tWvW0p6GyH .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tWvW0p6GyH .mbr-section-title,
.cid-tWvW0p6GyH .mbr-section-btn {
  text-align: center;
}
.cid-tWvW0pOkHZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvW0pOkHZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvW0pOkHZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvW0pOkHZ .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWvW0pOkHZ .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWvW0pOkHZ .container {
    padding: 0 30px;
  }
}
.cid-tWvW0pOkHZ .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tWvW0pOkHZ .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tWvW0pOkHZ .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #98dee8;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tWvW0pOkHZ .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tWvW0pOkHZ .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tWvW0pOkHZ .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tWvW0pOkHZ .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWvW0pOkHZ .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tWvW0pOkHZ .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tWvW0pOkHZ .mbr-section-title {
  color: #2e254f;
}
.cid-tWvW0pOkHZ .mbr-card-title {
  color: #000000;
}
.cid-tWvW0pOkHZ .mbr-text {
  color: #000000;
}
.cid-tWvW0pOkHZ .mbr-number {
  color: #FE5115;
}
.cid-tWvW0qmjdS {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #98dee8;
}
.cid-tWvW0qmjdS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvW0qmjdS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWvW0qmjdS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWvW0qmjdS .row {
  flex-direction: row-reverse;
}
.cid-tWvW0qmjdS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tWvW0qmjdS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tWvW0qmjdS .mbr-section-title {
  color: #000000;
}
.cid-tWvW0qUVYj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tWvW0qUVYj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvW0qUVYj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvW0qUVYj .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWvW0qUVYj .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWvW0qUVYj .container {
    padding: 0 24px;
  }
}
.cid-tWvW0qUVYj .row {
  justify-content: center;
}
.cid-tWvW0qUVYj .content-wrapper {
  border-radius: 40px;
  background-color: #98dee8;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWvW0qUVYj .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWvW0qUVYj .content-wrapper {
    padding: 32px;
  }
}
.cid-tWvW0qUVYj .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWvW0qUVYj .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWvW0qUVYj .mbr-section-title {
  color: #000000;
}
.cid-tWvW0qUVYj .mbr-text {
  color: #262642;
}
.cid-tWvW0rt0on {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWvW0rt0on .container {
    padding: 0 25px;
  }
}
.cid-tWvW0rt0on .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWvW0rt0on .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWvW0rt0on .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWvW0rt0on .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWvW0rt0on .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWvW0rt0on .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWvW0rt0on .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvW0rt0on .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWvW0rt0on .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWvW0rt0on .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWvW0rt0on .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWvW0rt0on .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWvW0rt0on .mbr-section-title {
  color: #000000;
}
.cid-tWvW0rt0on .panel-title-edit {
  color: #000000;
}
.cid-tWvW0rt0on .panel-text {
  color: #000000;
}
.cid-tWvW0s99kz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #98dee8;
}
.cid-tWvW0s99kz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvW0s99kz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvW0s99kz .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWvW0s99kz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWvW0s99kz .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-tWvW0s99kz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWvW0s99kz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWvW0s99kz .mbr-section-title {
  color: #000000;
}
.cid-tWvW0sLUwy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-tWvW0sLUwy .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWvW0sLUwy .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWvW0sLUwy .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWvW0sLUwy .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWvW0sLUwy a {
  background-image: none !important;
}
.cid-tWvW0sLUwy .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWvW0sLUwy .container {
  padding: 5rem 1rem;
}
.cid-tWvW0sLUwy p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWvW0sLUwy p {
    text-align: center !important;
  }
}
.cid-tWvW0sLUwy .media-container-row .mbr-text2,
.cid-tWvW0sLUwy .line {
  color: #232323;
  text-align: left;
}
