.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #0b415a !important;
}
.bg-success {
  background-color: #ffddd2 !important;
}
.bg-info {
  background-color: #6787d5 !important;
}
.bg-warning {
  background-color: #edf6f9 !important;
}
.bg-danger {
  background-color: #dfe7e3 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0b415a !important;
  border-color: #0b415a !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: #02090d !important;
  border-color: #02090d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #02090d !important;
  border-color: #02090d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e29578 !important;
  border-color: #e29578 !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: #d35d31 !important;
  border-color: #d35d31 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #d35d31 !important;
  border-color: #d35d31 !important;
}
.btn-info,
.btn-info:active {
  background-color: #6787d5 !important;
  border-color: #6787d5 !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: #3257b4 !important;
  border-color: #3257b4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3257b4 !important;
  border-color: #3257b4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffddd2 !important;
  border-color: #ffddd2 !important;
  color: #d23300 !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: #ff9b7b !important;
  border-color: #ff9b7b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #d23300 !important;
  background-color: #ff9b7b !important;
  border-color: #ff9b7b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #edf6f9 !important;
  border-color: #edf6f9 !important;
  color: #3a90ad !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: #245a6c !important;
  background-color: #acd5e3 !important;
  border-color: #acd5e3 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #3a90ad !important;
  background-color: #acd5e3 !important;
  border-color: #acd5e3 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #dfe7e3 !important;
  border-color: #dfe7e3 !important;
  color: #557263 !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: #adc2b8 !important;
  border-color: #adc2b8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #557263 !important;
  background-color: #adc2b8 !important;
  border-color: #adc2b8 !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: #0b415a;
  color: #0b415a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #02090d !important;
  background-color: transparent!important;
  border-color: #02090d !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0b415a !important;
  border-color: #0b415a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e29578;
  color: #e29578;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d35d31 !important;
  background-color: transparent!important;
  border-color: #d35d31 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e29578 !important;
  border-color: #e29578 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #6787d5;
  color: #6787d5;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3257b4 !important;
  background-color: transparent!important;
  border-color: #3257b4 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #6787d5 !important;
  border-color: #6787d5 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #ffddd2;
  color: #ffddd2;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ff9b7b !important;
  background-color: transparent!important;
  border-color: #ff9b7b !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #d23300 !important;
  background-color: #ffddd2 !important;
  border-color: #ffddd2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #edf6f9;
  color: #edf6f9;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #acd5e3 !important;
  background-color: transparent!important;
  border-color: #acd5e3 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #3a90ad !important;
  background-color: #edf6f9 !important;
  border-color: #edf6f9 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #dfe7e3;
  color: #dfe7e3;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #adc2b8 !important;
  background-color: transparent!important;
  border-color: #adc2b8 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #557263 !important;
  background-color: #dfe7e3 !important;
  border-color: #dfe7e3 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0b415a !important;
}
.text-secondary {
  color: #e29578 !important;
}
.text-success {
  color: #ffddd2 !important;
}
.text-info {
  color: #6787d5 !important;
}
.text-warning {
  color: #edf6f9 !important;
}
.text-danger {
  color: #dfe7e3 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c9562b !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ff906c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2e52a8 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a1d0e0 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a5bbb0 !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: #0b415a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6787d5;
}
.alert-warning {
  background-color: #edf6f9;
}
.alert-danger {
  background-color: #dfe7e3;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0b415a;
  border-color: #0b415a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0b415a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #1993cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #0b415a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #0b415a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0b415a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0b415a;
}
.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: #0b415a;
  border-bottom-color: #0b415a;
}
.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: #0b415a !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: #e29578 !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='%230b415a' %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-slktlAF6he {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/untitled-design.png");
}
.cid-slktlAF6he .mbr-section-title {
  color: #ffffff;
}
.cid-slktlAF6he .mbr-section-subtitle {
  color: #ffffff;
}
.cid-slktlAF6he .mbr-text,
.cid-slktlAF6he .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sX4IqaFDqB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/top-header-lines-1000x603.png");
}
.cid-sX4IqaFDqB .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sX4IqaFDqB .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sX4IqaFDqB .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sX4IqaFDqB .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sX4IqaFDqB .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sX4IqaFDqB .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sX4IqaFDqB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-smbzO4Vp55 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/top-header-lines-1000x603.png");
}
.cid-smbzO4Vp55 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-smbzO4Vp55 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-smbzO4Vp55 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-smbzO4Vp55 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-smbzO4Vp55 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-smbzO4Vp55 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-smbzO4Vp55 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-smbzO4Vp55 .card-title {
  color: #000000;
}
.cid-slkQ4tt69F {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/top-header-lines-1000x603.png");
}
.cid-slkQ4tt69F .mbr-overlay {
  background: #deefff;
  opacity: 0.5;
}
.cid-slkQ4tt69F img,
.cid-slkQ4tt69F .item-img {
  width: 100%;
}
.cid-slkQ4tt69F .item:focus,
.cid-slkQ4tt69F span:focus {
  outline: none;
}
.cid-slkQ4tt69F .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-slkQ4tt69F .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-slkQ4tt69F .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-slkQ4tt69F .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-slkQ4tt69F .mbr-section-btn {
  margin-top: auto !important;
}
.cid-slkQ4tt69F .mbr-section-title {
  color: #000000;
}
.cid-slkQ4tt69F .mbr-text,
.cid-slkQ4tt69F .mbr-section-btn {
  text-align: left;
}
.cid-slkQ4tt69F .item-title {
  text-align: left;
  color: #6787d5;
}
.cid-slkQ4tt69F .item-subtitle {
  text-align: left;
}
.cid-slkQ4tt69F .mbr-section-subtitle {
  text-align: left;
}
.cid-sX4Gx4SkIW {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/top-header-lines-1000x603.png");
}
.cid-sX4Gx4SkIW .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-sX4Gx4SkIW .mbr-section-title,
.cid-sX4Gx4SkIW .mbr-section-subtitle {
  text-align: center;
}
.cid-sX4Gx4SkIW .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sX4Gx4SkIW .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-sX4Gx4SkIW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sX4Gx4SkIW .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sX4Gx4SkIW .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sX4Gx4SkIW .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sX4Gx4SkIW .mbr-section-title {
  color: #000000;
}
.cid-sX4Gx4SkIW .card-title {
  color: #6787d5;
}
.cid-sX4NIWzpv5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sX4NIWzpv5 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-sX4NIWzpv5 .container {
    max-width: 1400px;
  }
}
.cid-sX4NIWzpv5 .card {
  margin: auto;
}
.cid-sX4NIWzpv5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sX4NIWzpv5 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sX4NIWzpv5 .row {
  justify-content: center;
}
.cid-slkKaNRKpg {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/untitled-design.png");
}
.cid-slkKaNRKpg .mbr-text {
  color: #c1c1c1;
}
.cid-slkKaNRKpg .mbr-text,
.cid-slkKaNRKpg .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-slkKaNRKpg H3 {
  text-align: left;
}
.cid-smSSYfgZpg {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-smSSYfgZpg blockquote {
  border-color: #487195;
  border-radius: 4px;
  background-color: #deefff;
}
.cid-smSSYfgZpg .mbr-section-title {
  color: #487195;
}
.cid-sllmPr4zu4 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sllmPr4zu4 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sllmPr4zu4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sllmPr4zu4 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sllmPr4zu4 .card-title {
  color: #487195;
}
.cid-sllmPr4zu4 .card-text {
  color: #487195;
}
.cid-slleiDbWfS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-slleiDbWfS .mbr-text {
  color: #c1c1c1;
}
.cid-slleiDbWfS .mbr-text,
.cid-slleiDbWfS .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-slleiDbWfS H3 {
  text-align: left;
  color: #6787d5;
}
.cid-smcxEIn6mG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-smcxEIn6mG .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-smcxEIn6mG .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-smcxEIn6mG .item-wrapper {
  position: relative;
}
.cid-smcxEIn6mG .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-smcxEIn6mG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-smcxEIn6mG .carousel-control,
.cid-smcxEIn6mG .close {
  background: #1b1b1b;
}
.cid-smcxEIn6mG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-smcxEIn6mG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-smcxEIn6mG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-smcxEIn6mG .carousel-control-next span {
  margin-left: 5px;
}
.cid-smcxEIn6mG .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-smcxEIn6mG .close::before {
  content: '\e91a';
}
.cid-smcxEIn6mG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-smcxEIn6mG .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-smcxEIn6mG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smcxEIn6mG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-smcxEIn6mG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-smcxEIn6mG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-smcxEIn6mG .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-smcxEIn6mG .carousel-indicators li.active,
.cid-smcxEIn6mG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-smcxEIn6mG .carousel-indicators li::after,
.cid-smcxEIn6mG .carousel-indicators li::before {
  content: none;
}
.cid-smcxEIn6mG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-smcxEIn6mG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-smcxEIn6mG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-smcxEIn6mG .carousel-indicators {
    display: none;
  }
}
.cid-smcxEIn6mG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-smcxEIn6mG .carousel-inner > .active {
  display: block;
}
.cid-smcxEIn6mG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smcxEIn6mG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smcxEIn6mG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-smcxEIn6mG .carousel-control,
  .cid-smcxEIn6mG .carousel-indicators,
  .cid-smcxEIn6mG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-smcxEIn6mG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-smcxEIn6mG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-smcxEIn6mG .carousel-indicators .active,
