body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Playfair Display SC', serif;
  font-size: 3.5rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-2 {
  font-family: 'Playfair Display SC', serif;
  font-size: 2.5rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.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: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
/*
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #661793 !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: #661793 !important;
  border-color: #661793 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #380d51 !important;
  border-color: #380d51 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #380d51 !important;
  border-color: #380d51 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #661793 !important;
  border-color: #661793 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #380d51 !important;
  border-color: #380d51 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #380d51 !important;
  border-color: #380d51 !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: #29093b;
  color: #29093b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #661793;
  border-color: #661793;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #661793 !important;
  border-color: #661793 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #29093b;
  color: #29093b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #661793;
  border-color: #661793;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #661793 !important;
  border-color: #661793 !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: #661793 !important;
}
.text-secondary {
  color: #661793 !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: #29093b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #29093b !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) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #661793;
  border-color: #661793;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #661793;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #aa47e2;
}
.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: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #661793;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #661793;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #661793;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #661793;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #661793;
  border-bottom-color: #661793;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #661793 !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: #661793 !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%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%23661793' %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.3;
}
.cid-sPQVw1ktTL {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/acolor-1715x753.jpg");
}
.cid-sPQVw1ktTL P {
  color: #767676;
}
.cid-sPQVw1ktTL H1 {
  color: #27060e;
}
.cid-sPQVw1ktTL .mbr-text,
.cid-sPQVw1ktTL .mbr-section-btn {
  color: #0f7699;
}
.cid-sPQVw1ktTL H3 {
  color: #ffffff;
}
.cid-sOUfqvoOA9 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sOUfqvoOA9 .mbr-section-subtitle,
.cid-sOUfqvoOA9 .mbr-text {
  color: #767676;
}
.cid-sOUfqvoOA9 .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sOUfqvoOA9 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sOUfqvoOA9 .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sOUfqvoOA9 .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-sOUfqvoOA9 .card-wrapper .card-img img {
  width: 100%;
}
.cid-sOUfqvoOA9 .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-sOUfqvoOA9 .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sOUfqvoOA9 .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sOUfqvoOA9 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-sOUfqvoOA9 .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-sOUfqvoOA9 .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-sPQVU5r8OX {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sPQVU5r8OX .mbr-text,
.cid-sPQVU5r8OX blockquote {
  color: #767676;
}
.cid-sOUnJNpOZz {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sOUnJNpOZz h2 {
  text-align: left;
}
.cid-sOUnJNpOZz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sOUnJNpOZz p {
  color: #767676;
  text-align: left;
}
.cid-sOUnJNpOZz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sOUnJNpOZz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sOUnJNpOZz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sOUnJNpOZz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sOUnJNpOZz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sOUnJNpOZz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sOUnJNpOZz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sOUnJNpOZz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sOUnJNpOZz .card-img span {
    font-size: 40px !important;
  }
}
.cid-sPaLlm8MXD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-sPaLlm8MXD .content {
    text-align: center;
  }
  .cid-sPaLlm8MXD .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPaLlm8MXD .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sPaLlm8MXD .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sPaLlm8MXD .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sPaLlm8MXD .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sPaLlm8MXD .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sPaLlm8MXD .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sPaLlm8MXD .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sPaLlm8MXD .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sPaLlm8MXD .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sPaLlm8MXD .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sPaLlm8MXD .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t9gofJdd38 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t9gofJdd38 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-t9gofJdd38 .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #efefef;
  color: #ff3366;
}
@media (max-width: 767px) {
  .cid-t9gofJdd38 .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-t9gofJdd38 .separline {
  position: relative;
}
.cid-t9gofJdd38 .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-t9gofJdd38 .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-t9hhEH48dx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t9hhEH48dx .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-t9hhEH48dx .step {
  width: 72px;
  height: 72px;
  font-size: 36px;
  border-radius: 50%;
  border: 2px solid #efefef;
  padding-bottom: 0;
  color: #ff3366;
}
@media (min-width: 768px) {
  .cid-t9hhEH48dx .separline .step-wrapper {
    position: relative;
  }
  .cid-t9hhEH48dx .separline .step-wrapper:before,
  .cid-t9hhEH48dx .separline .step-wrapper:after {
    top: 38px;
    position: absolute;
    content: "";
    height: 2px;
    width: calc(50% + 15px - 36px - 8px);
    background-color: #efefef;
  }
  .cid-t9hhEH48dx .separline .step-wrapper:before {
    left: -15px;
  }
  .cid-t9hhEH48dx .separline .step-wrapper:after {
    left: calc(50% + 8px + 36px);
  }
  .cid-t9hhEH48dx .separline.last-child .step-wrapper:after,
  .cid-t9hhEH48dx .separline:nth-child(3n) .step-wrapper:after,
  .cid-t9hhEH48dx .separline:nth-child(3n+1) .step-wrapper:before {
    background: none;
  }
}
@media (max-width: 767px) {
  .cid-t9hhEH48dx .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-sPbIcqhDns {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/clothing-gde202d6e8-1920-1920x712.jpg");
}
.cid-sPbIcqhDns .item {
  padding-bottom: 2rem;
}
.cid-sPbIcqhDns .item-wrapper {
  height: 100%;
}
.cid-sPbIcqhDns .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sPbIcqhDns .carousel-control,
.cid-sPbIcqhDns .close {
  background: #1b1b1b;
}
.cid-sPbIcqhDns .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sPbIcqhDns .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sPbIcqhDns .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-sPbIcqhDns .close::before {
  content: '\e91a';
}
.cid-sPbIcqhDns .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sPbIcqhDns .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-sPbIcqhDns .carousel-inner > .active {
  display: block;
}
.cid-sPbIcqhDns .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPbIcqhDns .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sPbIcqhDns .carousel-control .icon-next,
.cid-sPbIcqhDns .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sPbIcqhDns .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sPbIcqhDns .carousel-control,
  .cid-sPbIcqhDns .carousel-indicators,
  .cid-sPbIcqhDns .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sPbIcqhDns .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sPbIcqhDns .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sPbIcqhDns .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-sPbIcqhDns .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sPbIcqhDns .carousel-indicators {
    display: none;
  }
}
.cid-sPbIcqhDns .carousel-indicators .active,
.cid-sPbIcqhDns .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-sPbIcqhDns .carousel-indicators .active {
  background: #fff;
}
.cid-sPbIcqhDns .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sPbIcqhDns .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sPbIcqhDns .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sPbIcqhDns .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sPbIcqhDns .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sPbIcqhDns .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-sPbIcqhDns .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sPbIcqhDns .carousel {
  width: 100%;
}
.cid-sPbIcqhDns .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sPbIcqhDns .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-sPbIcqhDns .modal.fade .modal-dialog,
.cid-sPbIcqhDns .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-sPbIcqhDns .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sPbIcqhDns a {
  display: block;
}
.cid-sPbIcqhDns a.img {
  pointer-events: none;
}
.cid-sPbIcqhDns H3 {
  color: #640f25;
}
.cid-sPbIcqhDns H4 {
  color: #640f25;
}
.cid-sPbLQIgGwB {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPbLQIgGwB h2 {
  text-align: left;
}
.cid-sPbLQIgGwB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sPbLQIgGwB p {
  color: #767676;
  text-align: left;
}
.cid-sPbLQIgGwB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPbLQIgGwB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sPbLQIgGwB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sPbLQIgGwB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sPbLQIgGwB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sPbLQIgGwB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPbLQIgGwB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sPbLQIgGwB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sPbLQIgGwB .card-img span {
    font-size: 40px !important;
  }
}
.cid-sPbLQIgGwB DIV {
  text-align: center;
}
.cid-sPbLQIgGwB H2 {
  text-align: center;
}
.cid-sPbMonp0Ww {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPbMonp0Ww h2 {
  text-align: left;
}
.cid-sPbMonp0Ww h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sPbMonp0Ww p {
  color: #767676;
  text-align: left;
}
.cid-sPbMonp0Ww .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPbMonp0Ww .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sPbMonp0Ww .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sPbMonp0Ww .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sPbMonp0Ww .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sPbMonp0Ww .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPbMonp0Ww .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-sPbMonp0Ww .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-sPbMonp0Ww .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-sPbMonp0Ww .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-sPbMonp0Ww .card-img span {
    font-size: 40px !important;
  }
}
.cid-sPbUCRcehF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPbUCRcehF h2 {
  text-align: left;
}
.cid-sPbUCRcehF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sPbUCRcehF p {
  color: #767676;
  text-align: left;
}
.cid-sPbUCRcehF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPbUCRcehF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sPbUCRcehF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sPbUCRcehF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sPbUCRcehF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sPbUCRcehF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPbUCRcehF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sPbUCRcehF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sPbUCRcehF .card-img span {
    font-size: 40px !important;
  }
}
.cid-sPbYpJmUlu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPbYpJmUlu h2 {
  text-align: left;
}
.cid-sPbYpJmUlu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sPbYpJmUlu p {
  color: #767676;
  text-align: left;
}
.cid-sPbYpJmUlu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPbYpJmUlu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sPbYpJmUlu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sPbYpJmUlu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sPbYpJmUlu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sPbYpJmUlu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPbYpJmUlu .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-sPbYpJmUlu .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-sPbYpJmUlu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-sPbYpJmUlu .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-sPbYpJmUlu .card-img span {
    font-size: 40px !important;
  }
}
.cid-sPc84gyNCI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPc84gyNCI h2 {
  text-align: left;
}
.cid-sPc84gyNCI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sPc84gyNCI p {
  color: #767676;
  text-align: left;
}
.cid-sPc84gyNCI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPc84gyNCI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sPc84gyNCI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sPc84gyNCI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sPc84gyNCI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sPc84gyNCI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPc84gyNCI .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sPc84gyNCI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sPc84gyNCI .card-img span {
    font-size: 40px !important;
  }
}
.cid-sPcasPxM7l {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f7e4e1;
}
.cid-sPcasPxM7l h2 {
  text-align: center;
}
.cid-sPcasPxM7l h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sPcasPxM7l p {
  color: #767676;
}
.cid-sPcasPxM7l img {
  object-fit: cover;
}
.cid-sPcasPxM7l .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPcasPxM7l .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sPcasPxM7l .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sPcasPxM7l .mbr-section-subtitle {
  color: #767676;
}
.cid-sPcasPxM7l .card-title {
  font-weight: 500;
}
.cid-sPcasPxM7l .card-img {
  text-align: inherit;
}
.cid-sPcasPxM7l .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPcasPxM7l .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sPcasPxM7l .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sPcasPxM7l .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sPcasPxM7l .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sPcasPxM7l .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sPtQUHFLII {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPtQUHFLII h2 {
  text-align: center;
}
.cid-sPtQUHFLII h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sPtQUHFLII p {
  color: #767676;
}
.cid-sPtQUHFLII img {
  object-fit: cover;
}
.cid-sPtQUHFLII .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPtQUHFLII .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sPtQUHFLII .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sPtQUHFLII .mbr-section-subtitle {
  color: #767676;
}
.cid-sPtQUHFLII .card-title {
  font-weight: 500;
}
.cid-sPtQUHFLII .card-img {
  text-align: inherit;
}
.cid-sPtQUHFLII .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPtQUHFLII .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sPtQUHFLII .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sPtQUHFLII .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sPtQUHFLII .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sPtQUHFLII .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sPchouCama {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPchouCama h2 {
  text-align: left;
}
.cid-sPchouCama h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sPchouCama p {
  color: #767676;
  text-align: left;
}
.cid-sPchouCama .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPchouCama .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sPchouCama .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sPchouCama .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sPchouCama .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sPchouCama .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPchouCama .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sPchouCama .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sPchouCama .card-img span {
    font-size: 40px !important;
  }
}
.cid-sQv48XyaAd {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dbf5dd;
}
.cid-sQv48XyaAd h3 {
  font-weight: 300;
}
.cid-sQv48XyaAd .card-img {
  width: initial;
}
.cid-sQv48XyaAd .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sQv48XyaAd .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-sQv48XyaAd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQv48XyaAd .mbr-section-subtitle {
  color: #767676;
}
.cid-sQv48XyaAd .mbr-text {
  color: #767676;
}
.cid-sQv48XyaAd .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sQv48XyaAd .mbr-al-i-c {
  align-items: center;
}
.cid-sQ822PL5ZS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dbf5dd;
}
.cid-sQ822PL5ZS h3 {
  font-weight: 300;
}
.cid-sQ822PL5ZS .card-img {
  width: initial;
}
.cid-sQ822PL5ZS .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sQ822PL5ZS .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-sQ822PL5ZS .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQ822PL5ZS .mbr-section-subtitle {
  color: #767676;
}
.cid-sQ822PL5ZS .mbr-text {
  color: #767676;
}
.cid-sQ822PL5ZS .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sQ822PL5ZS .mbr-al-i-c {
  align-items: center;
}
.cid-sQ826c761E {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dbf5dd;
}
.cid-sQ826c761E h2 {
  text-align: center;
}
.cid-sQ826c761E h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sQ826c761E p {
  color: #767676;
}
.cid-sQ826c761E img {
  object-fit: cover;
}
.cid-sQ826c761E .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQ826c761E .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sQ826c761E .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sQ826c761E .mbr-section-subtitle {
  color: #767676;
}
.cid-sQ826c761E .card-title {
  font-weight: 500;
}
.cid-sQ826c761E .card-img {
  text-align: inherit;
}
.cid-sQ826c761E .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQ826c761E .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sQ826c761E .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sQ826c761E .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sQ826c761E .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sQ826c761E .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sQ826Zdp5m {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dbf5dd;
}
.cid-sQ826Zdp5m h2 {
  text-align: left;
}
.cid-sQ826Zdp5m h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sQ826Zdp5m p {
  color: #767676;
  text-align: left;
}
.cid-sQ826Zdp5m .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQ826Zdp5m .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sQ826Zdp5m .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQ826Zdp5m .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sQ826Zdp5m .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sQ826Zdp5m .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQ826Zdp5m .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sQ826Zdp5m .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sQ826Zdp5m .card-img span {
    font-size: 40px !important;
  }
}
.cid-sP5gYMsZyK {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc05384-2000x1333.jpg");
}
.cid-sP5gYMsZyK .item {
  padding-bottom: 2rem;
}
.cid-sP5gYMsZyK .item-wrapper {
  height: 100%;
}
.cid-sP5gYMsZyK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sP5gYMsZyK .carousel-control,
.cid-sP5gYMsZyK .close {
  background: #1b1b1b;
}
.cid-sP5gYMsZyK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sP5gYMsZyK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sP5gYMsZyK .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-sP5gYMsZyK .close::before {
  content: '\e91a';
}
.cid-sP5gYMsZyK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sP5gYMsZyK .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-sP5gYMsZyK .carousel-inner > .active {
  display: block;
}
.cid-sP5gYMsZyK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sP5gYMsZyK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sP5gYMsZyK .carousel-control .icon-next,
.cid-sP5gYMsZyK .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sP5gYMsZyK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sP5gYMsZyK .carousel-control,
  .cid-sP5gYMsZyK .carousel-indicators,
  .cid-sP5gYMsZyK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sP5gYMsZyK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sP5gYMsZyK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sP5gYMsZyK .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-sP5gYMsZyK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sP5gYMsZyK .carousel-indicators {
    display: none;
  }
}
.cid-sP5gYMsZyK .carousel-indicators .active,
.cid-sP5gYMsZyK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-sP5gYMsZyK .carousel-indicators .active {
  background: #fff;
}
.cid-sP5gYMsZyK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sP5gYMsZyK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sP5gYMsZyK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sP5gYMsZyK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sP5gYMsZyK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sP5gYMsZyK .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-sP5gYMsZyK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sP5gYMsZyK .carousel {
  width: 100%;
}
.cid-sP5gYMsZyK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sP5gYMsZyK .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-sP5gYMsZyK .modal.fade .modal-dialog,
.cid-sP5gYMsZyK .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-sP5gYMsZyK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sP5gYMsZyK a {
  display: block;
}
.cid-sP5gYMsZyK a.img {
  pointer-events: none;
}
.cid-sP5gYMsZyK H3 {
  color: #661793;
}
.cid-sP5gYMsZyK H4 {
  color: #661793;
}
.cid-sP0lCSPlHS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sP0lCSPlHS h2 {
  text-align: center;
}
.cid-sP0lCSPlHS h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sP0lCSPlHS p {
  color: #767676;
}
.cid-sP0lCSPlHS img {
  object-fit: cover;
}
.cid-sP0lCSPlHS .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sP0lCSPlHS .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sP0lCSPlHS .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sP0lCSPlHS .mbr-section-subtitle {
  color: #767676;
}
.cid-sP0lCSPlHS .card-title {
  font-weight: 500;
}
.cid-sP0lCSPlHS .card-img {
  text-align: inherit;
}
.cid-sP0lCSPlHS .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sP0lCSPlHS .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sP0lCSPlHS .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sP0lCSPlHS .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sP0lCSPlHS .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sP0lCSPlHS .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sP0rwAQpmR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sP0rwAQpmR h2 {
  text-align: center;
}
.cid-sP0rwAQpmR h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sP0rwAQpmR p {
  color: #767676;
}
.cid-sP0rwAQpmR img {
  object-fit: cover;
}
.cid-sP0rwAQpmR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sP0rwAQpmR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sP0rwAQpmR .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sP0rwAQpmR .mbr-section-subtitle {
  color: #767676;
}
.cid-sP0rwAQpmR .card-title {
  font-weight: 500;
}
.cid-sP0rwAQpmR .card-img {
  text-align: inherit;
}
.cid-sP0rwAQpmR .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sP0rwAQpmR .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sP0rwAQpmR .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sP0rwAQpmR .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sP0rwAQpmR .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sP0rwAQpmR .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sP4Wsb1CAY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sP4Wsb1CAY h2 {
  text-align: left;
}
.cid-sP4Wsb1CAY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sP4Wsb1CAY p {
  color: #767676;
  text-align: left;
}
.cid-sP4Wsb1CAY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sP4Wsb1CAY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sP4Wsb1CAY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sP4Wsb1CAY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sP4Wsb1CAY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sP4Wsb1CAY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sP4Wsb1CAY .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-sP4Wsb1CAY .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-sP4Wsb1CAY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-sP4Wsb1CAY .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-sP4Wsb1CAY .card-img span {
    font-size: 40px !important;
  }
}
.cid-sP58DCJpvZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sP58DCJpvZ h2 {
  text-align: left;
}
.cid-sP58DCJpvZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sP58DCJpvZ p {
  color: #767676;
  text-align: left;
}
.cid-sP58DCJpvZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sP58DCJpvZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sP58DCJpvZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sP58DCJpvZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sP58DCJpvZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sP58DCJpvZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sP58DCJpvZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sP58DCJpvZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sP58DCJpvZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-sP58DCJpvZ H2 {
  text-align: left;
}
.cid-sP58DCJpvZ .mbr-text {
  text-align: left;
}
.cid-sPtyiE0Lqn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPtyiE0Lqn h2 {
  text-align: center;
}
.cid-sPtyiE0Lqn h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sPtyiE0Lqn p {
  color: #767676;
}
.cid-sPtyiE0Lqn img {
  object-fit: cover;
}
.cid-sPtyiE0Lqn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPtyiE0Lqn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sPtyiE0Lqn .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sPtyiE0Lqn .mbr-section-subtitle {
  color: #767676;
}
.cid-sPtyiE0Lqn .card-title {
  font-weight: 500;
}
.cid-sPtyiE0Lqn .card-img {
  text-align: inherit;
}
.cid-sPtyiE0Lqn .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPtyiE0Lqn .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sPtyiE0Lqn .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sPtyiE0Lqn .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sPtyiE0Lqn .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sPtyiE0Lqn .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sQuWvvZy5Y {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dbf5dd;
}
.cid-sQuWvvZy5Y h3 {
  font-weight: 300;
}
.cid-sQuWvvZy5Y .card-img {
  width: initial;
}
.cid-sQuWvvZy5Y .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sQuWvvZy5Y .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-sQuWvvZy5Y .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQuWvvZy5Y .mbr-section-subtitle {
  color: #767676;
}
.cid-sQuWvvZy5Y .mbr-text {
  color: #767676;
}
.cid-sQuWvvZy5Y .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sQuWvvZy5Y .mbr-al-i-c {
  align-items: center;
}
.cid-sPb2oV3C6a {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dbf5dd;
}
.cid-sPb2oV3C6a h3 {
  font-weight: 300;
}
.cid-sPb2oV3C6a .card-img {
  width: initial;
}
.cid-sPb2oV3C6a .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sPb2oV3C6a .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-sPb2oV3C6a .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sPb2oV3C6a .mbr-section-subtitle {
  color: #767676;
}
.cid-sPb2oV3C6a .mbr-text {
  color: #767676;
}
.cid-sPb2oV3C6a .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sPb2oV3C6a .mbr-al-i-c {
  align-items: center;
}
.cid-sPb8LGX5aZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dbf5dd;
}
.cid-sPb8LGX5aZ h2 {
  text-align: center;
}
.cid-sPb8LGX5aZ h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sPb8LGX5aZ p {
  color: #767676;
}
.cid-sPb8LGX5aZ img {
  object-fit: cover;
}
.cid-sPb8LGX5aZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPb8LGX5aZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sPb8LGX5aZ .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sPb8LGX5aZ .mbr-section-subtitle {
  color: #767676;
}
.cid-sPb8LGX5aZ .card-title {
  font-weight: 500;
}
.cid-sPb8LGX5aZ .card-img {
  text-align: inherit;
}
.cid-sPb8LGX5aZ .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPb8LGX5aZ .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sPb8LGX5aZ .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sPb8LGX5aZ .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sPb8LGX5aZ .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sPb8LGX5aZ .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sPbxNV93lG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dbf5dd;
}
.cid-sPbxNV93lG h2 {
  text-align: left;
}
.cid-sPbxNV93lG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sPbxNV93lG p {
  color: #767676;
  text-align: left;
}
.cid-sPbxNV93lG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPbxNV93lG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sPbxNV93lG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sPbxNV93lG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sPbxNV93lG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sPbxNV93lG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPbxNV93lG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sPbxNV93lG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sPbxNV93lG .card-img span {
    font-size: 40px !important;
  }
}
.cid-sUmRXRf7KZ {
  padding-top: 105px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/pexels-miguel-padrin-3785935-2000x1330.jpg");
}
.cid-sUmRXRf7KZ .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-sUmRXRf7KZ .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-sUmRXRf7KZ .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-sUmRXRf7KZ .mbr-text {
  color: #ffffff;
}
.cid-sUmRXRf7KZ .card {
  padding-bottom: 1.5rem;
}
.cid-sUmRXRf7KZ H5 {
  text-align: left;
  color: #4c1321;
}
.cid-sUmRXRf7KZ .mbr-text,
.cid-sUmRXRf7KZ .mbr-section-btn {
  color: #7f1933;
}
.cid-sUmRXRf7KZ H1 {
  color: #4c1321;
}
.cid-sPudA38Xy5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sPudA38Xy5 h2 {
  text-align: center;
}
.cid-sPudA38Xy5 h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sPudA38Xy5 p {
  color: #767676;
}
.cid-sPudA38Xy5 img {
  object-fit: cover;
}
.cid-sPudA38Xy5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPudA38Xy5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sPudA38Xy5 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sPudA38Xy5 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-sPudA38Xy5 .card-title {
  font-weight: 500;
}
.cid-sPudA38Xy5 .card-img {
  text-align: inherit;
}
.cid-sPudA38Xy5 .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPudA38Xy5 .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sPudA38Xy5 .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sPudA38Xy5 .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sPudA38Xy5 .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sPudA38Xy5 .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sPyjd7yO9H {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPyjd7yO9H h2 {
  text-align: left;
}
.cid-sPyjd7yO9H h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sPyjd7yO9H p {
  color: #767676;
  text-align: left;
}
.cid-sPyjd7yO9H .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPyjd7yO9H .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sPyjd7yO9H .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sPyjd7yO9H .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sPyjd7yO9H .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sPyjd7yO9H .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPyjd7yO9H .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sPyjd7yO9H .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sPyjd7yO9H .card-img span {
    font-size: 40px !important;
  }
}
.cid-sPyoM5pcMq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sPyoM5pcMq h2 {
  text-align: left;
}
.cid-sPyoM5pcMq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sPyoM5pcMq p {
  color: #767676;
  text-align: left;
}
.cid-sPyoM5pcMq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sPyoM5pcMq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sPyoM5pcMq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sPyoM5pcMq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sPyoM5pcMq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sPyoM5pcMq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sPyoM5pcMq .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-sPyoM5pcMq .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-sPyoM5pcMq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-sPyoM5pcMq .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-sPyoM5pcMq .card-img span {
    font-size: 40px !important;
  }
}
.cid-sPyNIxT8vS {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sPyNIxT8vS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sPyNIxT8vS p {
  color: #767676;
  text-align: left;
}
.cid-sPyNIxT8vS .card-box {
  padding-top: 2rem;
}
.cid-sPyNIxT8vS .card-wrapper {
  height: 100%;
}
.cid-sPzZYGdCF1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sPzZYGdCF1 .mbr-text,
.cid-sPzZYGdCF1 blockquote {
  color: #767676;
}
.cid-sPyXRg75GL {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sPyXRg75GL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sPyXRg75GL p {
  color: #767676;
  text-align: left;
}
.cid-sPyXRg75GL .card-box {
  padding-top: 2rem;
}
.cid-sPyXRg75GL .card-wrapper {
  height: 100%;
}
.cid-sPKKv59fsz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sPKKv59fsz .counter-container {
  color: #767676;
}
.cid-sPKKv59fsz .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-sPKKv59fsz .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sPKKv59fsz .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-sPKKv59fsz .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-sPLst1YLYp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-sPLst1YLYp .content {
    text-align: center;
  }
  .cid-sPLst1YLYp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sPLst1YLYp .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sPLst1YLYp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sPLst1YLYp .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sPLst1YLYp .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPLst1YLYp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sPLst1YLYp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sPLst1YLYp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sPLst1YLYp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sPLst1YLYp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sPLst1YLYp .google-map {
  height: 25rem;
  position: relative;
}
.cid-sPLst1YLYp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sPLst1YLYp .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sPLst1YLYp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sPLst1YLYp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sUmu98wpv9 {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/pexels-miguel-padrin-3785935-2000x1330.jpg");
}
.cid-sUmu98wpv9 .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-sUmu98wpv9 .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-sUmu98wpv9 .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-sUmu98wpv9 .mbr-text {
  color: #ffffff;
}
.cid-sUmu98wpv9 .card {
  padding-bottom: 1.5rem;
}
.cid-sUmu98wpv9 H1 {
  color: #4c1321;
}
.cid-sUmu98wpv9 .mbr-text,
.cid-sUmu98wpv9 .mbr-section-btn {
  color: #7f1933;
}
.cid-sUmu98wpv9 H5 {
  color: #4c1321;
  text-align: left;
}
.cid-sQ7CBBRfRK {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sQ7CBBRfRK h2 {
  text-align: center;
}
.cid-sQ7CBBRfRK h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sQ7CBBRfRK p {
  color: #767676;
}
.cid-sQ7CBBRfRK img {
  object-fit: cover;
}
.cid-sQ7CBBRfRK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQ7CBBRfRK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sQ7CBBRfRK .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sQ7CBBRfRK .mbr-section-subtitle {
  color: #767676;
}
.cid-sQ7CBBRfRK .card-title {
  font-weight: 500;
}
.cid-sQ7CBBRfRK .card-img {
  text-align: inherit;
}
.cid-sQ7CBBRfRK .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQ7CBBRfRK .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sQ7CBBRfRK .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sQ7CBBRfRK .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sQ7CBBRfRK .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sQ7CBBRfRK .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sQ84b1SP5O {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc00475-2000x1333.jpg");
}
.cid-sQ84b1SP5O .item {
  padding-bottom: 2rem;
}
.cid-sQ84b1SP5O .item-wrapper {
  height: 100%;
}
.cid-sQ84b1SP5O .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sQ84b1SP5O .carousel-control,
.cid-sQ84b1SP5O .close {
  background: #1b1b1b;
}
.cid-sQ84b1SP5O .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sQ84b1SP5O .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sQ84b1SP5O .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-sQ84b1SP5O .close::before {
  content: '\e91a';
}
.cid-sQ84b1SP5O .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sQ84b1SP5O .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-sQ84b1SP5O .carousel-inner > .active {
  display: block;
}
.cid-sQ84b1SP5O .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQ84b1SP5O .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sQ84b1SP5O .carousel-control .icon-next,
.cid-sQ84b1SP5O .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sQ84b1SP5O .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sQ84b1SP5O .carousel-control,
  .cid-sQ84b1SP5O .carousel-indicators,
  .cid-sQ84b1SP5O .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sQ84b1SP5O .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sQ84b1SP5O .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sQ84b1SP5O .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-sQ84b1SP5O .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQ84b1SP5O .carousel-indicators {
    display: none;
  }
}
.cid-sQ84b1SP5O .carousel-indicators .active,
.cid-sQ84b1SP5O .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-sQ84b1SP5O .carousel-indicators .active {
  background: #fff;
}
.cid-sQ84b1SP5O .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sQ84b1SP5O .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sQ84b1SP5O .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sQ84b1SP5O .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sQ84b1SP5O .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sQ84b1SP5O .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-sQ84b1SP5O .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sQ84b1SP5O .carousel {
  width: 100%;
}
.cid-sQ84b1SP5O .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sQ84b1SP5O .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-sQ84b1SP5O .modal.fade .modal-dialog,
.cid-sQ84b1SP5O .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-sQ84b1SP5O .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sQ84b1SP5O a {
  display: block;
}
.cid-sQ84b1SP5O a.img {
  pointer-events: none;
}
.cid-sQ84b1SP5O H3 {
  color: #661793;
}
.cid-sQ84b1SP5O H4 {
  color: #661793;
}
.cid-sQ86PctZR0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sQ86PctZR0 h2 {
  text-align: center;
}
.cid-sQ86PctZR0 h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sQ86PctZR0 p {
  color: #767676;
}
.cid-sQ86PctZR0 img {
  object-fit: cover;
}
.cid-sQ86PctZR0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQ86PctZR0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sQ86PctZR0 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sQ86PctZR0 .mbr-section-subtitle {
  color: #767676;
}
.cid-sQ86PctZR0 .card-title {
  font-weight: 500;
}
.cid-sQ86PctZR0 .card-img {
  text-align: inherit;
}
.cid-sQ86PctZR0 .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQ86PctZR0 .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sQ86PctZR0 .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sQ86PctZR0 .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sQ86PctZR0 .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sQ86PctZR0 .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sQ86PQwAHP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sQ86PQwAHP h2 {
  text-align: center;
}
.cid-sQ86PQwAHP h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sQ86PQwAHP p {
  color: #767676;
}
.cid-sQ86PQwAHP img {
  object-fit: cover;
}
.cid-sQ86PQwAHP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQ86PQwAHP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sQ86PQwAHP .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sQ86PQwAHP .mbr-section-subtitle {
  color: #767676;
}
.cid-sQ86PQwAHP .card-title {
  font-weight: 500;
}
.cid-sQ86PQwAHP .card-img {
  text-align: inherit;
}
.cid-sQ86PQwAHP .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQ86PQwAHP .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sQ86PQwAHP .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sQ86PQwAHP .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sQ86PQwAHP .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sQ86PQwAHP .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sQ8bnKIR8X {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sQ8bnKIR8X h2 {
  text-align: left;
}
.cid-sQ8bnKIR8X h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sQ8bnKIR8X p {
  color: #767676;
  text-align: left;
}
.cid-sQ8bnKIR8X .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQ8bnKIR8X .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sQ8bnKIR8X .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQ8bnKIR8X .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sQ8bnKIR8X .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sQ8bnKIR8X .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQ8bnKIR8X .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-sQ8bnKIR8X .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-sQ8bnKIR8X .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-sQ8bnKIR8X .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-sQ8bnKIR8X .card-img span {
    font-size: 40px !important;
  }
}
.cid-sQ8cNBjczq {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sQ8cNBjczq h2 {
  text-align: left;
}
.cid-sQ8cNBjczq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sQ8cNBjczq p {
  color: #767676;
  text-align: left;
}
.cid-sQ8cNBjczq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQ8cNBjczq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sQ8cNBjczq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQ8cNBjczq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sQ8cNBjczq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sQ8cNBjczq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQ8cNBjczq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sQ8cNBjczq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sQ8cNBjczq .card-img span {
    font-size: 40px !important;
  }
}
.cid-sQ8cNBjczq H2 {
  text-align: left;
}
.cid-sQ8cNBjczq .mbr-text {
  text-align: left;
}
.cid-sQ8e81EpcX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sQ8e81EpcX h2 {
  text-align: center;
}
.cid-sQ8e81EpcX h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sQ8e81EpcX p {
  color: #767676;
}
.cid-sQ8e81EpcX img {
  object-fit: cover;
}
.cid-sQ8e81EpcX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQ8e81EpcX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sQ8e81EpcX .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sQ8e81EpcX .mbr-section-subtitle {
  color: #767676;
}
.cid-sQ8e81EpcX .card-title {
  font-weight: 500;
}
.cid-sQ8e81EpcX .card-img {
  text-align: inherit;
}
.cid-sQ8e81EpcX .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQ8e81EpcX .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sQ8e81EpcX .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sQ8e81EpcX .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sQ8e81EpcX .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sQ8e81EpcX .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sQ8fNlpR1h {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sQ8fNlpR1h h2 {
  text-align: left;
}
.cid-sQ8fNlpR1h h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sQ8fNlpR1h p {
  color: #767676;
  text-align: left;
}
.cid-sQ8fNlpR1h .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQ8fNlpR1h .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sQ8fNlpR1h .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQ8fNlpR1h .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sQ8fNlpR1h .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sQ8fNlpR1h .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQ8fNlpR1h .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sQ8fNlpR1h .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sQ8fNlpR1h .card-img span {
    font-size: 40px !important;
  }
}
.cid-sQv4qj3hT0 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dbf5dd;
}
.cid-sQv4qj3hT0 h3 {
  font-weight: 300;
}
.cid-sQv4qj3hT0 .card-img {
  width: initial;
}
.cid-sQv4qj3hT0 .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sQv4qj3hT0 .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-sQv4qj3hT0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQv4qj3hT0 .mbr-section-subtitle {
  color: #767676;
}
.cid-sQv4qj3hT0 .mbr-text {
  color: #767676;
}
.cid-sQv4qj3hT0 .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sQv4qj3hT0 .mbr-al-i-c {
  align-items: center;
}
.cid-sQ8fyUnt4D {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dbf5dd;
}
.cid-sQ8fyUnt4D h3 {
  font-weight: 300;
}
.cid-sQ8fyUnt4D .card-img {
  width: initial;
}
.cid-sQ8fyUnt4D .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sQ8fyUnt4D .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-sQ8fyUnt4D .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQ8fyUnt4D .mbr-section-subtitle {
  color: #767676;
}
.cid-sQ8fyUnt4D .mbr-text {
  color: #767676;
}
.cid-sQ8fyUnt4D .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sQ8fyUnt4D .mbr-al-i-c {
  align-items: center;
}
.cid-sQ8f20UPrV {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dbf5dd;
}
.cid-sQ8f20UPrV h2 {
  text-align: center;
}
.cid-sQ8f20UPrV h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sQ8f20UPrV p {
  color: #767676;
}
.cid-sQ8f20UPrV img {
  object-fit: cover;
}
.cid-sQ8f20UPrV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQ8f20UPrV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sQ8f20UPrV .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sQ8f20UPrV .mbr-section-subtitle {
  color: #767676;
}
.cid-sQ8f20UPrV .card-title {
  font-weight: 500;
}
.cid-sQ8f20UPrV .card-img {
  text-align: inherit;
}
.cid-sQ8f20UPrV .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQ8f20UPrV .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sQ8f20UPrV .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sQ8f20UPrV .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-sQ8f20UPrV .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-sQ8f20UPrV .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-sQ8f2NTU4v {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dbf5dd;
}
.cid-sQ8f2NTU4v h2 {
  text-align: left;
}
.cid-sQ8f2NTU4v h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sQ8f2NTU4v p {
  color: #767676;
  text-align: left;
}
.cid-sQ8f2NTU4v .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQ8f2NTU4v .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sQ8f2NTU4v .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQ8f2NTU4v .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sQ8f2NTU4v .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sQ8f2NTU4v .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQ8f2NTU4v .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sQ8f2NTU4v .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sQ8f2NTU4v .card-img span {
    font-size: 40px !important;
  }
}
.cid-sQjNcZGNKZ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/acolor-1715x753.jpg");
}
.cid-sQjNcZGNKZ P {
  color: #767676;
}
.cid-sQjNcZGNKZ H1 {
  color: #149dcc;
}
.cid-sQjNcZGNKZ .mbr-text,
.cid-sQjNcZGNKZ .mbr-section-btn {
  color: #0f7699;
}
.cid-sQjNcZGNKZ H3 {
  color: #661793;
}
.cid-sQjNdRcEm9 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sQjNdRcEm9 .mbr-section-subtitle,
.cid-sQjNdRcEm9 .mbr-text {
  color: #767676;
}
.cid-sQjNdRcEm9 .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sQjNdRcEm9 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sQjNdRcEm9 .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sQjNdRcEm9 .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-sQjNdRcEm9 .card-wrapper .card-img img {
  width: 100%;
}
.cid-sQjNdRcEm9 .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-sQjNdRcEm9 .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sQjNdRcEm9 .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sQjNdRcEm9 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-sQjNdRcEm9 .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-sQjNdRcEm9 .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-sQk1UzBPN8 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #c5f4c7;
}
.cid-sQk1UzBPN8 P {
  color: #767676;
}
.cid-sQk1UzBPN8 H1 {
  color: #149dcc;
}
.cid-sQk1UzBPN8 .mbr-text,
.cid-sQk1UzBPN8 .mbr-section-btn {
  color: #0f7699;
}
.cid-sQk1UzV95E {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sQk1UzV95E .mbr-section-subtitle,
.cid-sQk1UzV95E .mbr-text {
  color: #767676;
}
.cid-sQk1UzV95E .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sQk1UzV95E .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sQk1UzV95E .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sQk1UzV95E .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-sQk1UzV95E .card-wrapper .card-img img {
  width: 100%;
}
.cid-sQk1UzV95E .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-sQk1UzV95E .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sQk1UzV95E .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sQk1UzV95E .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-sQk1UzV95E .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-sQk1UzV95E .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-sQk1W1vjjz {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sQk1W1vjjz h2 {
  text-align: left;
}
.cid-sQk1W1vjjz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sQk1W1vjjz p {
  color: #767676;
  text-align: left;
}
.cid-sQk1W1vjjz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sQk1W1vjjz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sQk1W1vjjz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQk1W1vjjz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sQk1W1vjjz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sQk1W1vjjz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sQk1W1vjjz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sQk1W1vjjz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sQk1W1vjjz .card-img span {
    font-size: 40px !important;
  }
}
.cid-sRIOvJV70A {
  background: linear-gradient(45deg, #55b4d4, #073b4c);
}
.cid-sRIOvJV70A .mbr-text,
.cid-sRIOvJV70A .mbr-section-btn {
  text-align: left;
}
.cid-sRIQnGE8lm {
  background: linear-gradient(45deg, #55b4d4, #073b4c);
}
.cid-sRIQnGE8lm .mbr-text,
.cid-sRIQnGE8lm .mbr-section-btn {
  text-align: left;
}
.cid-sT0B0oDByb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sT0B0oDByb .mbr-section-subtitle {
  color: #767676;
}
.cid-sT0B0oDByb .formoid {
  margin: auto;
}
.cid-sT0B0oDByb .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cid-sT0B0oDByb .input-group-btn .btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 !important;
}
.cid-sT0B0oDByb input[type="email"] {
  border-radius: 100px !important;
}
.cid-sT0B0oDByb a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sT0B0oDByb a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
@media (max-width: 768px) {
  .cid-sT0B0oDByb .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sT0B0oDByb .form-group,
  .cid-sT0B0oDByb .input-group-btn,
  .cid-sT0B0oDByb .input-group-btn .btn {
    max-width: 300px;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .cid-sT0B0oDByb .mbr-form .row > * {
    padding: 0 0.5rem;
  }
}
.cid-sT0B0oDByb .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sT0CWBgkWZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sT0CWBgkWZ .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sT0CWBgkWZ .formoid {
  margin: auto;
}
.cid-sT0CWBgkWZ .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cid-sT0CWBgkWZ .input-group-btn .btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 !important;
}
.cid-sT0CWBgkWZ input[type="email"] {
  border-radius: 100px !important;
}
.cid-sT0CWBgkWZ a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sT0CWBgkWZ a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
@media (max-width: 768px) {
  .cid-sT0CWBgkWZ .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sT0CWBgkWZ .form-group,
  .cid-sT0CWBgkWZ .input-group-btn,
  .cid-sT0CWBgkWZ .input-group-btn .btn {
    max-width: 300px;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .cid-sT0CWBgkWZ .mbr-form .row > * {
    padding: 0 0.5rem;
  }
}
.cid-sTHEgFFhxz {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f7e4e1;
}
.cid-sTHEgFFhxz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sTHEgFFhxz p {
  color: #767676;
  text-align: left;
}
.cid-sTHEgFFhxz .card-box {
  padding-top: 2rem;
}
.cid-sTHEgFFhxz .card-wrapper {
  height: 100%;
}
.cid-sTHEhZ6tDp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sTHEhZ6tDp .mbr-section-subtitle,
.cid-sTHEhZ6tDp .mbr-text {
  color: #767676;
}
.cid-sTHEhZ6tDp .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sTHEhZ6tDp .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sTHEhZ6tDp .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sTHEhZ6tDp .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-sTHEhZ6tDp .card-wrapper .card-img img {
  width: 100%;
}
.cid-sTHEhZ6tDp .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-sTHEhZ6tDp .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sTHEhZ6tDp .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sTHEhZ6tDp .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-sTHEhZ6tDp .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-sTHEhZ6tDp .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-t4JK57YUfi {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t4JK57YUfi h2 {
  text-align: center;
}
.cid-t4JK57YUfi h3 {
  text-align: center;
  font-weight: 300;
}
.cid-t4JK57YUfi p {
  color: #767676;
}
.cid-t4JK57YUfi img {
  object-fit: cover;
}
.cid-t4JK57YUfi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-t4JK57YUfi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-t4JK57YUfi .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-t4JK57YUfi .mbr-section-subtitle {
  color: #767676;
}
.cid-t4JK57YUfi .card-title {
  font-weight: 500;
}
.cid-t4JK57YUfi .card-img {
  text-align: inherit;
}
.cid-t4JK57YUfi .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-t4JK57YUfi .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-t4JK57YUfi .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-t4JK57YUfi .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-t4JK57YUfi .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-t4JK57YUfi .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-t51G4ppa4s {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t51G4ppa4s .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-t51G4ppa4s .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
@media (max-width: 767px) {
  .cid-t51G4ppa4s .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-t51G4ppa4s .separline {
  position: relative;
}
.cid-t51G4ppa4s .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-t51G4ppa4s .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-t51G4ppa4s .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-t51G4ppa4s .media-block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t51G4ppa4s .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-bottom: 2rem;
  }
}
.cid-tbfSnTYhrA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-tbfSW5qqXV {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tbfSW5qqXV .card-img {
  background-color: #fff;
}
.cid-tbfSW5qqXV .card {
  align-self: stretch;
}
.cid-tbfSW5qqXV .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-tbfSW5qqXV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tbfSW5qqXV p {
  text-align: left;
}
.cid-tbfSW5qqXV .mbr-text {
  color: #767676;
}
.cid-tbfSW5qqXV .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tbfSW5qqXV .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tbfSW5qqXV .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tbfUN5zcy8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tbfUN5zcy8 .counter-container {
  color: #767676;
}
.cid-tbfUN5zcy8 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tbfUN5zcy8 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tbfUN5zcy8 .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-tbfUN5zcy8 .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.cid-tbrh6yQD8q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-tbrh6zAovl {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tbrh6zAovl .card-img {
  background-color: #fff;
}
.cid-tbrh6zAovl .card {
  align-self: stretch;
}
.cid-tbrh6zAovl .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-tbrh6zAovl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tbrh6zAovl p {
  text-align: left;
}
.cid-tbrh6zAovl .mbr-text {
  color: #767676;
}
.cid-tbrh6zAovl .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tbrh6zAovl .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tbrh6zAovl .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tbrh6ArT5p {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tbrh6ArT5p .counter-container {
  color: #767676;
}
.cid-tbrh6ArT5p .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tbrh6ArT5p .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tbrh6ArT5p .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-tbrh6ArT5p .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-tmLxcvmxQN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tmLxcvmxQN .mbr-section-subtitle,
.cid-tmLxcvmxQN .mbr-text {
  color: #767676;
}
.cid-tmLxcvmxQN .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tmLxcvmxQN .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tmLxcvmxQN .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tmLxcvmxQN .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-tmLxcvmxQN .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  left: 0;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
}
.cid-tmLxcvmxQN .card-wrapper .card-img img {
  width: 100%;
}
.cid-tmLxcvmxQN .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-tmLxcvmxQN .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-tmLxcvmxQN .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-tmLxcvmxQN .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-tmLxcvmxQN .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-tmLxcvmxQN .card-img .mbr-section-btn {
  opacity: 0;
}
.cid-tmLxcvmxQN .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-tmLxcvmxQN .card-img:hover .mbr-section-btn {
  opacity: 1;
}
.cid-tmLxcvmxQN .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tmLxcvmxQN .mbr-section-subtitle {
  text-align: left;
}
.cid-tmLxcvmxQN .mbr-section-title {
  text-align: center;
}
.cid-tmt4GhoUN9 {
  background: linear-gradient(45deg, #e4d295, #ff3366);
}
.cid-tmt4GhoUN9 .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-tmLzPFwd1H {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tmLzPFwd1H .mbr-section-subtitle,
.cid-tmLzPFwd1H .mbr-text {
  color: #767676;
}
.cid-tmLzPFwd1H .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tmLzPFwd1H .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tmLzPFwd1H .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tmLzPFwd1H .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-tmLzPFwd1H .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  left: 0;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
}
.cid-tmLzPFwd1H .card-wrapper .card-img img {
  width: 100%;
}
.cid-tmLzPFwd1H .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-tmLzPFwd1H .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-tmLzPFwd1H .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-tmLzPFwd1H .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-tmLzPFwd1H .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-tmLzPFwd1H .card-img .mbr-section-btn {
  opacity: 0;
}
.cid-tmLzPFwd1H .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-tmLzPFwd1H .card-img:hover .mbr-section-btn {
  opacity: 1;
}
.cid-tmLzPFwd1H .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tmLzPFwd1H .mbr-section-subtitle {
  text-align: left;
}
.cid-tnjvkuoIZ6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-tnjvmk9MRR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tnjvmk9MRR .mbr-section-subtitle,
.cid-tnjvmk9MRR .mbr-text {
  color: #767676;
}
.cid-tnjvmk9MRR .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tnjvmk9MRR .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tnjvmk9MRR .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tnjvmk9MRR .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-tnjvmk9MRR .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  left: 0;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
}
.cid-tnjvmk9MRR .card-wrapper .card-img img {
  width: 100%;
}
.cid-tnjvmk9MRR .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-tnjvmk9MRR .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-tnjvmk9MRR .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-tnjvmk9MRR .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-tnjvmk9MRR .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-tnjvmk9MRR .card-img .mbr-section-btn {
  opacity: 0;
}
.cid-tnjvmk9MRR .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-tnjvmk9MRR .card-img:hover .mbr-section-btn {
  opacity: 1;
}
.cid-tnjvmk9MRR .mbr-section-subtitle {
  text-align: left;
}
.cid-tnjvmk9MRR .mbr-section-subtitle DIV {
  text-align: left;
}

.cid-tnpF00PNSF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-tnpF2HIvgQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tnpF2HIvgQ .counter-container {
  color: #767676;
}
.cid-tnpF2HIvgQ .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tnpF2HIvgQ .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tnpF2HIvgQ .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-tnpF2HIvgQ .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-tnpX1KKj3u {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-tnpX2sE1DO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tnpX2sE1DO .counter-container {
  color: #767676;
}
.cid-tnpX2sE1DO .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tnpX2sE1DO .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tnpX2sE1DO .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-tnpX2sE1DO .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
