body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.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.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #23b574 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #23b574 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #23b574 !important;
  border-color: #23b574 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #17754b !important;
  border-color: #17754b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #17754b !important;
  border-color: #17754b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #23b574 !important;
  border-color: #23b574 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #17754b !important;
  border-color: #17754b !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #17754b !important;
  border-color: #17754b !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: #12603d;
  color: #12603d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #23b574;
  border-color: #23b574;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #23b574 !important;
  border-color: #23b574 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #12603d;
  color: #12603d;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #23b574;
  border-color: #23b574;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #23b574 !important;
  border-color: #23b574 !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: #23b574 !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #23b574 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #12603d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #12603d !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: #23b574;
}
.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: #23b574;
  border-color: #23b574;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #23b574;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #73e4b2;
}
.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: #73e4b2;
}
/* 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: #23b574;
}
/* 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: #23b574;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #23b574;
}
.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: #23b574;
  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: #23b574;
  border-bottom-color: #23b574;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #23b574 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3366 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
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='%2323b574' %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-sexEvnJl97 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sexEvnJl97 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sexEvnJl97 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sexEvnJl97 .mbr-text {
    text-align: center;
  }
}
.cid-sexEvnJl97 H1 {
  text-align: left;
  color: #23b574;
}
.cid-sexEvnJl97 .mbr-text,
.cid-sexEvnJl97 .mbr-section-btn {
  color: #0f7699;
}
.cid-sexEX1bc6p {
  background: #ffffff;
}
.cid-sexEX1bc6p .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sexEX1bc6p .mbr-figure {
  margin: 0 auto;
}
.cid-sexEX1bc6p figcaption {
  position: relative;
}
.cid-sexEX1bc6p figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sexEX1bc6p .image-block {
    width: 100% !important;
  }
}
.cid-sexJYPyFYQ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sexJYPyFYQ .content {
    text-align: center;
  }
  .cid-sexJYPyFYQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sexJYPyFYQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sexJYPyFYQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sexJYPyFYQ .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sexJYPyFYQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sexJYPyFYQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sexJYPyFYQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sexJYPyFYQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sexJYPyFYQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sexJYPyFYQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sexJYPyFYQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sexJYPyFYQ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sexJYPyFYQ H5 {
  color: #23b574;
  text-align: center;
}
.cid-sexJYPyFYQ P {
  color: #23b574;
  text-align: center;
}
.cid-sexJYPyFYQ .copyright > p {
  text-align: left;
}
.cid-tx4CHvgluF {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tx4CHvgluF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tx4CHvgluF .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tx4CHvgluF .mbr-text {
    text-align: center;
  }
}
.cid-tx4CHvgluF H1 {
  text-align: left;
  color: #23b574;
}
.cid-tx4CHvgluF .mbr-text,
.cid-tx4CHvgluF .mbr-section-btn {
  color: #0f7699;
}
.cid-sexFYS0phS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sexFYS0phS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sexFYS0phS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sexFYS0phS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sexFYS0phS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sexFYS0phS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sexFYS0phS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sexFYS0phS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sexFYS0phS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sexFYS0phS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sfi6uYbqfF {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sfi6uYbqfF .counter-container {
  color: #767676;
}
.cid-sfi6uYbqfF .counter-container ul {
  margin-bottom: 0;
}
.cid-sfi6uYbqfF .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sfi6uYbqfF .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #23b574;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-sXC83PBZSK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sXC83PBZSK .twitter-wrapper,
.cid-sXC83PBZSK iframe {
  min-height: 1000px;
  max-height: 1000px;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 455.7 455.7'%3E%3Crect width='455.7' height='455.7' fill='%2350ABF1'/%3E%3Cpath d='M60.4 337.8c30.3 19.2 66.3 30.4 104.9 30.4 108.3 0 196.2-87.8 196.2-196.2 0-2.7-0.1-5.4-0.2-8.1 3.9-3.1 28.2-22.5 34.1-35 0 0-19.7 8.2-38.9 10.1 0 0-0.1 0-0.1 0 0 0 0 0 0.1-0.1 1.8-1.2 26.6-18.1 30-38.2 0 0-13.9 7.4-33.4 13.9 -3.2 1.1-6.6 2.1-10.1 3.1 -12.6-13.4-30.4-21.8-50.2-21.8 -38 0-68.8 30.8-68.8 68.8 0 5.4 0.6 10.6 1.8 15.6 -5.3-0.2-86.2-4.8-141.3-71.4 0 0-32.9 44.9 19.6 91.1 0 0-16-0.6-29.7-8.9 0 0-5.1 54.4 54.4 68.3 0 0-11.7 4.4-30.4 1.3 0 0 10.4 44 63.3 48.1 0 0-41.8 37.7-101.1 28.9L60.4 337.8z' fill='%23FFF'/%3E%3C/svg%3E");
}
.cid-sXC83PBZSK a.twitter-timeline {
  display: none;
}
.cid-tx4CI2b7MK {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tx4CI2b7MK .content {
    text-align: center;
  }
  .cid-tx4CI2b7MK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tx4CI2b7MK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tx4CI2b7MK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tx4CI2b7MK .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tx4CI2b7MK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tx4CI2b7MK .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tx4CI2b7MK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tx4CI2b7MK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tx4CI2b7MK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tx4CI2b7MK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tx4CI2b7MK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tx4CI2b7MK .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tx4CI2b7MK H5 {
  color: #23b574;
  text-align: center;
}
.cid-tx4CI2b7MK P {
  color: #23b574;
  text-align: center;
}
.cid-tx4CI2b7MK .copyright > p {
  text-align: left;
}
.cid-tx4CyqsvqA {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tx4CyqsvqA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tx4CyqsvqA .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tx4CyqsvqA .mbr-text {
    text-align: center;
  }
}
.cid-tx4CyqsvqA H1 {
  text-align: left;
  color: #23b574;
}
.cid-tx4CyqsvqA .mbr-text,
.cid-tx4CyqsvqA .mbr-section-btn {
  color: #0f7699;
}
.cid-sexIoDPJJT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sexIoDPJJT .counter-container {
  color: #767676;
}
.cid-sexIoDPJJT .counter-container ul {
  margin-bottom: 0;
}
.cid-sexIoDPJJT .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sexIoDPJJT .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #23b574;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-sexIoUKU23 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sexIoUKU23 .google-map {
  height: 25rem;
  position: relative;
}
.cid-sexIoUKU23 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sexIoUKU23 .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-sexIoUKU23 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sexIoUKU23 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tx4CyUl2zp {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tx4CyUl2zp .content {
    text-align: center;
  }
  .cid-tx4CyUl2zp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tx4CyUl2zp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tx4CyUl2zp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tx4CyUl2zp .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tx4CyUl2zp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tx4CyUl2zp .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tx4CyUl2zp .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tx4CyUl2zp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tx4CyUl2zp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tx4CyUl2zp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tx4CyUl2zp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tx4CyUl2zp .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tx4CyUl2zp H5 {
  color: #23b574;
  text-align: center;
}
.cid-tx4CyUl2zp P {
  color: #23b574;
  text-align: center;
}
.cid-tx4CyUl2zp .copyright > p {
  text-align: left;
}
.cid-tx4Ckj8AkY {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tx4Ckj8AkY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tx4Ckj8AkY .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tx4Ckj8AkY .mbr-text {
    text-align: center;
  }
}
.cid-tx4Ckj8AkY H1 {
  text-align: left;
  color: #23b574;
}
.cid-tx4Ckj8AkY .mbr-text,
.cid-tx4Ckj8AkY .mbr-section-btn {
  color: #0f7699;
}
.cid-sexIYuz9zD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sexIYuz9zD .mbr-section-subtitle {
  color: #767676;
}
.cid-sexIYDqn8T {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sexIYDqn8T .line {
  background-color: #23b574;
  color: #23b574;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sexIYDqn8T .section-text {
  padding: 2rem 0;
}
.cid-sexIYDqn8T .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sexIYDqn8T .inner-container {
    width: 100% !important;
  }
}
.cid-sexIYDqn8T .section-text DIV {
  text-align: left;
}
.cid-tx4CizKznN {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tx4CizKznN .content {
    text-align: center;
  }
  .cid-tx4CizKznN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tx4CizKznN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tx4CizKznN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tx4CizKznN .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tx4CizKznN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tx4CizKznN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tx4CizKznN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tx4CizKznN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tx4CizKznN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tx4CizKznN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tx4CizKznN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tx4CizKznN .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tx4CizKznN H5 {
  color: #23b574;
  text-align: center;
}
.cid-tx4CizKznN P {
  color: #23b574;
  text-align: center;
}
.cid-tx4CizKznN .copyright > p {
  text-align: left;
}
.cid-tx4Cac9yVm {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tx4Cac9yVm .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tx4Cac9yVm .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tx4Cac9yVm .mbr-text {
    text-align: center;
  }
}
.cid-tx4Cac9yVm H1 {
  text-align: left;
  color: #23b574;
}
.cid-tx4Cac9yVm .mbr-text,
.cid-tx4Cac9yVm .mbr-section-btn {
  color: #0f7699;
}
.cid-sg8MyKbGwY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sg8MyKbGwY .title {
  margin-bottom: 2rem;
}
.cid-sg8MyKbGwY .mbr-section-subtitle {
  color: #767676;
}
.cid-sg8MyKbGwY a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sg8MyKbGwY a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sg8MyKbGwY textarea.form-control {
  min-height: 188px;
}
.cid-tx4CaHhkGC {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tx4CaHhkGC .content {
    text-align: center;
  }
  .cid-tx4CaHhkGC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tx4CaHhkGC .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tx4CaHhkGC .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tx4CaHhkGC .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tx4CaHhkGC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tx4CaHhkGC .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tx4CaHhkGC .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tx4CaHhkGC .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tx4CaHhkGC .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tx4CaHhkGC .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tx4CaHhkGC .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tx4CaHhkGC .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tx4CaHhkGC H5 {
  color: #23b574;
  text-align: center;
}
.cid-tx4CaHhkGC P {
  color: #23b574;
  text-align: center;
}
.cid-tx4CaHhkGC .copyright > p {
  text-align: left;
}
.cid-tx4BLzrfjF {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tx4BLzrfjF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tx4BLzrfjF .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tx4BLzrfjF .mbr-text {
    text-align: center;
  }
}
.cid-tx4BLzrfjF H1 {
  text-align: left;
  color: #23b574;
}
.cid-tx4BLzrfjF .mbr-text,
.cid-tx4BLzrfjF .mbr-section-btn {
  color: #0f7699;
}
.cid-sg8OxZI67A {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sg8OxZI67A .counter-container {
  color: #767676;
}
.cid-sg8OxZI67A .counter-container ul {
  margin-bottom: 0;
}
.cid-sg8OxZI67A .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sg8OxZI67A .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #23b574;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-sg8V0fyI9K {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-sg8V0fyI9K .image-block {
  margin: auto;
}
.cid-sg8V0fyI9K figcaption {
  position: relative;
}
.cid-sg8V0fyI9K figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sg8V0fyI9K .image-block {
    width: 100% !important;
  }
}
.cid-sgHBHAyQDg {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sgHBHAyQDg .counter-container {
  color: #767676;
}
.cid-sgHBHAyQDg .counter-container ul {
  margin-bottom: 0;
}
.cid-sgHBHAyQDg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sgHBHAyQDg .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #23b574;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-t9Y8gkcIu9 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-t9Y8gkcIu9 .image-block {
  margin: auto;
}
.cid-t9Y8gkcIu9 figcaption {
  position: relative;
}
.cid-t9Y8gkcIu9 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t9Y8gkcIu9 .image-block {
    width: 100% !important;
  }
}
.cid-t9Ya8utVFP {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-t9Ya8utVFP .image-block {
  margin: auto;
}
.cid-t9Ya8utVFP figcaption {
  position: relative;
}
.cid-t9Ya8utVFP figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t9Ya8utVFP .image-block {
    width: 100% !important;
  }
}
.cid-t9Ya9qVdBq {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-t9Ya9qVdBq .image-block {
  margin: auto;
}
.cid-t9Ya9qVdBq figcaption {
  position: relative;
}
.cid-t9Ya9qVdBq figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t9Ya9qVdBq .image-block {
    width: 100% !important;
  }
}
.cid-sgHBHW5qcV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sgHBHW5qcV .counter-container {
  color: #767676;
}
.cid-sgHBHW5qcV .counter-container ul {
  margin-bottom: 0;
}
.cid-sgHBHW5qcV .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sgHBHW5qcV .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #23b574;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-sgHD5BT7xf {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-sgHD5BT7xf .image-block {
  margin: auto;
}
.cid-sgHD5BT7xf figcaption {
  position: relative;
}
.cid-sgHD5BT7xf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sgHD5BT7xf .image-block {
    width: 100% !important;
  }
}
.cid-sgHBIlk9Wi {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sgHBIlk9Wi .counter-container {
  color: #767676;
}
.cid-sgHBIlk9Wi .counter-container ul {
  margin-bottom: 0;
}
.cid-sgHBIlk9Wi .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sgHBIlk9Wi .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #23b574;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-shOnL7SyJR {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-shOnL7SyJR .image-block {
  margin: auto;
}
.cid-shOnL7SyJR figcaption {
  position: relative;
}
.cid-shOnL7SyJR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-shOnL7SyJR .image-block {
    width: 100% !important;
  }
}
.cid-sgHDZXDHRh {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sgHDZXDHRh .counter-container {
  color: #767676;
}
.cid-sgHDZXDHRh .counter-container ul {
  margin-bottom: 0;
}
.cid-sgHDZXDHRh .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sgHDZXDHRh .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #23b574;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-shOnHRcJTd {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-shOnHRcJTd .image-block {
  margin: auto;
}
.cid-shOnHRcJTd figcaption {
  position: relative;
}
.cid-shOnHRcJTd figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-shOnHRcJTd .image-block {
    width: 100% !important;
  }
}
.cid-sgv3CneZaP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  background: linear-gradient(#ffffff, #ffffff);
}
.cid-sgv3CneZaP .carousel-control {
  background: #000;
}
.cid-sgv3CneZaP .mbr-section-subtitle {
  color: #767676;
}
.cid-sgv3CneZaP .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgv3CneZaP .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sgv3CneZaP .carousel-item .wrap-img {
  text-align: center;
}
.cid-sgv3CneZaP .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-sgv3CneZaP .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgv3CneZaP .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-sgv3CneZaP .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-sgv3CneZaP .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-sgv3CneZaP .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-sgv3CneZaP .cloneditem-1,
.cid-sgv3CneZaP .cloneditem-2,
.cid-sgv3CneZaP .cloneditem-3,
.cid-sgv3CneZaP .cloneditem-4,
.cid-sgv3CneZaP .cloneditem-5 {
  display: none;
}
.cid-sgv3CneZaP .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sgv3CneZaP .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-sgv3CneZaP .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-sgv3CneZaP .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-sgv3CneZaP .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-sgv3CneZaP .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sgv3CneZaP .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides2 .cloneditem-1,
  .cid-sgv3CneZaP .carousel-inner.slides2 .cloneditem-2,
  .cid-sgv3CneZaP .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-sgv3CneZaP .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-sgv3CneZaP .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-sgv3CneZaP .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-sgv3CneZaP .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sgv3CneZaP .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides3 .cloneditem-1,
  .cid-sgv3CneZaP .carousel-inner.slides3 .cloneditem-2,
  .cid-sgv3CneZaP .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-sgv3CneZaP .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-sgv3CneZaP .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-sgv3CneZaP .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-sgv3CneZaP .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sgv3CneZaP .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides4 .cloneditem-1,
  .cid-sgv3CneZaP .carousel-inner.slides4 .cloneditem-2,
  .cid-sgv3CneZaP .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-sgv3CneZaP .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-sgv3CneZaP .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-sgv3CneZaP .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-sgv3CneZaP .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sgv3CneZaP .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides5 .cloneditem-1,
  .cid-sgv3CneZaP .carousel-inner.slides5 .cloneditem-2,
  .cid-sgv3CneZaP .carousel-inner.slides5 .cloneditem-3,
  .cid-sgv3CneZaP .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-sgv3CneZaP .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-sgv3CneZaP .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-sgv3CneZaP .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-sgv3CneZaP .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sgv3CneZaP .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sgv3CneZaP .carousel-inner.slides6 .cloneditem-1,
  .cid-sgv3CneZaP .carousel-inner.slides6 .cloneditem-2,
  .cid-sgv3CneZaP .carousel-inner.slides6 .cloneditem-3,
  .cid-sgv3CneZaP .carousel-inner.slides6 .cloneditem-4,
  .cid-sgv3CneZaP .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-tx4BNDRv4P {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tx4BNDRv4P .content {
    text-align: center;
  }
  .cid-tx4BNDRv4P .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tx4BNDRv4P .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tx4BNDRv4P .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tx4BNDRv4P .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tx4BNDRv4P .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tx4BNDRv4P .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tx4BNDRv4P .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tx4BNDRv4P .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tx4BNDRv4P .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tx4BNDRv4P .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tx4BNDRv4P .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tx4BNDRv4P .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tx4BNDRv4P H5 {
  color: #23b574;
  text-align: center;
}
.cid-tx4BNDRv4P P {
  color: #23b574;
  text-align: center;
}
.cid-tx4BNDRv4P .copyright > p {
  text-align: left;
}
