body {
  font-family: Anybody;
}
.display-1 {
  font-family: 'Luxurious Roman', display;
  font-size: 4.5rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'Luxurious Roman', display;
  font-size: 5rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-4 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.55rem;
  line-height: 1.3;
}
.display-4 > .mbr-iconfont {
  font-size: 1.9375rem;
}
.display-5 {
  font-family: 'Luxurious Roman', display;
  font-size: 3.125rem;
  line-height: 1;
}
.display-5 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-7 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.2rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.24rem;
    font-size: calc( 1.1925rem + (1.55 - 1.1925) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.1925rem + (1.55 - 1.1925) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.07rem + (1.2 - 1.07) * ((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: #e31919 !important;
}
.bg-success {
  background-color: #78ec80 !important;
}
.bg-info {
  background-color: #77bbdf !important;
}
.bg-warning {
  background-color: #fff6b1 !important;
}
.bg-danger {
  background-color: #ffe40e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e31919 !important;
  border-color: #e31919 !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: #951010 !important;
  border-color: #951010 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #951010 !important;
  border-color: #951010 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a47ee3 !important;
  border-color: #a47ee3 !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: #7237d4 !important;
  border-color: #7237d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #7237d4 !important;
  border-color: #7237d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #77bbdf !important;
  border-color: #77bbdf !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: #3198ce !important;
  border-color: #3198ce !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3198ce !important;
  border-color: #3198ce !important;
}
.btn-success,
.btn-success:active {
  background-color: #78ec80 !important;
  border-color: #78ec80 !important;
  color: #0c5912 !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: #2ce139 !important;
  border-color: #2ce139 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #0c5912 !important;
  background-color: #2ce139 !important;
  border-color: #2ce139 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fff6b1 !important;
  border-color: #fff6b1 !important;
  color: #b19d00 !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: #5a5000 !important;
  background-color: #ffec5a !important;
  border-color: #ffec5a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #b19d00 !important;
  background-color: #ffec5a !important;
  border-color: #ffec5a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffe40e !important;
  border-color: #ffe40e !important;
  color: #0e0c00 !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: #b6a200 !important;
  border-color: #b6a200 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #0e0c00 !important;
  background-color: #b6a200 !important;
  border-color: #b6a200 !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: #2b2b2b !important;
  border-color: #2b2b2b !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: #e31919;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #951010 !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: #e31919 !important;
  border-color: #e31919 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a47ee3;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #7237d4 !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: #a47ee3 !important;
  border-color: #a47ee3 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #77bbdf;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3198ce !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: #77bbdf !important;
  border-color: #77bbdf !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #78ec80;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2ce139 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #0c5912 !important;
  background-color: #78ec80 !important;
  border-color: #78ec80 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fff6b1;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffec5a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #b19d00 !important;
  background-color: #fff6b1 !important;
  border-color: #fff6b1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe40e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b6a200 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #0e0c00 !important;
  background-color: #ffe40e !important;
  border-color: #ffe40e !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2b2b2b;
}
.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: #2b2b2b !important;
  border-color: #2b2b2b !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: #e31919 !important;
}
.text-secondary {
  color: #a47ee3 !important;
}
.text-success {
  color: #78ec80 !important;
}
.text-info {
  color: #77bbdf !important;
}
.text-warning {
  color: #fff6b1 !important;
}
.text-danger {
  color: #ffe40e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #2B2B2B !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #870f0f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #6a2dce !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1fdf2d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2e8fc2 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffea4b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a79400 !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: #e31919;
}
.nav-tabs .nav-link:not(.active) {
  color: #2B2B2B;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #77bbdf;
}
.alert-warning {
  background-color: #fff6b1;
}
.alert-danger {
  background-color: #ffe40e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e31919;
  border-color: #e31919;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e31919;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #facece;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fffbda;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Luxurious Roman', display;
  font-size: 1.55rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.9375rem;
}
.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: #e31919 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Luxurious Roman', display;
  font-size: 1.55rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.9375rem;
}
blockquote {
  border-color: #e31919;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e31919;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e31919;
}
.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: #e31919;
  border-bottom-color: #e31919;
}
.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: #e31919 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #a47ee3 !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='%23e31919' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 660px;
  }
}
@media (max-width: 639px) {
  .container {
    max-width: 500px;
  }
}
.row {
  margin-left: -20px;
  margin-right: -20px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 280px;
  min-height: 60px;
  padding: 12px 35px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.5px;
  border-radius: 10px;
  box-shadow: none !important;
  border: none !important;
}
.mbr-section-btn .btn-primary:hover {
  background-color: #cecec1 !important;
  color: #2b2b2b !important;
}
.mbr-section-btn .btn-black-outline {
  color: #2b2b2b !important;
  border: 2px solid #cecec1 !important;
}
.mbr-section-btn .btn-black-outline:hover {
  background-color: #cecec1 !important;
  color: #2b2b2b !important;
}
.mbr-section-btn .btn-white-outline {
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover {
  background-color: #cecec1 !important;
  color: #2b2b2b !important;
  border: 2px solid #ffffff !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: max-content !important;
  }
}
b {
  font-weight: 600 !important;
}
.cid-t8OXpLa3eA .navbar-dropdown {
  position: relative !important;
}
.cid-t8OXpLa3eA .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-t8OXpLa3eA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t8OXpLa3eA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8OXpLa3eA .dropdown-item:hover,
.cid-t8OXpLa3eA .dropdown-item:focus {
  background: #e31919 !important;
  color: #1d191f !important;
}
.cid-t8OXpLa3eA .dropdown-item:hover span {
  color: white;
}
.cid-t8OXpLa3eA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t8OXpLa3eA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t8OXpLa3eA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t8OXpLa3eA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8OXpLa3eA .nav-link {
  position: relative;
}
.cid-t8OXpLa3eA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t8OXpLa3eA .container {
    flex-wrap: nowrap;
  }
}
.cid-t8OXpLa3eA .iconfont-wrapper {
  color: #646464 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t8OXpLa3eA .dropdown-menu,
.cid-t8OXpLa3eA .navbar.opened {
  background: #abf6b0 !important;
}
.cid-t8OXpLa3eA .nav-item:focus,
.cid-t8OXpLa3eA .nav-link:focus {
  outline: none;
}
.cid-t8OXpLa3eA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8OXpLa3eA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8OXpLa3eA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t8OXpLa3eA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8OXpLa3eA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8OXpLa3eA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8OXpLa3eA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 2px solid #dfdfd8;
  background: #abf6b0;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-t8OXpLa3eA .navbar.opened {
  transition: all 0.3s;
}
.cid-t8OXpLa3eA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t8OXpLa3eA .navbar .navbar-logo img {
  width: auto;
}
.cid-t8OXpLa3eA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8OXpLa3eA .navbar.collapsed {
  justify-content: center;
}
.cid-t8OXpLa3eA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8OXpLa3eA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8OXpLa3eA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t8OXpLa3eA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8OXpLa3eA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8OXpLa3eA .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-t8OXpLa3eA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8OXpLa3eA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t8OXpLa3eA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t8OXpLa3eA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8OXpLa3eA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8OXpLa3eA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8OXpLa3eA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8OXpLa3eA .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-t8OXpLa3eA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t8OXpLa3eA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8OXpLa3eA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8OXpLa3eA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t8OXpLa3eA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8OXpLa3eA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t8OXpLa3eA .navbar.navbar-short {
  min-height: 70px;
}
.cid-t8OXpLa3eA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t8OXpLa3eA .navbar.navbar-short .navbar-brand {
  min-height: 70px;
  padding: 0;
}
.cid-t8OXpLa3eA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 10px;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0 auto auto;
}
.cid-t8OXpLa3eA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8OXpLa3eA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8OXpLa3eA .dropdown-item.active,
.cid-t8OXpLa3eA .dropdown-item:active {
  background-color: transparent;
}
.cid-t8OXpLa3eA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8OXpLa3eA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8OXpLa3eA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8OXpLa3eA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #abf6b0;
}
.cid-t8OXpLa3eA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8OXpLa3eA .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #2b2b2b !important;
}
.cid-t8OXpLa3eA .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8OXpLa3eA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8OXpLa3eA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8OXpLa3eA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8OXpLa3eA button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: auto;
  margin-right: 12px;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #5f6ad4;
  transition: all 0.2s;
}
.cid-t8OXpLa3eA .navbar-toggler-close {
  position: fixed;
  right: 20px;
  top: 20px;
  margin-right: 0 !important;
}
.cid-t8OXpLa3eA .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8OXpLa3eA .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t8OXpLa3eA .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t8OXpLa3eA .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8OXpLa3eA .navbar-toggler-close .hamburger-bg {
  opacity: 0;
}
.cid-t8OXpLa3eA .navbar-dropdown {
  padding: 0 1rem;
}
.cid-t8OXpLa3eA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8OXpLa3eA .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-t8OXpLa3eA .navbar {
    height: 70px;
  }
  .cid-t8OXpLa3eA .navbar.opened {
    height: auto;
  }
  .cid-t8OXpLa3eA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8OXpLa3eA .sidebar-brand {
  padding: 0 0 10px;
  margin: 0 auto 30px;
  border-bottom: 2px solid #646464;
}
.cid-t8OXpLa3eA .navbar-nav-main {
  width: 40%;
  margin: 0;
}
.cid-t8OXpLa3eA .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-t8OXpLa3eA .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-t8OXpLa3eA .navbar-nav-main .nav-item .nav-link:hover {
  color: #e31919 !important;
}
.cid-t8OXpLa3eA .navbar-nav-right {
  justify-content: flex-end;
}
.cid-t8OXpLa3eA .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-t8OXpLa3eA .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-t8OXpLa3eA .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-t8OXpLa3eA .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-t8OXpLa3eA {
    min-height: 0;
    height: 0;
  }
  .cid-t8OXpLa3eA .navbar,
  .cid-t8OXpLa3eA .navbar-short {
    min-height: 0 !important;
    height: 0 !important;
    border: none !important;
  }
  .cid-t8OXpLa3eA .container,
  .cid-t8OXpLa3eA .container-fluid {
    flex-wrap: nowrap;
    top: 50px;
    max-width: 100% !important;
  }
  .cid-t8OXpLa3eA .navbar-brand-main {
    display: none !important;
  }
  .cid-t8OXpLa3eA .navbar-nav-main {
    display: none !important;
  }
  .cid-t8OXpLa3eA .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-t8OXpLa3eA .sidbar-nav .nav-item {
    margin: 0 auto 15px !important;
    padding: 5px 0 !important;
    justify-content: center;
    text-align: center;
  }
  .cid-t8OXpLa3eA .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-t8OXpLa3eA .sidbar-nav .nav-item .nav-link:hover {
    color: #e31919 !important;
  }
  .cid-t8OXpLa3eA .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-t8OXpLa3eA .mbr-section-btn {
    margin-top: auto;
  }
  .cid-t8OXpLa3eA .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #2b2b2b;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-t8OXpLa3eA .navbar-collapse.show {
    padding: 48px 40px 38px;
    position: fixed;
    background-color: #2b2b2b;
    width: 420px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-t8OXpLa3eA .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-t8OXpLa3eA .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-t8OY6ZJ72U {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #abf6b0;
}
.cid-t8OY6ZJ72U .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8OY6ZJ72U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8OY6ZJ72U .row {
  align-items: stretch;
}
.cid-t8OY6ZJ72U .card {
  min-height: 800px;
}
@media (max-width: 767px) {
  .cid-t8OY6ZJ72U .card {
    min-height: 600px;
  }
}
.cid-t8OY6ZJ72U .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  padding: 0 2rem;
}
@media (max-width: 991px) {
  .cid-t8OY6ZJ72U .card-wrapper {
    padding: 0 1rem;
  }
}
.cid-t8OY6ZJ72U .card-img {
  position: absolute;
  z-index: 4;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../../assets/images/2048px-valero-corner-store-6254251134.jpg-2000x1500.jpg");
}
.cid-t8OY6ZJ72U .overlay-img {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-color: #2a2a2a;
  opacity: 0.5;
}
.cid-t8OY6ZJ72U .card-box {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 728px;
  align-items: stretch;
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding: 6rem 0;
}
@media (max-width: 991px) {
  .cid-t8OY6ZJ72U .card-box {
    max-width: 485px;
    padding: 5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-t8OY6ZJ72U .card-box {
    max-width: 100%;
    padding: 2rem 0;
  }
}
.cid-t8OY6ZJ72U .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
@media (max-width: 767px) {
  .cid-t8OY6ZJ72U .iconfont-wrapper {
    margin: 0 auto 16px;
  }
}
.cid-t8OY6ZJ72U .iconfont-wrapper .mbr-iconfont {
  font-size: 51px;
  color: #ffffff;
}
.cid-t8OY6ZJ72U .card-title {
  color: #FFFFFF;
  width: 100%;
}
.cid-t8OY6ZJ72U .card-subtitle {
  color: #FFFFFF;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-t8OY6ZJ72U .card-subtitle {
    margin-top: 16px;
  }
}
.cid-t8OY6ZJ72U .mbr-text {
  color: #FFFFFF;
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .cid-t8OY6ZJ72U .mbr-text {
    margin-top: 50px;
  }
}
.cid-t8OY6ZJ72U .card-title,
.cid-t8OY6ZJ72U .mbr-section-btn {
  color: #ffffff;
}
.cid-t8P5gTiRW3 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #abf6b0;
  overflow: hidden;
}
.cid-t8P5gTiRW3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8P5gTiRW3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8P5gTiRW3 .row {
  align-items: stretch;
  position: relative;
  z-index: 10;
}
.cid-t8P5gTiRW3 .col-title {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-t8P5gTiRW3 .col-title {
    margin-bottom: 20px;
  }
}
.cid-t8P5gTiRW3 .mbr-section-title {
  color: #2B2B2B;
}
.cid-t8P5gTiRW3 .mbr-section-subtitle {
  color: #5F6AD4;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-t8P5gTiRW3 .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-t8P5gTiRW3 .card-box {
  position: relative;
  z-index: 5;
  width: 100%;
  align-items: stretch;
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #efefec;
  border-radius: 25px;
  border: 2px solid #5219af;
  transition: 1s all;
  opacity: 1;
}
.cid-t8P5gTiRW3 .card {
  transition: all 0.3s;
  min-height: 360px;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .cid-t8P5gTiRW3 .card {
    min-height: 320px;
  }
}
@media (max-width: 991px) {
  .cid-t8P5gTiRW3 .card {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-t8P5gTiRW3 .card {
    min-height: 250px;
  }
}
.cid-t8P5gTiRW3 .card-img {
  position: absolute;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 1s all;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-t8P5gTiRW3 .card-img {
    display: none;
  }
}
.cid-t8P5gTiRW3 .card-wrapper {
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  position: relative;
}
.cid-t8P5gTiRW3 .card-title {
  color: #5F6AD4;
  width: 100%;
}
.cid-t8P5gTiRW3 .mbr-text {
  color: #2A2A2A;
  width: 100%;
}
.cid-t8P5gTiRW3 .container,
.cid-t8P5gTiRW3 .container-fluid {
  position: relative;
}
.cid-t8P5gTiRW3 .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 240px;
  height: 240px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 767px) {
  .cid-t8P5gTiRW3 .circle-blur {
    width: 200px;
    height: 200px;
  }
}
.cid-t8P5gTiRW3 .circle-blur1 {
  top: 0;
  right: 40%;
  background-image: linear-gradient(132deg, #77bbdf 27%, #77bbdf 50%, #77bbdf 79%);
}
.cid-t8P5gTiRW3 .circle-blur2 {
  top: 10%;
  right: 20%;
  background-image: linear-gradient(132deg, #fff182 27%, #fff182 50%, #fff182 79%);
}
.cid-t8P5gTiRW3 .card-title,
.cid-t8P5gTiRW3 .mbr-section-btn {
  color: #000000;
}
.cid-t8P6qpgEV4 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #abf6b0;
}
.cid-t8P6qpgEV4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8P6qpgEV4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8P6qpgEV4 .col-title {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cid-t8P6qpgEV4 .col-title {
    margin-bottom: 50px;
  }
}
.cid-t8P6qpgEV4 .mbr-section-title {
  color: #2B2B2B;
}
.cid-t8P6qpgEV4 .mbr-section-main-subtitle {
  color: #5F6AD4;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-t8P6qpgEV4 .mbr-section-main-subtitle {
    margin-top: 16px;
  }
}
.cid-t8P6qpgEV4 .content-row {
  flex-direction: row-reverse;
}
.cid-t8P6qpgEV4 .col-text {
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-t8P6qpgEV4 .col-text {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .cid-t8P6qpgEV4 .col-text {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.cid-t8P6qpgEV4 .text-container1 {
  width: 100%;
  padding: 0;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-t8P6qpgEV4 .text-container1 {
    max-width: 340px;
  }
}
.cid-t8P6qpgEV4 .text-container2 {
  width: 100%;
  padding: 0;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-t8P6qpgEV4 .text-container2 {
    max-width: 280px;
    padding-left: 40px;
  }
}
.cid-t8P6qpgEV4 .mbr-section-btn {
  margin-top: 16px;
}
.cid-t8P6qpgEV4 .mbr-section-btn .btn {
  min-width: 280px;
  min-height: 60px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-t8P6qpgEV4 .mbr-section-btn {
    margin-top: 8px;
    width: 100%;
  }
  .cid-t8P6qpgEV4 .mbr-section-btn .btn {
    width: 100%;
    min-width: max-content;
  }
}
.cid-t8P6qpgEV4 .col-carousel {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .cid-t8P6qpgEV4 .col-carousel {
    padding-top: 30px;
  }
}
.cid-t8P6qpgEV4 .col-border .border-line {
  height: 2px;
  background-color: #5219af;
}
.cid-t8P6qpgEV4 .name-text {
  color: #2A2A2A;
  margin-bottom: 0;
}
.cid-t8P6qpgEV4 .roominess-text {
  color: #78ec80;
  margin-bottom: 0;
  margin-top: 12px;
}
.cid-t8P6qpgEV4 .mbr-text {
  color: #2A2A2A;
  margin-bottom: 0;
  margin-top: 12px;
}
.cid-t8P6qpgEV4 .list {
  color: #2A2A2A;
  margin-top: 20px;
  width: 100%;
}
.cid-t8P6qpgEV4 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t8P6qpgEV4 .list-item:not(:first-child) {
  margin-top: 12px;
}
.cid-t8P6qpgEV4 .list-text {
  flex-grow: 1;
  color: #2A2A2A;
  margin-bottom: 0;
}
.cid-t8P6qpgEV4 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.cid-t8P6qpgEV4 .iconfont-wrapper .mbr-iconfont {
  font-size: 20px;
  color: #78ec80;
}
.cid-t8P6qpgEV4 .price-text {
  color: #2A2A2A;
  margin-bottom: 0;
  margin-top: 20px;
}
.cid-t8P6qpgEV4 .carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
}
.cid-t8P6qpgEV4 .carousel img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-t8P6qpgEV4 .carousel {
    height: 385px;
  }
}
@media (max-width: 991px) {
  .cid-t8P6qpgEV4 .carousel {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .cid-t8P6qpgEV4 .carousel {
    height: 280px;
  }
}
.cid-t8P6qpgEV4 .carousel-inner {
  display: flex;
  align-items: center;
  height: 100%;
  border-radius: 16px;
}
.cid-t8P6qpgEV4 .carousel-item {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.cid-t8P6qpgEV4 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t8P6qpgEV4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t8P6qpgEV4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t8P6qpgEV4 .carousel-control {
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  font-size: 16px;
  background-color: #dfdfd8;
  color: #2B2B2B !important;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1 !important;
}
.cid-t8P6qpgEV4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 16px;
}
.cid-t8P6qpgEV4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 16px;
}
.cid-t8P6qpgEV4 .carousel-control:hover {
  background-color: #646464;
  color: #FFFFFF !important;
}
.cid-t8P6qpgEV4 .carousel-indicators {
  display: none !important;
}
.cid-t8P6qpgEV4 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uK8n6EWhqw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefec;
}
.cid-uK8n6EWhqw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK8n6EWhqw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK8n6EWhqw .col-title {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cid-uK8n6EWhqw .col-title {
    margin-bottom: 50px;
  }
}
.cid-uK8n6EWhqw .mbr-section-title {
  color: #2B2B2B;
}
.cid-uK8n6EWhqw .mbr-section-main-subtitle {
  color: #5F6AD4;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-uK8n6EWhqw .mbr-section-main-subtitle {
    margin-top: 16px;
  }
}
.cid-uK8n6EWhqw .col-text {
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-uK8n6EWhqw .col-text {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .cid-uK8n6EWhqw .col-text {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.cid-uK8n6EWhqw .text-container1 {
  width: 100%;
  padding: 0;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-uK8n6EWhqw .text-container1 {
    max-width: 340px;
  }
}
.cid-uK8n6EWhqw .text-container2 {
  width: 100%;
  padding: 0;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-uK8n6EWhqw .text-container2 {
    max-width: 280px;
    padding-left: 40px;
  }
}
.cid-uK8n6EWhqw .mbr-section-btn {
  margin-top: 16px;
}
.cid-uK8n6EWhqw .mbr-section-btn .btn {
  min-width: 280px;
  min-height: 60px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-uK8n6EWhqw .mbr-section-btn {
    margin-top: 8px;
    width: 100%;
  }
  .cid-uK8n6EWhqw .mbr-section-btn .btn {
    width: 100%;
    min-width: max-content;
  }
}
.cid-uK8n6EWhqw .col-carousel {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .cid-uK8n6EWhqw .col-carousel {
    padding-top: 30px;
  }
}
.cid-uK8n6EWhqw .col-border .border-line {
  height: 2px;
  background-color: #dfdfd8;
}
.cid-uK8n6EWhqw .name-text {
  color: #2A2A2A;
  margin-bottom: 0;
}
.cid-uK8n6EWhqw .roominess-text {
  color: #5F6AD4;
  margin-bottom: 0;
  margin-top: 12px;
}
.cid-uK8n6EWhqw .mbr-text {
  color: #2A2A2A;
  margin-bottom: 0;
  margin-top: 12px;
}
.cid-uK8n6EWhqw .list {
  color: #2A2A2A;
  margin-top: 20px;
  width: 100%;
}
.cid-uK8n6EWhqw .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uK8n6EWhqw .list-item:not(:first-child) {
  margin-top: 12px;
}
.cid-uK8n6EWhqw .list-text {
  flex-grow: 1;
  color: #2A2A2A;
  margin-bottom: 0;
}
.cid-uK8n6EWhqw .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.cid-uK8n6EWhqw .iconfont-wrapper .mbr-iconfont {
  font-size: 20px;
  color: #5f6ad4;
}
.cid-uK8n6EWhqw .price-text {
  color: #2A2A2A;
  margin-bottom: 0;
  margin-top: 20px;
}
.cid-uK8n6EWhqw .carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
}
.cid-uK8n6EWhqw .carousel img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-uK8n6EWhqw .carousel {
    height: 385px;
  }
}
@media (max-width: 991px) {
  .cid-uK8n6EWhqw .carousel {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .cid-uK8n6EWhqw .carousel {
    height: 280px;
  }
}
.cid-uK8n6EWhqw .carousel-inner {
  display: flex;
  align-items: center;
  height: 100%;
  border-radius: 16px;
}
.cid-uK8n6EWhqw .carousel-item {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.cid-uK8n6EWhqw .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uK8n6EWhqw .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uK8n6EWhqw .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uK8n6EWhqw .carousel-control {
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  font-size: 16px;
  background-color: #dfdfd8;
  color: #2B2B2B !important;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1 !important;
}
.cid-uK8n6EWhqw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 16px;
}
.cid-uK8n6EWhqw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 16px;
}
.cid-uK8n6EWhqw .carousel-control:hover {
  background-color: #646464;
  color: #FFFFFF !important;
}
.cid-uK8n6EWhqw .carousel-indicators {
  display: none !important;
}
.cid-uK8n6EWhqw .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uK8oxV0AJk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uK8oxV0AJk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK8oxV0AJk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK8oxV0AJk .row {
  justify-content: center;
}
.cid-uK8oxV0AJk .card-wrapper {
  position: relative;
  padding: 80px 150px;
  background-color: #abf6b0;
}
@media (max-width: 1600px) {
  .cid-uK8oxV0AJk .card-wrapper {
    padding: 80px;
  }
}
@media (max-width: 1440px) {
  .cid-uK8oxV0AJk .card-wrapper {
    padding: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uK8oxV0AJk .card-wrapper {
    padding: 30px 20px;
  }
}
.cid-uK8oxV0AJk .card-wrapper::before {
  content: '';
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 60%;
  height: 110%;
  border-radius: 100%;
  background-image: radial-gradient(#abf6b0, transparent);
  filter: blur(100px);
}
.cid-uK8oxV0AJk .card-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uK8oxV0AJk .card-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uK8oxV0AJk .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uK8oxV0AJk .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uK8oxV0AJk .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uK8oxV0AJk .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uK8oxV0AJk .mbr-section-title {
  color: #000000;
}
.cid-uK8oxV0AJk .mbr-text,
.cid-uK8oxV0AJk .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uK8oxV0AJk .mbr-section-title,
.cid-uK8oxV0AJk .mbr-section-btn {
  text-align: center;
}
.cid-t8P4nPLqW1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
  border-top: 2px solid #dfdfd8;
}
.cid-t8P4nPLqW1 .mbr-text {
  color: #efefec;
}
.cid-t8P4nPLqW1 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t8OXpLa3eA .navbar-dropdown {
  position: relative !important;
}
.cid-t8OXpLa3eA .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-t8OXpLa3eA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t8OXpLa3eA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8OXpLa3eA .dropdown-item:hover,
.cid-t8OXpLa3eA .dropdown-item:focus {
  background: #e31919 !important;
  color: #1d191f !important;
}
.cid-t8OXpLa3eA .dropdown-item:hover span {
  color: white;
}
.cid-t8OXpLa3eA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t8OXpLa3eA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t8OXpLa3eA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t8OXpLa3eA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8OXpLa3eA .nav-link {
  position: relative;
}
.cid-t8OXpLa3eA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t8OXpLa3eA .container {
    flex-wrap: nowrap;
  }
}
.cid-t8OXpLa3eA .iconfont-wrapper {
  color: #646464 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t8OXpLa3eA .dropdown-menu,
.cid-t8OXpLa3eA .navbar.opened {
  background: #abf6b0 !important;
}
.cid-t8OXpLa3eA .nav-item:focus,
.cid-t8OXpLa3eA .nav-link:focus {
  outline: none;
}
.cid-t8OXpLa3eA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8OXpLa3eA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8OXpLa3eA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t8OXpLa3eA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8OXpLa3eA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8OXpLa3eA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8OXpLa3eA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 2px solid #dfdfd8;
  background: #abf6b0;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-t8OXpLa3eA .navbar.opened {
  transition: all 0.3s;
}
.cid-t8OXpLa3eA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t8OXpLa3eA .navbar .navbar-logo img {
  width: auto;
}
.cid-t8OXpLa3eA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8OXpLa3eA .navbar.collapsed {
  justify-content: center;
}
.cid-t8OXpLa3eA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8OXpLa3eA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8OXpLa3eA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t8OXpLa3eA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8OXpLa3eA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8OXpLa3eA .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-t8OXpLa3eA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8OXpLa3eA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t8OXpLa3eA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t8OXpLa3eA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8OXpLa3eA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8OXpLa3eA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8OXpLa3eA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8OXpLa3eA .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-t8OXpLa3eA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t8OXpLa3eA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8OXpLa3eA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8OXpLa3eA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t8OXpLa3eA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8OXpLa3eA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t8OXpLa3eA .navbar.navbar-short {
  min-height: 70px;
}
.cid-t8OXpLa3eA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t8OXpLa3eA .navbar.navbar-short .navbar-brand {
  min-height: 70px;
  padding: 0;
}
.cid-t8OXpLa3eA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 10px;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0 auto auto;
}
.cid-t8OXpLa3eA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8OXpLa3eA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8OXpLa3eA .dropdown-item.active,
.cid-t8OXpLa3eA .dropdown-item:active {
  background-color: transparent;
}
.cid-t8OXpLa3eA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8OXpLa3eA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8OXpLa3eA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8OXpLa3eA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #abf6b0;
}
.cid-t8OXpLa3eA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8OXpLa3eA .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #2b2b2b !important;
}
.cid-t8OXpLa3eA .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8OXpLa3eA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8OXpLa3eA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8OXpLa3eA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8OXpLa3eA button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: auto;
  margin-right: 12px;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t8OXpLa3eA button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #5f6ad4;
  transition: all 0.2s;
}
.cid-t8OXpLa3eA .navbar-toggler-close {
  position: fixed;
  right: 20px;
  top: 20px;
  margin-right: 0 !important;
}
.cid-t8OXpLa3eA .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8OXpLa3eA .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t8OXpLa3eA .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t8OXpLa3eA .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8OXpLa3eA .navbar-toggler-close .hamburger-bg {
  opacity: 0;
}
.cid-t8OXpLa3eA .navbar-dropdown {
  padding: 0 1rem;
}
.cid-t8OXpLa3eA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8OXpLa3eA .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-t8OXpLa3eA .navbar {
    height: 70px;
  }
  .cid-t8OXpLa3eA .navbar.opened {
    height: auto;
  }
  .cid-t8OXpLa3eA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8OXpLa3eA .sidebar-brand {
  padding: 0 0 10px;
  margin: 0 auto 30px;
  border-bottom: 2px solid #646464;
}
.cid-t8OXpLa3eA .navbar-nav-main {
  width: 40%;
  margin: 0;
}
.cid-t8OXpLa3eA .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-t8OXpLa3eA .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-t8OXpLa3eA .navbar-nav-main .nav-item .nav-link:hover {
  color: #e31919 !important;
}
.cid-t8OXpLa3eA .navbar-nav-right {
  justify-content: flex-end;
}
.cid-t8OXpLa3eA .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-t8OXpLa3eA .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-t8OXpLa3eA .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-t8OXpLa3eA .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-t8OXpLa3eA {
    min-height: 0;
    height: 0;
  }
  .cid-t8OXpLa3eA .navbar,
  .cid-t8OXpLa3eA .navbar-short {
    min-height: 0 !important;
    height: 0 !important;
    border: none !important;
  }
  .cid-t8OXpLa3eA .container,
  .cid-t8OXpLa3eA .container-fluid {
    flex-wrap: nowrap;
    top: 50px;
    max-width: 100% !important;
  }
  .cid-t8OXpLa3eA .navbar-brand-main {
    display: none !important;
  }
  .cid-t8OXpLa3eA .navbar-nav-main {
    display: none !important;
  }
  .cid-t8OXpLa3eA .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-t8OXpLa3eA .sidbar-nav .nav-item {
    margin: 0 auto 15px !important;
    padding: 5px 0 !important;
    justify-content: center;
    text-align: center;
  }
  .cid-t8OXpLa3eA .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-t8OXpLa3eA .sidbar-nav .nav-item .nav-link:hover {
    color: #e31919 !important;
  }
  .cid-t8OXpLa3eA .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-t8OXpLa3eA .mbr-section-btn {
    margin-top: auto;
  }
  .cid-t8OXpLa3eA .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #2b2b2b;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-t8OXpLa3eA .navbar-collapse.show {
    padding: 48px 40px 38px;
    position: fixed;
    background-color: #2b2b2b;
    width: 420px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-t8OXpLa3eA .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-t8OXpLa3eA .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-tGTbNcO8e9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGTbNcO8e9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGTbNcO8e9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGTbNcO8e9 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-tGTbNcO8e9 .container-fluid {
    padding: 0 12px;
  }
}
.cid-tGTbNcO8e9 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGTbNcO8e9 .container {
    padding: 0 20px;
  }
}
.cid-tGTbNcO8e9 .row {
  margin-top: -2px;
}
.cid-tGTbNcO8e9 .card {
  padding: 0;
}
.cid-tGTbNcO8e9 .image-wrapper img {
  height: 650px;
  width: 70%;
  object-fit: cover;
  border-bottom-right-radius: 45rem;
}
@media (max-width: 992px) {
  .cid-tGTbNcO8e9 .image-wrapper img {
    height: 450px;
    width: 100%;
  }
}
.cid-tGTbNcO8e9 .title-wrapper {
  padding: 0 64px 64px;
  margin-top: -4rem;
}
@media (max-width: 992px) {
  .cid-tGTbNcO8e9 .title-wrapper {
    padding: 0 20px 50px;
  }
}
@media (max-width: 425px) {
  .cid-tGTbNcO8e9 .title-wrapper {
    margin-top: -2rem;
  }
}
.cid-tGTbNcO8e9 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tGTbNcO8e9 .title-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tGTbNcO8e9 .title-wrapper .text-wrapper {
    display: block;
  }
}
.cid-tGTbNcO8e9 .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tGTbNcO8e9 .title-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-tGTbNcO8e9 .title-wrapper .text-wrapper .mbr-section-btn {
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tGTbNcO8e9 .title-wrapper .text-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-tGTbNcO8e9 .mbr-section-title {
  color: #ffffff;
}
.cid-tGTbNcO8e9 .mbr-text {
  color: #ffffff;
}
.cid-tGTbNcO8e9 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-tGTbNcO8e9 .mbr-section-btn {
    text-align: left;
  }
}
.cid-tGTbNcO8e9 .mbr-section-title,
.cid-tGTbNcO8e9 .mbr-section-btn {
  color: #2b2b2b;
}
.cid-tGTbNcO8e9 .mbr-text,
.cid-tGTbNcO8e9 .mbr-section-btn {
  color: #000000;
}
.cid-tGTcuhM71k {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #abf6b0;
}
.cid-tGTcuhM71k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGTcuhM71k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGTcuhM71k .mbr-text,
.cid-tGTcuhM71k .mbr-section-btn {
  text-align: left;
}
.cid-t8P4nPLqW1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
  border-top: 2px solid #dfdfd8;
}
.cid-t8P4nPLqW1 .mbr-text {
  color: #efefec;
}
.cid-t8P4nPLqW1 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uK8qDAlLec .navbar-dropdown {
  position: relative !important;
}
.cid-uK8qDAlLec .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-uK8qDAlLec .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uK8qDAlLec .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uK8qDAlLec .dropdown-item:hover,
.cid-uK8qDAlLec .dropdown-item:focus {
  background: #e31919 !important;
  color: #1d191f !important;
}
.cid-uK8qDAlLec .dropdown-item:hover span {
  color: white;
}
.cid-uK8qDAlLec .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uK8qDAlLec .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uK8qDAlLec .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uK8qDAlLec .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uK8qDAlLec .nav-link {
  position: relative;
}
.cid-uK8qDAlLec .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uK8qDAlLec .container {
    flex-wrap: nowrap;
  }
}
.cid-uK8qDAlLec .iconfont-wrapper {
  color: #646464 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uK8qDAlLec .dropdown-menu,
.cid-uK8qDAlLec .navbar.opened {
  background: #abf6b0 !important;
}
.cid-uK8qDAlLec .nav-item:focus,
.cid-uK8qDAlLec .nav-link:focus {
  outline: none;
}
.cid-uK8qDAlLec .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uK8qDAlLec .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uK8qDAlLec .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uK8qDAlLec .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK8qDAlLec .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uK8qDAlLec .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uK8qDAlLec .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 2px solid #dfdfd8;
  background: #abf6b0;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-uK8qDAlLec .navbar.opened {
  transition: all 0.3s;
}
.cid-uK8qDAlLec .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uK8qDAlLec .navbar .navbar-logo img {
  width: auto;
}
.cid-uK8qDAlLec .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uK8qDAlLec .navbar.collapsed {
  justify-content: center;
}
.cid-uK8qDAlLec .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uK8qDAlLec .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uK8qDAlLec .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uK8qDAlLec .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uK8qDAlLec .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uK8qDAlLec .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-uK8qDAlLec .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uK8qDAlLec .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uK8qDAlLec .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uK8qDAlLec .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uK8qDAlLec .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uK8qDAlLec .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uK8qDAlLec .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uK8qDAlLec .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-uK8qDAlLec .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uK8qDAlLec .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uK8qDAlLec .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uK8qDAlLec .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uK8qDAlLec .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uK8qDAlLec .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uK8qDAlLec .navbar.navbar-short {
  min-height: 70px;
}
.cid-uK8qDAlLec .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uK8qDAlLec .navbar.navbar-short .navbar-brand {
  min-height: 70px;
  padding: 0;
}
.cid-uK8qDAlLec .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 10px;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0 auto auto;
}
.cid-uK8qDAlLec .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uK8qDAlLec .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uK8qDAlLec .dropdown-item.active,
.cid-uK8qDAlLec .dropdown-item:active {
  background-color: transparent;
}
.cid-uK8qDAlLec .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uK8qDAlLec .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uK8qDAlLec .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uK8qDAlLec .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #abf6b0;
}
.cid-uK8qDAlLec .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK8qDAlLec .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #2b2b2b !important;
}
.cid-uK8qDAlLec .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK8qDAlLec .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uK8qDAlLec ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uK8qDAlLec .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uK8qDAlLec button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: auto;
  margin-right: 12px;
}
.cid-uK8qDAlLec button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uK8qDAlLec button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uK8qDAlLec button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK8qDAlLec button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK8qDAlLec button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uK8qDAlLec button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #5f6ad4;
  transition: all 0.2s;
}
.cid-uK8qDAlLec .navbar-toggler-close {
  position: fixed;
  right: 20px;
  top: 20px;
  margin-right: 0 !important;
}
.cid-uK8qDAlLec .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK8qDAlLec .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uK8qDAlLec .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uK8qDAlLec .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK8qDAlLec .navbar-toggler-close .hamburger-bg {
  opacity: 0;
}
.cid-uK8qDAlLec .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uK8qDAlLec a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uK8qDAlLec .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-uK8qDAlLec .navbar {
    height: 70px;
  }
  .cid-uK8qDAlLec .navbar.opened {
    height: auto;
  }
  .cid-uK8qDAlLec .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uK8qDAlLec .sidebar-brand {
  padding: 0 0 10px;
  margin: 0 auto 30px;
  border-bottom: 2px solid #646464;
}
.cid-uK8qDAlLec .navbar-nav-main {
  width: 40%;
  margin: 0;
}
.cid-uK8qDAlLec .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uK8qDAlLec .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uK8qDAlLec .navbar-nav-main .nav-item .nav-link:hover {
  color: #e31919 !important;
}
.cid-uK8qDAlLec .navbar-nav-right {
  justify-content: flex-end;
}
.cid-uK8qDAlLec .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uK8qDAlLec .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uK8qDAlLec .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uK8qDAlLec .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uK8qDAlLec {
    min-height: 0;
    height: 0;
  }
  .cid-uK8qDAlLec .navbar,
  .cid-uK8qDAlLec .navbar-short {
    min-height: 0 !important;
    height: 0 !important;
    border: none !important;
  }
  .cid-uK8qDAlLec .container,
  .cid-uK8qDAlLec .container-fluid {
    flex-wrap: nowrap;
    top: 50px;
    max-width: 100% !important;
  }
  .cid-uK8qDAlLec .navbar-brand-main {
    display: none !important;
  }
  .cid-uK8qDAlLec .navbar-nav-main {
    display: none !important;
  }
  .cid-uK8qDAlLec .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uK8qDAlLec .sidbar-nav .nav-item {
    margin: 0 auto 15px !important;
    padding: 5px 0 !important;
    justify-content: center;
    text-align: center;
  }
  .cid-uK8qDAlLec .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uK8qDAlLec .sidbar-nav .nav-item .nav-link:hover {
    color: #e31919 !important;
  }
  .cid-uK8qDAlLec .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uK8qDAlLec .mbr-section-btn {
    margin-top: auto;
  }
  .cid-uK8qDAlLec .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #2b2b2b;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uK8qDAlLec .navbar-collapse.show {
    padding: 48px 40px 38px;
    position: fixed;
    background-color: #2b2b2b;
    width: 420px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uK8qDAlLec .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uK8qDAlLec .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uK8qDBbNrw {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uK8qDBbNrw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK8qDBbNrw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK8qDBbNrw .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uK8qDBbNrw .container-fluid {
    padding: 0 12px;
  }
}
.cid-uK8qDBbNrw .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uK8qDBbNrw .container {
    padding: 0 20px;
  }
}
.cid-uK8qDBbNrw .row {
  margin-top: -2px;
}
.cid-uK8qDBbNrw .card {
  padding: 0;
}
.cid-uK8qDBbNrw .image-wrapper img {
  height: 650px;
  width: 70%;
  object-fit: cover;
  border-bottom-right-radius: 45rem;
}
@media (max-width: 992px) {
  .cid-uK8qDBbNrw .image-wrapper img {
    height: 450px;
    width: 100%;
  }
}
.cid-uK8qDBbNrw .title-wrapper {
  padding: 0 64px 64px;
  margin-top: -4rem;
}
@media (max-width: 992px) {
  .cid-uK8qDBbNrw .title-wrapper {
    padding: 0 20px 50px;
  }
}
@media (max-width: 425px) {
  .cid-uK8qDBbNrw .title-wrapper {
    margin-top: -2rem;
  }
}
.cid-uK8qDBbNrw .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uK8qDBbNrw .title-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uK8qDBbNrw .title-wrapper .text-wrapper {
    display: block;
  }
}
.cid-uK8qDBbNrw .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uK8qDBbNrw .title-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-uK8qDBbNrw .title-wrapper .text-wrapper .mbr-section-btn {
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uK8qDBbNrw .title-wrapper .text-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uK8qDBbNrw .mbr-section-title {
  color: #ffffff;
}
.cid-uK8qDBbNrw .mbr-text {
  color: #ffffff;
}
.cid-uK8qDBbNrw .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uK8qDBbNrw .mbr-section-btn {
    text-align: left;
  }
}
.cid-uK8qDBbNrw .mbr-section-title,
.cid-uK8qDBbNrw .mbr-section-btn {
  color: #2b2b2b;
}
.cid-uK8qDBbNrw .mbr-text,
.cid-uK8qDBbNrw .mbr-section-btn {
  color: #000000;
}
.cid-uK8qDBO6ff {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #abf6b0;
}
.cid-uK8qDBO6ff .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK8qDBO6ff .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK8qDBO6ff .mbr-text,
.cid-uK8qDBO6ff .mbr-section-btn {
  text-align: left;
}
.cid-uK8qDCtkEG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
  border-top: 2px solid #dfdfd8;
}
.cid-uK8qDCtkEG .mbr-text {
  color: #efefec;
}
.cid-uK8qDCtkEG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uK8qDbEfts .navbar-dropdown {
  position: relative !important;
}
.cid-uK8qDbEfts .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-uK8qDbEfts .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uK8qDbEfts .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uK8qDbEfts .dropdown-item:hover,
.cid-uK8qDbEfts .dropdown-item:focus {
  background: #e31919 !important;
  color: #1d191f !important;
}
.cid-uK8qDbEfts .dropdown-item:hover span {
  color: white;
}
.cid-uK8qDbEfts .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uK8qDbEfts .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uK8qDbEfts .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uK8qDbEfts .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uK8qDbEfts .nav-link {
  position: relative;
}
.cid-uK8qDbEfts .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uK8qDbEfts .container {
    flex-wrap: nowrap;
  }
}
.cid-uK8qDbEfts .iconfont-wrapper {
  color: #646464 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uK8qDbEfts .dropdown-menu,
.cid-uK8qDbEfts .navbar.opened {
  background: #abf6b0 !important;
}
.cid-uK8qDbEfts .nav-item:focus,
.cid-uK8qDbEfts .nav-link:focus {
  outline: none;
}
.cid-uK8qDbEfts .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uK8qDbEfts .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uK8qDbEfts .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uK8qDbEfts .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK8qDbEfts .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uK8qDbEfts .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uK8qDbEfts .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 2px solid #dfdfd8;
  background: #abf6b0;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-uK8qDbEfts .navbar.opened {
  transition: all 0.3s;
}
.cid-uK8qDbEfts .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uK8qDbEfts .navbar .navbar-logo img {
  width: auto;
}
.cid-uK8qDbEfts .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uK8qDbEfts .navbar.collapsed {
  justify-content: center;
}
.cid-uK8qDbEfts .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uK8qDbEfts .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uK8qDbEfts .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uK8qDbEfts .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uK8qDbEfts .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uK8qDbEfts .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-uK8qDbEfts .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uK8qDbEfts .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uK8qDbEfts .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uK8qDbEfts .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uK8qDbEfts .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uK8qDbEfts .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uK8qDbEfts .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uK8qDbEfts .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-uK8qDbEfts .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uK8qDbEfts .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uK8qDbEfts .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uK8qDbEfts .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uK8qDbEfts .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uK8qDbEfts .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uK8qDbEfts .navbar.navbar-short {
  min-height: 70px;
}
.cid-uK8qDbEfts .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uK8qDbEfts .navbar.navbar-short .navbar-brand {
  min-height: 70px;
  padding: 0;
}
.cid-uK8qDbEfts .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 10px;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0 auto auto;
}
.cid-uK8qDbEfts .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uK8qDbEfts .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uK8qDbEfts .dropdown-item.active,
.cid-uK8qDbEfts .dropdown-item:active {
  background-color: transparent;
}
.cid-uK8qDbEfts .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uK8qDbEfts .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uK8qDbEfts .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uK8qDbEfts .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #abf6b0;
}
.cid-uK8qDbEfts .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK8qDbEfts .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #2b2b2b !important;
}
.cid-uK8qDbEfts .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK8qDbEfts .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uK8qDbEfts ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uK8qDbEfts .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uK8qDbEfts button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: auto;
  margin-right: 12px;
}
.cid-uK8qDbEfts button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uK8qDbEfts button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uK8qDbEfts button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK8qDbEfts button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK8qDbEfts button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uK8qDbEfts button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #5f6ad4;
  transition: all 0.2s;
}
.cid-uK8qDbEfts .navbar-toggler-close {
  position: fixed;
  right: 20px;
  top: 20px;
  margin-right: 0 !important;
}
.cid-uK8qDbEfts .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK8qDbEfts .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uK8qDbEfts .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uK8qDbEfts .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK8qDbEfts .navbar-toggler-close .hamburger-bg {
  opacity: 0;
}
.cid-uK8qDbEfts .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uK8qDbEfts a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uK8qDbEfts .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-uK8qDbEfts .navbar {
    height: 70px;
  }
  .cid-uK8qDbEfts .navbar.opened {
    height: auto;
  }
  .cid-uK8qDbEfts .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uK8qDbEfts .sidebar-brand {
  padding: 0 0 10px;
  margin: 0 auto 30px;
  border-bottom: 2px solid #646464;
}
.cid-uK8qDbEfts .navbar-nav-main {
  width: 40%;
  margin: 0;
}
.cid-uK8qDbEfts .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uK8qDbEfts .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uK8qDbEfts .navbar-nav-main .nav-item .nav-link:hover {
  color: #e31919 !important;
}
.cid-uK8qDbEfts .navbar-nav-right {
  justify-content: flex-end;
}
.cid-uK8qDbEfts .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uK8qDbEfts .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uK8qDbEfts .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uK8qDbEfts .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uK8qDbEfts {
    min-height: 0;
    height: 0;
  }
  .cid-uK8qDbEfts .navbar,
  .cid-uK8qDbEfts .navbar-short {
    min-height: 0 !important;
    height: 0 !important;
    border: none !important;
  }
  .cid-uK8qDbEfts .container,
  .cid-uK8qDbEfts .container-fluid {
    flex-wrap: nowrap;
    top: 50px;
    max-width: 100% !important;
  }
  .cid-uK8qDbEfts .navbar-brand-main {
    display: none !important;
  }
  .cid-uK8qDbEfts .navbar-nav-main {
    display: none !important;
  }
  .cid-uK8qDbEfts .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uK8qDbEfts .sidbar-nav .nav-item {
    margin: 0 auto 15px !important;
    padding: 5px 0 !important;
    justify-content: center;
    text-align: center;
  }
  .cid-uK8qDbEfts .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uK8qDbEfts .sidbar-nav .nav-item .nav-link:hover {
    color: #e31919 !important;
  }
  .cid-uK8qDbEfts .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uK8qDbEfts .mbr-section-btn {
    margin-top: auto;
  }
  .cid-uK8qDbEfts .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #2b2b2b;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uK8qDbEfts .navbar-collapse.show {
    padding: 48px 40px 38px;
    position: fixed;
    background-color: #2b2b2b;
    width: 420px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uK8qDbEfts .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uK8qDbEfts .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uK8qDerCPC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uK8qDerCPC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK8qDerCPC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK8qDerCPC .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uK8qDerCPC .container-fluid {
    padding: 0 12px;
  }
}
.cid-uK8qDerCPC .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uK8qDerCPC .container {
    padding: 0 20px;
  }
}
.cid-uK8qDerCPC .row {
  margin-top: -2px;
}
.cid-uK8qDerCPC .card {
  padding: 0;
}
.cid-uK8qDerCPC .image-wrapper img {
  height: 650px;
  width: 70%;
  object-fit: cover;
  border-bottom-right-radius: 45rem;
}
@media (max-width: 992px) {
  .cid-uK8qDerCPC .image-wrapper img {
    height: 450px;
    width: 100%;
  }
}
.cid-uK8qDerCPC .title-wrapper {
  padding: 0 64px 64px;
  margin-top: -4rem;
}
@media (max-width: 992px) {
  .cid-uK8qDerCPC .title-wrapper {
    padding: 0 20px 50px;
  }
}
@media (max-width: 425px) {
  .cid-uK8qDerCPC .title-wrapper {
    margin-top: -2rem;
  }
}
.cid-uK8qDerCPC .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uK8qDerCPC .title-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uK8qDerCPC .title-wrapper .text-wrapper {
    display: block;
  }
}
.cid-uK8qDerCPC .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uK8qDerCPC .title-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-uK8qDerCPC .title-wrapper .text-wrapper .mbr-section-btn {
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uK8qDerCPC .title-wrapper .text-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uK8qDerCPC .mbr-section-title {
  color: #ffffff;
}
.cid-uK8qDerCPC .mbr-text {
  color: #ffffff;
}
.cid-uK8qDerCPC .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uK8qDerCPC .mbr-section-btn {
    text-align: left;
  }
}
.cid-uK8qDerCPC .mbr-section-title,
.cid-uK8qDerCPC .mbr-section-btn {
  color: #2b2b2b;
}
.cid-uK8qDerCPC .mbr-text,
.cid-uK8qDerCPC .mbr-section-btn {
  color: #000000;
}
.cid-uK8qDf5X6b {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #abf6b0;
}
.cid-uK8qDf5X6b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK8qDf5X6b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK8qDf5X6b .mbr-text,
.cid-uK8qDf5X6b .mbr-section-btn {
  text-align: left;
}
.cid-uK8qDfOXKZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
  border-top: 2px solid #dfdfd8;
}
.cid-uK8qDfOXKZ .mbr-text {
  color: #efefec;
}
.cid-uK8qDfOXKZ .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uK8rYNKseg .navbar-dropdown {
  position: relative !important;
}
.cid-uK8rYNKseg .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-uK8rYNKseg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uK8rYNKseg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uK8rYNKseg .dropdown-item:hover,
.cid-uK8rYNKseg .dropdown-item:focus {
  background: #e31919 !important;
  color: #1d191f !important;
}
.cid-uK8rYNKseg .dropdown-item:hover span {
  color: white;
}
.cid-uK8rYNKseg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uK8rYNKseg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uK8rYNKseg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uK8rYNKseg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uK8rYNKseg .nav-link {
  position: relative;
}
.cid-uK8rYNKseg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uK8rYNKseg .container {
    flex-wrap: nowrap;
  }
}
.cid-uK8rYNKseg .iconfont-wrapper {
  color: #646464 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uK8rYNKseg .dropdown-menu,
.cid-uK8rYNKseg .navbar.opened {
  background: #abf6b0 !important;
}
.cid-uK8rYNKseg .nav-item:focus,
.cid-uK8rYNKseg .nav-link:focus {
  outline: none;
}
.cid-uK8rYNKseg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uK8rYNKseg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uK8rYNKseg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uK8rYNKseg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK8rYNKseg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uK8rYNKseg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uK8rYNKseg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 2px solid #dfdfd8;
  background: #abf6b0;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-uK8rYNKseg .navbar.opened {
  transition: all 0.3s;
}
.cid-uK8rYNKseg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uK8rYNKseg .navbar .navbar-logo img {
  width: auto;
}
.cid-uK8rYNKseg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uK8rYNKseg .navbar.collapsed {
  justify-content: center;
}
.cid-uK8rYNKseg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uK8rYNKseg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uK8rYNKseg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uK8rYNKseg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uK8rYNKseg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uK8rYNKseg .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-uK8rYNKseg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uK8rYNKseg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uK8rYNKseg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uK8rYNKseg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uK8rYNKseg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uK8rYNKseg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uK8rYNKseg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uK8rYNKseg .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-uK8rYNKseg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uK8rYNKseg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uK8rYNKseg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uK8rYNKseg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uK8rYNKseg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uK8rYNKseg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uK8rYNKseg .navbar.navbar-short {
  min-height: 70px;
}
.cid-uK8rYNKseg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uK8rYNKseg .navbar.navbar-short .navbar-brand {
  min-height: 70px;
  padding: 0;
}
.cid-uK8rYNKseg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 10px;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0 auto auto;
}
.cid-uK8rYNKseg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uK8rYNKseg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uK8rYNKseg .dropdown-item.active,
.cid-uK8rYNKseg .dropdown-item:active {
  background-color: transparent;
}
.cid-uK8rYNKseg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uK8rYNKseg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uK8rYNKseg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uK8rYNKseg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #abf6b0;
}
.cid-uK8rYNKseg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK8rYNKseg .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #2b2b2b !important;
}
.cid-uK8rYNKseg .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK8rYNKseg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uK8rYNKseg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uK8rYNKseg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uK8rYNKseg button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: auto;
  margin-right: 12px;
}
.cid-uK8rYNKseg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uK8rYNKseg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uK8rYNKseg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK8rYNKseg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK8rYNKseg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uK8rYNKseg button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #5f6ad4;
  transition: all 0.2s;
}
.cid-uK8rYNKseg .navbar-toggler-close {
  position: fixed;
  right: 20px;
  top: 20px;
  margin-right: 0 !important;
}
.cid-uK8rYNKseg .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK8rYNKseg .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uK8rYNKseg .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uK8rYNKseg .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK8rYNKseg .navbar-toggler-close .hamburger-bg {
  opacity: 0;
}
.cid-uK8rYNKseg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uK8rYNKseg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uK8rYNKseg .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-uK8rYNKseg .navbar {
    height: 70px;
  }
  .cid-uK8rYNKseg .navbar.opened {
    height: auto;
  }
  .cid-uK8rYNKseg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uK8rYNKseg .sidebar-brand {
  padding: 0 0 10px;
  margin: 0 auto 30px;
  border-bottom: 2px solid #646464;
}
.cid-uK8rYNKseg .navbar-nav-main {
  width: 40%;
  margin: 0;
}
.cid-uK8rYNKseg .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uK8rYNKseg .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uK8rYNKseg .navbar-nav-main .nav-item .nav-link:hover {
  color: #e31919 !important;
}
.cid-uK8rYNKseg .navbar-nav-right {
  justify-content: flex-end;
}
.cid-uK8rYNKseg .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uK8rYNKseg .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uK8rYNKseg .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uK8rYNKseg .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uK8rYNKseg {
    min-height: 0;
    height: 0;
  }
  .cid-uK8rYNKseg .navbar,
  .cid-uK8rYNKseg .navbar-short {
    min-height: 0 !important;
    height: 0 !important;
    border: none !important;
  }
  .cid-uK8rYNKseg .container,
  .cid-uK8rYNKseg .container-fluid {
    flex-wrap: nowrap;
    top: 50px;
    max-width: 100% !important;
  }
  .cid-uK8rYNKseg .navbar-brand-main {
    display: none !important;
  }
  .cid-uK8rYNKseg .navbar-nav-main {
    display: none !important;
  }
  .cid-uK8rYNKseg .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uK8rYNKseg .sidbar-nav .nav-item {
    margin: 0 auto 15px !important;
    padding: 5px 0 !important;
    justify-content: center;
    text-align: center;
  }
  .cid-uK8rYNKseg .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uK8rYNKseg .sidbar-nav .nav-item .nav-link:hover {
    color: #e31919 !important;
  }
  .cid-uK8rYNKseg .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uK8rYNKseg .mbr-section-btn {
    margin-top: auto;
  }
  .cid-uK8rYNKseg .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #2b2b2b;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uK8rYNKseg .navbar-collapse.show {
    padding: 48px 40px 38px;
    position: fixed;
    background-color: #2b2b2b;
    width: 420px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uK8rYNKseg .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uK8rYNKseg .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uK8s91vsdE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #2c2625;
}
.cid-uK8s91vsdE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK8s91vsdE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK8s91vsdE .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uK8s91vsdE .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uK8s91vsdE .content-wrapper {
    padding: 0;
  }
}
.cid-uK8s91vsdE .content-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #8ed993;
  padding: 200px 150px;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 0 #ffffff;
}
@media (max-width: 1440px) {
  .cid-uK8s91vsdE .content-wrapper .card-wrapper {
    padding: 200px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uK8s91vsdE .content-wrapper .card-wrapper {
    padding: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uK8s91vsdE .content-wrapper .card-wrapper {
    box-shadow: -5px 5px 0 0 #ffffff;
  }
}
.cid-uK8s91vsdE .content-wrapper .card-wrapper .card-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uK8s91vsdE .content-wrapper .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uK8s91vsdE .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uK8s91vsdE .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uK8s91vsdE .content-wrapper .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 32px;
}
.cid-uK8s91vsdE .content-wrapper .card-wrapper .image-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uK8s91vsdE .content-wrapper .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uK8s91vsdE .content-wrapper .card-wrapper .image-wrapper img {
  object-fit: cover;
  height: 420px;
  border: 2px solid #2c2625;
  box-shadow: -10px 10px 0 0 #2c2625;
}
@media (max-width: 992px) {
  .cid-uK8s91vsdE .content-wrapper .card-wrapper .image-wrapper img {
    box-shadow: -5px 5px 0 0 #2c2625;
    height: 350px;
  }
}
.cid-uK8s91vsdE .mbr-section-title {
  color: #2C2625;
}
.cid-uK8s91vsdE .mbr-text {
  color: #2C2625;
}
.cid-uK8rYQYk6F {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #abf6b0;
}
.cid-uK8rYQYk6F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK8rYQYk6F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK8rYQYk6F .mbr-text,
.cid-uK8rYQYk6F .mbr-section-btn {
  text-align: left;
}
.cid-uK8rYRDdyx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
  border-top: 2px solid #dfdfd8;
}
.cid-uK8rYRDdyx .mbr-text {
  color: #efefec;
}
.cid-uK8rYRDdyx .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uK8svSw76A .navbar-dropdown {
  position: relative !important;
}
.cid-uK8svSw76A .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-uK8svSw76A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uK8svSw76A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uK8svSw76A .dropdown-item:hover,
.cid-uK8svSw76A .dropdown-item:focus {
  background: #e31919 !important;
  color: #1d191f !important;
}
.cid-uK8svSw76A .dropdown-item:hover span {
  color: white;
}
.cid-uK8svSw76A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uK8svSw76A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uK8svSw76A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uK8svSw76A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uK8svSw76A .nav-link {
  position: relative;
}
.cid-uK8svSw76A .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uK8svSw76A .container {
    flex-wrap: nowrap;
  }
}
.cid-uK8svSw76A .iconfont-wrapper {
  color: #646464 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uK8svSw76A .dropdown-menu,
.cid-uK8svSw76A .navbar.opened {
  background: #abf6b0 !important;
}
.cid-uK8svSw76A .nav-item:focus,
.cid-uK8svSw76A .nav-link:focus {
  outline: none;
}
.cid-uK8svSw76A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uK8svSw76A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uK8svSw76A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uK8svSw76A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK8svSw76A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uK8svSw76A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uK8svSw76A .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 2px solid #dfdfd8;
  background: #abf6b0;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-uK8svSw76A .navbar.opened {
  transition: all 0.3s;
}
.cid-uK8svSw76A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uK8svSw76A .navbar .navbar-logo img {
  width: auto;
}
.cid-uK8svSw76A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uK8svSw76A .navbar.collapsed {
  justify-content: center;
}
.cid-uK8svSw76A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uK8svSw76A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uK8svSw76A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uK8svSw76A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uK8svSw76A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uK8svSw76A .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-uK8svSw76A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uK8svSw76A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uK8svSw76A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uK8svSw76A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uK8svSw76A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uK8svSw76A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uK8svSw76A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uK8svSw76A .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-uK8svSw76A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uK8svSw76A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uK8svSw76A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uK8svSw76A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uK8svSw76A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uK8svSw76A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uK8svSw76A .navbar.navbar-short {
  min-height: 70px;
}
.cid-uK8svSw76A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uK8svSw76A .navbar.navbar-short .navbar-brand {
  min-height: 70px;
  padding: 0;
}
.cid-uK8svSw76A .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 10px;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0 auto auto;
}
.cid-uK8svSw76A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uK8svSw76A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uK8svSw76A .dropdown-item.active,
.cid-uK8svSw76A .dropdown-item:active {
  background-color: transparent;
}
.cid-uK8svSw76A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uK8svSw76A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uK8svSw76A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uK8svSw76A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #abf6b0;
}
.cid-uK8svSw76A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK8svSw76A .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #2b2b2b !important;
}
.cid-uK8svSw76A .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK8svSw76A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uK8svSw76A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uK8svSw76A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uK8svSw76A button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: auto;
  margin-right: 12px;
}
.cid-uK8svSw76A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uK8svSw76A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uK8svSw76A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK8svSw76A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK8svSw76A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uK8svSw76A button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #5f6ad4;
  transition: all 0.2s;
}
.cid-uK8svSw76A .navbar-toggler-close {
  position: fixed;
  right: 20px;
  top: 20px;
  margin-right: 0 !important;
}
.cid-uK8svSw76A .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK8svSw76A .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uK8svSw76A .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uK8svSw76A .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK8svSw76A .navbar-toggler-close .hamburger-bg {
  opacity: 0;
}
.cid-uK8svSw76A .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uK8svSw76A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uK8svSw76A .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-uK8svSw76A .navbar {
    height: 70px;
  }
  .cid-uK8svSw76A .navbar.opened {
    height: auto;
  }
  .cid-uK8svSw76A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uK8svSw76A .sidebar-brand {
  padding: 0 0 10px;
  margin: 0 auto 30px;
  border-bottom: 2px solid #646464;
}
.cid-uK8svSw76A .navbar-nav-main {
  width: 40%;
  margin: 0;
}
.cid-uK8svSw76A .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uK8svSw76A .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uK8svSw76A .navbar-nav-main .nav-item .nav-link:hover {
  color: #e31919 !important;
}
.cid-uK8svSw76A .navbar-nav-right {
  justify-content: flex-end;
}
.cid-uK8svSw76A .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uK8svSw76A .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uK8svSw76A .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uK8svSw76A .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uK8svSw76A {
    min-height: 0;
    height: 0;
  }
  .cid-uK8svSw76A .navbar,
  .cid-uK8svSw76A .navbar-short {
    min-height: 0 !important;
    height: 0 !important;
    border: none !important;
  }
  .cid-uK8svSw76A .container,
  .cid-uK8svSw76A .container-fluid {
    flex-wrap: nowrap;
    top: 50px;
    max-width: 100% !important;
  }
  .cid-uK8svSw76A .navbar-brand-main {
    display: none !important;
  }
  .cid-uK8svSw76A .navbar-nav-main {
    display: none !important;
  }
  .cid-uK8svSw76A .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uK8svSw76A .sidbar-nav .nav-item {
    margin: 0 auto 15px !important;
    padding: 5px 0 !important;
    justify-content: center;
    text-align: center;
  }
  .cid-uK8svSw76A .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uK8svSw76A .sidbar-nav .nav-item .nav-link:hover {
    color: #e31919 !important;
  }
  .cid-uK8svSw76A .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uK8svSw76A .mbr-section-btn {
    margin-top: auto;
  }
  .cid-uK8svSw76A .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #2b2b2b;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uK8svSw76A .navbar-collapse.show {
    padding: 48px 40px 38px;
    position: fixed;
    background-color: #2b2b2b;
    width: 420px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uK8svSw76A .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uK8svSw76A .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uK8svTAh1v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #2c2625;
}
.cid-uK8svTAh1v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK8svTAh1v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK8svTAh1v .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uK8svTAh1v .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uK8svTAh1v .content-wrapper {
    padding: 0;
  }
}
.cid-uK8svTAh1v .content-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #8ed993;
  padding: 200px 150px;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 0 #ffffff;
}
@media (max-width: 1440px) {
  .cid-uK8svTAh1v .content-wrapper .card-wrapper {
    padding: 200px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uK8svTAh1v .content-wrapper .card-wrapper {
    padding: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uK8svTAh1v .content-wrapper .card-wrapper {
    box-shadow: -5px 5px 0 0 #ffffff;
  }
}
.cid-uK8svTAh1v .content-wrapper .card-wrapper .card-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uK8svTAh1v .content-wrapper .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uK8svTAh1v .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uK8svTAh1v .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uK8svTAh1v .content-wrapper .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 32px;
}
.cid-uK8svTAh1v .content-wrapper .card-wrapper .image-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uK8svTAh1v .content-wrapper .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uK8svTAh1v .content-wrapper .card-wrapper .image-wrapper img {
  object-fit: cover;
  height: 420px;
  border: 2px solid #2c2625;
  box-shadow: -10px 10px 0 0 #2c2625;
}
@media (max-width: 992px) {
  .cid-uK8svTAh1v .content-wrapper .card-wrapper .image-wrapper img {
    box-shadow: -5px 5px 0 0 #2c2625;
    height: 350px;
  }
}
.cid-uK8svTAh1v .mbr-section-title {
  color: #2C2625;
}
.cid-uK8svTAh1v .mbr-text {
  color: #2C2625;
}
.cid-uK8svUch26 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #abf6b0;
}
.cid-uK8svUch26 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK8svUch26 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK8svUch26 .mbr-text,
.cid-uK8svUch26 .mbr-section-btn {
  text-align: left;
}
.cid-uK8svURCN4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
  border-top: 2px solid #dfdfd8;
}
.cid-uK8svURCN4 .mbr-text {
  color: #efefec;
}
.cid-uK8svURCN4 .media-container-row .mbr-text {
  color: #ffffff;
}