.cid-smcxEIn6mG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-smcxEIn6mG .carousel-indicators .active {
  background: #fff;
}
.cid-smcxEIn6mG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-smcxEIn6mG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-smcxEIn6mG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-smcxEIn6mG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-smcxEIn6mG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-smcxEIn6mG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-smcxEIn6mG .carousel {
  width: 100%;
}
.cid-smcxEIn6mG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-smcxEIn6mG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-smcxEIn6mG .modal.fade .modal-dialog,
.cid-smcxEIn6mG .modal.in .modal-dialog {
  transform: none;
}
.cid-smcxEIn6mG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-smcxEIn6mG H6 {
  text-align: center;
}
.cid-smcxEIn6mG H4 {
  text-align: left;
  color: #353535;
}
.cid-sYhMXknu0P {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYhMXknu0P .mbr-text {
  color: #c1c1c1;
}
.cid-sYhMXknu0P .mbr-text,
.cid-sYhMXknu0P .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sYhMXknu0P H3 {
  text-align: left;
  color: #6787d5;
}
.cid-sYhN3K0oO6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sYhN3K0oO6 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sYhN3K0oO6 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sYhN3K0oO6 .item-wrapper {
  position: relative;
}
.cid-sYhN3K0oO6 .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-sYhN3K0oO6 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sYhN3K0oO6 .carousel-control,
.cid-sYhN3K0oO6 .close {
  background: #1b1b1b;
}
.cid-sYhN3K0oO6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sYhN3K0oO6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sYhN3K0oO6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sYhN3K0oO6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sYhN3K0oO6 .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-sYhN3K0oO6 .close::before {
  content: '\e91a';
}
.cid-sYhN3K0oO6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sYhN3K0oO6 .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-sYhN3K0oO6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYhN3K0oO6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sYhN3K0oO6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sYhN3K0oO6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sYhN3K0oO6 .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-sYhN3K0oO6 .carousel-indicators li.active,
.cid-sYhN3K0oO6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sYhN3K0oO6 .carousel-indicators li::after,
.cid-sYhN3K0oO6 .carousel-indicators li::before {
  content: none;
}
.cid-sYhN3K0oO6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sYhN3K0oO6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sYhN3K0oO6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sYhN3K0oO6 .carousel-indicators {
    display: none;
  }
}
.cid-sYhN3K0oO6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sYhN3K0oO6 .carousel-inner > .active {
  display: block;
}
.cid-sYhN3K0oO6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYhN3K0oO6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sYhN3K0oO6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sYhN3K0oO6 .carousel-control,
  .cid-sYhN3K0oO6 .carousel-indicators,
  .cid-sYhN3K0oO6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sYhN3K0oO6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sYhN3K0oO6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sYhN3K0oO6 .carousel-indicators .active,
