.btn {
  border-width: 2px;
}
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: #0159f9 !important;
}
.bg-success {
  background-color: #11c807 !important;
}
.bg-info {
  background-color: #256ae7 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0159f9 !important;
  border-color: #0159f9 !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: #013aa3 !important;
  border-color: #013aa3 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #013aa3 !important;
  border-color: #013aa3 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-info,
.btn-info:active {
  background-color: #256ae7 !important;
  border-color: #256ae7 !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: #1246a3 !important;
  border-color: #1246a3 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1246a3 !important;
  border-color: #1246a3 !important;
}
.btn-success,
.btn-success:active {
  background-color: #11c807 !important;
  border-color: #11c807 !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: #0a7404 !important;
  border-color: #0a7404 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0a7404 !important;
  border-color: #0a7404 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #0159f9;
  color: #0159f9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #013aa3 !important;
  background-color: transparent!important;
  border-color: #013aa3 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0159f9 !important;
  border-color: #0159f9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #256ae7;
  color: #256ae7;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #1246a3 !important;
  background-color: transparent!important;
  border-color: #1246a3 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #256ae7 !important;
  border-color: #256ae7 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #11c807;
  color: #11c807;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0a7404 !important;
  background-color: transparent!important;
  border-color: #0a7404 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #11c807 !important;
  border-color: #11c807 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  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: #ffd10a !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: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #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: #0159f9 !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #11c807 !important;
}
.text-info {
  color: #256ae7 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #013593 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #096504 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #104096 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #0159f9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #256ae7;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0159f9;
  border-color: #0159f9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0159f9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c7dbff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #5ef955;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dde8fb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: '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: #0159f9 !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: #0159f9;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0159f9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0159f9;
}
.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: #0159f9;
  border-bottom-color: #0159f9;
}
.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: #0159f9 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #e43f3f !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='%230159f9' %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-thomQ3T0Ci {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-thomQ3T0Ci nav.navbar {
  position: fixed;
}
.cid-thomQ3T0Ci .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thomQ3T0Ci .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-thomQ3T0Ci .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-thomQ3T0Ci .dropdown-item:hover,
.cid-thomQ3T0Ci .dropdown-item:focus {
  background: #0159f9 !important;
  color: white !important;
}
.cid-thomQ3T0Ci .dropdown-item:hover span {
  color: white;
}
.cid-thomQ3T0Ci .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-thomQ3T0Ci .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-thomQ3T0Ci .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-thomQ3T0Ci .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-thomQ3T0Ci .nav-link {
  position: relative;
}
.cid-thomQ3T0Ci .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-thomQ3T0Ci .container {
    flex-wrap: nowrap;
  }
}
.cid-thomQ3T0Ci .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-thomQ3T0Ci .dropdown-menu,
.cid-thomQ3T0Ci .navbar.opened {
  background: #4479d9 !important;
}
.cid-thomQ3T0Ci .nav-item:focus,
.cid-thomQ3T0Ci .nav-link:focus {
  outline: none;
}
.cid-thomQ3T0Ci .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-thomQ3T0Ci .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thomQ3T0Ci .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-thomQ3T0Ci .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thomQ3T0Ci .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-thomQ3T0Ci .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-thomQ3T0Ci .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-thomQ3T0Ci .navbar.opened {
  transition: all 0.3s;
}
.cid-thomQ3T0Ci .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-thomQ3T0Ci .navbar .navbar-logo img {
  width: auto;
}
.cid-thomQ3T0Ci .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-thomQ3T0Ci .navbar.collapsed {
  justify-content: center;
}
.cid-thomQ3T0Ci .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-thomQ3T0Ci .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-thomQ3T0Ci .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-thomQ3T0Ci .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-thomQ3T0Ci .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-thomQ3T0Ci .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-thomQ3T0Ci .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-thomQ3T0Ci .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-thomQ3T0Ci .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-thomQ3T0Ci .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-thomQ3T0Ci .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-thomQ3T0Ci .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-thomQ3T0Ci .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-thomQ3T0Ci .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-thomQ3T0Ci .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-thomQ3T0Ci .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-thomQ3T0Ci .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-thomQ3T0Ci .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-thomQ3T0Ci .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-thomQ3T0Ci .navbar.navbar-short {
  min-height: 60px;
}
.cid-thomQ3T0Ci .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-thomQ3T0Ci .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-thomQ3T0Ci .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-thomQ3T0Ci .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-thomQ3T0Ci .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-thomQ3T0Ci .dropdown-item.active,
.cid-thomQ3T0Ci .dropdown-item:active {
  background-color: transparent;
}
.cid-thomQ3T0Ci .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-thomQ3T0Ci .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-thomQ3T0Ci .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-thomQ3T0Ci .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-thomQ3T0Ci .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-thomQ3T0Ci .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thomQ3T0Ci ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-thomQ3T0Ci .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-thomQ3T0Ci button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-thomQ3T0Ci button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-thomQ3T0Ci button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-thomQ3T0Ci button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thomQ3T0Ci button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thomQ3T0Ci button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-thomQ3T0Ci nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thomQ3T0Ci nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-thomQ3T0Ci nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-thomQ3T0Ci nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thomQ3T0Ci .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-thomQ3T0Ci a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thomQ3T0Ci .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-thomQ3T0Ci .navbar {
    height: 70px;
  }
  .cid-thomQ3T0Ci .navbar.opened {
    height: auto;
  }
  .cid-thomQ3T0Ci .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8JEXG3QTv {
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-t8JEXG3QTv .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8JEXG3QTv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tT7QnLfxfA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tT7QnLfxfA nav.navbar {
  position: fixed;
}
.cid-tT7QnLfxfA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tT7QnLfxfA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tT7QnLfxfA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tT7QnLfxfA .dropdown-item:hover,
.cid-tT7QnLfxfA .dropdown-item:focus {
  background: #0159f9 !important;
  color: white !important;
}
.cid-tT7QnLfxfA .dropdown-item:hover span {
  color: white;
}
.cid-tT7QnLfxfA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tT7QnLfxfA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tT7QnLfxfA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tT7QnLfxfA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tT7QnLfxfA .nav-link {
  position: relative;
}
.cid-tT7QnLfxfA .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tT7QnLfxfA .container {
    flex-wrap: wrap;
  }
}
.cid-tT7QnLfxfA .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tT7QnLfxfA .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tT7QnLfxfA .iconfont-wrapper {
  color: #256ae7 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tT7QnLfxfA .dropdown-menu,
.cid-tT7QnLfxfA .navbar.opened {
  background: #efefef !important;
}
.cid-tT7QnLfxfA .nav-item:focus,
.cid-tT7QnLfxfA .nav-link:focus {
  outline: none;
}
.cid-tT7QnLfxfA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tT7QnLfxfA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tT7QnLfxfA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tT7QnLfxfA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tT7QnLfxfA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tT7QnLfxfA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tT7QnLfxfA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #efefef;
}
.cid-tT7QnLfxfA .navbar.opened {
  transition: all 0.3s;
}
.cid-tT7QnLfxfA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tT7QnLfxfA .navbar .navbar-logo img {
  width: auto;
}
.cid-tT7QnLfxfA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tT7QnLfxfA .navbar.collapsed {
  justify-content: center;
}
.cid-tT7QnLfxfA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tT7QnLfxfA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tT7QnLfxfA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tT7QnLfxfA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tT7QnLfxfA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tT7QnLfxfA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tT7QnLfxfA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tT7QnLfxfA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tT7QnLfxfA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tT7QnLfxfA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tT7QnLfxfA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tT7QnLfxfA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tT7QnLfxfA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tT7QnLfxfA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tT7QnLfxfA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tT7QnLfxfA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tT7QnLfxfA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tT7QnLfxfA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tT7QnLfxfA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tT7QnLfxfA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tT7QnLfxfA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tT7QnLfxfA .navbar.navbar-short {
  min-height: 60px;
}
.cid-tT7QnLfxfA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tT7QnLfxfA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tT7QnLfxfA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tT7QnLfxfA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tT7QnLfxfA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tT7QnLfxfA .dropdown-item.active,
.cid-tT7QnLfxfA .dropdown-item:active {
  background-color: transparent;
}
.cid-tT7QnLfxfA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tT7QnLfxfA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tT7QnLfxfA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tT7QnLfxfA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-tT7QnLfxfA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tT7QnLfxfA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tT7QnLfxfA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tT7QnLfxfA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tT7QnLfxfA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tT7QnLfxfA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0159f9;
}
.cid-tT7QnLfxfA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tT7QnLfxfA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT7QnLfxfA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT7QnLfxfA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tT7QnLfxfA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT7QnLfxfA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tT7QnLfxfA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tT7QnLfxfA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT7QnLfxfA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tT7QnLfxfA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tT7QnLfxfA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tT7QnLfxfA .navbar {
    height: 70px;
  }
  .cid-tT7QnLfxfA .navbar.opened {
    height: auto;
  }
  .cid-tT7QnLfxfA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t9iHUxTGlO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-t9iHUxTGlO .mbr-fallback-image.disabled {
  display: none;
}
.cid-t9iHUxTGlO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t9iHUxTGlO .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t9iHUxTGlO .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
@media (min-width: 992px) {
  .cid-t9iHUxTGlO .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-t9iHUxTGlO .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t9iHUxTGlO .mbr-section-title {
  color: #353535;
}
.cid-thiPY4KfMr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thiPY4KfMr .mbr-fallback-image.disabled {
  display: none;
}
.cid-thiPY4KfMr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thiPY4KfMr .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-thiPY4KfMr .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-thiPY4KfMr .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thiPY4KfMr .card-wrapper {
    padding: 4rem;
  }
}
.cid-thiPY4KfMr .mbr-text,
.cid-thiPY4KfMr .mbr-section-btn {
  color: #ffffff;
}
.cid-thiPY4KfMr .card-title,
.cid-thiPY4KfMr .card-box {
  text-align: left;
}
.cid-tNKgLTUfrm {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNKgLTUfrm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNKgLTUfrm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNKgLTUfrm .card-wrapper {
  background: #22a5e5;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tNKgLTUfrm .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tNKgLTUfrm .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNKgLTUfrm .card-wrapper {
    padding: 4rem;
  }
}
.cid-tNKgLTUfrm .mbr-text,
.cid-tNKgLTUfrm .mbr-section-btn {
  color: #ffffff;
}
.cid-tNKgLTUfrm .card-title,
.cid-tNKgLTUfrm .card-box {
  text-align: left;
}
.cid-tn9I8vbYbT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tn9I8vbYbT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn9I8vbYbT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn9I8vbYbT .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tn9I8vbYbT .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tn9I8vbYbT .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tn9I8vbYbT .card-wrapper {
    padding: 4rem;
  }
}
.cid-tn9I8vbYbT .mbr-text,
.cid-tn9I8vbYbT .mbr-section-btn {
  color: #ffffff;
}
.cid-tn9I8vbYbT .card-title,
.cid-tn9I8vbYbT .card-box {
  text-align: left;
}
.cid-tn9WcegkbA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tn9WcegkbA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn9WcegkbA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn9WcegkbA .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-tn9WcegkbA .item {
    margin-bottom: 4rem;
  }
}
.cid-tn9WcegkbA .item:last-child .icon-box:before {
  display: none;
}
.cid-tn9WcegkbA .item.last .icon-box:before {
  display: none;
}
.cid-tn9WcegkbA .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tn9WcegkbA .icon-box {
    margin-right: 1rem;
  }
}
.cid-tn9WcegkbA span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tn9WcegkbA .card {
    margin-bottom: 2rem;
  }
  .cid-tn9WcegkbA .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tT89RkGnEU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tT89RkGnEU img,
