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: 'Poppins', 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: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.125rem;
}
/* ---- 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.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #83e591 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #83e591 !important;
  border-color: #83e591 !important;
  color: #12571c !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: #3bd651 !important;
  border-color: #3bd651 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #12571c !important;
  background-color: #3bd651 !important;
  border-color: #3bd651 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #83e591;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3bd651 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #12571c !important;
  background-color: #83e591 !important;
  border-color: #83e591 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #83e591 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #2fd346 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uxTC3MMFwt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #24456a;
}
.cid-uxTC3MMFwt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxTC3MMFwt .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-uxTC3MMFwt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uxTC3MMFwt .row {
  flex-direction: row-reverse;
}
.cid-uxTC3MMFwt img {
  width: 100%;
}
.cid-uxTYPUeSwr {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #24456a;
}
.cid-uxTYPUeSwr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxTYPUeSwr H2 {
  color: #24ba39;
}
.cid-uxUzSCDMnZ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #83e591;
  background: linear-gradient(45deg, #83e591, #cebfaf);
}
.cid-uxUzSCDMnZ .mbr-section-subtitle {
  color: #0e71c3;
}
.cid-uxUzSCDMnZ .btn {
  margin: 0 0 .5rem 0;
}
.cid-uxUC3V7iR3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uxUC3V7iR3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxUC3V7iR3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxUC3V7iR3 .row {
  flex-direction: row-reverse;
}
.cid-uxUC3V7iR3 .mbr-description {
  text-align: left;
}
.cid-uxUmsGcc5D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uxUmsGcc5D .mbr-text {
  text-align: left;
  color: #0e71c3;
}
.cid-uxUj7ySsN0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uxUj7ySsN0 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uxUj7ySsN0 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-uxUj7ySsN0 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-uxUj7ySsN0 .mbr-text {
  color: #0e71c3;
}
.cid-uxUpKYndZi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uxUpKYndZi .mbr-text {
  text-align: left;
  color: #0e71c3;
}
.cid-uxUKMSFyfo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uxUKMSFyfo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxUKMSFyfo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxUKMSFyfo .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uxUKMSFyfo .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uxUKMSFyfo .mbr-section-title {
  text-align: center;
}
.cid-uxUKMSFyfo .mbr-section-subtitle {
  text-align: center;
}
.cid-uxUKMSFyfo .image-wrapper {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
}
.cid-uxUKMSFyfo .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uxUKMSFyfo .content-head {
  max-width: 800px;
}
.cid-uxUKMSFyfo .img-box {
  display: flex;
  justify-content: center;
}
.cid-uxUKMSFyfo .card-title {
  text-align: center;
}
.cid-uxUKMSFyfo .card-text {
  text-align: center;
}
.cid-uxUKMSFyfo .link {
  text-align: center;
}
.cid-uxUMCaOYGL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uxUMCaOYGL .mbr-text {
  text-align: center;
  color: #0e71c3;
}
.cid-uxUMCaOYGL .mbr-section-title {
  color: #0e71c3;
  text-align: center;
}
.cid-uxUNiKJWaU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uxUNiKJWaU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxUNiKJWaU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxUNiKJWaU .row {
  flex-direction: row-reverse;
}
.cid-uxUNiKJWaU .mbr-description {
  text-align: left;
}
.cid-uxUP4TL1A0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uxUP4TL1A0 .mbr-text {
  text-align: center;
  color: #0e71c3;
}
.cid-uxUP4TL1A0 .mbr-section-title {
  color: #0e71c3;
  text-align: center;
}
.cid-uxUPN4B1bU .google-map {
  height: 25rem;
  position: relative;
}
.cid-uxUPN4B1bU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uxUPN4B1bU .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uxUPN4B1bU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uxUPN4B1bU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uy6AcXo9M8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #151515;
}
.cid-uy6AcXo9M8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6AcXo9M8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6AcXo9M8 .media-container-row {
  justify-content: space-between;
}
.cid-uy6AcXo9M8 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uy6AcXo9M8 .text-content {
    max-width: none;
  }
}
.cid-uy6AcXo9M8 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uy6AcXo9M8 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uy6AcXo9M8 .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uy6AcXo9M8 .icons {
    justify-content: center !important;
  }
  .cid-uy6AcXo9M8 .text-content * {
    text-align: center;
  }
}
.cid-uy6AcXo9M8 P {
  color: #ffffff;
  text-align: left;
}
.cid-uy6MCUG2N2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #24456a;
}
.cid-uy6MCUG2N2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6MCUG2N2 .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-uy6MCUG2N2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uy6MCUG2N2 .row {
  flex-direction: row-reverse;
}
.cid-uy6MCUG2N2 img {
  width: 100%;
}
.cid-uy6NIzWTTQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24456a;
}
.cid-uy6NIzWTTQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uy6NIzWTTQ H2 {
  color: #24ba39;
}
.cid-uy6Mrpv8yW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy6Mrpv8yW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6Mrpv8yW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6Mrpv8yW .mbr-section-subtitle {
  text-align: center;
}
.cid-uy6MwQx6o7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy6MwQx6o7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6MwQx6o7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uy6MwQx6o7 .container {
    max-width: 1400px;
  }
}
.cid-uy6MwQx6o7 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uy6MwQx6o7 .row {
  justify-content: center;
}
.cid-uy6MwQx6o7 .card-title,
.cid-uy6MwQx6o7 .iconfont-wrapper {
  color: #1923df;
  text-align: left;
}
.cid-uy6MwQx6o7 .card-text {
  text-align: left;
  color: #4479d9;
}
.cid-uyhHn4d9JK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyhHn4d9JK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyhHn4d9JK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uyhHn4d9JK .container {
    max-width: 1400px;
  }
}
.cid-uyhHn4d9JK .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uyhHn4d9JK .row {
  justify-content: center;
}
.cid-uyhHn4d9JK .card-title,
.cid-uyhHn4d9JK .iconfont-wrapper {
  color: #1923df;
  text-align: left;
}
.cid-uyhHn4d9JK .card-text {
  text-align: left;
  color: #4479d9;
}
.cid-uyhLzv3ipN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyhLzv3ipN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyhLzv3ipN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uyhLzv3ipN .container {
    max-width: 1400px;
  }
}
.cid-uyhLzv3ipN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uyhLzv3ipN .row {
  justify-content: center;
}
.cid-uyhLzv3ipN .card-title,
.cid-uyhLzv3ipN .iconfont-wrapper {
  color: #151515;
  text-align: left;
}
.cid-uyhLzv3ipN .card-text {
  text-align: left;
  color: #4479d9;
}
.cid-uyhQB48waS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyhQB48waS img,
.cid-uyhQB48waS .item-img {
  width: 100%;
}
.cid-uyhQB48waS .item:focus,
.cid-uyhQB48waS span:focus {
  outline: none;
}
.cid-uyhQB48waS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uyhQB48waS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #dadada;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uyhQB48waS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uyhQB48waS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uyhQB48waS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uyhQB48waS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uyhQB48waS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uyhQB48waS .mbr-section-title {
  color: #232323;
}
.cid-uyhQB48waS .mbr-text,
.cid-uyhQB48waS .mbr-section-btn {
  text-align: left;
}
.cid-uyhQB48waS .item-title {
  text-align: left;
  color: #1923df;
}
.cid-uyhQB48waS .item-subtitle {
  text-align: left;
}
.cid-uyhQB48waS .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uyhYnanbP8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyhYnanbP8 img,
.cid-uyhYnanbP8 .item-img {
  width: 100%;
}
.cid-uyhYnanbP8 .item:focus,
.cid-uyhYnanbP8 span:focus {
  outline: none;
}
.cid-uyhYnanbP8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uyhYnanbP8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #dadada;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uyhYnanbP8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uyhYnanbP8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uyhYnanbP8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uyhYnanbP8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uyhYnanbP8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uyhYnanbP8 .mbr-section-title {
  color: #232323;
}
.cid-uyhYnanbP8 .mbr-text,
.cid-uyhYnanbP8 .mbr-section-btn {
  text-align: left;
}
.cid-uyhYnanbP8 .item-title {
  text-align: left;
  color: #1923df;
}
.cid-uyhYnanbP8 .item-subtitle {
  text-align: left;
}
.cid-uyhYnanbP8 .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uyi0SeL83q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyi0SeL83q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyi0SeL83q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uyi0SeL83q .container {
    max-width: 1400px;
  }
}
.cid-uyi0SeL83q .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uyi0SeL83q .row {
  justify-content: center;
}
.cid-uyi0SeL83q .card-title,
.cid-uyi0SeL83q .iconfont-wrapper {
  color: #151515;
  text-align: left;
}
.cid-uyi0SeL83q .card-text {
  text-align: left;
  color: #4479d9;
}
.cid-uyi2PTpyMK {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #151515;
}
.cid-uyi2PTpyMK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyi2PTpyMK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyi2PTpyMK .media-container-row {
  justify-content: space-between;
}
.cid-uyi2PTpyMK .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uyi2PTpyMK .text-content {
    max-width: none;
  }
}
.cid-uyi2PTpyMK .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uyi2PTpyMK .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uyi2PTpyMK .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uyi2PTpyMK .icons {
    justify-content: center !important;
  }
  .cid-uyi2PTpyMK .text-content * {
    text-align: center;
  }
}
.cid-uyi2PTpyMK P {
  color: #ffffff;
}
.cid-uxUSjYbH3p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #24456a;
}
.cid-uxUSjYbH3p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxUSjYbH3p .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-uxUSjYbH3p .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uxUSjYbH3p .row {
  flex-direction: row-reverse;
}
.cid-uxUSjYbH3p img {
  width: 100%;
}
.cid-uxUSnmHLVm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24456a;
}
.cid-uxUSnmHLVm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxUSnmHLVm H2 {
  color: #24ba39;
}
.cid-uxUT1BUgt1 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uxUT1BUgt1 .mbr-section-subtitle {
  color: #353535;
}
.cid-uxUT1BUgt1 .container-table {
  margin: 0 auto;
}
.cid-uxUT1BUgt1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uxUT1BUgt1 .dataTables_wrapper {
  display: block;
}
.cid-uxUT1BUgt1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uxUT1BUgt1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uxUT1BUgt1 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uxUT1BUgt1 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uxUT1BUgt1 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uxUT1BUgt1 table td {
  border-top: 1px solid #cccccc;
}
.cid-uxUT1BUgt1 table.table {
  background: #fafafa;
}
.cid-uxUT1BUgt1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uxUT1BUgt1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uxUT1BUgt1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uxUT1BUgt1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uxUT1BUgt1 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uxUT1BUgt1 .dataTables_filter {
    text-align: center;
  }
  .cid-uxUT1BUgt1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uxUT1BUgt1 .mbr-section-title {
  color: #353535;
}
.cid-uxUWucrima {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uxUWucrima .mbr-section-subtitle {
  color: #353535;
}
.cid-uxUWucrima .container-table {
  margin: 0 auto;
}
.cid-uxUWucrima .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uxUWucrima .dataTables_wrapper {
  display: block;
}
.cid-uxUWucrima .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uxUWucrima .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uxUWucrima table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uxUWucrima table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uxUWucrima table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uxUWucrima table td {
  border-top: 1px solid #cccccc;
}
.cid-uxUWucrima table.table {
  background: #fafafa;
}
.cid-uxUWucrima .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uxUWucrima .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uxUWucrima .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uxUWucrima .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uxUWucrima .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uxUWucrima .dataTables_filter {
    text-align: center;
  }
  .cid-uxUWucrima .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uy6JqUJxRk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #151515;
}
.cid-uy6JqUJxRk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6JqUJxRk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6JqUJxRk .media-container-row {
  justify-content: space-between;
}
.cid-uy6JqUJxRk .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uy6JqUJxRk .text-content {
    max-width: none;
  }
}
.cid-uy6JqUJxRk .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uy6JqUJxRk .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uy6JqUJxRk .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uy6JqUJxRk .icons {
    justify-content: center !important;
  }
  .cid-uy6JqUJxRk .text-content * {
    text-align: center;
  }
}
.cid-uy6JqUJxRk P {
  color: #ffffff;
  text-align: left;
}
.cid-uy0l6QznCO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #24456a;
}
.cid-uy0l6QznCO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy0l6QznCO .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-uy0l6QznCO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uy0l6QznCO .row {
  flex-direction: row-reverse;
}
.cid-uy0l6QznCO img {
  width: 100%;
}
.cid-uy0lIVVbLu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24456a;
}
.cid-uy0lIVVbLu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uy0lIVVbLu H2 {
  color: #24ba39;
}
.cid-uy5zfIeAlf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy5zfIeAlf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5zfIeAlf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy0n4eb7NO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy0n4eb7NO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy0n4eb7NO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy0n4eb7NO .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uy0n4eb7NO .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uy0n4eb7NO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uy0n4eb7NO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uy0n4eb7NO .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uy0n4eb7NO .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uy0n4eb7NO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uy0n4eb7NO .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uy0n4eb7NO .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy0n4eb7NO .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uy0n4eb7NO .mbr-text,
.cid-uy0n4eb7NO .social-row {
  color: #0e71c3;
}
.cid-uy0n4eb7NO .card-title {
  color: #353535;
}
.cid-uy0n4eb7NO .card-subtitle {
  color: #bbbbbb;
}
.cid-uy0BX8fGXk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy0BX8fGXk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy0BX8fGXk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy0BX8fGXk .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uy0BX8fGXk .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uy0BX8fGXk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uy0BX8fGXk .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uy0BX8fGXk .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uy0BX8fGXk .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uy0BX8fGXk .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uy0BX8fGXk .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uy0BX8fGXk .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy0BX8fGXk .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uy0BX8fGXk .mbr-text,
.cid-uy0BX8fGXk .social-row {
  color: #0e71c3;
}
.cid-uy0BX8fGXk .card-subtitle {
  color: #bbbbbb;
}
.cid-uy0JOnpZfo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy0JOnpZfo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy0JOnpZfo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy0JOnpZfo .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uy0JOnpZfo .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uy0JOnpZfo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uy0JOnpZfo .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uy0JOnpZfo .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uy0JOnpZfo .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uy0JOnpZfo .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uy0JOnpZfo .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uy0JOnpZfo .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy0JOnpZfo .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uy0JOnpZfo .mbr-text,
.cid-uy0JOnpZfo .social-row {
  color: #0e71c3;
}
.cid-uy0JOnpZfo .card-subtitle {
  color: #bbbbbb;
}
.cid-uy5qJLGOPL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy5qJLGOPL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5qJLGOPL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy5qJLGOPL .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uy5qJLGOPL .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uy5qJLGOPL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uy5qJLGOPL .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uy5qJLGOPL .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uy5qJLGOPL .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uy5qJLGOPL .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uy5qJLGOPL .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uy5qJLGOPL .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy5qJLGOPL .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uy5qJLGOPL .mbr-text,
.cid-uy5qJLGOPL .social-row {
  color: #0e71c3;
}
.cid-uy5qJLGOPL .card-subtitle {
  color: #bbbbbb;
}
.cid-uy5tvvsSk9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy5tvvsSk9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5tvvsSk9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy5tvvsSk9 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uy5tvvsSk9 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uy5tvvsSk9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uy5tvvsSk9 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uy5tvvsSk9 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uy5tvvsSk9 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uy5tvvsSk9 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uy5tvvsSk9 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uy5tvvsSk9 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy5tvvsSk9 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uy5tvvsSk9 .mbr-text,
.cid-uy5tvvsSk9 .social-row {
  color: #0e71c3;
}
.cid-uy5tvvsSk9 .card-subtitle {
  color: #bbbbbb;
}
.cid-uy5uV9lXkh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy5uV9lXkh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5uV9lXkh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy5uV9lXkh .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uy5uV9lXkh .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uy5uV9lXkh .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uy5uV9lXkh .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uy5uV9lXkh .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uy5uV9lXkh .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uy5uV9lXkh .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uy5uV9lXkh .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uy5uV9lXkh .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy5uV9lXkh .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uy5uV9lXkh .mbr-text,
.cid-uy5uV9lXkh .social-row {
  color: #0e71c3;
}
.cid-uy5uV9lXkh .card-subtitle {
  color: #bbbbbb;
}
.cid-uy5xl3xfXW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy5xl3xfXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5xl3xfXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy5xl3xfXW .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uy5xl3xfXW .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uy5xl3xfXW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uy5xl3xfXW .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uy5xl3xfXW .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uy5xl3xfXW .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uy5xl3xfXW .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uy5xl3xfXW .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uy5xl3xfXW .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy5xl3xfXW .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uy5xl3xfXW .mbr-text,
.cid-uy5xl3xfXW .social-row {
  color: #0e71c3;
}
.cid-uy5xl3xfXW .card-subtitle {
  color: #bbbbbb;
}
.cid-uy6JDLjMpf {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #151515;
}
.cid-uy6JDLjMpf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6JDLjMpf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6JDLjMpf .media-container-row {
  justify-content: space-between;
}
.cid-uy6JDLjMpf .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uy6JDLjMpf .text-content {
    max-width: none;
  }
}
.cid-uy6JDLjMpf .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uy6JDLjMpf .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uy6JDLjMpf .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uy6JDLjMpf .icons {
    justify-content: center !important;
  }
  .cid-uy6JDLjMpf .text-content * {
    text-align: center;
  }
}
.cid-uy6JDLjMpf P {
  color: #ffffff;
  text-align: left;
}
.cid-uy5DBrfSwB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #24456a;
}
.cid-uy5DBrfSwB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5DBrfSwB .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-uy5DBrfSwB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uy5DBrfSwB .row {
  flex-direction: row-reverse;
}
.cid-uy5DBrfSwB img {
  width: 100%;
}
.cid-uy5DCmt3N7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24456a;
}
.cid-uy5DCmt3N7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uy5DCmt3N7 H2 {
  color: #24ba39;
}
.cid-uy5DHkCHBp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy5DHkCHBp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5DHkCHBp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy5IDsAd9C {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #bbbbbb);
}
.cid-uy5IDsAd9C .mbr-section-subtitle {
  color: #0e71c3;
}
.cid-uy5IDsAd9C .btn {
  margin: 0 0 .5rem 0;
}
.cid-uy5R08DPtx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy5R08DPtx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5R08DPtx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uy5R08DPtx .container {
    max-width: 1400px;
  }
}
.cid-uy5R08DPtx .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uy5R08DPtx .row {
  justify-content: center;
}
.cid-uy5R08DPtx .card-title,
.cid-uy5R08DPtx .iconfont-wrapper {
  color: #353535;
  text-align: left;
}
.cid-uy5R08DPtx .card-text {
  text-align: left;
  color: #0e71c3;
}
.cid-uy5GNJNBBk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy5GNJNBBk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5GNJNBBk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uy5GNJNBBk .container {
    max-width: 1400px;
  }
}
.cid-uy5GNJNBBk .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uy5GNJNBBk .row {
  justify-content: center;
}
.cid-uy5GNJNBBk .card-title,
.cid-uy5GNJNBBk .iconfont-wrapper {
  color: #1923df;
  text-align: left;
}
.cid-uy5GNJNBBk .card-text {
  text-align: left;
}
.cid-uy5LFqakKr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy5LFqakKr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5LFqakKr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uy5LFqakKr .container {
    max-width: 1400px;
  }
}
.cid-uy5LFqakKr .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uy5LFqakKr .row {
  justify-content: center;
}
.cid-uy5LFqakKr .card-title,
.cid-uy5LFqakKr .iconfont-wrapper {
  color: #1923df;
  text-align: left;
}
.cid-uy5LFqakKr .card-text {
  text-align: left;
  color: #0e71c3;
}
.cid-uy6Kppmkzp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #151515;
}
.cid-uy6Kppmkzp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6Kppmkzp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6Kppmkzp .media-container-row {
  justify-content: space-between;
}
.cid-uy6Kppmkzp .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uy6Kppmkzp .text-content {
    max-width: none;
  }
}
.cid-uy6Kppmkzp .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uy6Kppmkzp .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uy6Kppmkzp .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uy6Kppmkzp .icons {
    justify-content: center !important;
  }
  .cid-uy6Kppmkzp .text-content * {
    text-align: center;
  }
}
.cid-uy6Kppmkzp P {
  color: #ffffff;
  text-align: left;
}
.cid-uy5XJaPf2P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #24456a;
}
.cid-uy5XJaPf2P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5XJaPf2P .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-uy5XJaPf2P .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uy5XJaPf2P .row {
  flex-direction: row-reverse;
}
.cid-uy5XJaPf2P img {
  width: 100%;
}
.cid-uy5XYoh0ET {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24456a;
}
.cid-uy5XYoh0ET .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uy5XYoh0ET H2 {
  color: #24ba39;
}
.cid-uy5Y7cWrQ8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy5Y7cWrQ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5Y7cWrQ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy5YmUlzOk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy5YmUlzOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy5YmUlzOk .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-uy5YmUlzOk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uy5YmUlzOk .row {
  flex-direction: row-reverse;
}
.cid-uy5YmUlzOk img {
  width: 100%;
}
.cid-uy63A1TJza {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #cfb53b;
}
.cid-uy63A1TJza .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy63A1TJza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy63A1TJza .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-uy63A1TJza img {
  margin: auto;
  width: 140px;
}
.cid-uy63A1TJza .row {
  align-items: flex-start;
}
.cid-uy63A1TJza .item-wrapper {
  border-radius: 4px;
  background: #e6c63b;
}
@media (max-width: 992px) {
  .cid-uy63A1TJza .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uy63A1TJza .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uy63A1TJza .item-wrapper {
    padding: 1rem;
  }
}
.cid-uy6cWPhJMK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #c4c4c4;
}
.cid-uy6cWPhJMK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6cWPhJMK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6cWPhJMK .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-uy6cWPhJMK img {
  margin: auto;
  width: 140px;
}
.cid-uy6cWPhJMK .row {
  align-items: flex-start;
}
.cid-uy6cWPhJMK .item-wrapper {
  border-radius: 4px;
  background: #dadada;
}
@media (max-width: 992px) {
  .cid-uy6cWPhJMK .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uy6cWPhJMK .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uy6cWPhJMK .item-wrapper {
    padding: 1rem;
  }
}
.cid-uy6gSnE5Cy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #9d6023;
}
.cid-uy6gSnE5Cy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6gSnE5Cy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6gSnE5Cy .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-uy6gSnE5Cy img {
  margin: auto;
  width: 140px;
}
.cid-uy6gSnE5Cy .row {
  align-items: flex-start;
}
.cid-uy6gSnE5Cy .item-wrapper {
  border-radius: 4px;
  background: #ce8946;
}
@media (max-width: 992px) {
  .cid-uy6gSnE5Cy .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uy6gSnE5Cy .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uy6gSnE5Cy .item-wrapper {
    padding: 1rem;
  }
}
.cid-uy6lHkVsZh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #9d6023;
}
.cid-uy6lHkVsZh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6lHkVsZh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6lHkVsZh .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-uy6lHkVsZh img {
  margin: auto;
  width: 140px;
}
.cid-uy6lHkVsZh .row {
  align-items: flex-start;
}
.cid-uy6lHkVsZh .item-wrapper {
  border-radius: 4px;
  background: #ce8946;
}
@media (max-width: 992px) {
  .cid-uy6lHkVsZh .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uy6lHkVsZh .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uy6lHkVsZh .item-wrapper {
    padding: 1rem;
  }
}
.cid-uy6KCldae0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uy6KCldae0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6KCldae0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6KCldae0 .media-container-row {
  justify-content: space-between;
}
.cid-uy6KCldae0 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uy6KCldae0 .text-content {
    max-width: none;
  }
}
.cid-uy6KCldae0 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uy6KCldae0 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uy6KCldae0 .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uy6KCldae0 .icons {
    justify-content: center !important;
  }
  .cid-uy6KCldae0 .text-content * {
    text-align: center;
  }
}
.cid-uy6KCldae0 P {
  color: #ffffff;
  text-align: left;
}
.cid-uyi3yy4Vjn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #24456a;
}
.cid-uyi3yy4Vjn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyi3yy4Vjn .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-uyi3yy4Vjn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uyi3yy4Vjn .row {
  flex-direction: row-reverse;
}
.cid-uyi3yy4Vjn img {
  width: 100%;
}
.cid-uyi3IW7WBv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24456a;
}
.cid-uyi3IW7WBv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uyi3IW7WBv H2 {
  color: #24ba39;
}
.cid-uyi3NSfB2o {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyi3NSfB2o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyi3NSfB2o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyi40UTduA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyi40UTduA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyi40UTduA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uyi40UTduA .container {
    max-width: 1400px;
  }
}
.cid-uyi40UTduA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uyi40UTduA .row {
  justify-content: center;
}
.cid-uyi40UTduA .card-title,
.cid-uyi40UTduA .iconfont-wrapper {
  color: #1923df;
  text-align: left;
}
.cid-uyi40UTduA .card-text {
  text-align: center;
  color: #4479d9;
}
.cid-uyi54j72p0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uyi54j72p0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyi54j72p0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyi54j72p0 .timeline-element {
  position: relative;
}
.cid-uyi54j72p0 .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyi54j72p0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uyi54j72p0 .mbr-section-title,
.cid-uyi54j72p0 .mbr-section-subtitle,
.cid-uyi54j72p0 .timeline-date {
  text-align: center;
}
.cid-uyi54j72p0 .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uyi54j72p0 .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-uyi54j72p0 .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-uyi54j72p0 .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-uyi54j72p0 .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uyi54j72p0 .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uyi54j72p0 .timeline-date-wrapper,
  .cid-uyi54j72p0 .timeline-text-wrapper,
  .cid-uyi54j72p0 .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uyi54j72p0 .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-uyi54j72p0 .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uyi54j72p0 .timeline-date-wrapper,
  .cid-uyi54j72p0 .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uyi54j72p0 .timeline-date-wrapper,
  .cid-uyi54j72p0 .timeline-text-wrapper,
  .cid-uyi54j72p0 .image-wrapper {
    padding: 2rem;
  }
}
.cid-uyi54j72p0 .mbr-text {
  color: #4479d9;
}
.cid-uyiBD7dPzg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #151515;
}
.cid-uyiBD7dPzg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyiBD7dPzg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyiBD7dPzg .media-container-row {
  justify-content: space-between;
}
.cid-uyiBD7dPzg .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uyiBD7dPzg .text-content {
    max-width: none;
  }
}
.cid-uyiBD7dPzg .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uyiBD7dPzg .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uyiBD7dPzg .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uyiBD7dPzg .icons {
    justify-content: center !important;
  }
  .cid-uyiBD7dPzg .text-content * {
    text-align: center;
  }
}
.cid-uyiBD7dPzg P {
  color: #ffffff;
  text-align: left;
}