.cid-sYhN3K0oO6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sYhN3K0oO6 .carousel-indicators .active {
  background: #fff;
}
.cid-sYhN3K0oO6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sYhN3K0oO6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sYhN3K0oO6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sYhN3K0oO6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sYhN3K0oO6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sYhN3K0oO6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sYhN3K0oO6 .carousel {
  width: 100%;
}
.cid-sYhN3K0oO6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sYhN3K0oO6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sYhN3K0oO6 .modal.fade .modal-dialog,
.cid-sYhN3K0oO6 .modal.in .modal-dialog {
  transform: none;
}
.cid-sYhN3K0oO6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sYhN3K0oO6 H6 {
  text-align: center;
}
.cid-sYhN3K0oO6 H4 {
  text-align: left;
  color: #353535;
}
.cid-sllme2EMb4 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sllme2EMb4 .mbr-text {
  color: #c1c1c1;
}
.cid-sllme2EMb4 .mbr-text,
.cid-sllme2EMb4 .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sllme2EMb4 H3 {
  text-align: left;
  color: #6787d5;
}
.cid-smdspp8bKs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-smdspp8bKs .item {
  padding-bottom: 2rem;
}
.cid-smdspp8bKs .item-wrapper {
  position: relative;
}
.cid-smdspp8bKs .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-smdspp8bKs .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-smdspp8bKs .carousel-control,
.cid-smdspp8bKs .close {
  background: #1b1b1b;
}
.cid-smdspp8bKs .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-smdspp8bKs .carousel-control-prev span {
  margin-right: 5px;
}
.cid-smdspp8bKs .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-smdspp8bKs .carousel-control-next span {
  margin-left: 5px;
}
.cid-smdspp8bKs .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-smdspp8bKs .close::before {
  content: '\e91a';
}
.cid-smdspp8bKs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-smdspp8bKs .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-smdspp8bKs .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smdspp8bKs .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-smdspp8bKs .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-smdspp8bKs .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-smdspp8bKs .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-smdspp8bKs .carousel-indicators li.active,
.cid-smdspp8bKs .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-smdspp8bKs .carousel-indicators li::after,
.cid-smdspp8bKs .carousel-indicators li::before {
  content: none;
}
.cid-smdspp8bKs .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-smdspp8bKs .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-smdspp8bKs .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-smdspp8bKs .carousel-indicators {
    display: none;
  }
}
.cid-smdspp8bKs .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-smdspp8bKs .carousel-inner > .active {
  display: block;
}
.cid-smdspp8bKs .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smdspp8bKs .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smdspp8bKs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-smdspp8bKs .carousel-control,
  .cid-smdspp8bKs .carousel-indicators,
  .cid-smdspp8bKs .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-smdspp8bKs .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-smdspp8bKs .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-smdspp8bKs .carousel-indicators .active,