.cid-tT89RkGnEU .item-img {
  width: 100%;
}
.cid-tT89RkGnEU .item:focus,
.cid-tT89RkGnEU span:focus {
  outline: none;
}
.cid-tT89RkGnEU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tT89RkGnEU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tT89RkGnEU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tT89RkGnEU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tT89RkGnEU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tT89RkGnEU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tT89RkGnEU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tT89RkGnEU .mbr-section-title {
  color: #232323;
}
.cid-tT89RkGnEU .mbr-text,
.cid-tT89RkGnEU .mbr-section-btn {
  text-align: left;
}
.cid-tT89RkGnEU .item-title {
  text-align: left;
}
.cid-tT89RkGnEU .item-subtitle {
  text-align: left;
}
.cid-tLFwzuNWsl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffae6;
}
.cid-tLFwzuNWsl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLFwzuNWsl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLFwzuNWsl .video-wrapper iframe {
  width: 100%;
}
.cid-tLFwzuNWsl .mbr-section-title,
.cid-tLFwzuNWsl .mbr-section-subtitle,
.cid-tLFwzuNWsl .mbr-text {
  text-align: center;
}
#custom-html-55 {
  /* Additional media query for extra responsiveness */
}
#custom-html-55 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-55 #resource-links {
  text-align: center;
  background-color: #6fbbff;
  /* Set the background color to light blue */
  padding: 20px;
  /* Add padding for better spacing */
}
#custom-html-55 .resource-btn {
  display: block;
  width: 80%;
  /* Use percentage width for responsiveness */
  max-width: 600px;
  /* Ensure maximum width */
  margin: 10px auto;
  /* Center align and add space between buttons */
  text-align: center;
}
#custom-html-55 #resource-links h2,
#custom-html-55 #resource-links h3 {
  padding: 10px;
  /* Add padding around h2 and h3 */
  color: #555;
  /* Change color of h2 and h3 */
}
@media (max-width: 600px) {
  #custom-html-55 .resource-btn {
    width: 90%;
    /* Increase width percentage on smaller screens */
  }
}
.cid-tLFE5iQJFK {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #dee4ee;
}
.cid-tLFE5iQJFK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLFE5iQJFK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLFE5iQJFK .video-wrapper iframe {
  width: 100%;
  border-radius: 6px;
}
.cid-tLFE5iQJFK .mbr-section-title,
.cid-tLFE5iQJFK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tLFE5iQJFK .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpTBik8S35 {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #bed3f9;
}
.cid-tpTBik8S35 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpTBik8S35 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpTBik8S35 .video-wrapper iframe {
  width: 100%;
  border-radius: 6px;
}
.cid-tpTBik8S35 .mbr-section-title,
.cid-tpTBik8S35 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpTBik8S35 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tn0Cgr426F {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #dee4ee;
}
.cid-tn0Cgr426F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn0Cgr426F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn0Cgr426F .row {
  flex-direction: row-reverse;
}
.cid-tn0Cgr426F .video-wrapper iframe {
  width: 100%;
  border-radius: 6px;
}
.cid-tn0Cgr426F .mbr-section-title,
.cid-tn0Cgr426F .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tn0Cgr426F .text-wrapper {
    padding: 2rem;
  }
}
.cid-tn0Ck53S1d {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #dee4ee;
}
.cid-tn0Ck53S1d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn0Ck53S1d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn0Ck53S1d .video-wrapper iframe {
  width: 100%;
  border-radius: 6px;
}
.cid-tn0Ck53S1d .mbr-section-title,
.cid-tn0Ck53S1d .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tn0Ck53S1d .text-wrapper {
    padding: 2rem;
  }
}
.cid-tn0GQCXRD7 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #dee4ee;
}
.cid-tn0GQCXRD7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn0GQCXRD7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn0GQCXRD7 .row {
  flex-direction: row-reverse;
}
.cid-tn0GQCXRD7 .video-wrapper iframe {
  width: 100%;
  border-radius: 6px;
}
.cid-tn0GQCXRD7 .mbr-section-title,
.cid-tn0GQCXRD7 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tn0GQCXRD7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-thohMEbBjL {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-thohMEbBjL .mbr-fallback-image.disabled {
  display: none;
}
.cid-thohMEbBjL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thohMEbBjL .mbr-section-subtitle {
  color: #353535;
}
.cid-u57g0KhGS3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #430057;
}
.cid-u57g0KhGS3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u57g0KhGS3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u57g0KhGS3 .content-wrapper {
  background: #420155;
}
@media (max-width: 991px) {
  .cid-u57g0KhGS3 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u57g0KhGS3 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u57g0KhGS3 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u57g0KhGS3 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u57g0KhGS3 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u57g0KhGS3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u57g0KhGS3 .card-title {
  color: #ffffff;
}
.cid-u57g0KhGS3 .mbr-text,
.cid-u57g0KhGS3 .mbr-section-btn {
  color: #ffffff;
}
.cid-tpZDLiGk67.popup-builder {
  background-color: #ffffff;
}
.cid-tpZDLiGk67.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tpZDLiGk67.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tpZDLiGk67 .modal-content,
.cid-tpZDLiGk67 .modal-dialog {
  height: auto;
}
.cid-tpZDLiGk67 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tpZDLiGk67 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tpZDLiGk67 .form-wrapper .mbr-form .form-group,
  .cid-tpZDLiGk67 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tpZDLiGk67 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tpZDLiGk67 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tpZDLiGk67 .mbr-text {
  text-align: center;
}
.cid-tpZDLiGk67 .pt-0 {
  padding-top: 0 !important;
}
.cid-tpZDLiGk67 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tpZDLiGk67 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tpZDLiGk67 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tpZDLiGk67 .modal-open {
  overflow: hidden;
}
.cid-tpZDLiGk67 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tpZDLiGk67 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tpZDLiGk67 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tpZDLiGk67 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tpZDLiGk67 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tpZDLiGk67 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tpZDLiGk67 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tpZDLiGk67 .modal-content {
  background: #9fdbf8;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tpZDLiGk67 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tpZDLiGk67 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tpZDLiGk67 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tpZDLiGk67 .modal-backdrop.show {
  opacity: .5;
}
.cid-tpZDLiGk67 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tpZDLiGk67 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tpZDLiGk67 .modal-header {
    padding: 1rem;
  }
}
.cid-tpZDLiGk67 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tpZDLiGk67 .modal-header .close svg {
  fill: #353535;
}
.cid-tpZDLiGk67 .modal-header .close:hover {
  opacity: 1;
}
.cid-tpZDLiGk67 .modal-header .close:focus {
  outline: none;
}
.cid-tpZDLiGk67 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tpZDLiGk67 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tpZDLiGk67 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tpZDLiGk67 .modal-body {
    padding: 1rem;
  }
}
.cid-tpZDLiGk67 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpZDLiGk67 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tpZDLiGk67 .modal-footer {
    padding: 1rem;
  }
}
.cid-tpZDLiGk67 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tpZDLiGk67 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tpZDLiGk67 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tpZDLiGk67 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tpZDLiGk67 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tpZDLiGk67 .modal-lg,
  .cid-tpZDLiGk67 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tpZDLiGk67 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tpZDLiGk67 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tpZDLiGk67 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tpZDLiGk67 .form-group {
  margin-bottom: 1rem;
}
.cid-tpZDLiGk67 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tpZDLiGk67 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tpZDLiGk67 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tpZDLiGk67 .mbr-section-btn {
  margin: 0;
}
.cid-tpZDLiGk67 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-ta2aNWPbT6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-ta2aNWPbT6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ta2aNWPbT6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ta2aNWPbT6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ta2aNWPbT6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ta2aNWPbT6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ta2aNWPbT6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ta2aNWPbT6 .mbr-section-title {
  color: #353535;
}
.cid-thiP6uhEJF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thiP6uhEJF .mbr-fallback-image.disabled {
  display: none;
}
.cid-thiP6uhEJF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thiP6uhEJF .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-thiP6uhEJF .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-thiP6uhEJF .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thiP6uhEJF .card-wrapper {
    padding: 4rem;
  }
}
.cid-thiP6uhEJF .mbr-text,
.cid-thiP6uhEJF .mbr-section-btn {
  color: #ffffff;
}
.cid-thiP6uhEJF .card-title,
.cid-thiP6uhEJF .card-box {
  text-align: left;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-ta2bBk3et6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-ta2bBk3et6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ta2bBk3et6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ta2bBk3et6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ta2bBk3et6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ta2bBk3et6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ta2bBk3et6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ta2bBk3et6 .mbr-section-title {
  color: #353535;
}
.cid-thiPHC1Fd5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thiPHC1Fd5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-thiPHC1Fd5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thiPHC1Fd5 .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-thiPHC1Fd5 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-thiPHC1Fd5 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thiPHC1Fd5 .card-wrapper {
    padding: 4rem;
  }
}
.cid-thiPHC1Fd5 .mbr-text,
.cid-thiPHC1Fd5 .mbr-section-btn {
  color: #ffffff;
}
.cid-thiPHC1Fd5 .card-title,
.cid-thiPHC1Fd5 .card-box {
  text-align: left;
}
.cid-ta2bBkDFE5 {
  background-color: #47b5ed;
}
.cid-ta2bBkDFE5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ta2bBkDFE5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ta2bBkDFE5 .mbr-section-title {
  color: #ffffff;
}
.cid-ta2bBkDFE5 .mbr-text,
.cid-ta2bBkDFE5 .mbr-section-btn {
  color: #ffffff;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-ta2c2lGDV7 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-ta2c2lGDV7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ta2c2lGDV7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ta2c2lGDV7 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ta2c2lGDV7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ta2c2lGDV7 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ta2c2lGDV7 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ta2c2lGDV7 .mbr-section-title {
  color: #353535;
}
.cid-thiLZUrPbe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thiLZUrPbe .mbr-fallback-image.disabled {
  display: none;
}
.cid-thiLZUrPbe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thiLZUrPbe .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-thiLZUrPbe .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-thiLZUrPbe .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thiLZUrPbe .card-wrapper {
    padding: 4rem;
  }
}
.cid-thiLZUrPbe .mbr-text,
.cid-thiLZUrPbe .mbr-section-btn {
  color: #ffffff;
}
.cid-thiLZUrPbe .card-title,
.cid-thiLZUrPbe .card-box {
  text-align: left;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-ta2coMCMbp {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-ta2coMCMbp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ta2coMCMbp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ta2coMCMbp .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ta2coMCMbp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ta2coMCMbp .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ta2coMCMbp .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ta2coMCMbp .mbr-section-title {
  color: #353535;
}
.cid-thiLqc39u3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thiLqc39u3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-thiLqc39u3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thiLqc39u3 .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-thiLqc39u3 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-thiLqc39u3 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thiLqc39u3 .card-wrapper {
    padding: 4rem;
  }
}
.cid-thiLqc39u3 .mbr-text,
.cid-thiLqc39u3 .mbr-section-btn {
  color: #ffffff;
}
.cid-thiLqc39u3 .card-title,
.cid-thiLqc39u3 .card-box {
  text-align: left;
}
.cid-tn0NtZidwO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tn0NtZidwO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn0NtZidwO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn0NtZidwO .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-tn0NtZidwO .item {
    margin-bottom: 4rem;
  }
}
.cid-tn0NtZidwO .item:last-child .icon-box:before {
  display: none;
}
.cid-tn0NtZidwO .item.last .icon-box:before {
  display: none;
}
.cid-tn0NtZidwO .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tn0NtZidwO .icon-box {
    margin-right: 1rem;
  }
}
.cid-tn0NtZidwO span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tn0NtZidwO .card {
    margin-bottom: 2rem;
  }
  .cid-tn0NtZidwO .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tnmrlbL5vM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tnmrlbL5vM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnmrlbL5vM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnmrlbL5vM .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tnmrlbL5vM .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tnmrlbL5vM .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tnmrlbL5vM .card-wrapper {
    padding: 4rem;
  }
}
.cid-tnmrlbL5vM .mbr-text,
.cid-tnmrlbL5vM .mbr-section-btn {
  color: #ffffff;
}
.cid-tnmrlbL5vM .card-title,
.cid-tnmrlbL5vM .card-box {
  text-align: left;
}
.cid-uGnl4ddfgz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #29aaec;
}
.cid-uGnl4ddfgz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGnl4ddfgz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGnl4ddfgz .card-wrapper {
  background: #29aaec;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uGnl4ddfgz .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uGnl4ddfgz .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGnl4ddfgz .card-wrapper {
    padding: 4rem;
  }
}
.cid-uGnl4ddfgz .mbr-text,
.cid-uGnl4ddfgz .mbr-section-btn {
  color: #ffffff;
}
.cid-uGnl4ddfgz .card-title,
.cid-uGnl4ddfgz .card-box {
  text-align: left;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-taf13AWp2l {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-taf13AWp2l .mbr-fallback-image.disabled {
  display: none;
}
.cid-taf13AWp2l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-taf13AWp2l .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-taf13AWp2l .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-taf13AWp2l .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-taf13AWp2l .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-taf13AWp2l .mbr-section-title {
  color: #353535;
}
.cid-thiQcn2zBz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thiQcn2zBz .mbr-fallback-image.disabled {
  display: none;
}
.cid-thiQcn2zBz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thiQcn2zBz .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-thiQcn2zBz .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-thiQcn2zBz .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thiQcn2zBz .card-wrapper {
    padding: 4rem;
  }
}
.cid-thiQcn2zBz .mbr-text,
.cid-thiQcn2zBz .mbr-section-btn {
  color: #ffffff;
}
.cid-thiQcn2zBz .card-title,
.cid-thiQcn2zBz .card-box {
  text-align: left;
}
.cid-totsT7gdqU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-totsT7gdqU .mbr-fallback-image.disabled {
  display: none;
}
.cid-totsT7gdqU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-totsT7gdqU .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-totsT7gdqU .item {
    margin-bottom: 4rem;
  }
}
.cid-totsT7gdqU .item:last-child .icon-box:before {
  display: none;
}
.cid-totsT7gdqU .item.last .icon-box:before {
  display: none;
}
.cid-totsT7gdqU .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-totsT7gdqU .icon-box {
    margin-right: 1rem;
  }
}
.cid-totsT7gdqU span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-totsT7gdqU .card {
    margin-bottom: 2rem;
  }
  .cid-totsT7gdqU .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-totnlrjrms {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-totnlrjrms .mbr-fallback-image.disabled {
  display: none;
}
.cid-totnlrjrms .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-totnlrjrms .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-totnlrjrms .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-totnlrjrms .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-totnlrjrms .card-wrapper {
    padding: 4rem;
  }
}
.cid-totnlrjrms .mbr-text,
.cid-totnlrjrms .mbr-section-btn {
  color: #ffffff;
}
.cid-totnlrjrms .card-title,
.cid-totnlrjrms .card-box {
  text-align: left;
}
.cid-tpTwgnSJXK {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #dee4ee;
}
.cid-tpTwgnSJXK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpTwgnSJXK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpTwgnSJXK .video-wrapper iframe {
  width: 100%;
}
.cid-tpTwgnSJXK .mbr-section-title,
.cid-tpTwgnSJXK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpTwgnSJXK .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpTvifdcgi {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpTvifdcgi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpTvifdcgi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpTvifdcgi .row {
  flex-direction: row-reverse;
}
.cid-tpTvifdcgi .video-wrapper iframe {
  width: 100%;
}
.cid-tpTvifdcgi .mbr-section-title,
.cid-tpTvifdcgi .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpTvifdcgi .text-wrapper {
    padding: 2rem;
  }
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-taf1akM8tf {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-taf1akM8tf .mbr-fallback-image.disabled {
  display: none;
}
.cid-taf1akM8tf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-taf1akM8tf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-taf1akM8tf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-taf1akM8tf .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-taf1akM8tf .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-taf1akM8tf .mbr-section-title {
  color: #353535;
}
.cid-thiQpibYrJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thiQpibYrJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-thiQpibYrJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thiQpibYrJ .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-thiQpibYrJ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-thiQpibYrJ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thiQpibYrJ .card-wrapper {
    padding: 4rem;
  }
}
.cid-thiQpibYrJ .mbr-text,
.cid-thiQpibYrJ .mbr-section-btn {
  color: #ffffff;
}
.cid-thiQpibYrJ .card-title,
.cid-thiQpibYrJ .card-box {
  text-align: left;
}
.cid-tn0tHShXXt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tn0tHShXXt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn0tHShXXt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn0tHShXXt .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-tn0tHShXXt .item {
    margin-bottom: 4rem;
  }
}
.cid-tn0tHShXXt .item:last-child .icon-box:before {
  display: none;
}
.cid-tn0tHShXXt .item.last .icon-box:before {
  display: none;
}
.cid-tn0tHShXXt .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tn0tHShXXt .icon-box {
    margin-right: 1rem;
  }
}
.cid-tn0tHShXXt span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tn0tHShXXt .card {
    margin-bottom: 2rem;
  }
  .cid-tn0tHShXXt .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tnmwMmYpfZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tnmwMmYpfZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnmwMmYpfZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnmwMmYpfZ .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tnmwMmYpfZ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tnmwMmYpfZ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tnmwMmYpfZ .card-wrapper {
    padding: 4rem;
  }
}
.cid-tnmwMmYpfZ .mbr-text,
.cid-tnmwMmYpfZ .mbr-section-btn {
  color: #ffffff;
}
.cid-tnmwMmYpfZ .card-title,
.cid-tnmwMmYpfZ .card-box {
  text-align: left;
}
.cid-tLXuZSLwXv {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tLXuZSLwXv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLXuZSLwXv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLXuZSLwXv .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tLXuZSLwXv .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tLXuZSLwXv .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
@media (min-width: 992px) {
  .cid-tLXuZSLwXv .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tLXuZSLwXv .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-taf1cYdJHE {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-taf1cYdJHE .mbr-fallback-image.disabled {
  display: none;
}
.cid-taf1cYdJHE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-taf1cYdJHE .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-taf1cYdJHE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-taf1cYdJHE .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-taf1cYdJHE .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-taf1cYdJHE .mbr-section-title {
  color: #353535;
}
.cid-thiQCFCFYD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thiQCFCFYD .mbr-fallback-image.disabled {
  display: none;
}
.cid-thiQCFCFYD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thiQCFCFYD .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-thiQCFCFYD .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-thiQCFCFYD .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thiQCFCFYD .card-wrapper {
    padding: 4rem;
  }
}
.cid-thiQCFCFYD .mbr-text,
.cid-thiQCFCFYD .mbr-section-btn {
  color: #ffffff;
}
.cid-thiQCFCFYD .card-title,
.cid-thiQCFCFYD .card-box {
  text-align: left;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tmuSKmUtjL {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-tmuSKmUtjL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmuSKmUtjL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tmuSKmUtjL .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tmuSKmUtjL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tmuSKmUtjL .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tmuSKmUtjL .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tmuSKmUtjL .mbr-section-title {
  color: #353535;
}
.cid-thiJmH536y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-thiJmH536y .mbr-fallback-image.disabled {
  display: none;
}
.cid-thiJmH536y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thiJmH536y .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-thiJmH536y .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-thiJmH536y .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thiJmH536y .card-wrapper {
    padding: 4rem;
  }
}
.cid-thiJmH536y .mbr-text,
.cid-thiJmH536y .mbr-section-btn {
  color: #ffffff;
}
.cid-thiJmH536y .card-title,
.cid-thiJmH536y .card-box {
  text-align: left;
}
.cid-tmuSMFAI5F {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tmuSMFAI5F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmuSMFAI5F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmuSMFAI5F .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-tmuSMFAI5F .item {
    margin-bottom: 4rem;
  }
}
.cid-tmuSMFAI5F .item:last-child .icon-box:before {
  display: none;
}
.cid-tmuSMFAI5F .item.last .icon-box:before {
  display: none;
}
.cid-tmuSMFAI5F .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tmuSMFAI5F .icon-box {
    margin-right: 1rem;
  }
}
.cid-tmuSMFAI5F span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tmuSMFAI5F .card {
    margin-bottom: 2rem;
  }
  .cid-tmuSMFAI5F .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tiCnDPEIOg {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-tiCnDPEIOg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiCnDPEIOg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tiCnDPEIOg .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tiCnDPEIOg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tiCnDPEIOg .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tiCnDPEIOg .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tiCnDPEIOg .mbr-section-title {
  color: #353535;
}
.cid-tiCnDQdQXv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tiCnDQdQXv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiCnDQdQXv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiCnDQdQXv .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tiCnDQdQXv .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tiCnDQdQXv .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tiCnDQdQXv .card-wrapper {
    padding: 4rem;
  }
}
.cid-tiCnDQdQXv .mbr-text,
.cid-tiCnDQdQXv .mbr-section-btn {
  color: #ffffff;
}
.cid-tiCnDQdQXv .card-title,
.cid-tiCnDQdQXv .card-box {
  text-align: left;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-ti4jBjPLpB {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-ti4jBjPLpB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ti4jBjPLpB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ti4jBjPLpB .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ti4jBjPLpB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ti4jBjPLpB .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ti4jBjPLpB .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ti4jBjPLpB .mbr-section-title {
  color: #353535;
}
.cid-ti4jBk4pKi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ti4jBk4pKi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ti4jBk4pKi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ti4jBk4pKi .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ti4jBk4pKi .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ti4jBk4pKi .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ti4jBk4pKi .card-wrapper {
    padding: 4rem;
  }
}
.cid-ti4jBk4pKi .mbr-text,
.cid-ti4jBk4pKi .mbr-section-btn {
  color: #ffffff;
}
.cid-ti4jBk4pKi .card-title,
.cid-ti4jBk4pKi .card-box {
  text-align: left;
}
.cid-ti4jBkhpYz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ti4jBkhpYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ti4jBkhpYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tjcDqj7tjY {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-tjcDqj7tjY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjcDqj7tjY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tjcDqj7tjY .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tjcDqj7tjY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tjcDqj7tjY .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tjcDqj7tjY .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tjcDqj7tjY .mbr-section-title {
  color: #353535;
}
.cid-tjcDqjm2B0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tjcDqjm2B0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjcDqjm2B0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjcDqjm2B0 .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tjcDqjm2B0 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tjcDqjm2B0 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tjcDqjm2B0 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tjcDqjm2B0 .mbr-text,
.cid-tjcDqjm2B0 .mbr-section-btn {
  color: #ffffff;
}
.cid-tjcDqjm2B0 .card-title,
.cid-tjcDqjm2B0 .card-box {
  text-align: left;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tk48iGfZHk {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-tk48iGfZHk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk48iGfZHk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tk48iGfZHk .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tk48iGfZHk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tk48iGfZHk .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tk48iGfZHk .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tk48iGfZHk .mbr-section-title {
  color: #353535;
}
.cid-tk48iHjV8l {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tk48iHjV8l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk48iHjV8l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk48iHjV8l .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tk48iHjV8l .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tk48iHjV8l .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tk48iHjV8l .card-wrapper {
    padding: 4rem;
  }
}
.cid-tk48iHjV8l .mbr-text,
.cid-tk48iHjV8l .mbr-section-btn {
  color: #ffffff;
}
.cid-tk48iHjV8l .card-title,
.cid-tk48iHjV8l .card-box {
  text-align: left;
}
.cid-tocB4bzyr3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tocB4bzyr3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tocB4bzyr3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tocB4bzyr3 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-tocB4bzyr3 .item {
    margin-bottom: 4rem;
  }
}
.cid-tocB4bzyr3 .item:last-child .icon-box:before {
  display: none;
}
.cid-tocB4bzyr3 .item.last .icon-box:before {
  display: none;
}
.cid-tocB4bzyr3 .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tocB4bzyr3 .icon-box {
    margin-right: 1rem;
  }
}
.cid-tocB4bzyr3 span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tocB4bzyr3 .card {
    margin-bottom: 2rem;
  }
  .cid-tocB4bzyr3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tocsn8ASYy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tocsn8ASYy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tocsn8ASYy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tocsn8ASYy .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tocsn8ASYy .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tocsn8ASYy .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tocsn8ASYy .card-wrapper {
    padding: 4rem;
  }
}
.cid-tocsn8ASYy .mbr-text,
.cid-tocsn8ASYy .mbr-section-btn {
  color: #ffffff;
}
.cid-tocsn8ASYy .card-title,
.cid-tocsn8ASYy .card-box {
  text-align: left;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tkaiCOe52W {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-tkaiCOe52W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkaiCOe52W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tkaiCOe52W .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tkaiCOe52W .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tkaiCOe52W .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tkaiCOe52W .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tkaiCOe52W .mbr-section-title {
  color: #353535;
}
.cid-tkaiCOQkR0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tkaiCOQkR0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkaiCOQkR0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkaiCOQkR0 .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tkaiCOQkR0 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tkaiCOQkR0 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tkaiCOQkR0 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tkaiCOQkR0 .mbr-text,
.cid-tkaiCOQkR0 .mbr-section-btn {
  color: #ffffff;
}
.cid-tkaiCOQkR0 .card-title,
.cid-tkaiCOQkR0 .card-box {
  text-align: left;
}
.cid-toczNLXz1T {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-toczNLXz1T .mbr-fallback-image.disabled {
  display: none;
}
.cid-toczNLXz1T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toczNLXz1T .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-toczNLXz1T .item {
    margin-bottom: 4rem;
  }
}
.cid-toczNLXz1T .item:last-child .icon-box:before {
  display: none;
}
.cid-toczNLXz1T .item.last .icon-box:before {
  display: none;
}
.cid-toczNLXz1T .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-toczNLXz1T .icon-box {
    margin-right: 1rem;
  }
}
.cid-toczNLXz1T span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-toczNLXz1T .card {
    margin-bottom: 2rem;
  }
  .cid-toczNLXz1T .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-toct2dLRd0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-toct2dLRd0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-toct2dLRd0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toct2dLRd0 .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-toct2dLRd0 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-toct2dLRd0 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-toct2dLRd0 .card-wrapper {
    padding: 4rem;
  }
}
.cid-toct2dLRd0 .mbr-text,
.cid-toct2dLRd0 .mbr-section-btn {
  color: #ffffff;
}
.cid-toct2dLRd0 .card-title,
.cid-toct2dLRd0 .card-box {
  text-align: left;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tmvjM8yrd5 {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-tmvjM8yrd5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmvjM8yrd5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tmvjM8yrd5 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tmvjM8yrd5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tmvjM8yrd5 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tmvjM8yrd5 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tmvjM8yrd5 .mbr-section-title {
  color: #353535;
}
.cid-tmvjM90Zl6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tmvjM90Zl6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmvjM90Zl6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmvjM90Zl6 .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tmvjM90Zl6 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmvjM90Zl6 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmvjM90Zl6 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tmvjM90Zl6 .mbr-text,
.cid-tmvjM90Zl6 .mbr-section-btn {
  color: #ffffff;
}
.cid-tmvjM90Zl6 .card-title,
.cid-tmvjM90Zl6 .card-box {
  text-align: left;
}
.cid-tmvjM9O9Ek {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tmvjM9O9Ek .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmvjM9O9Ek .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmvjM9O9Ek .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-tmvjM9O9Ek .item {
    margin-bottom: 4rem;
  }
}
.cid-tmvjM9O9Ek .item:last-child .icon-box:before {
  display: none;
}
.cid-tmvjM9O9Ek .item.last .icon-box:before {
  display: none;
}
.cid-tmvjM9O9Ek .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tmvjM9O9Ek .icon-box {
    margin-right: 1rem;
  }
}
.cid-tmvjM9O9Ek span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tmvjM9O9Ek .card {
    margin-bottom: 2rem;
  }
  .cid-tmvjM9O9Ek .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tnqRMrwOIA {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-tnqRMrwOIA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnqRMrwOIA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tnqRMrwOIA .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tnqRMrwOIA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tnqRMrwOIA .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tnqRMrwOIA .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tnqRMrwOIA .mbr-section-title {
  color: #353535;
  text-align: right;
}
.cid-tnqRMrwOIA .mbr-text,
.cid-tnqRMrwOIA .mbr-section-btn {
  text-align: right;
}
.cid-tnqRMrVdcR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tnqRMrVdcR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnqRMrVdcR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnqRMrVdcR .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tnqRMrVdcR .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tnqRMrVdcR .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tnqRMrVdcR .card-wrapper {
    padding: 4rem;
  }
}
.cid-tnqRMrVdcR .mbr-text,
.cid-tnqRMrVdcR .mbr-section-btn {
  color: #ffffff;
}
.cid-tnqRMrVdcR .card-title,
.cid-tnqRMrVdcR .card-box {
  text-align: right;
}
.cid-tnqRMsfyov {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tnqRMsfyov .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnqRMsfyov .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnqRMsfyov .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-tnqRMsfyov .item {
    margin-bottom: 4rem;
  }
}
.cid-tnqRMsfyov .item:last-child .icon-box:before {
  display: none;
}
.cid-tnqRMsfyov .item.last .icon-box:before {
  display: none;
}
.cid-tnqRMsfyov .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tnqRMsfyov .icon-box {
    margin-right: 1rem;
  }
}
.cid-tnqRMsfyov span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tnqRMsfyov .card {
    margin-bottom: 2rem;
  }
  .cid-tnqRMsfyov .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tnqRMt9DcQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tnqRMt9DcQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnqRMt9DcQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnqRMt9DcQ .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tnqRMt9DcQ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tnqRMt9DcQ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tnqRMt9DcQ .card-wrapper {
    padding: 4rem;
  }
}
.cid-tnqRMt9DcQ .mbr-text,
.cid-tnqRMt9DcQ .mbr-section-btn {
  color: #ffffff;
}
.cid-tnqRMt9DcQ .card-title,
.cid-tnqRMt9DcQ .card-box {
  text-align: left;
}
.cid-uMir8EkaLG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #29aaec;
}
.cid-uMir8EkaLG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMir8EkaLG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMir8EkaLG .card-wrapper {
  background: #29aaec;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uMir8EkaLG .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uMir8EkaLG .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMir8EkaLG .card-wrapper {
    padding: 4rem;
  }
}
.cid-uMir8EkaLG .mbr-text,
.cid-uMir8EkaLG .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uMir8EkaLG .card-title,
.cid-uMir8EkaLG .card-box {
  text-align: left;
}
.cid-uMir8EkaLG .card-title,
.cid-uMir8EkaLG .card-box DIV {
  text-align: center;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tpSVA3vB57 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-tpSVA3vB57 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpSVA3vB57 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tpSVA3vB57 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tpSVA3vB57 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tpSVA3vB57 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tpSVA3vB57 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tpSVA3vB57 .mbr-section-title {
  color: #353535;
}
.cid-tpSVA3TMwo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tpSVA3TMwo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpSVA3TMwo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpSVA3TMwo .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tpSVA3TMwo .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tpSVA3TMwo .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tpSVA3TMwo .card-wrapper {
    padding: 4rem;
  }
}
.cid-tpSVA3TMwo .mbr-text,
.cid-tpSVA3TMwo .mbr-section-btn {
  color: #ffffff;
}
.cid-tpSVA3TMwo .card-title,
.cid-tpSVA3TMwo .card-box {
  text-align: left;
}
.cid-tq4ycCeMWa {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tq4ycCeMWa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq4ycCeMWa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tq4ycCeMWa .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-tq4ycCeMWa .item {
    margin-bottom: 4rem;
  }
}
.cid-tq4ycCeMWa .item:last-child .icon-box:before {
  display: none;
}
.cid-tq4ycCeMWa .item.last .icon-box:before {
  display: none;
}
.cid-tq4ycCeMWa .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tq4ycCeMWa .icon-box {
    margin-right: 1rem;
  }
}
.cid-tq4ycCeMWa span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tq4ycCeMWa .card {
    margin-bottom: 2rem;
  }
  .cid-tq4ycCeMWa .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tq4yb3sQpX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tq4yb3sQpX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq4yb3sQpX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tq4yb3sQpX .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tq4yb3sQpX .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tq4yb3sQpX .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tq4yb3sQpX .card-wrapper {
    padding: 4rem;
  }
}
.cid-tq4yb3sQpX .mbr-text,
.cid-tq4yb3sQpX .mbr-section-btn {
  color: #ffffff;
}
.cid-tq4yb3sQpX .card-title,
.cid-tq4yb3sQpX .card-box {
  text-align: left;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tJZ3rA6p9V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background-howtohelp-2000x984.jpg");
}
.cid-tJZ3rA6p9V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJZ3rA6p9V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJZ3rA6p9V .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tJZ3rA6p9V .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tJZ3rA6p9V .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tJZ3rA6p9V .card {
    margin-bottom: 2rem;
  }
  .cid-tJZ3rA6p9V .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tKVKYaePf7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tKVKYaePf7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKVKYaePf7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKVNVAGfo8 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tKVNVAGfo8 img,
