body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 10.25rem;
}
.display-2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 7.25rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 6.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.74rem;
    font-size: calc( 3.5199999999999996rem + (8.2 - 3.5199999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.5199999999999996rem + (8.2 - 3.5199999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4.64rem;
    font-size: calc( 2.6799999999999997rem + (5.8 - 2.6799999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.6799999999999997rem + (5.8 - 2.6799999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 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: #e85a4f !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e85a4f !important;
  border-color: #e85a4f !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: #c6261a !important;
  border-color: #c6261a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c6261a !important;
  border-color: #c6261a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d8c3a5 !important;
  border-color: #d8c3a5 !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: #be9b69 !important;
  border-color: #be9b69 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #be9b69 !important;
  border-color: #be9b69 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e85a4f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c6261a !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: #e85a4f !important;
  border-color: #e85a4f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d8c3a5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #be9b69 !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: #d8c3a5 !important;
  border-color: #d8c3a5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e85a4f !important;
}
.text-secondary {
  color: #d8c3a5 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #b92418 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b9945e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e85a4f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e85a4f;
  border-color: #e85a4f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e85a4f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e85a4f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #e85a4f;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e85a4f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e85a4f;
}
.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: #e85a4f;
  border-bottom-color: #e85a4f;
}
.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: #e85a4f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #d8c3a5 !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='%23e85a4f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-vuV2AL4cRB {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-vuV2AL4cRB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuV2AL4cRB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuV2AL4cRB .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vuV2AL4cRB .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vuV2AL4cRB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vuV2AL4cRB .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-vuV2AL4cRB .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vuV2AL4cRB .mbr-section-title {
  color: #091f40;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #fafafa !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFF0ciwnEL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vuOYraErkk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vuOYraErkk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuOYraErkk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuOYraErkk .mbr-section-title {
  color: #e61313;
}
.cid-vuOYraErkk .mbr-section-subtitle {
  color: #232323;
}
.cid-vuM11f6WF7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vuM11f6WF7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuM11f6WF7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuM11f6WF7 .video-wrapper iframe {
  width: 100%;
}
.cid-vuM11f6WF7 .mbr-section-title,
.cid-vuM11f6WF7 .mbr-section-subtitle,
.cid-vuM11f6WF7 .mbr-text {
  text-align: center;
}
.cid-vuM11f6WF7 .mbr-section-title {
  color: #06219c;
}
.cid-vuV7cIReDV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vuV7cIReDV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuV7cIReDV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuV7cIReDV .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vuV7cIReDV .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vuV7cIReDV .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vuV7cIReDV .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vuV7cIReDV .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vuV7cIReDV .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vuV7cIReDV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vuV7cIReDV .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vuV7cIReDV .mbr-text,
.cid-vuV7cIReDV .mbr-section-btn {
  text-align: center;
}
.cid-vuV7zfKLZk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vuV7zfKLZk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuV7zfKLZk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuV7zfKLZk .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vuV7zfKLZk .row {
    flex-direction: column-reverse;
  }
  .cid-vuV7zfKLZk .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vuV7zfKLZk .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vuV7zfKLZk .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-vuV7zfKLZk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vuV7zfKLZk .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vuV7zfKLZk .mbr-text,
.cid-vuV7zfKLZk .mbr-section-btn {
  text-align: left;
}
.cid-vuV7epL4Xl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vuV7epL4Xl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuV7epL4Xl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuV7epL4Xl .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vuV7epL4Xl .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vuV7epL4Xl .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vuV7epL4Xl .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vuV7epL4Xl .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vuV7epL4Xl .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vuV7epL4Xl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vuV7epL4Xl .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vuV7epL4Xl .mbr-text,
.cid-vuV7epL4Xl .mbr-section-btn {
  text-align: center;
}
.cid-vuV7xHsRnF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vuV7xHsRnF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuV7xHsRnF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuV7xHsRnF .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vuV7xHsRnF .row {
    flex-direction: column-reverse;
  }
  .cid-vuV7xHsRnF .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vuV7xHsRnF .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vuV7xHsRnF .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-vuV7xHsRnF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vuV7xHsRnF .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vuV7xHsRnF .mbr-text,
.cid-vuV7xHsRnF .mbr-section-btn {
  text-align: left;
}
.cid-vuV3I4McqY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vuV3I4McqY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuV3I4McqY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuV3I4McqY .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #e85a4f;
  margin-bottom: 2rem;
}
.cid-vuV3I4McqY .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-vv4nle8mjB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vv4nle8mjB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vv4nle8mjB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vv4nle8mjB .mbr-section-title {
  color: #0b44ab;
}
.cid-sFF0SGinka {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sFF0SGinka .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sFF0SGinka .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sFF0SGinka .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sFF0SGinka .mbr-section-title {
  color: #dd1515;
}
.cid-sFF0SGinka .mbr-text,
.cid-sFF0SGinka .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uESAs5zUGd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uESAs5zUGd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uESAs5zUGd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uESAs5zUGd .mbr-section-title {
  color: #e61313;
}
.cid-uESAs5zUGd .mbr-section-subtitle {
  color: #232323;
}
.cid-tZTENvN8LM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tZTENvN8LM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZTENvN8LM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZTENvN8LM .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tZTENvN8LM .row {
    flex-direction: column-reverse;
  }
  .cid-tZTENvN8LM .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tZTENvN8LM .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tZTENvN8LM .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-tZTENvN8LM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tZTENvN8LM .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-tZTENvN8LM .mbr-text,
.cid-tZTENvN8LM .mbr-section-btn {
  text-align: center;
}
.cid-tZTEOEGCPS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZTEOEGCPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZTEOEGCPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZTEOEGCPS .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tZTEOEGCPS .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZTEOEGCPS .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tZTEOEGCPS .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZTEOEGCPS .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tZTEOEGCPS .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tZTEOEGCPS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tZTEOEGCPS .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-tZTEOEGCPS .mbr-text,
.cid-tZTEOEGCPS .mbr-section-btn {
  text-align: center;
}
.cid-tZTEPRuyYv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tZTEPRuyYv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZTEPRuyYv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZTEPRuyYv .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tZTEPRuyYv .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tZTEPRuyYv .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZTEPRuyYv .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tZTEPRuyYv .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZTEPRuyYv .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tZTEPRuyYv .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tZTEPRuyYv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tZTEPRuyYv .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-tZTEPRuyYv .mbr-text,
.cid-tZTEPRuyYv .mbr-section-btn {
  text-align: center;
}
.cid-v7zScNYy0f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v7zScNYy0f .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7zScNYy0f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7zScNYy0f .mbr-section-title {
  color: #e61313;
}
.cid-vr6lW4w0oc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vr6lW4w0oc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6lW4w0oc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vr6lW4w0oc .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vr6lW4w0oc .mbr-section-subtitle {
  text-align: center;
}
.cid-vr6lW4w0oc .mbr-section-title {
  color: #5a57a0;
}
.cid-vr6lOTIBy5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vr6lOTIBy5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6lOTIBy5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vr6lOTIBy5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vr6lOTIBy5 .row {
  flex-direction: row-reverse;
}
.cid-vr6lOTIBy5 img {
  width: 100%;
}
.cid-vr6lQvaDYj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vr6lQvaDYj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6lQvaDYj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vr6lQvaDYj .mbr-section-title {
  text-align: left;
  color: #081da0;
}
.cid-vr6lQvaDYj .mbr-section-subtitle {
  text-align: center;
  color: #232323;
}
.cid-vr6ntDClvV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vr6ntDClvV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6ntDClvV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vr6ntDClvV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vr6ntDClvV .row {
  flex-direction: row-reverse;
}
.cid-vr6ntDClvV img {
  width: 100%;
}
.cid-vr6nwiqAvo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vr6nwiqAvo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6nwiqAvo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vr6nwiqAvo .mbr-section-title {
  text-align: left;
  color: #081da0;
}
.cid-vr6nwiqAvo .mbr-section-subtitle {
  text-align: center;
  color: #232323;
}
.cid-vr6nxs7kWP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vr6nxs7kWP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6nxs7kWP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vr6nxs7kWP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vr6nxs7kWP .row {
  flex-direction: row-reverse;
}
.cid-vr6nxs7kWP img {
  width: 100%;
}
.cid-vr6nyCpi6R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vr6nyCpi6R .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6nyCpi6R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vr6nyCpi6R .mbr-section-title {
  text-align: left;
  color: #081da0;
}
.cid-vr6nyCpi6R .mbr-section-subtitle {
  text-align: center;
  color: #232323;
}
.cid-vr6otOifA0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vr6otOifA0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6otOifA0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vr6otOifA0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vr6otOifA0 .row {
  flex-direction: row-reverse;
}
.cid-vr6otOifA0 img {
  width: 100%;
}
.cid-vr6ox0N5F2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vr6ox0N5F2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6ox0N5F2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vr6ox0N5F2 .mbr-section-title {
  text-align: left;
  color: #081da0;
}
.cid-vr6ox0N5F2 .mbr-section-subtitle {
  text-align: center;
  color: #232323;
}
.cid-vsND3x7SqU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsND3x7SqU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsND3x7SqU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsND3x7SqU .mbr-section-title {
  color: #0b44ab;
}
.cid-uEnt06XO9n {
  background-image: url("../../../assets/images/chatgpt-image-aug-19-2026-07-16-01-pm-1-1448x1086.png");
}
.cid-uEnt06XO9n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEnt06XO9n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEnt06XO9n .mbr-section-title {
  color: #dd1515;
}
.cid-uEnt06XO9n .mbr-text,
.cid-uEnt06XO9n .mbr-section-btn {
  color: #fafafa;
}
.cid-uEnt06XO9n .mbr-section-subtitle {
  color: #40b0bf;
}
.cid-vsNDgp3aQU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsNDgp3aQU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNDgp3aQU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNDgp3aQU .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vsNDgp3aQU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vsNDgp3aQU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vsNDgp3aQU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vsNDgp3aQU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vsNDgp3aQU .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vsNDgp3aQU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vsNDgp3aQU .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vsNDgp3aQU .mbr-text,
.cid-vsNDgp3aQU .mbr-section-btn {
  text-align: left;
}
.cid-vsSZV544t9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsSZV544t9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsSZV544t9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsSZV544t9 .mbr-section-title {
  color: #e61313;
}
.cid-vsT20KmRKK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsT20KmRKK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT20KmRKK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsT20KmRKK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsT20KmRKK .row {
  flex-direction: row-reverse;
}
.cid-vsT20KmRKK img {
  width: 100%;
}
.cid-vsSZX2V7zE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsSZX2V7zE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsSZX2V7zE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsSZX2V7zE .mbr-section-title {
  text-align: left;
  color: #081da0;
}
.cid-vsSZX2V7zE .mbr-section-subtitle {
  text-align: center;
  color: #232323;
}
.cid-vsT02qsua3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsT02qsua3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT02qsua3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsT02qsua3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsT02qsua3 .row {
  flex-direction: row-reverse;
}
.cid-vsT02qsua3 img {
  width: 100%;
}
.cid-vsT0hKg99Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsT0hKg99Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT0hKg99Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsT0hKg99Y .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsT0hKg99Y .mbr-section-subtitle {
  text-align: center;
}
.cid-vsT0hKg99Y .mbr-section-title {
  color: #5a57a0;
}
.cid-vsT0k9flMO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsT0k9flMO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT0k9flMO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsT0k9flMO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsT0k9flMO .row {
  flex-direction: row-reverse;
}
.cid-vsT0k9flMO img {
  width: 100%;
}
.cid-vsT0uVpqoM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsT0uVpqoM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT0uVpqoM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsT0uVpqoM .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsT0uVpqoM .mbr-section-subtitle {
  text-align: center;
}
.cid-vsT0uVpqoM .mbr-section-title {
  color: #5a57a0;
}
.cid-vsT0CF0QCZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsT0CF0QCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT0CF0QCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsT0CF0QCZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsT0CF0QCZ .row {
  flex-direction: row-reverse;
}
.cid-vsT0CF0QCZ img {
  width: 100%;
}
.cid-vsT0E7OH4k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsT0E7OH4k .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT0E7OH4k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsT0E7OH4k .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsT0E7OH4k .mbr-section-subtitle {
  text-align: center;
}
.cid-vsT0E7OH4k .mbr-section-title {
  color: #5a57a0;
}
.cid-vsT0FDK0Fk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsT0FDK0Fk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT0FDK0Fk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsT0FDK0Fk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsT0FDK0Fk .row {
  flex-direction: row-reverse;
}
.cid-vsT0FDK0Fk img {
  width: 100%;
}
.cid-vsT0GN2CfJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsT0GN2CfJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT0GN2CfJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsT0GN2CfJ .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsT0GN2CfJ .mbr-section-subtitle {
  text-align: center;
}
.cid-vsT0GN2CfJ .mbr-section-title {
  color: #5a57a0;
}
.cid-vsT0IlRYc7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsT0IlRYc7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT0IlRYc7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsT0IlRYc7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsT0IlRYc7 .row {
  flex-direction: row-reverse;
}
.cid-vsT0IlRYc7 img {
  width: 100%;
}
.cid-vsT1qdqBIT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsT1qdqBIT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT1qdqBIT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsT1qdqBIT .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsT1qdqBIT .mbr-section-subtitle {
  text-align: center;
}
.cid-vsT1qdqBIT .mbr-section-title {
  color: #5a57a0;
}
.cid-vsT1rU2Q0Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsT1rU2Q0Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT1rU2Q0Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsT1rU2Q0Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsT1rU2Q0Z .row {
  flex-direction: row-reverse;
}
.cid-vsT1rU2Q0Z img {
  width: 100%;
}
.cid-vsT1C8HqCC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsT1C8HqCC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsT1C8HqCC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsT1C8HqCC .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsT1C8HqCC .mbr-section-subtitle {
  text-align: center;
}
.cid-vsT1C8HqCC .mbr-section-title {
  color: #5a57a0;
}
.cid-vsNDjkIGf5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsNDjkIGf5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNDjkIGf5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNDjkIGf5 .mbr-section-title {
  color: #0b44ab;
}
.cid-vsNDl15TLx {
  background-image: url("../../../assets/images/chatgpt-image-aug-19-2026-07-16-40-pm-3-1448x1086.png");
}
.cid-vsNDl15TLx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNDl15TLx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNDl15TLx .mbr-section-title {
  color: #dd1515;
}
.cid-vsNDl15TLx .mbr-text,
.cid-vsNDl15TLx .mbr-section-btn {
  color: #fafafa;
}
.cid-vsNDl15TLx .mbr-section-subtitle {
  color: #40b0bf;
}
.cid-vsNDmKgZQR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsNDmKgZQR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNDmKgZQR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNDmKgZQR .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vsNDmKgZQR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vsNDmKgZQR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vsNDmKgZQR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vsNDmKgZQR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vsNDmKgZQR .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vsNDmKgZQR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vsNDmKgZQR .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vsNDmKgZQR .mbr-text,
.cid-vsNDmKgZQR .mbr-section-btn {
  text-align: left;
}
.cid-vsTJfRKjgm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTJfRKjgm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJfRKjgm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTJfRKjgm .mbr-section-title {
  color: #e61313;
}
.cid-vsTJcnAExb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsTJcnAExb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJcnAExb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsTJcnAExb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsTJcnAExb .row {
  flex-direction: row-reverse;
}
.cid-vsTJcnAExb img {
  width: 100%;
}
.cid-vsTJijQqdU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTJijQqdU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJijQqdU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTJijQqdU .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsTJijQqdU .mbr-section-subtitle {
  text-align: center;
}
.cid-vsTJijQqdU .mbr-section-title {
  color: #5a57a0;
}
.cid-vsTJl1Y51n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsTJl1Y51n .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJl1Y51n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsTJl1Y51n .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsTJl1Y51n .row {
  flex-direction: row-reverse;
}
.cid-vsTJl1Y51n img {
  width: 100%;
}
.cid-vsTJmzINGl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTJmzINGl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJmzINGl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTJmzINGl .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsTJmzINGl .mbr-section-subtitle {
  text-align: center;
}
.cid-vsTJmzINGl .mbr-section-title {
  color: #5a57a0;
}
.cid-vsTJnWmEP1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsTJnWmEP1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJnWmEP1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsTJnWmEP1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsTJnWmEP1 .row {
  flex-direction: row-reverse;
}
.cid-vsTJnWmEP1 img {
  width: 100%;
}
.cid-vsTJpjbFBS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTJpjbFBS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJpjbFBS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTJpjbFBS .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsTJpjbFBS .mbr-section-subtitle {
  text-align: center;
}
.cid-vsTJpjbFBS .mbr-section-title {
  color: #5a57a0;
}
.cid-vsTJzAwK1Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsTJzAwK1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJzAwK1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsTJzAwK1Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsTJzAwK1Q .row {
  flex-direction: row-reverse;
}
.cid-vsTJzAwK1Q img {
  width: 100%;
}
.cid-vsTJAGNdmf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTJAGNdmf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJAGNdmf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTJAGNdmf .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsTJAGNdmf .mbr-section-subtitle {
  text-align: center;
}
.cid-vsTJAGNdmf .mbr-section-title {
  color: #5a57a0;
}
.cid-vsTJCc9DqM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsTJCc9DqM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJCc9DqM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsTJCc9DqM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsTJCc9DqM .row {
  flex-direction: row-reverse;
}
.cid-vsTJCc9DqM img {
  width: 100%;
}
.cid-vsTJD0ogul {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTJD0ogul .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJD0ogul .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTJD0ogul .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsTJD0ogul .mbr-section-subtitle {
  text-align: center;
}
.cid-vsTJD0ogul .mbr-section-title {
  color: #5a57a0;
}
.cid-vsTJEq7xkc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsTJEq7xkc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJEq7xkc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsTJEq7xkc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsTJEq7xkc .row {
  flex-direction: row-reverse;
}
.cid-vsTJEq7xkc img {
  width: 100%;
}
.cid-vsTJFws4Uw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTJFws4Uw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTJFws4Uw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTJFws4Uw .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsTJFws4Uw .mbr-section-subtitle {
  text-align: center;
}
.cid-vsTJFws4Uw .mbr-section-title {
  color: #5a57a0;
}
.cid-vvhzRFHNIj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vvhzRFHNIj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vvhzRFHNIj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vvhzRFHNIj .mbr-section-title {
  color: #091f40;
}
.cid-vvhzRFHNIj .mbr-section-subtitle {
  color: #232323;
}
.cid-vvhyouUMX9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vvhyouUMX9 img,
.cid-vvhyouUMX9 .item-img {
  width: 100%;
}
.cid-vvhyouUMX9 .item:focus,
.cid-vvhyouUMX9 span:focus {
  outline: none;
}
.cid-vvhyouUMX9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vvhyouUMX9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vvhyouUMX9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vvhyouUMX9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vvhyouUMX9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vvhyouUMX9 .mbr-section-title {
  color: #091f40;
}
.cid-vvhyouUMX9 .mbr-text,
.cid-vvhyouUMX9 .mbr-section-btn {
  text-align: center;
}
.cid-vvhyouUMX9 .item-title {
  text-align: center;
  color: #091f40;
}
.cid-vvhyouUMX9 .item-subtitle {
  text-align: center;
}
.cid-vvhBi35KnG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vvhBi35KnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vvhBi35KnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vvhBi35KnG .mbr-section-title {
  color: #091f40;
}
.cid-vvhBi35KnG .mbr-section-subtitle {
  color: #232323;
}
.cid-vvhBrhrEzt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vvhBrhrEzt img,
.cid-vvhBrhrEzt .item-img {
  width: 100%;
}
.cid-vvhBrhrEzt .item:focus,
.cid-vvhBrhrEzt span:focus {
  outline: none;
}
.cid-vvhBrhrEzt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vvhBrhrEzt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vvhBrhrEzt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vvhBrhrEzt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vvhBrhrEzt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vvhBrhrEzt .mbr-section-title {
  color: #091f40;
}
.cid-vvhBrhrEzt .mbr-text,
.cid-vvhBrhrEzt .mbr-section-btn {
  text-align: center;
}
.cid-vvhBrhrEzt .item-title {
  text-align: center;
  color: #091f40;
}
.cid-vvhBrhrEzt .item-subtitle {
  text-align: center;
}
.cid-vtUF5cKUkR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vtUF5cKUkR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtUF5cKUkR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtUF5cKUkR .mbr-section-title {
  color: #0b44ab;
}
.cid-vtUF2JwSm7 {
  background-image: url("../../../assets/images/chatgpt-image-aug-31-2026-03-02-25-pm-1536x1024.png");
}
.cid-vtUF2JwSm7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtUF2JwSm7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtUF2JwSm7 .mbr-section-title {
  color: #dd1515;
}
.cid-vtUF2JwSm7 .mbr-text,
.cid-vtUF2JwSm7 .mbr-section-btn {
  color: #fafafa;
}
.cid-vtUF2JwSm7 .mbr-section-subtitle {
  color: #40b0bf;
}
.cid-vtUF8v8jD3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vtUF8v8jD3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtUF8v8jD3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtUF8v8jD3 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vtUF8v8jD3 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vtUF8v8jD3 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vtUF8v8jD3 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vtUF8v8jD3 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vtUF8v8jD3 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vtUF8v8jD3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vtUF8v8jD3 .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vtUF8v8jD3 .mbr-text,
.cid-vtUF8v8jD3 .mbr-section-btn {
  text-align: left;
}
.cid-vtUFboWFP2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vtUFboWFP2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtUFboWFP2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtUFboWFP2 .mbr-section-title {
  color: #e61313;
}
.cid-vtUFjlRYVu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vtUFjlRYVu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtUFjlRYVu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vtUFjlRYVu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vtUFjlRYVu .row {
  flex-direction: row-reverse;
}
.cid-vtUFjlRYVu img {
  width: 100%;
}
.cid-vtUFkJ7AKc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vtUFkJ7AKc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtUFkJ7AKc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtUFkJ7AKc .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vtUFkJ7AKc .mbr-section-subtitle {
  text-align: center;
}
.cid-vtUFkJ7AKc .mbr-section-title {
  color: #5a57a0;
}
.cid-vtUFmGowGH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vtUFmGowGH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtUFmGowGH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vtUFmGowGH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vtUFmGowGH .row {
  flex-direction: row-reverse;
}
.cid-vtUFmGowGH img {
  width: 100%;
}
.cid-vtUFo9bZYr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vtUFo9bZYr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtUFo9bZYr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtUFo9bZYr .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vtUFo9bZYr .mbr-section-subtitle {
  text-align: center;
}
.cid-vtUFo9bZYr .mbr-section-title {
  color: #5a57a0;
}
.cid-vtUFpXgMMd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vtUFpXgMMd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtUFpXgMMd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vtUFpXgMMd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vtUFpXgMMd .row {
  flex-direction: row-reverse;
}
.cid-vtUFpXgMMd img {
  width: 100%;
}
.cid-vtUFr3jUXA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vtUFr3jUXA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtUFr3jUXA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtUFr3jUXA .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vtUFr3jUXA .mbr-section-subtitle {
  text-align: center;
}
.cid-vtUFr3jUXA .mbr-section-title {
  color: #5a57a0;
}
.cid-vsNDnKzA3e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsNDnKzA3e .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNDnKzA3e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNDnKzA3e .mbr-section-title {
  color: #0b44ab;
}
.cid-vsNDoYbcJi {
  background-image: url("../../../assets/images/chatgpt-image-aug-19-2026-07-18-47-pm-4-1254x1254.png");
}
.cid-vsNDoYbcJi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNDoYbcJi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNDoYbcJi .mbr-section-title {
  color: #dd1515;
}
.cid-vsNDoYbcJi .mbr-text,
.cid-vsNDoYbcJi .mbr-section-btn {
  color: #fafafa;
}
.cid-vsNDoYbcJi .mbr-section-subtitle {
  color: #40b0bf;
}
.cid-vsNDsGRyii {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsNDsGRyii .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNDsGRyii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNDsGRyii .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vsNDsGRyii .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vsNDsGRyii .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vsNDsGRyii .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vsNDsGRyii .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vsNDsGRyii .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vsNDsGRyii .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vsNDsGRyii .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vsNDsGRyii .mbr-text,
.cid-vsNDsGRyii .mbr-section-btn {
  text-align: left;
}
.cid-vsTKCiaUvW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTKCiaUvW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTKCiaUvW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTKCiaUvW .mbr-section-title {
  color: #e61313;
}
.cid-vsTKEkAHIK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsTKEkAHIK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTKEkAHIK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsTKEkAHIK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsTKEkAHIK .row {
  flex-direction: row-reverse;
}
.cid-vsTKEkAHIK img {
  width: 100%;
}
.cid-vsTKFyTZkx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTKFyTZkx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTKFyTZkx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTKFyTZkx .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsTKFyTZkx .mbr-section-subtitle {
  text-align: center;
}
.cid-vsTKFyTZkx .mbr-section-title {
  color: #5a57a0;
}
.cid-vsTKGEIVC2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsTKGEIVC2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTKGEIVC2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsTKGEIVC2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsTKGEIVC2 .row {
  flex-direction: row-reverse;
}
.cid-vsTKGEIVC2 img {
  width: 100%;
}
.cid-vsTKHVPRLq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTKHVPRLq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTKHVPRLq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTKHVPRLq .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsTKHVPRLq .mbr-section-subtitle {
  text-align: center;
}
.cid-vsTKHVPRLq .mbr-section-title {
  color: #5a57a0;
}
.cid-vsTKJoSNEd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsTKJoSNEd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTKJoSNEd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsTKJoSNEd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsTKJoSNEd .row {
  flex-direction: row-reverse;
}
.cid-vsTKJoSNEd img {
  width: 100%;
}
.cid-vsTKKi9Ggx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTKKi9Ggx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTKKi9Ggx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTKKi9Ggx .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsTKKi9Ggx .mbr-section-subtitle {
  text-align: center;
}
.cid-vsTKKi9Ggx .mbr-section-title {
  color: #5a57a0;
}
.cid-vsTKLPvyyn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsTKLPvyyn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTKLPvyyn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsTKLPvyyn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsTKLPvyyn .row {
  flex-direction: row-reverse;
}
.cid-vsTKLPvyyn img {
  width: 100%;
}
.cid-vsTKMN4hih {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsTKMN4hih .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsTKMN4hih .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsTKMN4hih .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsTKMN4hih .mbr-section-subtitle {
  text-align: center;
}
.cid-vsTKMN4hih .mbr-section-title {
  color: #5a57a0;
}
.cid-vsNDyWcnyc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsNDyWcnyc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNDyWcnyc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNDyWcnyc .mbr-section-title {
  color: #0b44ab;
}
.cid-vsNDDac0WO {
  background-image: url("../../../assets/images/chatgpt-image-aug-19-2026-07-17-13-pm-4-1448x1086.png");
}
.cid-vsNDDac0WO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNDDac0WO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNDDac0WO .mbr-section-title {
  color: #dd1515;
}
.cid-vsNDDac0WO .mbr-text,
.cid-vsNDDac0WO .mbr-section-btn {
  color: #fafafa;
}
.cid-vsNDDac0WO .mbr-section-subtitle {
  color: #40b0bf;
}
.cid-vsNDqgEMhH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsNDqgEMhH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNDqgEMhH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNDqgEMhH .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vsNDqgEMhH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vsNDqgEMhH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vsNDqgEMhH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vsNDqgEMhH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vsNDqgEMhH .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vsNDqgEMhH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vsNDqgEMhH .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vsNDqgEMhH .mbr-text,
.cid-vsNDqgEMhH .mbr-section-btn {
  text-align: left;
}
.cid-vsUnyP55R6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsUnyP55R6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUnyP55R6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsUnyP55R6 .mbr-section-title {
  color: #e61313;
}
.cid-vsUnAxwWcy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsUnAxwWcy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUnAxwWcy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsUnAxwWcy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsUnAxwWcy .row {
  flex-direction: row-reverse;
}
.cid-vsUnAxwWcy img {
  width: 100%;
}
.cid-vsUnCQjTKE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsUnCQjTKE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUnCQjTKE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsUnCQjTKE .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsUnCQjTKE .mbr-section-subtitle {
  text-align: center;
}
.cid-vsUnCQjTKE .mbr-section-title {
  color: #5a57a0;
}
.cid-vsUnGq1Y6J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsUnGq1Y6J .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUnGq1Y6J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsUnGq1Y6J .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsUnGq1Y6J .row {
  flex-direction: row-reverse;
}
.cid-vsUnGq1Y6J img {
  width: 100%;
}
.cid-vsUnKnfLVx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsUnKnfLVx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUnKnfLVx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsUnKnfLVx .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsUnKnfLVx .mbr-section-subtitle {
  text-align: center;
}
.cid-vsUnKnfLVx .mbr-section-title {
  color: #5a57a0;
}
.cid-vsUnQmaUt3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsUnQmaUt3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUnQmaUt3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsUnQmaUt3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsUnQmaUt3 .row {
  flex-direction: row-reverse;
}
.cid-vsUnQmaUt3 img {
  width: 100%;
}
.cid-vsUnSQlAZr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsUnSQlAZr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUnSQlAZr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsUnSQlAZr .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsUnSQlAZr .mbr-section-subtitle {
  text-align: center;
}
.cid-vsUnSQlAZr .mbr-section-title {
  color: #5a57a0;
}
.cid-vsUnUgzuDr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsUnUgzuDr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUnUgzuDr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsUnUgzuDr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsUnUgzuDr .row {
  flex-direction: row-reverse;
}
.cid-vsUnUgzuDr img {
  width: 100%;
}
.cid-vsUnVrmpWZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsUnVrmpWZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUnVrmpWZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsUnVrmpWZ .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsUnVrmpWZ .mbr-section-subtitle {
  text-align: center;
}
.cid-vsUnVrmpWZ .mbr-section-title {
  color: #5a57a0;
}
.cid-vsUonBoA1M {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsUonBoA1M .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUonBoA1M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsUonBoA1M .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsUonBoA1M .row {
  flex-direction: row-reverse;
}
.cid-vsUonBoA1M img {
  width: 100%;
}
.cid-vsUorwJukv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsUorwJukv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUorwJukv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsUorwJukv .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsUorwJukv .mbr-section-subtitle {
  text-align: center;
}
.cid-vsUorwJukv .mbr-section-title {
  color: #5a57a0;
}
.cid-vsNFyVNw7S {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsNFyVNw7S .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNFyVNw7S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNFyVNw7S .mbr-section-title {
  color: #0b44ab;
}
.cid-vsNFBiJUHs {
  background-image: url("../../../assets/images/chatgpt-image-aug-19-2026-07-17-50-pm-2-1448x1086.png");
}
.cid-vsNFBiJUHs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNFBiJUHs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNFBiJUHs .mbr-section-title {
  color: #dd1515;
}
.cid-vsNFBiJUHs .mbr-text,
.cid-vsNFBiJUHs .mbr-section-btn {
  color: #fafafa;
}
.cid-vsNFBiJUHs .mbr-section-subtitle {
  color: #40b0bf;
}
.cid-vsNFCQb0JR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsNFCQb0JR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsNFCQb0JR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsNFCQb0JR .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vsNFCQb0JR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vsNFCQb0JR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vsNFCQb0JR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vsNFCQb0JR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vsNFCQb0JR .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vsNFCQb0JR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vsNFCQb0JR .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vsNFCQb0JR .mbr-text,
.cid-vsNFCQb0JR .mbr-section-btn {
  text-align: left;
}
.cid-vsUnYZD2gO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsUnYZD2gO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUnYZD2gO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsUnYZD2gO .mbr-section-title {
  color: #e61313;
}
.cid-vsUo0943jU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsUo0943jU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUo0943jU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsUo0943jU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsUo0943jU .row {
  flex-direction: row-reverse;
}
.cid-vsUo0943jU img {
  width: 100%;
}
.cid-vsUo1JhhSZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsUo1JhhSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUo1JhhSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsUo1JhhSZ .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsUo1JhhSZ .mbr-section-subtitle {
  text-align: center;
}
.cid-vsUo1JhhSZ .mbr-section-title {
  color: #5a57a0;
}
.cid-vsUo3axV0W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsUo3axV0W .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUo3axV0W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsUo3axV0W .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsUo3axV0W .row {
  flex-direction: row-reverse;
}
.cid-vsUo3axV0W img {
  width: 100%;
}
.cid-vsUo4oXiil {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsUo4oXiil .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUo4oXiil .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsUo4oXiil .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsUo4oXiil .mbr-section-subtitle {
  text-align: center;
}
.cid-vsUo4oXiil .mbr-section-title {
  color: #5a57a0;
}
.cid-vsUo5RKtWE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vsUo5RKtWE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUo5RKtWE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vsUo5RKtWE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsUo5RKtWE .row {
  flex-direction: row-reverse;
}
.cid-vsUo5RKtWE img {
  width: 100%;
}
.cid-vsUo704KAG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vsUo704KAG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vsUo704KAG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vsUo704KAG .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vsUo704KAG .mbr-section-subtitle {
  text-align: center;
}
.cid-vsUo704KAG .mbr-section-title {
  color: #5a57a0;
}
.cid-vqHGpkqIdA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vqHGpkqIdA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqHGpkqIdA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqHGpkqIdA .mbr-section-title {
  color: #0b44ab;
}
.cid-vqIu9wzArf {
  background-image: url("../../../assets/images/chatgpt-image-jul-28-2026-02-55-15-pm-1254x1254.png");
}
.cid-vqIu9wzArf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqIu9wzArf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqIu9wzArf .mbr-section-title {
  color: #dd1515;
}
.cid-vqIu9wzArf .mbr-text,
.cid-vqIu9wzArf .mbr-section-btn {
  color: #fafafa;
}
.cid-vqIu9wzArf .mbr-section-subtitle {
  color: #40b0bf;
}
.cid-vqHGtai3gD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vqHGtai3gD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqHGtai3gD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqHGtai3gD .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vqHGtai3gD .mbr-section-subtitle {
  text-align: center;
}
.cid-vqHGtai3gD .mbr-section-title {
  color: #5a57a0;
}
.cid-vqHH9n5hw9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vqHH9n5hw9 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vqHH9n5hw9 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vqHH9n5hw9 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vqHH9n5hw9 .mbr-section-title {
  color: #e85a4f;
}
.cid-vqHH9n5hw9 .mbr-text,
.cid-vqHH9n5hw9 .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-vqHHehwiuQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vqHHehwiuQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqHHehwiuQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqHHehwiuQ .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vqHHehwiuQ .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vqHHehwiuQ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vqHHehwiuQ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vqHHehwiuQ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqHHehwiuQ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vqHHehwiuQ .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vqHHehwiuQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vqHHehwiuQ .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vqHHehwiuQ .mbr-text,
.cid-vqHHehwiuQ .mbr-section-btn {
  text-align: center;
}
.cid-vqHHj3wp3M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vqHHj3wp3M .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqHHj3wp3M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqHHj3wp3M .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vqHHj3wp3M .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vqHHj3wp3M .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vqHHj3wp3M .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vqHHj3wp3M .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqHHj3wp3M .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vqHHj3wp3M .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vqHHj3wp3M .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vqHHj3wp3M .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-vqHHj3wp3M .mbr-text,
.cid-vqHHj3wp3M .mbr-section-btn {
  text-align: center;
}
.cid-vr6jEHiPDh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vr6jEHiPDh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6jEHiPDh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vr6jEHiPDh .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vr6jEHiPDh .mbr-section-subtitle {
  text-align: center;
}
.cid-vr6jEHiPDh .mbr-section-title {
  color: #5a57a0;
}
.cid-vqHGKJacKm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vqHGKJacKm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqHGKJacKm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vqHGKJacKm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vqHGKJacKm .row {
  flex-direction: row-reverse;
}
.cid-vqHGKJacKm img {
  width: 100%;
}
.cid-vr6kmjBhS8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vr6kmjBhS8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6kmjBhS8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vr6kmjBhS8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vr6kmjBhS8 .row {
  flex-direction: row-reverse;
}
.cid-vr6kmjBhS8 img {
  width: 100%;
}
.cid-vr6l6TQIhA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vr6l6TQIhA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6l6TQIhA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vr6l6TQIhA .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vr6l6TQIhA .mbr-section-subtitle {
  text-align: center;
}
.cid-vr6l6TQIhA .mbr-section-title {
  color: #5a57a0;
}
.cid-vr6laBTpNR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vr6laBTpNR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6laBTpNR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vr6laBTpNR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vr6laBTpNR .row {
  flex-direction: row-reverse;
}
.cid-vr6laBTpNR img {
  width: 100%;
}
.cid-vr6ls02wuE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vr6ls02wuE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6ls02wuE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vr6ls02wuE .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vr6ls02wuE .mbr-section-subtitle {
  text-align: center;
}
.cid-vr6ls02wuE .mbr-section-title {
  color: #5a57a0;
}
.cid-vr6lvult31 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vr6lvult31 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6lvult31 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vr6lvult31 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vr6lvult31 .row {
  flex-direction: row-reverse;
}
.cid-vr6lvult31 img {
  width: 100%;
}
.cid-vu3qGH3WGw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vu3qGH3WGw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vu3qGH3WGw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vu3qGH3WGw .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vu3qGH3WGw .mbr-section-subtitle {
  text-align: center;
}
.cid-vu3qGH3WGw .mbr-section-title {
  color: #5a57a0;
}
.cid-vr6lCr8qzZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vr6lCr8qzZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6lCr8qzZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vr6lCr8qzZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vr6lCr8qzZ .row {
  flex-direction: row-reverse;
}
.cid-vr6lCr8qzZ img {
  width: 100%;
}
.cid-vr6lEOmZVx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vr6lEOmZVx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vr6lEOmZVx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vr6lEOmZVx .mbr-section-title {
  text-align: left;
  color: #081da0;
}
.cid-vr6lEOmZVx .mbr-section-subtitle {
  text-align: center;
  color: #232323;
}
.cid-vrkrdcqVts {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vrkrdcqVts .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrkrdcqVts .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrkrdcqVts .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrkrdcqVts .row {
  flex-direction: row-reverse;
}
.cid-vrkrdcqVts img {
  width: 100%;
}
.cid-vu3qJBynpm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vu3qJBynpm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vu3qJBynpm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vu3qJBynpm .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vu3qJBynpm .mbr-section-subtitle {
  text-align: center;
}
.cid-vu3qJBynpm .mbr-section-title {
  color: #5a57a0;
}
.cid-vrkrfNNPCA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vrkrfNNPCA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrkrfNNPCA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrkrfNNPCA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrkrfNNPCA .row {
  flex-direction: row-reverse;
}
.cid-vrkrfNNPCA img {
  width: 100%;
}
.cid-vrkrhOkiOv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vrkrhOkiOv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrkrhOkiOv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrkrhOkiOv .mbr-section-title {
  text-align: left;
  color: #081da0;
}
.cid-vrkrhOkiOv .mbr-section-subtitle {
  text-align: center;
  color: #232323;
}
.cid-vviWvFbwjR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vviWvFbwjR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vviWvFbwjR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vviWvFbwjR .mbr-section-title {
  color: #091f40;
}
.cid-vviWvFbwjR .mbr-section-subtitle {
  color: #232323;
}
.cid-vviWzysarg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vviWzysarg img,
.cid-vviWzysarg .item-img {
  width: 100%;
}
.cid-vviWzysarg .item:focus,
.cid-vviWzysarg span:focus {
  outline: none;
}
.cid-vviWzysarg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vviWzysarg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vviWzysarg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vviWzysarg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vviWzysarg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vviWzysarg .mbr-section-title {
  color: #091f40;
}
.cid-vviWzysarg .mbr-text,
.cid-vviWzysarg .mbr-section-btn {
  text-align: center;
}
.cid-vviWzysarg .item-title {
  text-align: center;
  color: #091f40;
}
.cid-vviWzysarg .item-subtitle {
  text-align: center;
}
.cid-vviWBLxHeG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vviWBLxHeG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vviWBLxHeG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vviWBLxHeG .mbr-section-title {
  color: #091f40;
}
.cid-vviWBLxHeG .mbr-section-subtitle {
  color: #232323;
}
.cid-vviWEwvdlG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vviWEwvdlG img,
.cid-vviWEwvdlG .item-img {
  width: 100%;
}
.cid-vviWEwvdlG .item:focus,
.cid-vviWEwvdlG span:focus {
  outline: none;
}
.cid-vviWEwvdlG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vviWEwvdlG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vviWEwvdlG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vviWEwvdlG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vviWEwvdlG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vviWEwvdlG .mbr-section-title {
  color: #091f40;
}
.cid-vviWEwvdlG .mbr-text,
.cid-vviWEwvdlG .mbr-section-btn {
  text-align: center;
}
.cid-vviWEwvdlG .item-title {
  text-align: center;
  color: #091f40;
}
.cid-vviWEwvdlG .item-subtitle {
  text-align: center;
}
.cid-vviZKRRZFk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vviZKRRZFk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vviZKRRZFk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vviZKRRZFk .mbr-section-title {
  color: #091f40;
}
.cid-vviZKRRZFk .mbr-section-subtitle {
  color: #232323;
}
.cid-vviZMMhJoL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vviZMMhJoL img,
.cid-vviZMMhJoL .item-img {
  width: 100%;
}
.cid-vviZMMhJoL .item:focus,
.cid-vviZMMhJoL span:focus {
  outline: none;
}
.cid-vviZMMhJoL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vviZMMhJoL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vviZMMhJoL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vviZMMhJoL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vviZMMhJoL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vviZMMhJoL .mbr-section-title {
  color: #091f40;
}
.cid-vviZMMhJoL .mbr-text,
.cid-vviZMMhJoL .mbr-section-btn {
  text-align: center;
}
.cid-vviZMMhJoL .item-title {
  text-align: center;
  color: #091f40;
}
.cid-vviZMMhJoL .item-subtitle {
  text-align: center;
}
.cid-vvjqT2edO1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vvjqT2edO1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vvjqT2edO1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vvjqT2edO1 .mbr-section-title {
  color: #091f40;
}
.cid-vvjr5SDG5y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vvjr5SDG5y .mbr-fallback-image.disabled {
  display: none;
}
.cid-vvjr5SDG5y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vvjr5SDG5y .mbr-section-title {
  text-align: left;
  color: #081da0;
}
.cid-vvjr5SDG5y .mbr-section-subtitle {
  text-align: center;
  color: #232323;
}
.cid-vvjqqNbwEn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vvjqqNbwEn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vvjqqNbwEn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vvjqqNbwEn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vvjqqNbwEn .row {
  flex-direction: row-reverse;
}
.cid-vvjqqNbwEn img {
  width: 100%;
}
.cid-vvjrec0ZfJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vvjrec0ZfJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vvjrec0ZfJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vvjrec0ZfJ .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vvjrec0ZfJ .mbr-section-subtitle {
  text-align: center;
}
.cid-vvjrec0ZfJ .mbr-section-title {
  color: #5a57a0;
}
.cid-vvjriAuJaT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vvjriAuJaT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vvjriAuJaT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vvjriAuJaT .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vvjriAuJaT .mbr-section-subtitle {
  text-align: center;
}
.cid-vvjriAuJaT .mbr-section-title {
  color: #5a57a0;
}
.cid-vvjrpkphj8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vvjrpkphj8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vvjrpkphj8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vvjrpkphj8 .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vvjrpkphj8 .mbr-section-subtitle {
  text-align: center;
}
.cid-vvjrpkphj8 .mbr-section-title {
  color: #5a57a0;
}
.cid-vvjrrlRgPQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vvjrrlRgPQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vvjrrlRgPQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vvjrrlRgPQ .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vvjrrlRgPQ .mbr-section-subtitle {
  text-align: center;
}
.cid-vvjrrlRgPQ .mbr-section-title {
  color: #5a57a0;
}
.cid-vu3qOdgybk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vu3qOdgybk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vu3qOdgybk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vu3qOdgybk .mbr-section-title {
  color: #0b44ab;
}
.cid-vu3qPSSOtG {
  background-image: url("../../../assets/images/chatgpt-image-sep-2-2026-02-48-13-am-1448x1086.png");
}
.cid-vu3qPSSOtG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vu3qPSSOtG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vu3qPSSOtG .mbr-section-title {
  color: #dd1515;
}
.cid-vu3qPSSOtG .mbr-text,
.cid-vu3qPSSOtG .mbr-section-btn {
  color: #fafafa;
}
.cid-vu3qPSSOtG .mbr-section-subtitle {
  color: #40b0bf;
}
.cid-vu3r0ZxYeH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vu3r0ZxYeH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vu3r0ZxYeH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vu3r0ZxYeH .mbr-section-title {
  color: #e61313;
}
.cid-vu3r3IF3xj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vu3r3IF3xj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vu3r3IF3xj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vu3r3IF3xj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vu3r3IF3xj .row {
  flex-direction: row-reverse;
}
.cid-vu3r3IF3xj img {
  width: 100%;
}
.cid-vu3r6lA0jQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vu3r6lA0jQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vu3r6lA0jQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vu3r6lA0jQ .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vu3r6lA0jQ .mbr-section-subtitle {
  text-align: center;
}
.cid-vu3r6lA0jQ .mbr-section-title {
  color: #5a57a0;
}
.cid-vqx7UQ6AjS {
  background-image: url("../../../assets/images/chatgpt-image-sep-2-2026-04-36-27-am-1254x1254.png");
}
.cid-vqx7UQ6AjS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqx7UQ6AjS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqx7UQ6AjS .mbr-section-title {
  color: #dd1515;
}
.cid-vqx7UQ6AjS .mbr-text,
.cid-vqx7UQ6AjS .mbr-section-btn {
  color: #fafafa;
}
.cid-vqx7UQ6AjS .mbr-section-subtitle {
  color: #40b0bf;
}
.cid-up01nAcD9q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-up01nAcD9q .mbr-fallback-image.disabled {
  display: none;
}
.cid-up01nAcD9q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-up01nAcD9q .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-up01nAcD9q .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-up01nAcD9q .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-up01nAcD9q .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-up01nAcD9q .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-up01nAcD9q .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-up01nAcD9q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-up01nAcD9q .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-up01nAcD9q .mbr-text,
.cid-up01nAcD9q .mbr-section-btn {
  text-align: center;
}
.cid-up01oBgLon {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-up01oBgLon .mbr-fallback-image.disabled {
  display: none;
}
.cid-up01oBgLon .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-up01oBgLon .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-up01oBgLon .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-up01oBgLon .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-up01oBgLon .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-up01oBgLon .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-up01oBgLon .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-up01oBgLon .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-up01oBgLon .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-up01oBgLon .card-title {
  color: #dd1515;
  text-align: center;
}
.cid-up01oBgLon .mbr-text,
.cid-up01oBgLon .mbr-section-btn {
  text-align: center;
}
.cid-vrksj2eJGz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrksj2eJGz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrksj2eJGz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrksj2eJGz .mbr-section-title {
  color: #e61313;
}
.cid-vrksSBeQ1H {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vrksSBeQ1H .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrksSBeQ1H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrksSBeQ1H .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrksSBeQ1H .row {
  flex-direction: row-reverse;
}
.cid-vrksSBeQ1H img {
  width: 100%;
}
.cid-vrksQmJuQY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrksQmJuQY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrksQmJuQY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrksQmJuQY .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vrksQmJuQY .mbr-section-subtitle {
  text-align: center;
}
.cid-vrksQmJuQY .mbr-section-title {
  color: #5a57a0;
}
.cid-vtf3mbThhd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vtf3mbThhd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtf3mbThhd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vtf3mbThhd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vtf3mbThhd .row {
  flex-direction: row-reverse;
}
.cid-vtf3mbThhd img {
  width: 100%;
}
.cid-vtf3nq2u4S {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vtf3nq2u4S .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtf3nq2u4S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vtf3nq2u4S .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vtf3nq2u4S .row {
  flex-direction: row-reverse;
}
.cid-vtf3nq2u4S img {
  width: 100%;
}
.cid-vtf3pWXG7w {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vtf3pWXG7w .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtf3pWXG7w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vtf3pWXG7w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vtf3pWXG7w .row {
  flex-direction: row-reverse;
}
.cid-vtf3pWXG7w img {
  width: 100%;
}
.cid-vu3OGRqsc2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vu3OGRqsc2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vu3OGRqsc2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vu3OGRqsc2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vu3OGRqsc2 .row {
  flex-direction: row-reverse;
}
.cid-vu3OGRqsc2 img {
  width: 100%;
}
.cid-vqxRUSPei5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vqxRUSPei5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqxRUSPei5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vqxRUSPei5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vqxRUSPei5 .row {
  flex-direction: row-reverse;
}
.cid-vqxRUSPei5 img {
  width: 100%;
}
.cid-vqxS3gs52V {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #fafafa;
}
.cid-vqxS3gs52V .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqxS3gs52V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqxS3gs52V .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-vqxS3gs52V .plan-body {
  padding-bottom: 2rem;
}
.cid-vqxS3gs52V .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vqxS3gs52V .price {
  color: #ffe161;
  text-align: center;
}
.cid-vqxS3gs52V .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-vqxS3gs52V .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-vqxS3gs52V .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-vqxS3gs52V .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-vqxS3gs52V .plan {
    margin-bottom: 2rem;
  }
}
.cid-vqxS3gs52V UL {
  text-align: left;
}
.cid-vqxS3gs52V .plan-title {
  color: #e43f3f;
  text-align: center;
}
.cid-vqxS3gs52V DIV {
  text-align: left;
}
.cid-vqxS3gs52V .price-term {
  text-align: center;
}
.cid-v7LRV9kqHh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-v7LRV9kqHh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7LRV9kqHh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7LRV9kqHh .mbr-section-title {
  color: #4ef75f;
}
.cid-v7LRV9kqHh .mbr-section-subtitle {
  color: #dd1515;
}
.cid-uDkTNYsKdH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uDkTNYsKdH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkTNYsKdH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDkTNYsKdH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uDkTNYsKdH .row {
  flex-direction: row-reverse;
}
.cid-uDkTNYsKdH img {
  width: 100%;
}
.cid-v7LRBYTjxX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-v7LRBYTjxX .mbr-text,
.cid-v7LRBYTjxX .mbr-section-btn {
  color: #232323;
}
.cid-v7LRBYTjxX .card-title,
.cid-v7LRBYTjxX .card-box {
  color: #ffffff;
}
.cid-v7LRBYTjxX .mbr-text,
.cid-v7LRBYTjxX .link-wrap {
  color: #ffffff;
}
.cid-uDvk56R6VK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uDvk56R6VK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDvk56R6VK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDvk56R6VK .mbr-section-title {
  color: #e43f3f;
}
.cid-uDvk56R6VK .mbr-section-subtitle {
  color: #232323;
}
.cid-uD3iEX2EdH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uD3iEX2EdH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD3iEX2EdH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uD3iEX2EdH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uD3iEX2EdH .row {
  flex-direction: row-reverse;
}
.cid-uD3iEX2EdH img {
  width: 100%;
}
.cid-v7L035yGpx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v7L035yGpx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7L035yGpx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7L035yGpx .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-v7L035yGpx .mbr-section-subtitle {
  text-align: center;
}
.cid-v7L035yGpx .mbr-section-title {
  color: #5a57a0;
}
.cid-vrY03tXiWp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vrY03tXiWp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrY03tXiWp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrY03tXiWp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrY03tXiWp .row {
  flex-direction: row-reverse;
}
.cid-vrY03tXiWp img {
  width: 100%;
}
.cid-vrY05aBwaS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrY05aBwaS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrY05aBwaS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrY05aBwaS .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vrY05aBwaS .mbr-section-subtitle {
  text-align: center;
}
.cid-vrY05aBwaS .mbr-section-title {
  color: #5a57a0;
}
.cid-vu86eD88Pd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vu86eD88Pd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vu86eD88Pd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vu86eD88Pd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vu86eD88Pd .row {
  flex-direction: row-reverse;
}
.cid-vu86eD88Pd img {
  width: 100%;
}
.cid-v7LRxABRbU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-v7LRxABRbU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7LRxABRbU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7LRxABRbU .mbr-section-title {
  color: #4ef75f;
}
.cid-v7LRxABRbU .mbr-section-subtitle {
  color: #dd1515;
}
.cid-vrLO2syS27 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrLO2syS27 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrLO2syS27 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrLO2syS27 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrLO2syS27 .row {
  flex-direction: row-reverse;
}
.cid-vrLO2syS27 img {
  width: 100%;
}
.cid-uD8mt8D2Fh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uD8mt8D2Fh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD8mt8D2Fh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD8mt8D2Fh .mbr-section-title {
  color: #e43f3f;
}
.cid-uD8mt8D2Fh .mbr-section-subtitle {
  color: #232323;
}
.cid-vrG6QlJRwd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrG6QlJRwd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrG6QlJRwd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrG6QlJRwd .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vrG6QlJRwd .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vrG6QlJRwd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vrG6QlJRwd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vrG6QlJRwd .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vrG6QlJRwd .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vrG6QlJRwd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vrG6QlJRwd .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vrG6QlJRwd .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vrG6QlJRwd .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vrG6QlJRwd .mbr-text,
.cid-vrG6QlJRwd .social-row {
  color: #232323;
}
.cid-vrG6QlJRwd .card-title {
  color: #232323;
}
.cid-vrG6QlJRwd .card-subtitle {
  color: #dd1515;
}
.cid-vrG6JoORU6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrG6JoORU6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrG6JoORU6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrG6JoORU6 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vrG6JoORU6 .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vrG6JoORU6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vrG6JoORU6 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vrG6JoORU6 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vrG6JoORU6 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vrG6JoORU6 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vrG6JoORU6 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vrG6JoORU6 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vrG6JoORU6 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vrG6JoORU6 .mbr-text,
.cid-vrG6JoORU6 .social-row {
  color: #232323;
}
.cid-vrG6JoORU6 .card-title {
  color: #232323;
}
.cid-vrG6JoORU6 .card-subtitle {
  color: #dd1515;
}
.cid-vrG6MJ6e9k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrG6MJ6e9k .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrG6MJ6e9k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrG6MJ6e9k .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vrG6MJ6e9k .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vrG6MJ6e9k .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vrG6MJ6e9k .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vrG6MJ6e9k .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vrG6MJ6e9k .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vrG6MJ6e9k .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vrG6MJ6e9k .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vrG6MJ6e9k .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vrG6MJ6e9k .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vrG6MJ6e9k .mbr-text,
.cid-vrG6MJ6e9k .social-row {
  color: #232323;
}
.cid-vrG6MJ6e9k .card-title {
  color: #232323;
}
.cid-vrG6MJ6e9k .card-subtitle {
  color: #dd1515;
}
.cid-vrG6G0ksOz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrG6G0ksOz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrG6G0ksOz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrG6G0ksOz .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vrG6G0ksOz .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vrG6G0ksOz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vrG6G0ksOz .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vrG6G0ksOz .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vrG6G0ksOz .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vrG6G0ksOz .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vrG6G0ksOz .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vrG6G0ksOz .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vrG6G0ksOz .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vrG6G0ksOz .mbr-text,
.cid-vrG6G0ksOz .social-row {
  color: #232323;
}
.cid-vrG6G0ksOz .card-title {
  color: #232323;
}
.cid-vrG6G0ksOz .card-subtitle {
  color: #dd1515;
}
.cid-uD8lvvyaEw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uD8lvvyaEw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD8lvvyaEw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD8lvvyaEw .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uD8lvvyaEw .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-uD8lvvyaEw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uD8lvvyaEw .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uD8lvvyaEw .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uD8lvvyaEw .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uD8lvvyaEw .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uD8lvvyaEw .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uD8lvvyaEw .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uD8lvvyaEw .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uD8lvvyaEw .mbr-text,
.cid-uD8lvvyaEw .social-row {
  color: #232323;
}
.cid-uD8lvvyaEw .card-title {
  color: #232323;
}
.cid-uD8lvvyaEw .card-subtitle {
  color: #dd1515;
}
.cid-uEnErrRnvZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uEnErrRnvZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEnErrRnvZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEnErrRnvZ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uEnErrRnvZ .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-uEnErrRnvZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uEnErrRnvZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uEnErrRnvZ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uEnErrRnvZ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uEnErrRnvZ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uEnErrRnvZ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uEnErrRnvZ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uEnErrRnvZ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uEnErrRnvZ .mbr-text,
.cid-uEnErrRnvZ .social-row {
  color: #232323;
}
.cid-uEnErrRnvZ .card-title {
  color: #232323;
}
.cid-uEnErrRnvZ .card-subtitle {
  color: #dd1515;
}
.cid-vrG6w48x8m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrG6w48x8m .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrG6w48x8m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrG6w48x8m .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vrG6w48x8m .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vrG6w48x8m .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vrG6w48x8m .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vrG6w48x8m .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vrG6w48x8m .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vrG6w48x8m .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vrG6w48x8m .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vrG6w48x8m .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vrG6w48x8m .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vrG6w48x8m .mbr-text,
.cid-vrG6w48x8m .social-row {
  color: #232323;
}
.cid-vrG6w48x8m .card-title {
  color: #232323;
}
.cid-vrG6w48x8m .card-subtitle {
  color: #dd1515;
}
.cid-vrG6zpaCpm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrG6zpaCpm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrG6zpaCpm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrG6zpaCpm .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vrG6zpaCpm .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vrG6zpaCpm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vrG6zpaCpm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vrG6zpaCpm .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vrG6zpaCpm .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vrG6zpaCpm .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vrG6zpaCpm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vrG6zpaCpm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vrG6zpaCpm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vrG6zpaCpm .mbr-text,
.cid-vrG6zpaCpm .social-row {
  color: #232323;
}
.cid-vrG6zpaCpm .card-title {
  color: #232323;
}
.cid-vrG6zpaCpm .card-subtitle {
  color: #dd1515;
}
.cid-vteyHDyrKV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vteyHDyrKV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vteyHDyrKV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vteyHDyrKV .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vteyHDyrKV .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vteyHDyrKV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vteyHDyrKV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vteyHDyrKV .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vteyHDyrKV .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vteyHDyrKV .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vteyHDyrKV .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vteyHDyrKV .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vteyHDyrKV .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vteyHDyrKV .mbr-text,
.cid-vteyHDyrKV .social-row {
  color: #232323;
}
.cid-vteyHDyrKV .card-title {
  color: #232323;
}
.cid-vteyHDyrKV .card-subtitle {
  color: #dd1515;
}
.cid-vteyJhEai5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vteyJhEai5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vteyJhEai5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vteyJhEai5 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vteyJhEai5 .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vteyJhEai5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vteyJhEai5 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vteyJhEai5 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vteyJhEai5 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vteyJhEai5 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vteyJhEai5 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vteyJhEai5 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vteyJhEai5 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vteyJhEai5 .mbr-text,
.cid-vteyJhEai5 .social-row {
  color: #232323;
}
.cid-vteyJhEai5 .card-title {
  color: #232323;
}
.cid-vteyJhEai5 .card-subtitle {
  color: #dd1515;
}
.cid-vteyMDRkW1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vteyMDRkW1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vteyMDRkW1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vteyMDRkW1 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vteyMDRkW1 .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vteyMDRkW1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vteyMDRkW1 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vteyMDRkW1 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vteyMDRkW1 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vteyMDRkW1 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vteyMDRkW1 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vteyMDRkW1 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vteyMDRkW1 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vteyMDRkW1 .mbr-text,
.cid-vteyMDRkW1 .social-row {
  color: #232323;
}
.cid-vteyMDRkW1 .card-title {
  color: #232323;
}
.cid-vteyMDRkW1 .card-subtitle {
  color: #dd1515;
}
.cid-vteyQ4oDfm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vteyQ4oDfm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vteyQ4oDfm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vteyQ4oDfm .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vteyQ4oDfm .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vteyQ4oDfm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vteyQ4oDfm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vteyQ4oDfm .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vteyQ4oDfm .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vteyQ4oDfm .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vteyQ4oDfm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vteyQ4oDfm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vteyQ4oDfm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vteyQ4oDfm .mbr-text,
.cid-vteyQ4oDfm .social-row {
  color: #232323;
}
.cid-vteyQ4oDfm .card-title {
  color: #232323;
}
.cid-vteyQ4oDfm .card-subtitle {
  color: #dd1515;
}
.cid-vuqMUKqIZP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vuqMUKqIZP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuqMUKqIZP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuqMUKqIZP .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vuqMUKqIZP .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vuqMUKqIZP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vuqMUKqIZP .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vuqMUKqIZP .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vuqMUKqIZP .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vuqMUKqIZP .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vuqMUKqIZP .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vuqMUKqIZP .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vuqMUKqIZP .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vuqMUKqIZP .mbr-text,
.cid-vuqMUKqIZP .social-row {
  color: #232323;
}
.cid-vuqMUKqIZP .card-title {
  color: #232323;
}
.cid-vuqMUKqIZP .card-subtitle {
  color: #dd1515;
}
.cid-vuqMX1fVT4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vuqMX1fVT4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuqMX1fVT4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuqMX1fVT4 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vuqMX1fVT4 .card-wrapper {
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-vuqMX1fVT4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vuqMX1fVT4 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vuqMX1fVT4 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vuqMX1fVT4 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vuqMX1fVT4 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vuqMX1fVT4 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vuqMX1fVT4 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vuqMX1fVT4 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vuqMX1fVT4 .mbr-text,
.cid-vuqMX1fVT4 .social-row {
  color: #232323;
}
.cid-vuqMX1fVT4 .card-title {
  color: #232323;
}
.cid-vuqMX1fVT4 .card-subtitle {
  color: #dd1515;
}
.cid-vrLOaWOf9L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vrLOaWOf9L .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrLOaWOf9L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrLOaWOf9L .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrLOaWOf9L .row {
  flex-direction: row-reverse;
}
.cid-vrLOaWOf9L img {
  width: 100%;
}
.cid-vrLOAJDuaA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-vrLOAJDuaA .mbr-text,
.cid-vrLOAJDuaA .mbr-section-btn {
  color: #232323;
}
.cid-vrLOAJDuaA .card-title,
.cid-vrLOAJDuaA .card-box {
  color: #ffffff;
}
.cid-vrLOAJDuaA .mbr-text,
.cid-vrLOAJDuaA .link-wrap {
  color: #ffffff;
}
.cid-vrLOepy6fs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-vrLOepy6fs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrLOepy6fs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrLOepy6fs .mbr-section-title {
  color: #4ef75f;
}
.cid-vrLOepy6fs .mbr-section-subtitle {
  color: #dd1515;
}
.cid-vrLOguzFJL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrLOguzFJL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrLOguzFJL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrLOguzFJL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrLOguzFJL .row {
  flex-direction: row-reverse;
}
.cid-vrLOguzFJL img {
  width: 100%;
}
.cid-vrY15KwrNO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrY15KwrNO .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-vrY15KwrNO .panel-group {
  border: none;
}
.cid-vrY15KwrNO .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-vrY15KwrNO .panel-body,
.cid-vrY15KwrNO .card-header {
  padding: 1rem 0;
}
.cid-vrY15KwrNO .panel-title-edit {
  color: #000000;
  text-align: left;
}
.cid-vrY15KwrNO .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-vrY15KwrNO H3 {
  color: #e85a4f;
}
.cid-sFF5Wb1ZQt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sFF5Wb1ZQt .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-sFF5Wb1ZQt .panel-group {
  border: none;
}
.cid-sFF5Wb1ZQt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sFF5Wb1ZQt .panel-body,
.cid-sFF5Wb1ZQt .card-header {
  padding: 1rem 0;
}
.cid-sFF5Wb1ZQt .panel-title-edit {
  color: #000000;
  text-align: left;
}
.cid-sFF5Wb1ZQt .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sFF5Wb1ZQt H3 {
  color: #e85a4f;
}
.cid-uDvYUHB3cF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uDvYUHB3cF .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-uDvYUHB3cF .panel-group {
  border: none;
}
.cid-uDvYUHB3cF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uDvYUHB3cF .panel-body,
.cid-uDvYUHB3cF .card-header {
  padding: 1rem 0;
}
.cid-uDvYUHB3cF .panel-title-edit {
  color: #000000;
  text-align: left;
}
.cid-uDvYUHB3cF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uDvYUHB3cF H3 {
  color: #e85a4f;
}
.cid-v8rqP7gWW2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v8rqP7gWW2 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-v8rqP7gWW2 .panel-group {
  border: none;
}
.cid-v8rqP7gWW2 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v8rqP7gWW2 .panel-body,
.cid-v8rqP7gWW2 .card-header {
  padding: 1rem 0;
}
.cid-v8rqP7gWW2 .panel-title-edit {
  color: #000000;
  text-align: left;
}
.cid-v8rqP7gWW2 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v8rqP7gWW2 H3 {
  color: #e85a4f;
}
.cid-sFF75ZhH2d {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-sFF75ZhH2d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sFF75ZhH2d img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFF75ZhH2d .text-wrapper {
    padding: 2rem;
  }
}
.cid-sFF75ZhH2d .mbr-section-title {
  color: #e43f3f;
}
.cid-sFF75ZhH2d .mbr-text {
  color: #232323;
}
.cid-vviPoDqTDP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vviPoDqTDP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vviPoDqTDP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vviPoDqTDP .mbr-section-title {
  color: #091f40;
}
.cid-vviPoDqTDP .mbr-section-subtitle {
  color: #232323;
}
.cid-vviQeGQrA9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vviQeGQrA9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vviQeGQrA9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vviQeGQrA9 .item {
  padding-bottom: 2rem;
}
.cid-vviQeGQrA9 .item-wrapper {
  position: relative;
}
.cid-vviQeGQrA9 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-vviQeGQrA9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vviQeGQrA9 .carousel-control,
.cid-vviQeGQrA9 .close {
  background: #1b1b1b;
}
.cid-vviQeGQrA9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vviQeGQrA9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vviQeGQrA9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vviQeGQrA9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-vviQeGQrA9 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vviQeGQrA9 .close::before {
  content: '\e91a';
}
.cid-vviQeGQrA9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vviQeGQrA9 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vviQeGQrA9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vviQeGQrA9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vviQeGQrA9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vviQeGQrA9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vviQeGQrA9 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vviQeGQrA9 .carousel-indicators li.active,
.cid-vviQeGQrA9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vviQeGQrA9 .carousel-indicators li::after,
.cid-vviQeGQrA9 .carousel-indicators li::before {
  content: none;
}
.cid-vviQeGQrA9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vviQeGQrA9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vviQeGQrA9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vviQeGQrA9 .carousel-indicators {
    display: none;
  }
}
.cid-vviQeGQrA9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vviQeGQrA9 .carousel-inner > .active {
  display: block;
}
.cid-vviQeGQrA9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vviQeGQrA9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vviQeGQrA9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vviQeGQrA9 .carousel-control,
  .cid-vviQeGQrA9 .carousel-indicators,
  .cid-vviQeGQrA9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vviQeGQrA9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vviQeGQrA9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vviQeGQrA9 .carousel-indicators .active,
.cid-vviQeGQrA9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vviQeGQrA9 .carousel-indicators .active {
  background: #fff;
}
.cid-vviQeGQrA9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vviQeGQrA9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vviQeGQrA9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vviQeGQrA9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vviQeGQrA9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vviQeGQrA9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vviQeGQrA9 .carousel {
  width: 100%;
}
.cid-vviQeGQrA9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vviQeGQrA9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vviQeGQrA9 .modal.fade .modal-dialog,
.cid-vviQeGQrA9 .modal.in .modal-dialog {
  transform: none;
}
.cid-vviQeGQrA9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vviQeGQrA9 H6 {
  text-align: center;
}
.cid-vviQeGQrA9 H3 {
  color: #091f40;
}
.cid-vviQiuy1dv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vviQiuy1dv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vviQiuy1dv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vviQiuy1dv .item {
  padding-bottom: 2rem;
}
.cid-vviQiuy1dv .item-wrapper {
  position: relative;
}
.cid-vviQiuy1dv .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-vviQiuy1dv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vviQiuy1dv .carousel-control,
.cid-vviQiuy1dv .close {
  background: #1b1b1b;
}
.cid-vviQiuy1dv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vviQiuy1dv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vviQiuy1dv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vviQiuy1dv .carousel-control-next span {
  margin-left: 5px;
}
.cid-vviQiuy1dv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vviQiuy1dv .close::before {
  content: '\e91a';
}
.cid-vviQiuy1dv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vviQiuy1dv .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vviQiuy1dv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vviQiuy1dv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vviQiuy1dv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vviQiuy1dv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vviQiuy1dv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vviQiuy1dv .carousel-indicators li.active,
.cid-vviQiuy1dv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vviQiuy1dv .carousel-indicators li::after,
.cid-vviQiuy1dv .carousel-indicators li::before {
  content: none;
}
.cid-vviQiuy1dv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vviQiuy1dv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vviQiuy1dv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vviQiuy1dv .carousel-indicators {
    display: none;
  }
}
.cid-vviQiuy1dv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vviQiuy1dv .carousel-inner > .active {
  display: block;
}
.cid-vviQiuy1dv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vviQiuy1dv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vviQiuy1dv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vviQiuy1dv .carousel-control,
  .cid-vviQiuy1dv .carousel-indicators,
  .cid-vviQiuy1dv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vviQiuy1dv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vviQiuy1dv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vviQiuy1dv .carousel-indicators .active,
.cid-vviQiuy1dv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vviQiuy1dv .carousel-indicators .active {
  background: #fff;
}
.cid-vviQiuy1dv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vviQiuy1dv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vviQiuy1dv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vviQiuy1dv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vviQiuy1dv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vviQiuy1dv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vviQiuy1dv .carousel {
  width: 100%;
}
.cid-vviQiuy1dv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vviQiuy1dv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vviQiuy1dv .modal.fade .modal-dialog,
.cid-vviQiuy1dv .modal.in .modal-dialog {
  transform: none;
}
.cid-vviQiuy1dv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vviQiuy1dv H6 {
  text-align: center;
}
.cid-vvj1AkKe6U {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vvj1AkKe6U .mbr-fallback-image.disabled {
  display: none;
}
.cid-vvj1AkKe6U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vvj1AkKe6U .mbr-section-title {
  color: #091f40;
}
.cid-vvj1AkKe6U .mbr-section-subtitle {
  color: #232323;
}
.cid-vvj1CNrHvi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vvj1CNrHvi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vvj1CNrHvi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vvj1CNrHvi .item {
  padding-bottom: 2rem;
}
.cid-vvj1CNrHvi .item-wrapper {
  position: relative;
}
.cid-vvj1CNrHvi .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-vvj1CNrHvi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vvj1CNrHvi .carousel-control,
.cid-vvj1CNrHvi .close {
  background: #1b1b1b;
}
.cid-vvj1CNrHvi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vvj1CNrHvi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vvj1CNrHvi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vvj1CNrHvi .carousel-control-next span {
  margin-left: 5px;
}
.cid-vvj1CNrHvi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vvj1CNrHvi .close::before {
  content: '\e91a';
}
.cid-vvj1CNrHvi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vvj1CNrHvi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vvj1CNrHvi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vvj1CNrHvi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vvj1CNrHvi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vvj1CNrHvi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vvj1CNrHvi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vvj1CNrHvi .carousel-indicators li.active,
.cid-vvj1CNrHvi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vvj1CNrHvi .carousel-indicators li::after,
.cid-vvj1CNrHvi .carousel-indicators li::before {
  content: none;
}
.cid-vvj1CNrHvi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vvj1CNrHvi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vvj1CNrHvi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vvj1CNrHvi .carousel-indicators {
    display: none;
  }
}
.cid-vvj1CNrHvi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vvj1CNrHvi .carousel-inner > .active {
  display: block;
}
.cid-vvj1CNrHvi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vvj1CNrHvi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vvj1CNrHvi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vvj1CNrHvi .carousel-control,
  .cid-vvj1CNrHvi .carousel-indicators,
  .cid-vvj1CNrHvi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vvj1CNrHvi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vvj1CNrHvi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vvj1CNrHvi .carousel-indicators .active,
.cid-vvj1CNrHvi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vvj1CNrHvi .carousel-indicators .active {
  background: #fff;
}
.cid-vvj1CNrHvi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vvj1CNrHvi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vvj1CNrHvi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vvj1CNrHvi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vvj1CNrHvi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vvj1CNrHvi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vvj1CNrHvi .carousel {
  width: 100%;
}
.cid-vvj1CNrHvi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vvj1CNrHvi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vvj1CNrHvi .modal.fade .modal-dialog,
.cid-vvj1CNrHvi .modal.in .modal-dialog {
  transform: none;
}
.cid-vvj1CNrHvi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vvj1CNrHvi H6 {
  text-align: center;
}
.cid-vvj1CNrHvi H3 {
  color: #091f40;
}
.cid-vrLOng8vj1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vrLOng8vj1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrLOng8vj1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrLOng8vj1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrLOng8vj1 .row {
  flex-direction: row-reverse;
}
.cid-vrLOng8vj1 img {
  width: 100%;
}
.cid-vrLOoZkPQS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-vrLOoZkPQS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrLOoZkPQS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrLOoZkPQS .mbr-section-title {
  color: #4ef75f;
}
.cid-vrLOoZkPQS .mbr-section-subtitle {
  color: #dd1515;
}
.cid-vrLOqv1vC3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vrLOqv1vC3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrLOqv1vC3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrLOqv1vC3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrLOqv1vC3 .row {
  flex-direction: row-reverse;
}
.cid-vrLOqv1vC3 img {
  width: 100%;
}
.cid-u02FVmwupi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u02FVmwupi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u02FVmwupi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u02FVmwupi .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u02FVmwupi .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u02FVmwupi .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u02FVmwupi .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u02FVmwupi .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u02FVmwupi .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u02FVmwupi .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u02FVmwupi .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u02FVmwupi .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u02FVmwupi .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u02FVmwupi .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u02FVmwupi .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u02FVmwupi .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u02FVmwupi .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u02FVmwupi [class^="socicon-"]:before,
.cid-u02FVmwupi [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u02FVmwupi .mbr-section-title,
.cid-u02FVmwupi .mbr-social-likes {
  color: #dd1515;
}
.cid-sFF3qL4anb {
  background-color: #ffe161;
}
.cid-sFF3qL4anb .mbr-text,
.cid-sFF3qL4anb .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-sFF3qL4anb .mbr-text,
  .cid-sFF3qL4anb .mbr-section-title {
    text-align: center;
  }
}
.cid-sFF3qL4anb a.btn {
  height: 100%;
  margin: 0;
}
.cid-sFF3qL4anb .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-sFF3qL4anb .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sFF3qL4anb .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sFF3qL4anb .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-sFF3qL4anb .justify-content-center {
  align-items: center;
}
.cid-sFF3qL4anb H1 {
  color: #e43f3f;
  text-align: center;
}
.cid-vrKY7WtuGM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-vrKY7WtuGM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrKY7WtuGM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrKY7WtuGM .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vrKY7WtuGM .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-vrKY7WtuGM .mbr-section-title {
  color: #fafafa;
}
.cid-u0m5PeRW80 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u0m5PeRW80 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u0m5PeRW80 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u0m5PeRW80 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0m5PeRW80 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u0m5PeRW80 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0m5PeRW80 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0m5PeRW80 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u0m5PeRW80 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0m5PeRW80 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0m5PeRW80 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0m5PeRW80 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #fafafa !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFF0ciwnEL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0nUM5Iw2t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0nUM5Iw2t .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0nUM5Iw2t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0m5PeRW80 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u0m5PeRW80 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u0m5PeRW80 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u0m5PeRW80 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0m5PeRW80 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u0m5PeRW80 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0m5PeRW80 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0m5PeRW80 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u0m5PeRW80 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0m5PeRW80 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0m5PeRW80 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0m5PeRW80 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #fafafa !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFF0ciwnEL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vur16baAKm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vur16baAKm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vur16baAKm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vur16baAKm .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-u0m5PeRW80 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u0m5PeRW80 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u0m5PeRW80 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u0m5PeRW80 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0m5PeRW80 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u0m5PeRW80 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0m5PeRW80 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0m5PeRW80 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u0m5PeRW80 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0m5PeRW80 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0m5PeRW80 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0m5PeRW80 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #fafafa !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFF0ciwnEL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0nVpZNS5F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0nVpZNS5F .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0nVpZNS5F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0m5PeRW80 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u0m5PeRW80 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u0m5PeRW80 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u0m5PeRW80 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0m5PeRW80 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0m5PeRW80 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u0m5PeRW80 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0m5PeRW80 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0m5PeRW80 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u0m5PeRW80 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0m5PeRW80 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0m5PeRW80 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0m5PeRW80 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v8rZHfLL9C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v8rZHfLL9C nav.navbar {
  position: fixed;
}
.cid-v8rZHfLL9C .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-v8rZHfLL9C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v8rZHfLL9C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v8rZHfLL9C .dropdown-item:hover,
.cid-v8rZHfLL9C .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-v8rZHfLL9C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v8rZHfLL9C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v8rZHfLL9C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v8rZHfLL9C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v8rZHfLL9C .nav-link {
  position: relative;
}
.cid-v8rZHfLL9C .container {
  display: flex;
  margin: auto;
}
.cid-v8rZHfLL9C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v8rZHfLL9C .dropdown-menu,
.cid-v8rZHfLL9C .navbar.opened {
  background: #fafafa !important;
}
.cid-v8rZHfLL9C .nav-item:focus,
.cid-v8rZHfLL9C .nav-link:focus {
  outline: none;
}
.cid-v8rZHfLL9C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v8rZHfLL9C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8rZHfLL9C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v8rZHfLL9C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8rZHfLL9C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v8rZHfLL9C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v8rZHfLL9C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-v8rZHfLL9C .navbar.opened {
  transition: all 0.3s;
}
.cid-v8rZHfLL9C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v8rZHfLL9C .navbar .navbar-logo img {
  width: auto;
}
.cid-v8rZHfLL9C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v8rZHfLL9C .navbar.collapsed {
  justify-content: center;
}
.cid-v8rZHfLL9C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v8rZHfLL9C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v8rZHfLL9C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v8rZHfLL9C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v8rZHfLL9C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v8rZHfLL9C .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-v8rZHfLL9C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v8rZHfLL9C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v8rZHfLL9C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v8rZHfLL9C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v8rZHfLL9C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v8rZHfLL9C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v8rZHfLL9C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v8rZHfLL9C .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-v8rZHfLL9C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v8rZHfLL9C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v8rZHfLL9C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v8rZHfLL9C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v8rZHfLL9C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v8rZHfLL9C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v8rZHfLL9C .navbar.navbar-short {
  min-height: 60px;
}
.cid-v8rZHfLL9C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v8rZHfLL9C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v8rZHfLL9C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v8rZHfLL9C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v8rZHfLL9C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v8rZHfLL9C .dropdown-item.active,
.cid-v8rZHfLL9C .dropdown-item:active {
  background-color: transparent;
}
.cid-v8rZHfLL9C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v8rZHfLL9C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v8rZHfLL9C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v8rZHfLL9C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-v8rZHfLL9C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v8rZHfLL9C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8rZHfLL9C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v8rZHfLL9C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v8rZHfLL9C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v8rZHfLL9C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v8rZHfLL9C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v8rZHfLL9C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8rZHfLL9C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8rZHfLL9C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v8rZHfLL9C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8rZHfLL9C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v8rZHfLL9C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v8rZHfLL9C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8rZHfLL9C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v8rZHfLL9C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v8rZHfLL9C .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-v8rZHfLL9C .navbar {
    height: 70px;
  }
  .cid-v8rZHfLL9C .navbar.opened {
    height: auto;
  }
  .cid-v8rZHfLL9C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v8rZHh8gZi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v8rZHh8gZi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8rZHh8gZi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8rZHhK7l5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v8rZHhK7l5 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v8rZHhK7l5 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v8rZHhK7l5 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v8rZHhK7l5 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v8rZHhK7l5 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v8rZHhK7l5 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v8rZHhK7l5 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v8rZHhK7l5 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v8rZHhK7l5 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v8rZHhK7l5 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v8rZHhK7l5 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v8rZHhK7l5 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v8rZHhK7l5 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v8rZHhK7l5 .media-container-row .row-copirayt p {
  width: 100%;
}