.cid-smdspp8bKs .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-smdspp8bKs .carousel-indicators .active {
  background: #fff;
}
.cid-smdspp8bKs .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-smdspp8bKs .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-smdspp8bKs .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-smdspp8bKs .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-smdspp8bKs .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-smdspp8bKs .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-smdspp8bKs .carousel {
  width: 100%;
}
.cid-smdspp8bKs .modal-backdrop.in {
  opacity: 0.8;
}
.cid-smdspp8bKs .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-smdspp8bKs .modal.fade .modal-dialog,
.cid-smdspp8bKs .modal.in .modal-dialog {
  transform: none;
}
.cid-smdspp8bKs .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-smdspp8bKs H6 {
  text-align: center;
}
.cid-sllmnEsGxj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sllmnEsGxj .mbr-text {
  color: #c1c1c1;
}
.cid-sllmnEsGxj .mbr-text,
.cid-sllmnEsGxj .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sllmnEsGxj H3 {
  text-align: left;
  color: #6787d5;
}
.cid-sYhSSAo8Qm {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sYhSSAo8Qm .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sYhSSAo8Qm .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sYhSSAo8Qm .item-wrapper {
  position: relative;
}
.cid-sYhSSAo8Qm .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-sYhSSAo8Qm .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sYhSSAo8Qm .carousel-control,
.cid-sYhSSAo8Qm .close {
  background: #1b1b1b;
}
.cid-sYhSSAo8Qm .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sYhSSAo8Qm .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sYhSSAo8Qm .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sYhSSAo8Qm .carousel-control-next span {
  margin-left: 5px;
}
.cid-sYhSSAo8Qm .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-sYhSSAo8Qm .close::before {
  content: '\e91a';
}
.cid-sYhSSAo8Qm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sYhSSAo8Qm .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-sYhSSAo8Qm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYhSSAo8Qm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sYhSSAo8Qm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sYhSSAo8Qm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sYhSSAo8Qm .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-sYhSSAo8Qm .carousel-indicators li.active,
.cid-sYhSSAo8Qm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sYhSSAo8Qm .carousel-indicators li::after,
.cid-sYhSSAo8Qm .carousel-indicators li::before {
  content: none;
}
.cid-sYhSSAo8Qm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sYhSSAo8Qm .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sYhSSAo8Qm .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sYhSSAo8Qm .carousel-indicators {
    display: none;
  }
}
.cid-sYhSSAo8Qm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sYhSSAo8Qm .carousel-inner > .active {
  display: block;
}
.cid-sYhSSAo8Qm .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYhSSAo8Qm .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sYhSSAo8Qm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sYhSSAo8Qm .carousel-control,
  .cid-sYhSSAo8Qm .carousel-indicators,
  .cid-sYhSSAo8Qm .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sYhSSAo8Qm .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sYhSSAo8Qm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sYhSSAo8Qm .carousel-indicators .active,