.cid-tKVNVAGfo8 .item-img {
  width: 100%;
}
.cid-tKVNVAGfo8 .item:focus,
.cid-tKVNVAGfo8 span:focus {
  outline: none;
}
.cid-tKVNVAGfo8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tKVNVAGfo8 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tKVNVAGfo8 .item {
  padding: 0;
  margin: 0;
}
.cid-tKVNVAGfo8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKVNVAGfo8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tKVNVAGfo8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKVNVAGfo8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tKVNVAGfo8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tKVNVAGfo8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKVNVAGfo8 .mbr-section-title {
  color: #232323;
}
.cid-tKVNVAGfo8 .mbr-text,
.cid-tKVNVAGfo8 .mbr-section-btn {
  text-align: left;
}
.cid-tKVNVAGfo8 .item-title {
  text-align: left;
}
.cid-tKVNVAGfo8 .item-subtitle {
  text-align: left;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tLEXbM4fD6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: linear-gradient(180deg, #e68b3b 10%, #6592e6 100%) !important;
}
.cid-tLEXbM4fD6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLEXbM4fD6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLEXbM4fD6 .mbr-text,
.cid-tLEXbM4fD6 .mbr-section-btn {
  text-align: center;
}
.cid-tLEXkSM5jI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #6592e6;
}
.cid-tLEXkSM5jI .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tLEXkSM5jI H4 {
  color: #ffffff;
}
.cid-tLEXkSM5jI LABEL {
  color: #fafafa;
}
.cid-tLFh2mk3Os {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(180deg, #6592e6 10%, #f89d36 100%) !important;
}
.cid-tLFh2mk3Os .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLFh2mk3Os .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
#custom-html-4o {
  /* Type valid CSS here */
}
#custom-html-4o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4o p {
  font-size: 60px;
  color: #777;
}
.cid-tWm1psbkBm {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tWm1psbkBm .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tKW6jOQhhn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-ujTU8BSawh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ujTU8BSawh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujTU8BSawh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujTU8C0inz {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ujTU8C0inz img,
.cid-ujTU8C0inz .item-img {
  width: 100%;
}
.cid-ujTU8C0inz .item:focus,
.cid-ujTU8C0inz span:focus {
  outline: none;
}
.cid-ujTU8C0inz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujTU8C0inz .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-ujTU8C0inz .item {
  padding: 0;
  margin: 0;
}
.cid-ujTU8C0inz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujTU8C0inz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ujTU8C0inz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujTU8C0inz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ujTU8C0inz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ujTU8C0inz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujTU8C0inz .mbr-section-title {
  color: #232323;
}
.cid-ujTU8C0inz .mbr-text,
.cid-ujTU8C0inz .mbr-section-btn {
  text-align: left;
}
.cid-ujTU8C0inz .item-title {
  text-align: left;
}
.cid-ujTU8C0inz .item-subtitle {
  text-align: left;
}
.cid-ujTU8C80WX {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-uk0cgAirp3 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-uk0cgAirp3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0cgAirp3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uk0cgAirp3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uk0cgAirp3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uk0cgAirp3 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uk0cgAirp3 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uk0cgAirp3 .mbr-section-title {
  color: #353535;
}
.cid-uk0cgArApP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uk0cgArApP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0cgArApP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0cgArApP .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uk0cgArApP .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uk0cgArApP .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uk0cgArApP .card-wrapper {
    padding: 4rem;
  }
}
.cid-uk0cgArApP .mbr-text,
.cid-uk0cgArApP .mbr-section-btn {
  color: #ffffff;
}
.cid-uk0cgArApP .card-title,
.cid-uk0cgArApP .card-box {
  text-align: left;
}
.cid-uk0cgAy1Q5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uk0cgAy1Q5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0cgAy1Q5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0cgAy1Q5 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-uk0cgAy1Q5 .item {
    margin-bottom: 4rem;
  }
}
.cid-uk0cgAy1Q5 .item:last-child .icon-box:before {
  display: none;
}
.cid-uk0cgAy1Q5 .item.last .icon-box:before {
  display: none;
}
.cid-uk0cgAy1Q5 .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uk0cgAy1Q5 .icon-box {
    margin-right: 1rem;
  }
}
.cid-uk0cgAy1Q5 span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uk0cgAy1Q5 .card {
    margin-bottom: 2rem;
  }
  .cid-uk0cgAy1Q5 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uk0cgAMJuR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uk0cgAMJuR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0cgAMJuR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0cgAMJuR .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uk0cgAMJuR .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uk0cgAMJuR .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uk0cgAMJuR .card-wrapper {
    padding: 4rem;
  }
}
.cid-uk0cgAMJuR .mbr-text,
.cid-uk0cgAMJuR .mbr-section-btn {
  color: #ffffff;
}
.cid-uk0cgAMJuR .card-title,
.cid-uk0cgAMJuR .card-box {
  text-align: left;
}
.cid-uk0cgAThDX {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-ujTVUVjtZG {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-ujTVUVjtZG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujTVUVjtZG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ujTVUVjtZG .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ujTVUVjtZG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ujTVUVjtZG .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ujTVUVjtZG .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ujTVUVjtZG .mbr-section-title {
  color: #353535;
}
.cid-ujTVUVtIOh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ujTVUVtIOh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujTVUVtIOh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujTVUVtIOh .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ujTVUVtIOh .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ujTVUVtIOh .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ujTVUVtIOh .card-wrapper {
    padding: 4rem;
  }
}
.cid-ujTVUVtIOh .mbr-text,
.cid-ujTVUVtIOh .mbr-section-btn {
  color: #ffffff;
}
.cid-ujTVUVtIOh .card-title,
.cid-ujTVUVtIOh .card-box {
  text-align: left;
}
.cid-ujTVUVBA2I {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ujTVUVBA2I .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujTVUVBA2I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujTVUVBA2I .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-ujTVUVBA2I .item {
    margin-bottom: 4rem;
  }
}
.cid-ujTVUVBA2I .item:last-child .icon-box:before {
  display: none;
}
.cid-ujTVUVBA2I .item.last .icon-box:before {
  display: none;
}
.cid-ujTVUVBA2I .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-ujTVUVBA2I .icon-box {
    margin-right: 1rem;
  }
}
.cid-ujTVUVBA2I span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ujTVUVBA2I .card {
    margin-bottom: 2rem;
  }
  .cid-ujTVUVBA2I .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ujTVUVQtOk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ujTVUVQtOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujTVUVQtOk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujTVUVQtOk .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ujTVUVQtOk .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ujTVUVQtOk .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ujTVUVQtOk .card-wrapper {
    padding: 4rem;
  }
}
.cid-ujTVUVQtOk .mbr-text,
.cid-ujTVUVQtOk .mbr-section-btn {
  color: #ffffff;
}
.cid-ujTVUVQtOk .card-title,
.cid-ujTVUVQtOk .card-box {
  text-align: left;
}
.cid-ujTVUVYXqQ {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-umyMBcdOZt {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-umyMBcdOZt .mbr-fallback-image.disabled {
  display: none;
}
.cid-umyMBcdOZt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-umyMBcdOZt .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-umyMBcdOZt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-umyMBcdOZt .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-umyMBcdOZt .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-umyMBcdOZt .mbr-section-title {
  color: #353535;
}
.cid-umyMBcmeuu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-umyMBcmeuu .mbr-fallback-image.disabled {
  display: none;
}
.cid-umyMBcmeuu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umyMBcmeuu .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-umyMBcmeuu .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-umyMBcmeuu .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umyMBcmeuu .card-wrapper {
    padding: 4rem;
  }
}
.cid-umyMBcmeuu .mbr-text,
.cid-umyMBcmeuu .mbr-section-btn {
  color: #ffffff;
}
.cid-umyMBcmeuu .card-title,
.cid-umyMBcmeuu .card-box {
  text-align: left;
}
.cid-umyMBctl7v {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-umyMBctl7v .mbr-fallback-image.disabled {
  display: none;
}
.cid-umyMBctl7v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umyMBctl7v .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-umyMBctl7v .item {
    margin-bottom: 4rem;
  }
}
.cid-umyMBctl7v .item:last-child .icon-box:before {
  display: none;
}
.cid-umyMBctl7v .item.last .icon-box:before {
  display: none;
}
.cid-umyMBctl7v .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-umyMBctl7v .icon-box {
    margin-right: 1rem;
  }
}
.cid-umyMBctl7v span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-umyMBctl7v .card {
    margin-bottom: 2rem;
  }
  .cid-umyMBctl7v .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-umyMBcIJ7s {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-umyMBcIJ7s .mbr-fallback-image.disabled {
  display: none;
}
.cid-umyMBcIJ7s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umyMBcIJ7s .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-umyMBcIJ7s .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-umyMBcIJ7s .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umyMBcIJ7s .card-wrapper {
    padding: 4rem;
  }
}
.cid-umyMBcIJ7s .mbr-text,
.cid-umyMBcIJ7s .mbr-section-btn {
  color: #ffffff;
}
.cid-umyMBcIJ7s .card-title,
.cid-umyMBcIJ7s .card-box {
  text-align: left;
}
.cid-umyMBcQ9eS {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-uqwnWkjGV0 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-uqwnWkjGV0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqwnWkjGV0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uqwnWkjGV0 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqwnWkjGV0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uqwnWkjGV0 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uqwnWkjGV0 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqwnWkjGV0 .mbr-section-title {
  color: #353535;
}
.cid-uqwnWkrCmA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uqwnWkrCmA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqwnWkrCmA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqwnWkrCmA .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uqwnWkrCmA .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uqwnWkrCmA .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqwnWkrCmA .card-wrapper {
    padding: 4rem;
  }
}
.cid-uqwnWkrCmA .mbr-text,
.cid-uqwnWkrCmA .mbr-section-btn {
  color: #ffffff;
}
.cid-uqwnWkrCmA .card-title,
.cid-uqwnWkrCmA .card-box {
  text-align: left;
}
.cid-uqwnWkyFHI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uqwnWkyFHI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqwnWkyFHI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqwnWkyFHI .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-uqwnWkyFHI .item {
    margin-bottom: 4rem;
  }
}
.cid-uqwnWkyFHI .item:last-child .icon-box:before {
  display: none;
}
.cid-uqwnWkyFHI .item.last .icon-box:before {
  display: none;
}
.cid-uqwnWkyFHI .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uqwnWkyFHI .icon-box {
    margin-right: 1rem;
  }
}
.cid-uqwnWkyFHI span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uqwnWkyFHI .card {
    margin-bottom: 2rem;
  }
  .cid-uqwnWkyFHI .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqwnWkyFHI .mbr-text,
