body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 5.2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 8.32rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 4.16rem;
    font-size: calc( 2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #55b4d4 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #55b4d4 !important;
  border-color: #55b4d4 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2d8fb0 !important;
  border-color: #2d8fb0 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2d8fb0 !important;
  border-color: #2d8fb0 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #277e9c;
  color: #277e9c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #55b4d4;
  border-color: #55b4d4;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #55b4d4 !important;
  border-color: #55b4d4 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #55b4d4 !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #277e9c !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #55b4d4;
  border-color: #55b4d4;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #55b4d4;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f8fcfd;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #55b4d4;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #55b4d4;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #55b4d4;
  border-bottom-color: #55b4d4;
}
.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: #000000 !important;
  background-color: #55b4d4 !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: #ff3366 !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='%2355b4d4' %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;
}
.cid-sqDGYWKYue {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #2c5697;
}
.cid-sqDGYWKYue .media-container-row .mbr-text {
  color: #2c5697;
}
.cid-sqDGYWKYue undefined {
  color: #ffffff;
}
.cid-sqDH3R4B65 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #2c5697;
}
.cid-sqDH3R4B65 .media-container-row .mbr-text {
  color: #2c5697;
}
.cid-sqDH3R4B65 undefined {
  color: #ffffff;
}
.cid-szo2uC5lJm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #2c5697;
}
@media (max-width: 991px) {
  .cid-szo2uC5lJm .mbr-section-title,
  .cid-szo2uC5lJm .mbr-section-subtitle,
  .cid-szo2uC5lJm .mbr-section-btn,
  .cid-szo2uC5lJm .mbr-text {
    text-align: center;
  }
}
.cid-szo2uC5lJm .mbr-section-title {
  color: #ffffff;
}
.cid-szo2uC5lJm .mbr-text,
.cid-szo2uC5lJm .mbr-section-btn {
  color: #2c5697;
}
.cid-szo2uC5lJm .mbr-section-subtitle {
  color: #2c5697;
}
.cid-szouKRi320 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-szouKRi320 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-szouKRi320 img {
  width: 100%;
}
.cid-szouKRi320 p {
  line-height: 1.6;
}
.cid-szouKRi320 .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-szouKRi320 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-szouKRi320 .mbr-text,
.cid-szouKRi320 .mbr-section-btn {
  color: #e1201d;
  text-align: left;
}
.cid-szouKRi320 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-szouKRi320 .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-szouKRi320 .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-szouKRi320 .mbr-section-title,
.cid-szouKRi320 .line-wrap {
  text-align: left;
  color: #088916;
}
@media (max-width: 992px) {
  .cid-szouKRi320 .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-sqDHCj8cz4 {
  padding-top: 150px;
  padding-bottom: 150px;
}
.cid-sqDHCj8cz4 .mbr-section-title {
  text-align: center;
}
.cid-sqDHCj8cz4 .mbr-text,
.cid-sqDHCj8cz4 .mbr-section-btn {
  text-align: center;
}
.cid-st5dNRGUKU {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-st5dNRGUKU .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-st5dNRGUKU .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-st5dNRGUKU .image-block:hover:before {
  opacity: 0.4;
}
.cid-st5dNRGUKU .image-block:hover .wrap {
  opacity: 1;
}
.cid-st5dNRGUKU .image-block:hover img {
  transform: scale(1.05);
}
.cid-st5dNRGUKU .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-st5dNRGUKU h4 {
  letter-spacing: 2px;
}
.cid-st5dNRGUKU figcaption {
  position: relative;
}
.cid-st5dNRGUKU figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-st5dNRGUKU img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-st5dNRGUKU .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-st5dNRGUKU .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-st5dNRGUKU .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-st5dNRGUKU .image-block:before {
    opacity: 0.4;
  }
  .cid-st5dNRGUKU .image-block .wrap {
    opacity: 1;
  }
}
.cid-svm88I30pn {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/shutterstock-1782828705-2000x735.jpg");
}
@media (max-width: 767px) {
  .cid-svm88I30pn .mbr-text {
    text-align: center;
  }
}
.cid-svm88I30pn .mbr-text,
.cid-svm88I30pn .mbr-section-btn {
  color: #ffffff;
}
.cid-svm88I30pn H1 {
  color: #ffffff;
}
.cid-sxI7suCpCS {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/shutterstock-671773348-converted-1-1755x1242.png");
}
.cid-sxI7suCpCS .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
  border-radius: 6px;
}
.cid-sxI7suCpCS .card-wrapper:hover .ico-wrap {
  opacity: 1;
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
}
.cid-sxI7suCpCS p {
  line-height: 1.6;
}
.cid-sxI7suCpCS .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-sxI7suCpCS .ico {
  height: 40px;
  width: 40px;
  background: #408740;
  border-radius: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  margin: 0 3px;
  opacity: 0.9;
}
.cid-sxI7suCpCS .ico-wrap {
  position: absolute;
  left: 50%;
  display: flex;
  top: 50%;
  margin: auto;
  z-index: 100;
  transition: all 0.3s;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
  transform: scale(0.9) translate(-50%, -50%);
}
.cid-sxI7suCpCS .card-title {
  color: #408740;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}
.cid-sxI7suCpCS .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 100%;
}
.cid-sxI7suCpCS img {
  transition: all 0.3s;
}
.cid-sxI7suCpCS .card-box {
  padding: 1rem;
}
.cid-sxI7suCpCS .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sxI7suCpCS .card-box > p,
.cid-sxI7suCpCS .mbr-section-btn {
  color: #2c5697;
  text-align: center;
}
.cid-sxI7suCpCS .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
@media (max-width: 576px) {
  .cid-sxI7suCpCS .ico-wrap {
    opacity: 1;
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
  }
}
.cid-stu3mppC8c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-stu3mppC8c .mbr-section-title,
  .cid-stu3mppC8c .mbr-section-subtitle,
  .cid-stu3mppC8c .mbr-section-btn,
  .cid-stu3mppC8c .mbr-text {
    text-align: center;
  }
}
.cid-stu3mppC8c .mbr-section-title {
  color: #ffffff;
}
.cid-stu3mppC8c .mbr-text,
.cid-stu3mppC8c .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-stu3mppC8c .mbr-section-subtitle {
  color: #2c5697;
}
.cid-sy3NdDp2ll {
  overflow-x: hidden !important;
}
.cid-sy3NdDp2ll,
.cid-sy3NdDp2ll .scroll-wrapper {
  padding-top: 105px;
  padding-bottom: 105px;
}
.cid-sy3NdDp2ll .mbr-section-title {
  color: #ffffff;
}
.cid-sy3NdDp2ll .mbr-section-title span {
  color: #ffbc00;
}
.cid-sy3NdDp2ll .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sy3NdDp2ll .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 55s !important;
  animation-duration: 55s;
  background-image: url("../../../assets/images/shutterstock-1782828705-2000x735.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sy3NdDp2ll .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sy3NdDp2ll .mbr-overlay {
  z-index: 1;
}
.cid-sy3NdDp2ll .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sy3BABOGiw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
@media (max-width: 767px) {
  .cid-sy3BABOGiw .mbr-text {
    text-align: center;
  }
}
.cid-sy3BABOGiw .container-fluid {
  padding: 0;
}
.cid-sy3BABOGiw .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-sy3BABOGiw img {
  height: 100%;
  object-fit: cover;
}
.cid-sy3BABOGiw .mbr-figure {
  height: 100%;
}
.cid-sy3BABOGiw .col-lg-6 {
  padding: 0;
}
.cid-sy3BABOGiw .row {
  margin: 0;
}
.cid-sy3BABOGiw .mbr-text,
.cid-sy3BABOGiw .mbr-section-btn {
  color: #2c5697;
}
.cid-sw5uu2iPDK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #2c5697;
}
@media (max-width: 991px) {
  .cid-sw5uu2iPDK .mbr-section-title,
  .cid-sw5uu2iPDK .mbr-section-subtitle,
  .cid-sw5uu2iPDK .mbr-section-btn,
  .cid-sw5uu2iPDK .mbr-text {
    text-align: center;
  }
}
.cid-sw5uu2iPDK .mbr-section-title {
  color: #ffffff;
}
.cid-sw5uu2iPDK .mbr-text,
.cid-sw5uu2iPDK .mbr-section-btn {
  color: #2c5697;
}
.cid-sw5uu2iPDK .mbr-section-subtitle {
  color: #2c5697;
}
.cid-sw5tIoGIbc {
  overflow-x: hidden !important;
}
.cid-sw5tIoGIbc,
.cid-sw5tIoGIbc .scroll-wrapper {
  padding-top: 105px;
  padding-bottom: 105px;
}
.cid-sw5tIoGIbc .mbr-section-title {
  color: #ffffff;
}
.cid-sw5tIoGIbc .mbr-section-title span {
  color: #ffbc00;
}
.cid-sw5tIoGIbc .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sw5tIoGIbc .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/sleg-marketing-cvr-3-700x906.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sw5tIoGIbc .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sw5tIoGIbc .mbr-overlay {
  z-index: 1;
}
.cid-sw5tIoGIbc .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sw5umJqlC1 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sw5umJqlC1 .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-sw5umJqlC1 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sw5umJqlC1 .image-block:hover:before {
  opacity: 0.4;
}
.cid-sw5umJqlC1 .image-block:hover .wrap {
  opacity: 1;
}
.cid-sw5umJqlC1 .image-block:hover img {
  transform: scale(1.05);
}
.cid-sw5umJqlC1 h4 {
  letter-spacing: 2px;
}
.cid-sw5umJqlC1 figcaption {
  position: relative;
}
.cid-sw5umJqlC1 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sw5umJqlC1 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-sw5umJqlC1 .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-sw5umJqlC1 .image-block {
    height: 400px;
  }
}
.cid-sw5xlSXcww {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sw5xlSXcww .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sw5xlSXcww img {
  width: 100%;
}
.cid-sw5xlSXcww p {
  line-height: 1.6;
}
.cid-sw5xlSXcww .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sw5xlSXcww .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sw5xlSXcww .mbr-text,
.cid-sw5xlSXcww .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-sw5xlSXcww .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sw5xlSXcww .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #879a9f;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sw5xlSXcww .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-sw5xlSXcww .mbr-section-title,
.cid-sw5xlSXcww .line-wrap {
  text-align: left;
  color: #408740;
}
@media (max-width: 992px) {
  .cid-sw5xlSXcww .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-svz7jyQANo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-svz7jyQANo .mbr-section-title,
  .cid-svz7jyQANo .mbr-section-subtitle,
  .cid-svz7jyQANo .mbr-section-btn,
  .cid-svz7jyQANo .mbr-text {
    text-align: center;
  }
}
.cid-svz7jyQANo .mbr-section-title {
  color: #ffffff;
}
.cid-svz7jyQANo .mbr-text,
.cid-svz7jyQANo .mbr-section-btn {
  color: #408740;
}
.cid-svz7jyQANo .mbr-section-subtitle {
  color: #2c5697;
}
.cid-syKMx3B4xN {
  overflow-x: hidden !important;
}
.cid-syKMx3B4xN,
.cid-syKMx3B4xN .scroll-wrapper {
  padding-top: 105px;
  padding-bottom: 105px;
}
.cid-syKMx3B4xN .mbr-section-title {
  color: #ffffff;
}
.cid-syKMx3B4xN .mbr-section-title span {
  color: #ffbc00;
}
.cid-syKMx3B4xN .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-syKMx3B4xN .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/shutterstock-523781864-2000x451.png");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-syKMx3B4xN .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-syKMx3B4xN .mbr-overlay {
  z-index: 1;
}
.cid-syKMx3B4xN .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-syKMy5I4kK {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-syKMy5I4kK .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-syKMy5I4kK .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-syKMy5I4kK .image-block:hover:before {
  opacity: 0.4;
}
.cid-syKMy5I4kK .image-block:hover .wrap {
  opacity: 1;
}
.cid-syKMy5I4kK .image-block:hover img {
  transform: scale(1.05);
}
.cid-syKMy5I4kK h4 {
  letter-spacing: 2px;
}
.cid-syKMy5I4kK figcaption {
  position: relative;
}
.cid-syKMy5I4kK figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-syKMy5I4kK img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-syKMy5I4kK .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-syKMy5I4kK .image-block {
    height: 400px;
  }
}
.cid-syKMALetXw {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-syKMALetXw img {
  width: 100%;
}
.cid-syKMALetXw p {
  line-height: 1.6;
}
.cid-syKMALetXw .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-syKMALetXw .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-syKMALetXw .mbr-text,
.cid-syKMALetXw .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-syKMALetXw .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-syKMALetXw .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #879a9f;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-syKMALetXw .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-syKMALetXw .mbr-section-title,
.cid-syKMALetXw .line-wrap {
  text-align: left;
  color: #408740;
}
@media (max-width: 992px) {
  .cid-syKMALetXw .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-szo4pVFe9e {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-szo4pVFe9e .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-szo4pVFe9e img {
  width: 100%;
}
.cid-szo4pVFe9e p {
  line-height: 1.6;
}
.cid-szo4pVFe9e .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-szo4pVFe9e .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-szo4pVFe9e .mbr-text,
.cid-szo4pVFe9e .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-szo4pVFe9e .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-szo4pVFe9e .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #879a9f;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-szo4pVFe9e .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-szo4pVFe9e .mbr-section-title,
.cid-szo4pVFe9e .line-wrap {
  text-align: left;
  color: #408740;
}
@media (max-width: 992px) {
  .cid-szo4pVFe9e .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-syKNCXwoF8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #2c5697;
}
@media (max-width: 991px) {
  .cid-syKNCXwoF8 .mbr-section-title,
  .cid-syKNCXwoF8 .mbr-section-subtitle,
  .cid-syKNCXwoF8 .mbr-section-btn,
  .cid-syKNCXwoF8 .mbr-text {
    text-align: center;
  }
}
.cid-syKNCXwoF8 .mbr-section-title {
  color: #ffffff;
}
.cid-syKNCXwoF8 .mbr-text,
.cid-syKNCXwoF8 .mbr-section-btn {
  color: #2c5697;
}
.cid-syKNCXwoF8 .mbr-section-subtitle {
  color: #2c5697;
}
.cid-syKNEaCP7U {
  overflow-x: hidden !important;
}
.cid-syKNEaCP7U,
.cid-syKNEaCP7U .scroll-wrapper {
  padding-top: 105px;
  padding-bottom: 105px;
}
.cid-syKNEaCP7U .mbr-section-title {
  color: #ffffff;
}
.cid-syKNEaCP7U .mbr-section-title span {
  color: #ffbc00;
}
.cid-syKNEaCP7U .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-syKNEaCP7U .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/shutterstock-279481893-2000x1111.png");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-syKNEaCP7U .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-syKNEaCP7U .mbr-overlay {
  z-index: 1;
}
.cid-syKNEaCP7U .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-syKNGevdv4 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-syKNGevdv4 .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-syKNGevdv4 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-syKNGevdv4 .image-block:hover:before {
  opacity: 0.4;
}
.cid-syKNGevdv4 .image-block:hover .wrap {
  opacity: 1;
}
.cid-syKNGevdv4 .image-block:hover img {
  transform: scale(1.05);
}
.cid-syKNGevdv4 h4 {
  letter-spacing: 2px;
}
.cid-syKNGevdv4 figcaption {
  position: relative;
}
.cid-syKNGevdv4 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-syKNGevdv4 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-syKNGevdv4 .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-syKNGevdv4 .image-block {
    height: 400px;
  }
}
.cid-syKNIERdtz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/shutterstock-301598711-7685-700x624.png");
}
.cid-syKNIERdtz .container-fluid {
  padding: 0;
}
.cid-syKNIERdtz img {
  width: 100%;
}
.cid-syKNIERdtz .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-syKNIERdtz .content {
    padding: 3rem;
  }
}
.cid-syKNIERdtz .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-syKNIERdtz .img-col {
  padding: 0;
  margin: auto;
}
.cid-syKNIERdtz .mbr-section-title {
  color: #408740;
}
.cid-syKNIERdtz .mbr-text,
.cid-syKNIERdtz .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-syKNKEupiL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-syKNKEupiL .mbr-section-title,
  .cid-syKNKEupiL .mbr-section-subtitle,
  .cid-syKNKEupiL .mbr-section-btn,
  .cid-syKNKEupiL .mbr-text {
    text-align: center;
  }
}
.cid-syKNKEupiL .mbr-section-title {
  color: #ffffff;
}
.cid-syKNKEupiL .mbr-text,
.cid-syKNKEupiL .mbr-section-btn {
  color: #408740;
}
.cid-syKNKEupiL .mbr-section-subtitle {
  color: #2c5697;
}
.cid-syKPxgfbdi {
  overflow-x: hidden !important;
}
.cid-syKPxgfbdi,
.cid-syKPxgfbdi .scroll-wrapper {
  padding-top: 105px;
  padding-bottom: 105px;
}
.cid-syKPxgfbdi .mbr-section-title {
  color: #ffffff;
}
.cid-syKPxgfbdi .mbr-section-title span {
  color: #ffbc00;
}
.cid-syKPxgfbdi .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-syKPxgfbdi .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/shutterstock-192009270-2000x1333.jpeg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-syKPxgfbdi .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-syKPxgfbdi .mbr-overlay {
  z-index: 1;
}
.cid-syKPxgfbdi .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-syKPzLgTBI {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #2c5697;
}
@media (max-width: 991px) {
  .cid-syKPzLgTBI .mbr-section-title,
  .cid-syKPzLgTBI .mbr-section-subtitle,
  .cid-syKPzLgTBI .mbr-section-btn,
  .cid-syKPzLgTBI .mbr-text {
    text-align: center;
  }
}
.cid-syKPzLgTBI .mbr-section-title {
  color: #ffffff;
}
.cid-syKPzLgTBI .mbr-text,
.cid-syKPzLgTBI .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-syKPzLgTBI .mbr-section-subtitle {
  color: #2c5697;
}
.cid-syKPK20Bi3 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/shutterstock-288957929-2000x1428.png");
}
.cid-syKPK20Bi3 .container-fluid {
  padding: 0;
}
.cid-syKPK20Bi3 img {
  width: 100%;
}
.cid-syKPK20Bi3 .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-syKPK20Bi3 .content {
    padding: 3rem;
  }
}
.cid-syKPK20Bi3 .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-syKPK20Bi3 .img-col {
  padding: 0;
  margin: auto;
}
.cid-syKPK20Bi3 .mbr-section-title {
  color: #408740;
}
.cid-syKPK20Bi3 .mbr-text,
.cid-syKPK20Bi3 .mbr-section-btn {
  color: #2c5697;
}
.cid-syKPLVkVCI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-syKPLVkVCI .mbr-section-title,
  .cid-syKPLVkVCI .mbr-section-subtitle,
  .cid-syKPLVkVCI .mbr-section-btn,
  .cid-syKPLVkVCI .mbr-text {
    text-align: center;
  }
}
.cid-syKPLVkVCI .mbr-section-title {
  color: #ffffff;
}
.cid-syKPLVkVCI .mbr-text,
.cid-syKPLVkVCI .mbr-section-btn {
  color: #408740;
}
.cid-syKPLVkVCI .mbr-section-subtitle {
  color: #2c5697;
}
.cid-syKPNphncZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-syKPNphncZ h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-syKPNphncZ .mbr-section-subtitle {
  color: #767676;
}
.cid-syKPNphncZ .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-syKPNphncZ .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-syKPNphncZ .mbr-text-left {
  color: #2c5697;
}
.cid-syKPNphncZ .mbr-text-right {
  color: #2c5697;
}
.cid-syKPNphncZ .article-counter-left {
  color: #408740;
}
.cid-syKPNphncZ .article-counter-right {
  color: #408740;
}
.cid-syKPNphncZ .article-title-left {
  color: #2c5697;
}
.cid-syKPNphncZ .article-title-right {
  color: #2c5697;
}
.cid-syKPOmYBep {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-syKPOmYBep h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-syKPOmYBep .mbr-section-subtitle {
  color: #767676;
}
.cid-syKPOmYBep .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-syKPOmYBep .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-syKPOmYBep .mbr-text-left {
  color: #2c5697;
}
.cid-syKPOmYBep .mbr-text-right {
  color: #2c5697;
}
.cid-syKPOmYBep .article-counter-left {
  color: #408740;
}
.cid-syKPOmYBep .article-counter-right {
  color: #408740;
}
.cid-syKPOmYBep .article-title-left {
  color: #2c5697;
}
.cid-syKPOmYBep .article-title-right {
  color: #2c5697;
}
.cid-svz7xCVbgx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #2c5697;
}
@media (max-width: 991px) {
  .cid-svz7xCVbgx .mbr-section-title,
  .cid-svz7xCVbgx .mbr-section-subtitle,
  .cid-svz7xCVbgx .mbr-section-btn,
  .cid-svz7xCVbgx .mbr-text {
    text-align: center;
  }
}
.cid-svz7xCVbgx .mbr-section-title {
  color: #ffffff;
}
.cid-svz7xCVbgx .mbr-text,
.cid-svz7xCVbgx .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-svz7xCVbgx .mbr-section-subtitle {
  color: #2c5697;
}
.cid-sDZNzC1y9h {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/gordon-h-mansfield-veterans-village-2000x1125.png");
}
.cid-sDZNzC1y9h h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-sDZNzC1y9h h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sDZNzC1y9h h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-sDZNzC1y9h h3:before,
  .cid-sDZNzC1y9h h3:after {
    display: none;
  }
}
.cid-sDZPw7nIDR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sDZPw7nIDR .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sDZPw7nIDR img {
  width: 100%;
}
.cid-sDZPw7nIDR p {
  line-height: 1.6;
}
.cid-sDZPw7nIDR .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sDZPw7nIDR .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sDZPw7nIDR .mbr-text,
.cid-sDZPw7nIDR .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-sDZPw7nIDR .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sDZPw7nIDR .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #879a9f;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sDZPw7nIDR .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-sDZPw7nIDR .mbr-section-title,
.cid-sDZPw7nIDR .line-wrap {
  text-align: left;
  color: #408740;
}
@media (max-width: 992px) {
  .cid-sDZPw7nIDR .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-syKU1NHROw {
  overflow-x: hidden !important;
}
.cid-syKU1NHROw,
.cid-syKU1NHROw .scroll-wrapper {
  padding-top: 105px;
  padding-bottom: 105px;
}
.cid-syKU1NHROw .mbr-section-title {
  color: #ffffff;
}
.cid-syKU1NHROw .mbr-section-title span {
  color: #ffbc00;
}
.cid-syKU1NHROw .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-syKU1NHROw .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/shutterstock-376600840-converted-2000x1999.png");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-syKU1NHROw .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-syKU1NHROw .mbr-overlay {
  z-index: 1;
}
.cid-syKU1NHROw .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sw6wqp6UcM {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sw6wqp6UcM .image-block {
  margin: auto;
  height: 800px;
  overflow: hidden;
}
.cid-sw6wqp6UcM .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sw6wqp6UcM .image-block:hover:before {
  opacity: 0.4;
}
.cid-sw6wqp6UcM .image-block:hover .wrap {
  opacity: 1;
}
.cid-sw6wqp6UcM .image-block:hover img {
  transform: scale(1.05);
}
.cid-sw6wqp6UcM h4 {
  letter-spacing: 2px;
}
.cid-sw6wqp6UcM figcaption {
  position: relative;
}
.cid-sw6wqp6UcM figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sw6wqp6UcM img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-sw6wqp6UcM .col-lg-6 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-sw6wqp6UcM .image-block {
    height: 400px;
  }
}
.cid-swn35lv3pI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2c5697;
}
@media (max-width: 991px) {
  .cid-swn35lv3pI .mbr-section-title,
  .cid-swn35lv3pI .mbr-section-subtitle,
  .cid-swn35lv3pI .mbr-section-btn,
  .cid-swn35lv3pI .mbr-text {
    text-align: center;
  }
}
.cid-swn35lv3pI .mbr-section-title {
  color: #ffffff;
}
.cid-swn35lv3pI .mbr-text,
.cid-swn35lv3pI .mbr-section-btn {
  color: #ffffff;
}
.cid-swn35lv3pI .mbr-section-subtitle {
  color: #2c5697;
}
.cid-su6r51baZh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-su6r51baZh .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-su6r51baZh img {
  width: 100%;
}
.cid-su6r51baZh p {
  line-height: 1.6;
}
.cid-su6r51baZh .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-su6r51baZh .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-su6r51baZh .mbr-text,
.cid-su6r51baZh .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-su6r51baZh .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-su6r51baZh .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #879a9f;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-su6r51baZh .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-su6r51baZh .mbr-section-title,
.cid-su6r51baZh .line-wrap {
  text-align: left;
  color: #408740;
}
@media (max-width: 992px) {
  .cid-su6r51baZh .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-svEYwV6bwd {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-svEYwV6bwd .image-block {
  margin: auto;
  height: 800px;
  overflow: hidden;
}
.cid-svEYwV6bwd .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-svEYwV6bwd .image-block:hover:before {
  opacity: 0.4;
}
.cid-svEYwV6bwd .image-block:hover .wrap {
  opacity: 1;
}
.cid-svEYwV6bwd .image-block:hover img {
  transform: scale(1.05);
}
.cid-svEYwV6bwd h4 {
  letter-spacing: 2px;
}
.cid-svEYwV6bwd figcaption {
  position: relative;
}
.cid-svEYwV6bwd figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-svEYwV6bwd img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-svEYwV6bwd .col-lg-6 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-svEYwV6bwd .image-block {
    height: 400px;
  }
}
.cid-svEYUAA6EZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-svEYUAA6EZ .mbr-section-title,
  .cid-svEYUAA6EZ .mbr-section-subtitle,
  .cid-svEYUAA6EZ .mbr-section-btn,
  .cid-svEYUAA6EZ .mbr-text {
    text-align: center;
  }
}
.cid-svEYUAA6EZ .mbr-section-title {
  color: #ffffff;
}
.cid-svEYUAA6EZ .mbr-text,
.cid-svEYUAA6EZ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-svEYUAA6EZ .mbr-section-subtitle {
  color: #2c5697;
}
.cid-svEZ0ynVCd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-svEZ0ynVCd img {
  width: 100%;
}
.cid-svEZ0ynVCd p {
  line-height: 1.6;
}
.cid-svEZ0ynVCd .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-svEZ0ynVCd .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-svEZ0ynVCd .mbr-text,
.cid-svEZ0ynVCd .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-svEZ0ynVCd .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-svEZ0ynVCd .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #879a9f;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-svEZ0ynVCd .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-svEZ0ynVCd .mbr-section-title,
.cid-svEZ0ynVCd .line-wrap {
  text-align: left;
  color: #2c5697;
}
@media (max-width: 992px) {
  .cid-svEZ0ynVCd .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-sw6QpahcoM {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sw6QpahcoM .image-block {
  margin: auto;
  height: 800px;
  overflow: hidden;
}
.cid-sw6QpahcoM .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sw6QpahcoM .image-block:hover:before {
  opacity: 0.4;
}
.cid-sw6QpahcoM .image-block:hover .wrap {
  opacity: 1;
}
.cid-sw6QpahcoM .image-block:hover img {
  transform: scale(1.05);
}
.cid-sw6QpahcoM h4 {
  letter-spacing: 2px;
}
.cid-sw6QpahcoM figcaption {
  position: relative;
}
.cid-sw6QpahcoM figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sw6QpahcoM img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-sw6QpahcoM .col-lg-6 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-sw6QpahcoM .image-block {
    height: 400px;
  }
}
.cid-swn3cP3fRR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2c5697;
}
@media (max-width: 991px) {
  .cid-swn3cP3fRR .mbr-section-title,
  .cid-swn3cP3fRR .mbr-section-subtitle,
  .cid-swn3cP3fRR .mbr-section-btn,
  .cid-swn3cP3fRR .mbr-text {
    text-align: center;
  }
}
.cid-swn3cP3fRR .mbr-section-title {
  color: #ffffff;
}
.cid-swn3cP3fRR .mbr-text,
.cid-swn3cP3fRR .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-swn3cP3fRR .mbr-section-subtitle {
  color: #2c5697;
}
.cid-sw6QwntVyk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sw6QwntVyk .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sw6QwntVyk img {
  width: 100%;
}
.cid-sw6QwntVyk p {
  line-height: 1.6;
}
.cid-sw6QwntVyk .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sw6QwntVyk .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sw6QwntVyk .mbr-text,
.cid-sw6QwntVyk .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-sw6QwntVyk .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sw6QwntVyk .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #879a9f;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sw6QwntVyk .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-sw6QwntVyk .mbr-section-title,
.cid-sw6QwntVyk .line-wrap {
  text-align: left;
  color: #408740;
}
@media (max-width: 992px) {
  .cid-sw6QwntVyk .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-swn4Suow6c {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-swn4Suow6c .image-block {
  margin: auto;
  height: 800px;
  overflow: hidden;
}
.cid-swn4Suow6c .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-swn4Suow6c .image-block:hover:before {
  opacity: 0.4;
}
.cid-swn4Suow6c .image-block:hover .wrap {
  opacity: 1;
}
.cid-swn4Suow6c .image-block:hover img {
  transform: scale(1.05);
}
.cid-swn4Suow6c h4 {
  letter-spacing: 2px;
}
.cid-swn4Suow6c figcaption {
  position: relative;
}
.cid-swn4Suow6c figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-swn4Suow6c img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-swn4Suow6c .col-lg-6 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-swn4Suow6c .image-block {
    height: 400px;
  }
}
.cid-swn4G1C30n {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-swn4G1C30n .mbr-section-title,
  .cid-swn4G1C30n .mbr-section-subtitle,
  .cid-swn4G1C30n .mbr-section-btn,
  .cid-swn4G1C30n .mbr-text {
    text-align: center;
  }
}
.cid-swn4G1C30n .mbr-section-title {
  color: #ffffff;
}
.cid-swn4G1C30n .mbr-text,
.cid-swn4G1C30n .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-swn4G1C30n .mbr-section-subtitle {
  color: #2c5697;
}
.cid-swn3RHTiYv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-swn3RHTiYv img {
  width: 100%;
}
.cid-swn3RHTiYv p {
  line-height: 1.6;
}
.cid-swn3RHTiYv .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-swn3RHTiYv .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-swn3RHTiYv .mbr-text,
.cid-swn3RHTiYv .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-swn3RHTiYv .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-swn3RHTiYv .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #879a9f;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-swn3RHTiYv .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-swn3RHTiYv .mbr-section-title,
.cid-swn3RHTiYv .line-wrap {
  text-align: left;
  color: #408740;
}
@media (max-width: 992px) {
  .cid-swn3RHTiYv .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-swzvnsESYk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-swzvnsESYk .mbr-section-title,
  .cid-swzvnsESYk .mbr-section-subtitle,
  .cid-swzvnsESYk .mbr-section-btn,
  .cid-swzvnsESYk .mbr-text {
    text-align: center;
  }
}
.cid-swzvnsESYk .mbr-section-title {
  color: #ffffff;
}
.cid-swzvnsESYk .mbr-text,
.cid-swzvnsESYk .mbr-section-btn {
  color: #2c5697;
}
.cid-swzvnsESYk .mbr-section-subtitle {
  color: #2c5697;
}
.cid-syKRCHoP4L {
  overflow-x: hidden !important;
}
.cid-syKRCHoP4L,
.cid-syKRCHoP4L .scroll-wrapper {
  padding-top: 105px;
  padding-bottom: 105px;
}
.cid-syKRCHoP4L .mbr-section-title {
  color: #ffffff;
}
.cid-syKRCHoP4L .mbr-section-title span {
  color: #ffbc00;
}
.cid-syKRCHoP4L .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-syKRCHoP4L .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 60s !important;
  animation-duration: 60s;
  background-image: url("../../../assets/images/shutterstock-268743989-blk-2000x563.png");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-syKRCHoP4L .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-syKRCHoP4L .mbr-overlay {
  z-index: 1;
}
.cid-syKRCHoP4L .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-syKRDKm990 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-syKRDKm990 .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-syKRDKm990 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-syKRDKm990 .image-block:hover:before {
  opacity: 0.4;
}
.cid-syKRDKm990 .image-block:hover .wrap {
  opacity: 1;
}
.cid-syKRDKm990 .image-block:hover img {
  transform: scale(1.05);
}
.cid-syKRDKm990 h4 {
  letter-spacing: 2px;
}
.cid-syKRDKm990 figcaption {
  position: relative;
}
.cid-syKRDKm990 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-syKRDKm990 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-syKRDKm990 .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-syKRDKm990 .image-block {
    height: 400px;
  }
}
.cid-syKRELCmri {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/shutterstock-571120453z-7741-2000x1189.png");
}
.cid-syKRELCmri img {
  width: 100%;
}
.cid-syKRELCmri p {
  line-height: 1.6;
}
.cid-syKRELCmri .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-syKRELCmri .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-syKRELCmri .mbr-text,
.cid-syKRELCmri .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-syKRELCmri .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-syKRELCmri .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-syKRELCmri .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-syKRELCmri .mbr-section-title,
.cid-syKRELCmri .line-wrap {
  text-align: left;
  color: #408740;
}
@media (max-width: 992px) {
  .cid-syKRELCmri .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-syKRHCz2NF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #2c5697;
}
@media (max-width: 991px) {
  .cid-syKRHCz2NF .mbr-section-title,
  .cid-syKRHCz2NF .mbr-section-subtitle,
  .cid-syKRHCz2NF .mbr-section-btn,
  .cid-syKRHCz2NF .mbr-text {
    text-align: center;
  }
}
.cid-syKRHCz2NF .mbr-section-title {
  color: #ffffff;
}
.cid-syKRHCz2NF .mbr-text,
.cid-syKRHCz2NF .mbr-section-btn {
  color: #2c5697;
}
.cid-syKRHCz2NF .mbr-section-subtitle {
  color: #2c5697;
}
.cid-syL1HzSpMZ {
  overflow-x: hidden !important;
}
.cid-syL1HzSpMZ,
.cid-syL1HzSpMZ .scroll-wrapper {
  padding-top: 150px;
  padding-bottom: 150px;
}
.cid-syL1HzSpMZ .mbr-section-title {
  color: #ffffff;
}
.cid-syL1HzSpMZ .mbr-section-title span {
  color: #ffbc00;
}
.cid-syL1HzSpMZ .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-syL1HzSpMZ .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/legal-shutterstock-554368997-2000x1333.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-syL1HzSpMZ .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-syL1HzSpMZ .mbr-overlay {
  z-index: 1;
}
.cid-syL1HzSpMZ .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-syL1IETcKe {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-syL1IETcKe .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-syL1IETcKe .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-syL1IETcKe .image-block:hover:before {
  opacity: 0.4;
}
.cid-syL1IETcKe .image-block:hover .wrap {
  opacity: 1;
}
.cid-syL1IETcKe .image-block:hover img {
  transform: scale(1.05);
}
.cid-syL1IETcKe h4 {
  letter-spacing: 2px;
}
.cid-syL1IETcKe figcaption {
  position: relative;
}
.cid-syL1IETcKe figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-syL1IETcKe img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-syL1IETcKe .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-syL1IETcKe .image-block {
    height: 400px;
  }
}
.cid-syL1Jpq6PT {
  background-image: url("../../../assets/images/handwriting-456536125-01-3-2000x1333.png");
}
.cid-syL1Jpq6PT .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-syL1Jpq6PT img {
  width: 100%;
}
.cid-syL1Jpq6PT p {
  line-height: 1.6;
}
.cid-syL1Jpq6PT .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-syL1Jpq6PT .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-syL1Jpq6PT .mbr-text,
.cid-syL1Jpq6PT .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-syL1Jpq6PT .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-syL1Jpq6PT .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #879a9f;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-syL1Jpq6PT .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-syL1Jpq6PT .mbr-section-title,
.cid-syL1Jpq6PT .line-wrap {
  text-align: left;
  color: #088916;
}
@media (max-width: 992px) {
  .cid-syL1Jpq6PT .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-syL4mMUyBp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-syL4mMUyBp .mbr-section-title,
  .cid-syL4mMUyBp .mbr-section-subtitle,
  .cid-syL4mMUyBp .mbr-section-btn,
  .cid-syL4mMUyBp .mbr-text {
    text-align: center;
  }
}
.cid-syL4mMUyBp .mbr-section-title {
  color: #ffffff;
}
.cid-syL4mMUyBp .mbr-text,
.cid-syL4mMUyBp .mbr-section-btn {
  color: #408740;
}
.cid-syL4mMUyBp .mbr-section-subtitle {
  color: #2c5697;
}
.cid-svgdn6RNoQ {
  overflow-x: hidden !important;
}
.cid-svgdn6RNoQ,
.cid-svgdn6RNoQ .scroll-wrapper {
  padding-top: 150px;
  padding-bottom: 150px;
}
.cid-svgdn6RNoQ .mbr-section-title {
  color: #ffffff;
}
.cid-svgdn6RNoQ .mbr-section-title span {
  color: #ffbc00;
}
.cid-svgdn6RNoQ .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-svgdn6RNoQ .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/shutterstock-1322408390-2000x539.png");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-svgdn6RNoQ .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-svgdn6RNoQ .mbr-overlay {
  z-index: 1;
}
.cid-svgdn6RNoQ .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-rymwxiDonX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #767676;
}
.cid-stskXgGrts {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2c5697;
}
@media (max-width: 991px) {
  .cid-stskXgGrts .mbr-section-title,
  .cid-stskXgGrts .mbr-section-subtitle,
  .cid-stskXgGrts .mbr-section-btn,
  .cid-stskXgGrts .mbr-text {
    text-align: center;
  }
}
.cid-stskXgGrts .mbr-section-title {
  color: #ffffff;
}
.cid-stskXgGrts .mbr-text,
.cid-stskXgGrts .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-stskXgGrts .mbr-section-subtitle {
  color: #2c5697;
}
.cid-syJP2XgNun {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/shutterstock-36348034-2000x1500.png");
}
.cid-syJP2XgNun .mbr-figure {
  margin: 0 auto;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-syJP2XgNun .mbr-figure img {
  height: 500px;
  width: 500px;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 100%;
}
.cid-syJP2XgNun .mbr-text,
.cid-syJP2XgNun .mbr-section-btn {
  color: #408740;
}
@media (max-width: 767px) {
  .cid-syJP2XgNun img {
    height: 250px !important;
    width: 250px !important;
  }
}
.cid-swzD6wexEA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-swzD6wexEA .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-swzD6wexEA img {
  width: 100%;
}
.cid-swzD6wexEA p {
  line-height: 1.6;
}
.cid-swzD6wexEA .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-swzD6wexEA .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-swzD6wexEA .mbr-text,
.cid-swzD6wexEA .mbr-section-btn {
  color: #e1201d;
  text-align: left;
}
.cid-swzD6wexEA .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-swzD6wexEA .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-swzD6wexEA .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-swzD6wexEA .mbr-section-title,
.cid-swzD6wexEA .line-wrap {
  text-align: left;
  color: #088916;
}
@media (max-width: 992px) {
  .cid-swzD6wexEA .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-sz6nNXhEW2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-sz6nNXhEW2 .mbr-section-title,
  .cid-sz6nNXhEW2 .mbr-section-subtitle,
  .cid-sz6nNXhEW2 .mbr-section-btn,
  .cid-sz6nNXhEW2 .mbr-text {
    text-align: center;
  }
}
.cid-sz6nNXhEW2 .mbr-section-title {
  color: #ffffff;
}
.cid-sz6nNXhEW2 .mbr-text,
.cid-sz6nNXhEW2 .mbr-section-btn {
  color: #408740;
}
.cid-sz6nNXhEW2 .mbr-section-subtitle {
  color: #2c5697;
}
.cid-sz5RXduYaq {
  padding-top: 45px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/shutterstock-671773348-converted-1-1755x1242.png");
}
.cid-sz5RXduYaq h4 {
  display: flex;
}
.cid-sz5RXduYaq .panel-text {
  line-height: 1.7;
  color: #408740;
}
.cid-sz5RXduYaq .wrap {
  display: flex;
}
.cid-sz5RXduYaq .icon {
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white!important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
  transition: all 0.3s;
  transform: scaleY(-1);
}
.cid-sz5RXduYaq .icon:before {
  content: "\e908" !important;
}
.cid-sz5RXduYaq .panel-title.collapsed .icon {
  transform: scaleY(1) !important;
}
.cid-sz5RXduYaq img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-sz5RXduYaq .mbr-section-title {
  margin-bottom: 1.5rem;
  color: #2c5697;
}
.cid-sz5RXduYaq p {
  margin: 0;
}
.cid-sz5RXduYaq .card .card-header a.panel-title {
  background-color: transparent!important;
  margin-top: 0px!important;
}
.cid-sz5RXduYaq .mbr-section-subtitle {
  font-weight: 500;
  color: #408740;
  text-align: left;
}
.cid-sz5RXduYaq .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sz5RXduYaq .panel-group {
  width: 100%;
}
.cid-sz5RXduYaq .panel-title {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-sz5RXduYaq .card {
  border-bottom: 1px solid #6a6868 !important;
}
.cid-sz5RXduYaq .card .card-header {
  background: none;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sz5RXduYaq .card .card-header a.panel-title {
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sz5RXduYaq .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-sz5RXduYaq .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sz5RXduYaq .card .card-header a.panel-title h4 {
  font-size: 1.87rem;
  padding: 2.2rem 0rem;
  margin-bottom: 0;
}
@media (max-width: 546px) {
  .cid-sz5RXduYaq .card .card-header a.panel-title h4 {
    font-size: 1.2rem;
  }
}
.cid-sz5RXduYaq .card .panel-body {
  padding: 1.25rem 0 3.43rem;
}
.cid-sz5RXduYaq .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sz5RXduYaq .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-sz5RXduYaq .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-sz5RXduYaq .header-text,
.cid-sz5RXduYaq .sign {
  color: #2c5697;
}
.cid-sz5RXduYaq .header-text,
.cid-sz5RXduYaq .sign DIV {
  text-align: left;
}
.cid-sznUGx4jm4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #2c5697;
}
.cid-sznUGx4jm4 .mbr-section-subtitle {
  color: #cccccc;
}
.cid-sznUGx4jm4 h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-sznUGx4jm4 h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sznUGx4jm4 h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sznUGx4jm4 .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 15px 0.5rem;
  display: block;
}
.cid-sznUGx4jm4 .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-sznUGx4jm4 .mbr-iconfont-social:hover {
  color: #000000;
}
.cid-sznUGx4jm4 .mbr-iconfont-social:hover:before {
  background: #ffffff;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-sznUGx4jm4 .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sznUGx4jm4 .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-sznUGx4jm4 .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-sznUGx4jm4 .mbr-section-title,
.cid-sznUGx4jm4 .social-list {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-sznUGx4jm4 h2:before,
  .cid-sznUGx4jm4 h2:after {
    display: none;
  }
}
.cid-szotc8YdwU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-szotc8YdwU .mbr-section-title,
  .cid-szotc8YdwU .mbr-section-subtitle,
  .cid-szotc8YdwU .mbr-section-btn,
  .cid-szotc8YdwU .mbr-text {
    text-align: center;
  }
}
.cid-szotc8YdwU .mbr-section-title {
  color: #ffffff;
}
.cid-szotc8YdwU .mbr-text,
.cid-szotc8YdwU .mbr-section-btn {
  color: #408740;
}
.cid-szotc8YdwU .mbr-section-subtitle {
  color: #2c5697;
}
