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: #408740;
}
.cid-sqDGYWKYue .media-container-row .mbr-text {
  color: #408740;
}
.cid-sqDGYWKYue undefined {
  color: #ffffff;
}
.cid-sqDH3R4B65 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #2c5697;
}
.cid-sqDH3R4B65 .media-container-row .mbr-text {
  color: #408740;
}
.cid-sqDH3R4B65 undefined {
  color: #ffffff;
}
.cid-szo2uC5lJm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #408740;
}
@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: #408740;
}
.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 {
  background-image: url("../../../assets/images/shutterstock-2166247559-1-1000x1000.jpg");
}
.cid-sqDHCj8cz4 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sqDHCj8cz4 .mbr-text,
.cid-sqDHCj8cz4 .mbr-section-btn {
  text-align: center;
  color: #e4d295;
}
.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-st5dNRGUKU H4 {
  color: #e4d295;
}
.cid-svm88I30pn {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/intro-background-2024-2000x983.png");
}
@media (max-width: 767px) {
  .cid-svm88I30pn .mbr-text {
    text-align: center;
  }
}
.cid-svm88I30pn .mbr-text,
.cid-svm88I30pn .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-svm88I30pn H1 {
  color: #ffffff;
  text-align: center;
}
.cid-uErlMNvV5e {
  padding-top: 105px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/state-seal-grad-1984-2042-2000x2155.jpg");
}
.cid-uErlMNvV5e .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uErlMNvV5e img {
  width: 100%;
}
.cid-uErlMNvV5e p {
  line-height: 1.6;
}
.cid-uErlMNvV5e .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uErlMNvV5e .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uErlMNvV5e .mbr-text,
.cid-uErlMNvV5e .mbr-section-btn {
  color: #408740;
  text-align: left;
}
.cid-uErlMNvV5e .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uErlMNvV5e .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-uErlMNvV5e .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-uErlMNvV5e .mbr-section-title,
.cid-uErlMNvV5e .line-wrap {
  text-align: left;
  color: #2c5697;
}
@media (max-width: 992px) {
  .cid-uErlMNvV5e .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-uEperXHIEU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/shutterstock-1021186897-ar2023-5-978x250.jpg");
}
@media (max-width: 991px) {
  .cid-uEperXHIEU .mbr-section-title,
  .cid-uEperXHIEU .mbr-section-subtitle,
  .cid-uEperXHIEU .mbr-section-btn,
  .cid-uEperXHIEU .mbr-text {
    text-align: center;
  }
}
.cid-uEperXHIEU .mbr-section-title {
  color: #ffffff;
}
.cid-uEperXHIEU .mbr-text,
.cid-uEperXHIEU .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uEperXHIEU .mbr-section-subtitle {
  color: #2c5697;
}
.cid-sxI7suCpCS {
  padding-top: 75px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/shutterstock-2307419175-2000x750.jpg");
}
.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: #2c5697;
  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: #408740;
  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-image: url("../../../assets/images/shutterstock-1021186897-ar2023-5-978x250.jpg");
}
@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: 90px;
  padding-bottom: 90px;
}
.cid-sy3NdDp2ll .mbr-section-title {
  color: #ffffff;
}
.cid-sy3NdDp2ll .mbr-section-title span {
  color: #ffbc00;
}
.cid-sy3NdDp2ll .mbr-text {
  color: #e4d295;
  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: 58s !important;
  animation-duration: 58s;
  background-image: url("../../../assets/images/shutterstock-2160722295-2000x480.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: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/shutterstock-2029348763-ar-7686-1492x1000.jpg");
}
@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-sy3BABOGiw H1 {
  color: #2c5697;
}
.cid-sw5uu2iPDK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/shutterstock-2029348763-ar-2000x1018.png");
}
@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-u5pQ7N0w9A {
  overflow-x: hidden !important;
}
.cid-u5pQ7N0w9A,
.cid-u5pQ7N0w9A .scroll-wrapper {
  padding-top: 120px;
  padding-bottom: 60px;
}
.cid-u5pQ7N0w9A .mbr-section-title {
  color: #ffffff;
}
.cid-u5pQ7N0w9A .mbr-section-title span {
  color: #ffbc00;
}
.cid-u5pQ7N0w9A .mbr-text {
  color: #2c5697;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-u5pQ7N0w9A .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-797178952-converted-1250x834.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-u5pQ7N0w9A .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-u5pQ7N0w9A .mbr-overlay {
  z-index: 1;
}
.cid-u5pQ7N0w9A .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-uDWCCt1g0P {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDWCCt1g0P .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-uDWCCt1g0P .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-uDWCCt1g0P .image-block:hover:before {
  opacity: 0.4;
}
.cid-uDWCCt1g0P .image-block:hover .wrap {
  opacity: 1;
}
.cid-uDWCCt1g0P .image-block:hover img {
  transform: scale(1.05);
}
.cid-uDWCCt1g0P h4 {
  letter-spacing: 2px;
}
.cid-uDWCCt1g0P figcaption {
  position: relative;
}
.cid-uDWCCt1g0P figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uDWCCt1g0P img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-uDWCCt1g0P .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uDWCCt1g0P .image-block {
    height: 400px;
  }
}
.cid-uEp5KNt8bu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/shutterstock-2029348763-ar-2000x1018.png");
}
@media (max-width: 991px) {
  .cid-uEp5KNt8bu .mbr-section-title,
  .cid-uEp5KNt8bu .mbr-section-subtitle,
  .cid-uEp5KNt8bu .mbr-section-btn,
  .cid-uEp5KNt8bu .mbr-text {
    text-align: center;
  }
}
.cid-uEp5KNt8bu .mbr-section-title {
  color: #ffffff;
}
.cid-uEp5KNt8bu .mbr-text,
.cid-uEp5KNt8bu .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uEp5KNt8bu .mbr-section-subtitle {
  color: #2c5697;
}
.cid-uDWpuw75Nn {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/shutterstock-2029348763-ar-7686-1492x1000.jpg");
}
@media (max-width: 767px) {
  .cid-uDWpuw75Nn .mbr-text {
    text-align: center;
  }
}
.cid-uDWpuw75Nn .container-fluid {
  padding: 0;
}
.cid-uDWpuw75Nn .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-uDWpuw75Nn img {
  height: 100%;
  object-fit: cover;
}
.cid-uDWpuw75Nn .mbr-figure {
  height: 100%;
}
.cid-uDWpuw75Nn .col-lg-6 {
  padding: 0;
}
.cid-uDWpuw75Nn .row {
  margin: 0;
}
.cid-uDWpuw75Nn .mbr-text,
.cid-uDWpuw75Nn .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-uDWpuw75Nn H1 {
  color: #408740;
}
.cid-uDYhiJfqyI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/shutterstock-2029348763-ar-2000x1018.png");
}
@media (max-width: 991px) {
  .cid-uDYhiJfqyI .mbr-section-title,
  .cid-uDYhiJfqyI .mbr-section-subtitle,
  .cid-uDYhiJfqyI .mbr-section-btn,
  .cid-uDYhiJfqyI .mbr-text {
    text-align: center;
  }
}
.cid-uDYhiJfqyI .mbr-section-title {
  color: #ffffff;
}
.cid-uDYhiJfqyI .mbr-text,
.cid-uDYhiJfqyI .mbr-section-btn {
  color: #2c5697;
}
.cid-uDYhiJfqyI .mbr-section-subtitle {
  color: #2c5697;
}
.cid-uE7PdByUxo {
  overflow-x: hidden !important;
}
.cid-uE7PdByUxo,
.cid-uE7PdByUxo .scroll-wrapper {
  padding-top: 75px;
  padding-bottom: 45px;
}
.cid-uE7PdByUxo .mbr-section-title {
  color: #ffffff;
}
.cid-uE7PdByUxo .mbr-section-title span {
  color: #ffbc00;
}
.cid-uE7PdByUxo .mbr-text {
  color: #e4d295;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-uE7PdByUxo .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-317875527-1000x667.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-uE7PdByUxo .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-uE7PdByUxo .mbr-overlay {
  z-index: 1;
}
.cid-uE7PdByUxo .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-uE7PGnCt6Z {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #2c5697;
}
@media (max-width: 991px) {
  .cid-uE7PGnCt6Z .mbr-section-title,
  .cid-uE7PGnCt6Z .mbr-section-subtitle,
  .cid-uE7PGnCt6Z .mbr-section-btn,
  .cid-uE7PGnCt6Z .mbr-text {
    text-align: center;
  }
}
.cid-uE7PGnCt6Z .mbr-section-title {
  color: #ffffff;
}
.cid-uE7PGnCt6Z .mbr-text,
.cid-uE7PGnCt6Z .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uE7PGnCt6Z .mbr-section-subtitle {
  color: #2c5697;
}
.cid-u5pQcbdpmG {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-u5pQcbdpmG .image-block {
  margin: auto;
  height: 800px;
  overflow: hidden;
}
.cid-u5pQcbdpmG .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-u5pQcbdpmG .image-block:hover:before {
  opacity: 0.4;
}
.cid-u5pQcbdpmG .image-block:hover .wrap {
  opacity: 1;
}
.cid-u5pQcbdpmG .image-block:hover img {
  transform: scale(1.05);
}
.cid-u5pQcbdpmG h4 {
  letter-spacing: 2px;
}
.cid-u5pQcbdpmG figcaption {
  position: relative;
}
.cid-u5pQcbdpmG figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-u5pQcbdpmG img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-u5pQcbdpmG .col-lg-6 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u5pQcbdpmG .image-block {
    height: 400px;
  }
}
.cid-u5pQd1bPGg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u5pQd1bPGg h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-u5pQd1bPGg .mbr-section-subtitle {
  color: #767676;
}
.cid-u5pQd1bPGg .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-u5pQd1bPGg .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-u5pQd1bPGg .mbr-text-left {
  color: #2c5697;
  text-align: left;
}
.cid-u5pQd1bPGg .mbr-text-right {
  color: #2c5697;
}
.cid-u5pQd1bPGg .article-counter-left {
  color: #408740;
  text-align: left;
}
.cid-u5pQd1bPGg .article-counter-right {
  color: #408740;
}
.cid-u5pQd1bPGg .article-title-left {
  color: #c4bc3b;
  text-align: left;
}
.cid-u5pQd1bPGg .article-title-right {
  color: #c4bc3b;
}
.cid-uE89HnnLHB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-uE89HnnLHB .mbr-section-title,
  .cid-uE89HnnLHB .mbr-section-subtitle,
  .cid-uE89HnnLHB .mbr-section-btn,
  .cid-uE89HnnLHB .mbr-text {
    text-align: center;
  }
}
.cid-uE89HnnLHB .mbr-section-title {
  color: #ffffff;
}
.cid-uE89HnnLHB .mbr-text,
.cid-uE89HnnLHB .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uE89HnnLHB .mbr-section-subtitle {
  color: #2c5697;
}
.cid-uE8aWYPxTt {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uE8aWYPxTt .image-block {
  margin: auto;
  height: 800px;
  overflow: hidden;
}
.cid-uE8aWYPxTt .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-uE8aWYPxTt .image-block:hover:before {
  opacity: 0.4;
}
.cid-uE8aWYPxTt .image-block:hover .wrap {
  opacity: 1;
}
.cid-uE8aWYPxTt .image-block:hover img {
  transform: scale(1.05);
}
.cid-uE8aWYPxTt h4 {
  letter-spacing: 2px;
}
.cid-uE8aWYPxTt figcaption {
  position: relative;
}
.cid-uE8aWYPxTt figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uE8aWYPxTt img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-uE8aWYPxTt .col-lg-6 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uE8aWYPxTt .image-block {
    height: 400px;
  }
}
.cid-uE8aI6smEr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uE8aI6smEr h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uE8aI6smEr .mbr-section-subtitle {
  color: #767676;
}
.cid-uE8aI6smEr .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-uE8aI6smEr .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-uE8aI6smEr .mbr-text-left {
  color: #2c5697;
  text-align: left;
}
.cid-uE8aI6smEr .mbr-text-right {
  color: #2c5697;
}
.cid-uE8aI6smEr .article-counter-left {
  color: #408740;
  text-align: left;
}
.cid-uE8aI6smEr .article-counter-right {
  color: #408740;
}
.cid-uE8aI6smEr .article-title-left {
  color: #c4bc3b;
  text-align: left;
}
.cid-uE8aI6smEr .article-title-right {
  color: #c4bc3b;
}
.cid-u5pSjCUqnc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/shutterstock-319529177-revs-1667x834.png");
}
@media (max-width: 991px) {
  .cid-u5pSjCUqnc .mbr-section-title,
  .cid-u5pSjCUqnc .mbr-section-subtitle,
  .cid-u5pSjCUqnc .mbr-section-btn,
  .cid-u5pSjCUqnc .mbr-text {
    text-align: center;
  }
}
.cid-u5pSjCUqnc .mbr-section-title {
  color: #ffffff;
}
.cid-u5pSjCUqnc .mbr-text,
.cid-u5pSjCUqnc .mbr-section-btn {
  color: #408740;
}
.cid-u5pSjCUqnc .mbr-section-subtitle {
  color: #2c5697;
}
.cid-u5pSeWB9CB {
  overflow-x: hidden !important;
}
.cid-u5pSeWB9CB,
.cid-u5pSeWB9CB .scroll-wrapper {
  padding-top: 30px;
  padding-bottom: 45px;
}
.cid-u5pSeWB9CB .mbr-section-title {
  color: #ffffff;
}
.cid-u5pSeWB9CB .mbr-section-title span {
  color: #ffbc00;
}
.cid-u5pSeWB9CB .mbr-text {
  color: #e4d295;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-u5pSeWB9CB .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: 58s !important;
  animation-duration: 58s;
  background-image: url("../../../assets/images/shutterstock-633393323-ar-1882x188.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-u5pSeWB9CB .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-u5pSeWB9CB .mbr-overlay {
  z-index: 1;
}
.cid-u5pSeWB9CB .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-u5pSfRCTr2 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-u5pSfRCTr2 .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-u5pSfRCTr2 .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-u5pSfRCTr2 .image-block:hover:before {
  opacity: 0.4;
}
.cid-u5pSfRCTr2 .image-block:hover .wrap {
  opacity: 1;
}
.cid-u5pSfRCTr2 .image-block:hover img {
  transform: scale(1.05);
}
.cid-u5pSfRCTr2 h4 {
  letter-spacing: 2px;
}
.cid-u5pSfRCTr2 figcaption {
  position: relative;
}
.cid-u5pSfRCTr2 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-u5pSfRCTr2 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-u5pSfRCTr2 .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u5pSfRCTr2 .image-block {
    height: 400px;
  }
}
.cid-u5pSfRCTr2 H4 {
  color: #ffffff;
}
.cid-u5pSfRCTr2 P {
  color: #e4d295;
}
.cid-uEpjW2c3fV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #408740;
}
@media (max-width: 991px) {
  .cid-uEpjW2c3fV .mbr-section-title,
  .cid-uEpjW2c3fV .mbr-section-subtitle,
  .cid-uEpjW2c3fV .mbr-section-btn,
  .cid-uEpjW2c3fV .mbr-text {
    text-align: center;
  }
}
.cid-uEpjW2c3fV .mbr-section-title {
  color: #ffffff;
}
.cid-uEpjW2c3fV .mbr-text,
.cid-uEpjW2c3fV .mbr-section-btn {
  color: #e4d295;
  text-align: center;
}
.cid-uEpjW2c3fV .mbr-section-subtitle {
  color: #2c5697;
}
.cid-uFlzbt5eUC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/shutterstock-1403806445-bw-2000x998.jpg");
}
@media (max-width: 767px) {
  .cid-uFlzbt5eUC .mbr-text {
    text-align: center;
  }
}
.cid-uFlzbt5eUC .container-fluid {
  padding: 0;
}
.cid-uFlzbt5eUC .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-uFlzbt5eUC img {
  height: 100%;
  object-fit: cover;
}
.cid-uFlzbt5eUC .mbr-figure {
  height: 100%;
}
.cid-uFlzbt5eUC .col-lg-6 {
  padding: 0;
}
.cid-uFlzbt5eUC .row {
  margin: 0;
}
.cid-uFlzbt5eUC .mbr-text,
.cid-uFlzbt5eUC .mbr-section-btn {
  color: #2c5697;
}
.cid-uFlzbt5eUC H1 {
  color: #408740;
}
.cid-u5pUXcEy2Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/shutterstock-319529177-7685-revs-1878x834.png");
}
@media (max-width: 991px) {
  .cid-u5pUXcEy2Z .mbr-section-title,
  .cid-u5pUXcEy2Z .mbr-section-subtitle,
  .cid-u5pUXcEy2Z .mbr-section-btn,
  .cid-u5pUXcEy2Z .mbr-text {
    text-align: center;
  }
}
.cid-u5pUXcEy2Z .mbr-section-title {
  color: #ffffff;
}
.cid-u5pUXcEy2Z .mbr-text,
.cid-u5pUXcEy2Z .mbr-section-btn {
  color: #2c5697;
}
.cid-u5pUXcEy2Z .mbr-section-subtitle {
  color: #2c5697;
}
.cid-u5pV0Nh29Z {
  overflow-x: hidden !important;
}
.cid-u5pV0Nh29Z,
.cid-u5pV0Nh29Z .scroll-wrapper {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-u5pV0Nh29Z .mbr-section-title {
  color: #ffffff;
}
.cid-u5pV0Nh29Z .mbr-section-title span {
  color: #ffbc00;
}
.cid-u5pV0Nh29Z .mbr-text {
  color: #e4d295;
  letter-spacing: 5px;
  font-weight: 100;
  text-align: right;
}
.cid-u5pV0Nh29Z .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: 58s !important;
  animation-duration: 58s;
  background-image: url("../../../assets/images/shutterstock-2269027619-2000x1200.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-u5pV0Nh29Z .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-u5pV0Nh29Z .mbr-overlay {
  z-index: 1;
}
.cid-u5pV0Nh29Z .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-u5pV2g1HcR {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-u5pV2g1HcR .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-u5pV2g1HcR .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-u5pV2g1HcR .image-block:hover:before {
  opacity: 0.4;
}
.cid-u5pV2g1HcR .image-block:hover .wrap {
  opacity: 1;
}
.cid-u5pV2g1HcR .image-block:hover img {
  transform: scale(1.05);
}
.cid-u5pV2g1HcR h4 {
  letter-spacing: 2px;
}
.cid-u5pV2g1HcR figcaption {
  position: relative;
}
.cid-u5pV2g1HcR figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-u5pV2g1HcR img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-u5pV2g1HcR .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u5pV2g1HcR .image-block {
    height: 400px;
  }
}
.cid-u5pV2g1HcR H4 {
  color: #ffffff;
}
.cid-u5pV4Bwwof {
  padding-top: 210px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/statistics-window-ar-2023-517x519.jpeg");
}
.cid-u5pV4Bwwof .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u5pV4Bwwof img {
  width: 100%;
}
.cid-u5pV4Bwwof p {
  line-height: 1.6;
}
.cid-u5pV4Bwwof .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u5pV4Bwwof .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-u5pV4Bwwof .mbr-text,
.cid-u5pV4Bwwof .mbr-section-btn {
  color: #408740;
  text-align: left;
}
.cid-u5pV4Bwwof .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-u5pV4Bwwof .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-u5pV4Bwwof .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-u5pV4Bwwof .mbr-section-title,
.cid-u5pV4Bwwof .line-wrap {
  text-align: left;
  color: #408740;
}
@media (max-width: 992px) {
  .cid-u5pV4Bwwof .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.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: #e4d295;
  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: 56s !important;
  animation-duration: 56s;
  background-image: url("../../../assets/images/shutterstock-2293153490-2000x800.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-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 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: #ffffff;
  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: #2c5697;
}
@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: #2c5697;
}
.cid-syL4mMUyBp .mbr-section-subtitle {
  color: #2c5697;
}
.cid-rymwxiDonX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #767676;
}
.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: #c4bc3b;
  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-sz5RXduYaq .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tNPy2m7VXU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/shutterstock-671773348-converted-2-1755x1242.png");
}
@media (max-width: 767px) {
  .cid-tNPy2m7VXU .mbr-text {
    text-align: center;
  }
}
.cid-tNPy2m7VXU .mbr-text,
.cid-tNPy2m7VXU .mbr-section-btn {
  color: #408740;
  text-align: center;
}
.cid-tNPy2m7VXU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNPy2m7VXU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEB0r6INYC {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #2c5697;
}
@media (max-width: 991px) {
  .cid-uEB0r6INYC .mbr-section-title,
  .cid-uEB0r6INYC .mbr-section-subtitle,
  .cid-uEB0r6INYC .mbr-section-btn,
  .cid-uEB0r6INYC .mbr-text {
    text-align: center;
  }
}
.cid-uEB0r6INYC .mbr-section-title {
  color: #ffffff;
}
.cid-uEB0r6INYC .mbr-text,
.cid-uEB0r6INYC .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uEB0r6INYC .mbr-section-subtitle {
  color: #2c5697;
}
.cid-tNPqOYS3cc {
  padding-top: 0px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/state-seal-njhmfa-logo-2036-2000x2007.jpg");
}
.cid-tNPqOYS3cc .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tNPqOYS3cc img {
  width: 100%;
}
.cid-tNPqOYS3cc p {
  line-height: 1.6;
}
.cid-tNPqOYS3cc .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tNPqOYS3cc .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tNPqOYS3cc .mbr-text,
.cid-tNPqOYS3cc .mbr-section-btn {
  color: #2c5697;
  text-align: left;
}
.cid-tNPqOYS3cc .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tNPqOYS3cc .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-tNPqOYS3cc .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-tNPqOYS3cc .mbr-section-title,
.cid-tNPqOYS3cc .line-wrap {
  text-align: left;
  color: #2c5697;
}
@media (max-width: 992px) {
  .cid-tNPqOYS3cc .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-sznUGx4jm4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #408740;
}
.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;
  }
}