.cid-uqwnWkyFHI .mbr-section-btn {
  text-align: left;
}
.cid-uqwnWkN6Nb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uqwnWkN6Nb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqwnWkN6Nb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqwnWkN6Nb .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uqwnWkN6Nb .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uqwnWkN6Nb .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqwnWkN6Nb .card-wrapper {
    padding: 4rem;
  }
}
.cid-uqwnWkN6Nb .mbr-text,
.cid-uqwnWkN6Nb .mbr-section-btn {
  color: #ffffff;
}
.cid-uqwnWkN6Nb .card-title,
.cid-uqwnWkN6Nb .card-box {
  text-align: left;
}
.cid-uqwnWkVhvV {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
.cid-uZMSMfLGL8 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/clear-sky-1363026-1400x898.jpg");
}
.cid-uZMSMfLGL8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZMSMfLGL8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZMSMfLGL8 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZMSMfLGL8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uZMSMfLGL8 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uZMSMfLGL8 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZMSMfLGL8 .mbr-section-title {
  color: #353535;
}
.cid-uZMSMfUMAc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uZMSMfUMAc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZMSMfUMAc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZMSMfUMAc .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uZMSMfUMAc .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uZMSMfUMAc .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uZMSMfUMAc .card-wrapper {
    padding: 4rem;
  }
}
.cid-uZMSMfUMAc .mbr-text,
.cid-uZMSMfUMAc .mbr-section-btn {
  color: #ffffff;
}
.cid-uZMSMfUMAc .card-title,
.cid-uZMSMfUMAc .card-box {
  text-align: left;
}
.cid-uZMSMg1j7X {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uZMSMg1j7X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZMSMg1j7X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZMSMg1j7X .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .cid-uZMSMg1j7X .item {
    margin-bottom: 4rem;
  }
}
.cid-uZMSMg1j7X .item:last-child .icon-box:before {
  display: none;
}
.cid-uZMSMg1j7X .item.last .icon-box:before {
  display: none;
}
.cid-uZMSMg1j7X .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uZMSMg1j7X .icon-box {
    margin-right: 1rem;
  }
}
.cid-uZMSMg1j7X span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uZMSMg1j7X .card {
    margin-bottom: 2rem;
  }
  .cid-uZMSMg1j7X .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZMSMggDJU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uZMSMggDJU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZMSMggDJU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZMSMggDJU .card-wrapper {
  background: #a74bc2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uZMSMggDJU .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uZMSMggDJU .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uZMSMggDJU .card-wrapper {
    padding: 4rem;
  }
}
.cid-uZMSMggDJU .mbr-text,
.cid-uZMSMggDJU .mbr-section-btn {
  color: #ffffff;
}
.cid-uZMSMggDJU .card-title,
.cid-uZMSMggDJU .card-box {
  text-align: left;
}
.cid-uZMSMgxEfr {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #353535;
  overflow: hidden;
}