.cid-sYhSSAo8Qm .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sYhSSAo8Qm .carousel-indicators .active {
  background: #fff;
}
.cid-sYhSSAo8Qm .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sYhSSAo8Qm .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sYhSSAo8Qm .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sYhSSAo8Qm .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sYhSSAo8Qm .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sYhSSAo8Qm .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sYhSSAo8Qm .carousel {
  width: 100%;
}
.cid-sYhSSAo8Qm .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sYhSSAo8Qm .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sYhSSAo8Qm .modal.fade .modal-dialog,
.cid-sYhSSAo8Qm .modal.in .modal-dialog {
  transform: none;
}
.cid-sYhSSAo8Qm .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sYhSSAo8Qm H6 {
  text-align: center;
}
.cid-sYhSSAo8Qm H4 {
  text-align: left;
  color: #353535;
}
.cid-sllEFju2VM {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/untitled-design.png");
}
.cid-sllEFju2VM .mbr-text {
  color: #c1c1c1;
}
.cid-sllEFju2VM .mbr-text,
.cid-sllEFju2VM .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sllEFju2VM H3 {
  text-align: left;
}
.cid-smQXoTpcl2 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-smQXoTpcl2 img,
.cid-smQXoTpcl2 .item-img {
  width: 100%;
}
.cid-smQXoTpcl2 .item:focus,
.cid-smQXoTpcl2 span:focus {
  outline: none;
}
.cid-smQXoTpcl2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-smQXoTpcl2 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-smQXoTpcl2 .item {
  padding: 0;
  margin: 0;
}
.cid-smQXoTpcl2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-smQXoTpcl2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-smQXoTpcl2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-smQXoTpcl2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-smQXoTpcl2 .mbr-section-title {
  color: #232323;
}
.cid-sllEXEATxA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sllEXEATxA .mbr-text {
  color: #c1c1c1;
}
.cid-sllEXEATxA .mbr-text,
.cid-sllEXEATxA .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sllEXEATxA H3 {
  text-align: left;
  color: #000000;
}
.cid-smRfeX8UD4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-smRfeX8UD4 .mbr-section-title,
.cid-smRfeX8UD4 .mbr-section-subtitle {
  text-align: center;
}
.cid-smRfeX8UD4 .cost {
  word-break: normal;
}
.cid-smRfeX8UD4 .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #deefff;
}
.cid-smRfeX8UD4 .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-smRfeX8UD4 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-smRfeX8UD4 .card-wrapper {
    padding: 1rem;
  }
}
.cid-smRfeX8UD4 .mbr-section-title {
  text-align: left;
  color: #6787d5;
}
.cid-smRfeX8UD4 P {
  text-align: center;
}
.cid-smR8ejLW3g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-smR8ejLW3g .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-smR8ejLW3g .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-smR8ejLW3g .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-smR8ejLW3g .card-title {
  color: #487195;
}
.cid-smR8ejLW3g .card-text {
  color: #487195;
}
.cid-smR8OjVEEo {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sllH5pidux {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/untitled-design.png");
}
.cid-sllH5pidux .mbr-text {
  color: #c1c1c1;
}
.cid-sllH5pidux .mbr-text,
.cid-sllH5pidux .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sllH5pidux H3 {
  text-align: left;
}
.cid-sllDfwO2f1 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sllDfwO2f1 img,
.cid-sllDfwO2f1 .item-img {
  width: 100%;
}
.cid-sllDfwO2f1 .item:focus,
.cid-sllDfwO2f1 span:focus {
  outline: none;
}
.cid-sllDfwO2f1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sllDfwO2f1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sllDfwO2f1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sllDfwO2f1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sllDfwO2f1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sllDfwO2f1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-sllDfwO2f1 .mbr-text,
.cid-sllDfwO2f1 .mbr-section-btn {
  text-align: left;
}
.cid-sllDfwO2f1 .item-title {
  text-align: left;
  color: #487195;
}
.cid-sllDfwO2f1 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-smRu94iH2i {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-smRu94iH2i blockquote {
  border-color: #487195;
  border-radius: 4px;
  background-color: #deefff;
}
.cid-smRu94iH2i .mbr-section-title {
  color: #487195;
}
.cid-smRnLaclql {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-smRnLaclql .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-smRnLaclql .row {
  flex-direction: row-reverse;
}
.cid-smRnLaclql img {
  width: 100%;
}
.cid-sllJVU8cVl {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sllJVU8cVl .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sllJVU8cVl .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sllJVU8cVl .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #0b415a;
}
.cid-sllJVU8cVl .panel-body,
.cid-sllJVU8cVl .card-header {
  padding: 1rem 0;
}
.cid-sllJVU8cVl .panel-title-edit {
  color: #6787d5;
}
.cid-sllU9BE3rR {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/untitled-design.png");
}
.cid-sllU9BE3rR .mbr-text {
  color: #c1c1c1;
}
.cid-sllU9BE3rR .mbr-text,
.cid-sllU9BE3rR .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sllU9BE3rR H3 {
  text-align: left;
}
.cid-smSwmxRUSB {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-smSwmxRUSB blockquote {
  border-color: #487195;
  border-radius: 4px;
  background-color: #deefff;
}
.cid-smSwmxRUSB .mbr-section-title {
  color: #487195;
}
.cid-sllwu2G0Aw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sllwu2G0Aw .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-sllwu2G0Aw .mbr-section-title,
.cid-sllwu2G0Aw .mbr-section-subtitle {
  text-align: center;
}
.cid-sllwu2G0Aw .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sllwu2G0Aw .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-sllwu2G0Aw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sllwu2G0Aw .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sllwu2G0Aw .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sllwu2G0Aw .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sllwu2G0Aw .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sllwu2G0Aw .mbr-section-subtitle {
  text-align: left;
}
.cid-sllwu2G0Aw .card-title {
  color: #487195;
}
.cid-sWjnwJs1lz {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWjnwJs1lz blockquote {
  border-color: #487195;
  border-radius: 4px;
  background-color: #deefff;
}
.cid-sWjnwJs1lz .mbr-section-title {
  color: #487195;
}
.cid-sllXvShv6v {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sllXvShv6v .mbr-text {
  color: #767676;
}
.cid-sllXvShv6v .mbr-section-subtitle {
  color: #767676;
}
.cid-sllXvShv6v .title .num {
  width: 100%;
  display: block;
  font-size: 4rem;
}
.cid-sllXvShv6v .title .card-title {
  z-index: 1;
}
.cid-sllXvShv6v .num {
  color: #83c5be;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sllXvShv6v * {
    text-align: center !important;
  }
  .cid-sllXvShv6v .content-column {
    margin-bottom: 2rem;
  }
}
.cid-sllXvShv6v .card-title,
.cid-sllXvShv6v .card-img {
  color: #6787d5;
}
.cid-sllXvShv6v .card-text {
  color: #000000;
}
.cid-smRtTvwYhy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-smRtTvwYhy blockquote {
  border-color: #487195;
  border-radius: 4px;
  background-color: #deefff;
}
.cid-smRtTvwYhy .mbr-section-title {
  color: #487195;
}
.cid-sllqR73mIr {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sllqR73mIr .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-sllqR73mIr .mbr-section-title,
.cid-sllqR73mIr .mbr-section-subtitle {
  text-align: center;
}
.cid-sllqR73mIr .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sllqR73mIr .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-sllqR73mIr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sllqR73mIr .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sllqR73mIr .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sllqR73mIr .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sllqR73mIr .mbr-section-title {
  text-align: left;
}
.cid-sllqR73mIr .mbr-section-subtitle {
  text-align: left;
}
.cid-sllqR73mIr .cost {
  text-align: left;
}
.cid-sllqR73mIr .card-title {
  color: #487195;
}
.cid-smSxW25b69 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-smSxW25b69 blockquote {
  border-color: #487195;
  border-radius: 4px;
  background-color: #deefff;
}
.cid-smSxW25b69 .mbr-section-title {
  color: #487195;
}
.cid-smRytSL2Mt {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-smRytSL2Mt .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-smRytSL2Mt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-smRytSL2Mt .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #0b415a;
}
.cid-smRytSL2Mt .panel-body,
.cid-smRytSL2Mt .card-header {
  padding: 1rem 0;
}
.cid-smRytSL2Mt .panel-title-edit {
  color: #6787d5;
}
.cid-sYiNJB72Zv {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/untitled-design.png");
}
.cid-sYiNJB72Zv .mbr-text {
  color: #c1c1c1;
}
.cid-sYiNJB72Zv .mbr-text,
.cid-sYiNJB72Zv .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sYiNJB72Zv H3 {
  text-align: left;
}
.cid-smSWZGRVT6 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-smSWZGRVT6 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-smSWZGRVT6 .mbr-section-title,
.cid-smSWZGRVT6 .mbr-section-subtitle {
  text-align: center;
}
.cid-smSWZGRVT6 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-smSWZGRVT6 .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
  background-color: transparent;
}
.cid-smSWZGRVT6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-smSWZGRVT6 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-smSWZGRVT6 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-smSWZGRVT6 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-smSWZGRVT6 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-smSWZGRVT6 .mbr-section-subtitle {
  text-align: left;
}
.cid-smSWZGRVT6 .card-title {
  color: #353535;
}
.cid-smSZ8qr1t0 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-smSZ8qr1t0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-smSZ8qr1t0 .row {
    flex-direction: column-reverse;
  }
  .cid-smSZ8qr1t0 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-smSZ8qr1t0 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-smSZ8qr1t0 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-smSZ8qr1t0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-smSZ8qr1t0 .card-title {
  color: #000000;
}
.cid-smSLnJXdgB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-smSLnJXdgB blockquote {
  border-color: #487195;
  border-radius: 4px;
  background-color: #deefff;
}
.cid-smSLnJXdgB .mbr-section-title {
  color: #487195;
}
.cid-smRp8so6vP {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-smRp8so6vP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-smRp8so6vP .row {
    flex-direction: column-reverse;
  }
  .cid-smRp8so6vP .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-smRp8so6vP .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-smRp8so6vP .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-smRp8so6vP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-smRp8so6vP .card-title {
  color: #000000;
}
.cid-sYio2WJEXs {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/untitled-design.png");
}
.cid-sYio2WJEXs .mbr-text {
  color: #c1c1c1;
}
.cid-sYio2WJEXs .mbr-text,
.cid-sYio2WJEXs .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sYio2WJEXs H3 {
  text-align: left;
}
.cid-smT5VXaJTn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-smT5VXaJTn .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-smT5VXaJTn .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-smT5VXaJTn .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #0b415a;
}
.cid-smT5VXaJTn .panel-body,
.cid-smT5VXaJTn .card-header {
  padding: 1rem 0;
}
.cid-smT5VXaJTn .panel-title-edit {
  color: #6787d5;
}
.cid-smT5VXaJTn H3 {
  text-align: left;
  color: #487195;
}
.cid-smT5VXaJTn DIV {
  text-align: left;
}
.cid-smT70ihjOK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/untitled-design.png");
}
.cid-smT70ihjOK .mbr-text {
  color: #c1c1c1;
}
.cid-smT70ihjOK .mbr-text,
.cid-smT70ihjOK .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-smT70ihjOK H3 {
  text-align: left;
}
.cid-smT81PsWwn {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-smT81PsWwn .mbr-text {
  color: #c1c1c1;
}
.cid-smT81PsWwn .mbr-text,
.cid-smT81PsWwn .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-smT81PsWwn H3 {
  text-align: left;
}
.cid-smT9WCgaBk {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-smT9WCgaBk .mbr-text {
  color: #c1c1c1;
}
.cid-smT9WCgaBk H3 {
  color: #487195;
}
.cid-smT9WCgaBk .mbr-text,
.cid-smT9WCgaBk .mbr-section-btn {
  color: #000000;
}
.cid-smTaEsBwlg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #487195;
}
.cid-smTaEsBwlg .media-container-row .mbr-text {
  color: #ffffff;
}
