body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff5500 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff5500 !important;
  border-color: #ff5500 !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: #a83800 !important;
  border-color: #a83800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a83800 !important;
  border-color: #a83800 !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff5500;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a83800 !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: #ff5500 !important;
  border-color: #ff5500 !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: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff5500 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #993300 !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: #6592e6;
}
.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: #ff5500;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.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: #ffddcc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', 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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %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-sncSqLGcNb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sncSqLGcNb .line {
  background-color: #4479d9;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sncSqLGcNb .mbr-text {
  color: #000000;
}
.cid-sncZJPwoSO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sncZJPwoSO img,
.cid-sncZJPwoSO .item-img {
  width: 100%;
}
.cid-sncZJPwoSO .item:focus,
.cid-sncZJPwoSO span:focus {
  outline: none;
}
.cid-sncZJPwoSO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sncZJPwoSO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sncZJPwoSO .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sncZJPwoSO .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sncZJPwoSO .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sncZJPwoSO .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sncZJPwoSO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sncZJPwoSO .mbr-section-title {
  color: #232323;
}
.cid-sncZJPwoSO .mbr-text,
.cid-sncZJPwoSO .mbr-section-btn {
  text-align: center;
}
.cid-sncZJPwoSO .item-title {
  text-align: left;
}
.cid-sncZJPwoSO .item-subtitle {
  text-align: left;
}
.cid-snekyZfpFw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snekyZfpFw img,
.cid-snekyZfpFw .item-img {
  width: 100%;
}
.cid-snekyZfpFw .item:focus,
.cid-snekyZfpFw span:focus {
  outline: none;
}
.cid-snekyZfpFw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-snekyZfpFw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-snekyZfpFw .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-snekyZfpFw .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-snekyZfpFw .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-snekyZfpFw .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-snekyZfpFw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-snekyZfpFw .mbr-section-title {
  color: #232323;
}
.cid-snekyZfpFw .mbr-text,
.cid-snekyZfpFw .mbr-section-btn {
  text-align: center;
}
.cid-snekyZfpFw .item-title {
  text-align: left;
}
.cid-snekyZfpFw .item-subtitle {
  text-align: left;
}
.cid-snelFPTUY3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-snelFPTUY3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snelFPTUY3 .row {
  flex-direction: row-reverse;
}
.cid-snelFPTUY3 img {
  width: 100%;
}
.cid-sndiJ9vJxB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sndiJ9vJxB .video-wrapper iframe {
  width: 100%;
}
.cid-sndiJ9vJxB .mbr-section-title,
.cid-sndiJ9vJxB .mbr-section-subtitle,
.cid-sndiJ9vJxB .mbr-text {
  text-align: center;
}
.cid-sH1OR0enQF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-sndlgueR7z {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sndlgueR7z .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sndlgueR7z .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sndlgueR7z .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sndlgueR7z .card-wrapper {
    padding: 4rem;
  }
}
.cid-sndlgueR7z .mbr-text,
.cid-sndlgueR7z .mbr-section-btn {
  color: #000000;
}
.cid-sndBHJ1mDf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sndBHJ1mDf .mbr-section-title,
.cid-sndBHJ1mDf .mbr-text,
.cid-sndBHJ1mDf .mbr-section-btn {
  text-align: center;
}
.cid-sndBHJ1mDf .video-wrapper {
  margin: auto;
}
.cid-sndBHJ1mDf .video-wrapper iframe {
  width: 100%;
}
.cid-sndDqme0FD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sndDqme0FD .mbr-section-title,
.cid-sndDqme0FD .mbr-text,
.cid-sndDqme0FD .mbr-section-btn {
  text-align: center;
}
.cid-sndDqme0FD .video-wrapper {
  margin: auto;
}
.cid-sndDqme0FD .video-wrapper iframe {
  width: 100%;
}
.cid-sndDqme0FD .mbr-section-title {
  color: #ffffff;
}
.cid-sndEyE2lBm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sndEyE2lBm .mbr-section-title,
.cid-sndEyE2lBm .mbr-text,
.cid-sndEyE2lBm .mbr-section-btn {
  text-align: center;
}
.cid-sndEyE2lBm .video-wrapper {
  margin: auto;
}
.cid-sndEyE2lBm .video-wrapper iframe {
  width: 100%;
}
.cid-sndEAkE395 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sndEAkE395 .mbr-section-title,
.cid-sndEAkE395 .mbr-text,
.cid-sndEAkE395 .mbr-section-btn {
  text-align: center;
}
.cid-sndEAkE395 .video-wrapper {
  margin: auto;
}
.cid-sndEAkE395 .video-wrapper iframe {
  width: 100%;
}
.cid-sndEAATdgK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sndEAATdgK .mbr-section-title,
.cid-sndEAATdgK .mbr-text,
.cid-sndEAATdgK .mbr-section-btn {
  text-align: center;
}
.cid-sndEAATdgK .video-wrapper {
  margin: auto;
}
.cid-sndEAATdgK .video-wrapper iframe {
  width: 100%;
}
.cid-sndETBd28i {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sndETBd28i .mbr-section-title,
.cid-sndETBd28i .mbr-text,
.cid-sndETBd28i .mbr-section-btn {
  text-align: center;
}
.cid-sndETBd28i .video-wrapper {
  margin: auto;
}
.cid-sndETBd28i .video-wrapper iframe {
  width: 100%;
}
.cid-sndEU3zDUv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sndEU3zDUv .mbr-section-title,
.cid-sndEU3zDUv .mbr-text,
.cid-sndEU3zDUv .mbr-section-btn {
  text-align: center;
}
.cid-sndEU3zDUv .video-wrapper {
  margin: auto;
}
.cid-sndEU3zDUv .video-wrapper iframe {
  width: 100%;
}
.cid-sndEUbDxcg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sndEUbDxcg .mbr-section-title,
.cid-sndEUbDxcg .mbr-text,
.cid-sndEUbDxcg .mbr-section-btn {
  text-align: center;
}
.cid-sndEUbDxcg .video-wrapper {
  margin: auto;
}
.cid-sndEUbDxcg .video-wrapper iframe {
  width: 100%;
}
.cid-sH1Q3URBex {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-sndNSR0BIu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sndNSR0BIu .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sndNSR0BIu .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sndNSR0BIu .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sndNSR0BIu .card-wrapper {
    padding: 4rem;
  }
}
.cid-sndNSR0BIu .mbr-text,
.cid-sndNSR0BIu .mbr-section-btn {
  text-align: left;
}
.cid-sH1RfrO3fw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #022769;
}
.cid-sH1RfrO3fw .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sH1RfrO3fw .team-card:hover {
  transform: translateY(-10px);
}
.cid-sH1RfrO3fw .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sH1RfrO3fw .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sH1RfrO3fw .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sH1RfrO3fw .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sH1RfrO3fw .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sH1RfrO3fw .social-row {
  text-align: center;
}
.cid-sH1RfrO3fw .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-sH1RfrO3fw .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sH1RfrO3fw .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sH1RfrO3fw .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sH1RfrO3fw .mbr-section-title {
  color: #ffffff;
}
.cid-sH1RfrO3fw .card-title,
.cid-sH1RfrO3fw .social-row {
  color: #232323;
}
.cid-sH1RXlJo6n {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #022769;
}
.cid-sndQ6IUKLM {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #353535;
}
.cid-sndQ6IUKLM .mbr-section-title,
.cid-sndQ6IUKLM .mbr-text,
.cid-sndQ6IUKLM .mbr-section-btn {
  text-align: center;
}
.cid-sndQ6IUKLM .video-wrapper {
  margin: auto;
}
.cid-sndQ6IUKLM .video-wrapper iframe {
  width: 100%;
}
.cid-sndQ6IUKLM .mbr-section-title {
  color: #ffffff;
}
.cid-sndRD88QOr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sndRD88QOr .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sndRD88QOr .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sndRD88QOr .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sndRD88QOr .card-wrapper {
    padding: 4rem;
  }
}
.cid-sndRD88QOr .mbr-text,
.cid-sndRD88QOr .mbr-section-btn {
  text-align: left;
}
.cid-sndVDaurBS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-sndVDaurBS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sndVDaurBS .row {
  flex-direction: row-reverse;
}
.cid-sndVDaurBS img {
  width: 100%;
}
.cid-sFw1YvCKOS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFw1YvCKOS .mbr-section-title {
  color: #f82828;
}
.cid-sne1YBdiXW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sne1YBdiXW .video-wrapper iframe {
  width: 100%;
}
.cid-sne1YBdiXW .mbr-section-title,
.cid-sne1YBdiXW .mbr-section-subtitle,
.cid-sne1YBdiXW .mbr-text {
  text-align: center;
}
.cid-sFvwK19goP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-sne1YFfo20 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sne1YFfo20 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sne1YFfo20 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sne1YFfo20 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sne1YFfo20 .card-wrapper {
    padding: 4rem;
  }
}
.cid-sne1YFfo20 .mbr-text,
.cid-sne1YFfo20 .mbr-section-btn {
  color: #000000;
}
.cid-sne1YFXot0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sne1YFXot0 .mbr-section-title,
.cid-sne1YFXot0 .mbr-text,
.cid-sne1YFXot0 .mbr-section-btn {
  text-align: center;
}
.cid-sne1YFXot0 .video-wrapper {
  margin: auto;
}
.cid-sne1YFXot0 .video-wrapper iframe {
  width: 100%;
}
.cid-sFvxxWJMKA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-sFvCrpny3R {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #353535;
}
.cid-sFvCrpny3R .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sFvCrpny3R .team-card:hover {
  transform: translateY(-10px);
}
.cid-sFvCrpny3R .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sFvCrpny3R .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sFvCrpny3R .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sFvCrpny3R .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFvCrpny3R .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sFvCrpny3R .social-row {
  text-align: center;
}
.cid-sFvCrpny3R .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-sFvCrpny3R .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sFvCrpny3R .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sFvCrpny3R .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sFvCrpny3R .mbr-section-title {
  color: #ffffff;
}
.cid-sFvCrpny3R .card-title,
.cid-sFvCrpny3R .social-row {
  color: #232323;
}
.cid-sFvDfRPlzX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1c4ca4;
}
.cid-sne1YMqB3l {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sne1YMqB3l .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sne1YMqB3l .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sne1YMqB3l .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sne1YMqB3l .card-wrapper {
    padding: 4rem;
  }
}
.cid-sne1YMqB3l .mbr-text,
.cid-sne1YMqB3l .mbr-section-btn {
  text-align: left;
}
.cid-sne1YNQWIj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-sne1YNQWIj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sne1YNQWIj .row {
  flex-direction: row-reverse;
}
.cid-sne1YNQWIj img {
  width: 100%;
}
.cid-ssZcZM8ao7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-ssZcZM8ao7 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-ssZcZM8ao7 .currentcost {
  color: #232323;
}
.cid-ssZcZM8ao7 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-ssZcZM8ao7 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ssZcZM8ao7 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ssZcZM8ao7 .text-box {
    padding: 1rem;
  }
}
.cid-ssZcZM8ao7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ssZcZM8ao7 H5 {
  color: #022769;
  text-align: center;
}
.cid-ssZcZM8ao7 .mbr-text,
.cid-ssZcZM8ao7 .cost,
.cid-ssZcZM8ao7 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-sJ79GKwvnm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-ssZhSV5NdT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-ssZhSV5NdT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ssZhSV5NdT .row {
  flex-direction: row-reverse;
}
.cid-ssZhSV5NdT img {
  width: 100%;
}
.cid-ssZhSV5NdT .mbr-description {
  color: #ffffff;
}
.cid-sneq9pWKmN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sneq9pWKmN .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sneq9pWKmN .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sneq9pWKmN .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sneq9pWKmN .card-wrapper {
    padding: 4rem;
  }
}
.cid-sneq9pWKmN .mbr-text,
.cid-sneq9pWKmN .mbr-section-btn {
  color: #000000;
}
.cid-sneq9r9lGT {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #353535;
}
.cid-sneq9r9lGT .mbr-section-title,
.cid-sneq9r9lGT .mbr-text,
.cid-sneq9r9lGT .mbr-section-btn {
  text-align: center;
}
.cid-sneq9r9lGT .video-wrapper {
  margin: auto;
}
.cid-sneq9r9lGT .video-wrapper iframe {
  width: 100%;
}
.cid-sneq9r9lGT .mbr-section-title {
  color: #ffffff;
}
.cid-sneq9rLQYe {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sneq9rLQYe .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sneq9rLQYe .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sneq9rLQYe .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sneq9rLQYe .card-wrapper {
    padding: 4rem;
  }
}
.cid-sneq9rLQYe .mbr-text,
.cid-sneq9rLQYe .mbr-section-btn {
  text-align: left;
}
.cid-sneq9smcpk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-sneq9smcpk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sneq9smcpk .row {
  flex-direction: row-reverse;
}
.cid-sneq9smcpk img {
  width: 100%;
}
.cid-sF7Y5LJf9c {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sF7Y5LJf9c .mbr-section-title {
  color: #ff5151;
}
.cid-sneeUgCaUz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sneeUgCaUz .video-wrapper iframe {
  width: 100%;
}
.cid-sneeUgCaUz .mbr-section-title,
.cid-sneeUgCaUz .mbr-section-subtitle,
.cid-sneeUgCaUz .mbr-text {
  text-align: center;
}
.cid-sneeUgCaUz .mbr-text {
  color: #ffffff;
}
.cid-sF2UGGvaCT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sneeUuiXSU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sneeUuiXSU .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sneeUuiXSU .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sneeUuiXSU .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sneeUuiXSU .card-wrapper {
    padding: 4rem;
  }
}
.cid-sneeUuiXSU .mbr-text,
.cid-sneeUuiXSU .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sneeUv2GXz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sneeUv2GXz .mbr-section-title,
.cid-sneeUv2GXz .mbr-text,
.cid-sneeUv2GXz .mbr-section-btn {
  text-align: center;
}
.cid-sneeUv2GXz .video-wrapper {
  margin: auto;
}
.cid-sneeUv2GXz .video-wrapper iframe {
  width: 100%;
}
.cid-sF3pScMAHx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (max-width: 991px) {
  .cid-sF3pScMAHx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sF3pScMAHx .row {
  flex-direction: row-reverse;
}
.cid-sF3pScMAHx img {
  width: 100%;
}
.cid-sF3Wd9cUMO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (max-width: 991px) {
  .cid-sF3Wd9cUMO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sF3Wd9cUMO .row {
  flex-direction: row-reverse;
}
.cid-sF3Wd9cUMO img {
  width: 100%;
}
.cid-sF35UzStjq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sF3c0a5Gu7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #022769;
}
.cid-sF3c0a5Gu7 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sF3c0a5Gu7 .team-card:hover {
  transform: translateY(-10px);
}
.cid-sF3c0a5Gu7 .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sF3c0a5Gu7 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sF3c0a5Gu7 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sF3c0a5Gu7 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sF3c0a5Gu7 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sF3c0a5Gu7 .social-row {
  text-align: center;
}
.cid-sF3c0a5Gu7 .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-sF3c0a5Gu7 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sF3c0a5Gu7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sF3c0a5Gu7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sF3c0a5Gu7 .mbr-section-title {
  color: #ffffff;
}
.cid-sF3c0a5Gu7 .card-title,
.cid-sF3c0a5Gu7 .social-row {
  color: #232323;
}
.cid-sF3aJxMHW7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #022769;
}
.cid-sF3tO32cUo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (max-width: 991px) {
  .cid-sF3tO32cUo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sF3tO32cUo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sF3tO32cUo .text-wrapper {
    padding: 2rem;
  }
}
.cid-sF3tO32cUo .mbr-text {
  text-align: left;
}
.cid-sF4pGMlDOZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sF4f3j7r03 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c50000;
}
.cid-sF4f3j7r03 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sF4f3j7r03 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sF4f3j7r03 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sF4f3j7r03 .card-wrapper {
    padding: 4rem;
  }
}
.cid-sF4m1MtCWy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sneeUzGem4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sneeUzGem4 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sneeUzGem4 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sneeUzGem4 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sneeUzGem4 .card-wrapper {
    padding: 4rem;
  }
}
.cid-sneeUzGem4 .mbr-text,
.cid-sneeUzGem4 .mbr-section-btn {
  text-align: left;
}
.cid-sneeUAoQ9a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-sneeUAoQ9a .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sneeUAoQ9a .row {
  flex-direction: row-reverse;
}
.cid-sneeUAoQ9a img {
  width: 100%;
}
.cid-sFwlvz6lpM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFwlvz6lpM .mbr-section-title {
  color: #ff5151;
}
.cid-sFwlvBiy9g {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sFwlvBiy9g .video-wrapper iframe {
  width: 100%;
}
.cid-sFwlvBiy9g .mbr-section-title,
.cid-sFwlvBiy9g .mbr-section-subtitle,
.cid-sFwlvBiy9g .mbr-text {
  text-align: center;
}
.cid-sFwlvBiy9g .mbr-text {
  color: #ffffff;
}
.cid-sFwlvDxD58 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sFwlvEdUF5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sFwlvEdUF5 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sFwlvEdUF5 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sFwlvEdUF5 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFwlvEdUF5 .card-wrapper {
    padding: 4rem;
  }
}
.cid-sFwlvEdUF5 .mbr-text,
.cid-sFwlvEdUF5 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sFwlvEQZBS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sFwlvEQZBS .mbr-section-title,
.cid-sFwlvEQZBS .mbr-text,
.cid-sFwlvEQZBS .mbr-section-btn {
  text-align: center;
}
.cid-sFwlvEQZBS .video-wrapper {
  margin: auto;
}
.cid-sFwlvEQZBS .video-wrapper iframe {
  width: 100%;
}
.cid-sFwlvFtmaX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (max-width: 991px) {
  .cid-sFwlvFtmaX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sFwlvFtmaX .row {
  flex-direction: row-reverse;
}
.cid-sFwlvFtmaX img {
  width: 100%;
}
.cid-sFwlvHcD38 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (max-width: 991px) {
  .cid-sFwlvHcD38 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sFwlvHcD38 .row {
  flex-direction: row-reverse;
}
.cid-sFwlvHcD38 img {
  width: 100%;
}
.cid-sFwlvHZT35 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sFwlvIr79Q {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #022769;
}
.cid-sFwlvIr79Q .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sFwlvIr79Q .team-card:hover {
  transform: translateY(-10px);
}
.cid-sFwlvIr79Q .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sFwlvIr79Q .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sFwlvIr79Q .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sFwlvIr79Q .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFwlvIr79Q .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sFwlvIr79Q .social-row {
  text-align: center;
}
.cid-sFwlvIr79Q .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-sFwlvIr79Q .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sFwlvIr79Q .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sFwlvIr79Q .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sFwlvIr79Q .mbr-section-title {
  color: #ffffff;
}
.cid-sFwlvIr79Q .card-title,
.cid-sFwlvIr79Q .social-row {
  color: #232323;
}
.cid-sFwlvLvkEG {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #022769;
}
.cid-sFwlvM012V {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (max-width: 991px) {
  .cid-sFwlvM012V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sFwlvM012V img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFwlvM012V .text-wrapper {
    padding: 2rem;
  }
}
.cid-sFwlvM012V .mbr-text {
  text-align: left;
}
.cid-sFwlvNEiiJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sFwlvObN40 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c50000;
}
.cid-sFwlvObN40 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sFwlvObN40 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sFwlvObN40 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFwlvObN40 .card-wrapper {
    padding: 4rem;
  }
}
.cid-sFwlvOY3Lz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sFwlvPyuxZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sFwlvPyuxZ .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sFwlvPyuxZ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sFwlvPyuxZ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFwlvPyuxZ .card-wrapper {
    padding: 4rem;
  }
}
.cid-sFwlvPyuxZ .mbr-text,
.cid-sFwlvPyuxZ .mbr-section-btn {
  text-align: left;
}
.cid-sFwlvQAoVB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-sFwlvQAoVB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sFwlvQAoVB .row {
  flex-direction: row-reverse;
}
.cid-sFwlvQAoVB img {
  width: 100%;
}
.cid-sLyKd7I20F {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLyKd7I20F .mbr-section-title {
  color: #ff5151;
}
.cid-sLyKd8FmlM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sLyKd8FmlM .video-wrapper iframe {
  width: 100%;
}
.cid-sLyKd8FmlM .mbr-section-title,
.cid-sLyKd8FmlM .mbr-section-subtitle,
.cid-sLyKd8FmlM .mbr-text {
  text-align: center;
}
.cid-sLyKd8FmlM .mbr-text {
  color: #ffffff;
}
.cid-sLyKd9J7Eo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sLyKdaeJ3Z {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sLyKdaeJ3Z .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sLyKdaeJ3Z .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sLyKdaeJ3Z .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sLyKdaeJ3Z .card-wrapper {
    padding: 4rem;
  }
}
.cid-sLyKdaeJ3Z .mbr-text,
.cid-sLyKdaeJ3Z .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sLyKdaUZMK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sLyKdaUZMK .mbr-section-title,
.cid-sLyKdaUZMK .mbr-text,
.cid-sLyKdaUZMK .mbr-section-btn {
  text-align: center;
}
.cid-sLyKdaUZMK .video-wrapper {
  margin: auto;
}
.cid-sLyKdaUZMK .video-wrapper iframe {
  width: 100%;
}
.cid-sLyKdbCI12 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (max-width: 991px) {
  .cid-sLyKdbCI12 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sLyKdbCI12 .row {
  flex-direction: row-reverse;
}
.cid-sLyKdbCI12 img {
  width: 100%;
}
.cid-sLyKdciZIx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (max-width: 991px) {
  .cid-sLyKdciZIx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sLyKdciZIx .row {
  flex-direction: row-reverse;
}
.cid-sLyKdciZIx img {
  width: 100%;
}
.cid-sLyKddevZO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe161;
}
.cid-sLyKde6MeG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #022769;
}
.cid-sLyKde6MeG .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sLyKde6MeG .team-card:hover {
  transform: translateY(-10px);
}
.cid-sLyKde6MeG .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sLyKde6MeG .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sLyKde6MeG .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sLyKde6MeG .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sLyKde6MeG .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sLyKde6MeG .social-row {
  text-align: center;
}
.cid-sLyKde6MeG .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-sLyKde6MeG .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sLyKde6MeG .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sLyKde6MeG .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sLyKde6MeG .mbr-section-title {
  color: #ffffff;
}
.cid-sLyKde6MeG .card-title,
.cid-sLyKde6MeG .social-row {
  color: #232323;
}
.cid-sLyKdfGksr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #022769;
}
.cid-sLyKdgbWdS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (max-width: 991px) {
  .cid-sLyKdgbWdS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sLyKdgbWdS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sLyKdgbWdS .text-wrapper {
    padding: 2rem;
  }
}
.cid-sLyKdgbWdS .mbr-text {
  text-align: left;
}
.cid-sLyKdgWu2T {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sLyKdhpI5J {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c50000;
}
.cid-sLyKdhpI5J .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sLyKdhpI5J .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sLyKdhpI5J .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sLyKdhpI5J .card-wrapper {
    padding: 4rem;
  }
}
.cid-sLyKdi6nIr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sLyKdiCH4Z {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sLyKdiCH4Z .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sLyKdiCH4Z .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sLyKdiCH4Z .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sLyKdiCH4Z .card-wrapper {
    padding: 4rem;
  }
}
.cid-sLyKdiCH4Z .mbr-text,
.cid-sLyKdiCH4Z .mbr-section-btn {
  text-align: left;
}
.cid-sLyKdjkhgO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-sLyKdjkhgO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sLyKdjkhgO .row {
  flex-direction: row-reverse;
}
.cid-sLyKdjkhgO img {
  width: 100%;
}
.cid-t4ISf0RNmL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #353535;
}
.cid-t4ISf0RNmL .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t4ISf0RNmL .team-card:hover {
  transform: translateY(-10px);
}
.cid-t4ISf0RNmL .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t4ISf0RNmL .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t4ISf0RNmL .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t4ISf0RNmL .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t4ISf0RNmL .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t4ISf0RNmL .social-row {
  text-align: center;
}
.cid-t4ISf0RNmL .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-t4ISf0RNmL .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t4ISf0RNmL .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t4ISf0RNmL .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t4ISf0RNmL .mbr-section-title {
  color: #f1d661;
}
.cid-t4ISf0RNmL .card-title,
.cid-t4ISf0RNmL .social-row {
  color: #232323;
}
.cid-t4ISf0RNmL .card-text,
.cid-t4ISf0RNmL .mbr-section-btn,
.cid-t4ISf0RNmL .social-row {
  text-align: left;
}
.cid-t5fqoxFFi4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-t5fqoxFFi4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t5fqoxFFi4 .row {
  flex-direction: row-reverse;
}
.cid-t5fqoxFFi4 img {
  width: 100%;
}
.cid-t5fqoxFFi4 .mbr-description {
  color: #ffffff;
}
.cid-t4ISf38NHm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t4ISf4YeMU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-t4ISf4YeMU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t4ISf4YeMU .row {
  flex-direction: row-reverse;
}
.cid-t4ISf4YeMU img {
  width: 100%;
}
