body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .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.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 2.2rem;
  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: #36404c !important;
}
.bg-success {
  background-color: #00bea3 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #36404c !important;
}
.bg-danger {
  background-color: #cc2952 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #36404c !important;
  border-color: #36404c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #36404c !important;
  background-color: transparent !important;
  border-color: #36404c !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #161a1f !important;
  border-color: #161a1f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ed4266 !important;
  border-color: #ed4266 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ed4266 !important;
  background-color: transparent !important;
  border-color: #ed4266 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #cf143b !important;
  border-color: #cf143b !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: #82786e !important;
  background-color: transparent !important;
  border-color: #82786e !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: #00bea3 !important;
  border-color: #00bea3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #00bea3 !important;
  background-color: transparent !important;
  border-color: #00bea3 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #007261 !important;
  border-color: #007261 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #36404c !important;
  border-color: #36404c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #36404c !important;
  background-color: transparent !important;
  border-color: #36404c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #161a1f !important;
  border-color: #161a1f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #cc2952 !important;
  border-color: #cc2952 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #cc2952 !important;
  background-color: transparent !important;
  border-color: #cc2952 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8c1c38 !important;
  border-color: #8c1c38 !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: #ffffff !important;
  background-color: transparent !important;
  border-color: #ffffff !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: #333333 !important;
  background-color: transparent !important;
  border-color: #333333 !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: #0c0e10;
  color: #0c0e10;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #36404c;
  border-color: #36404c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #36404c !important;
  border-color: #36404c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #b81134;
  color: #b81134;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ed4266;
  border-color: #ed4266;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ed4266 !important;
  border-color: #ed4266 !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: #00584b;
  color: #00584b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #00bea3;
  border-color: #00bea3;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #00bea3 !important;
  border-color: #00bea3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #0c0e10;
  color: #0c0e10;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #36404c;
  border-color: #36404c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #36404c !important;
  border-color: #36404c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #771830;
  color: #771830;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #cc2952;
  border-color: #cc2952;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #cc2952 !important;
  border-color: #cc2952 !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: #36404c !important;
}
.text-secondary {
  color: #ed4266 !important;
}
.text-success {
  color: #00bea3 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #36404c !important;
}
.text-danger {
  color: #cc2952 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ed4266 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #b81134 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ed4266 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #ed4266 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #ed4266 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ed4266 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ed4266 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #ed4266 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #36404c;
}
.alert-danger {
  background-color: #cc2952;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #36404c;
  border-color: #36404c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #36404c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a7b3c0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #3fffe4;
}
.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: #a7b3c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f5ccd6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
  -webkit-transform: rotate(45deg);
}
.form-control {
  background-color: #ffffff;
  box-shadow: none;
  color: #767676;
  border: 3px solid #ebeced;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.43;
  min-height: 46px;
  padding: 0.5rem 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
.form-control:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
blockquote {
  border-color: #36404c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #36404c;
  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-number__spin {
  background-color: #ffffff;
  border: 3px solid #ebeced;
}
.jq-number__spin:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #36404c;
  border-bottom-color: #36404c;
}
.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: #36404c !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: #ed4266 !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: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2336404c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-uzktYnvJyh {
  background-image: url("../../../assets/images/cf104ef01df639a8ac142397c1ac62848c809ca9-960x432.jpg");
}
.cid-uzktYnvJyh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzktYnvJyh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzktYnvJyh .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uzktYnvJyh .content-wrapper .mbr-section-title span {
  color: #00ffdb;
}
.cid-uzktYnvJyh .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uzktYnvJyh .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uzktYnvJyh .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #ed4266, #292739);
}
@media (max-width: 992px) {
  .cid-uzktYnvJyh .border-wrap {
    margin-top: 32px;
  }
}
.cid-uzktYnvJyh .mbr-section-title {
  color: #ffffff;
}
.cid-uzktYnvJyh .mbr-text,
.cid-uzktYnvJyh .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uzktYnvJyh .mbr-section-title,
.cid-uzktYnvJyh .mbr-section-btn {
  text-align: center;
}
.cid-uzgI6GvQNZ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uzgI6GvQNZ H3 {
  color: #200960;
}
.cid-uzgI6GvQNZ H4 {
  color: #82786e;
}
.cid-uzgI6GvQNZ img {
  width: 185px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uzgImzcBC7 {
  padding-top: 121px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uzgImzcBC7 h3 {
  position: relative;
}
.cid-uzgImzcBC7 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 80px;
  background: currentColor;
}
.cid-uzgImzcBC7 H1 {
  color: #232323;
}
.cid-uzgImzcBC7 .mbr-text,
.cid-uzgImzcBC7 .mbr-section-btn {
  color: #82786e;
}
.cid-uzgImzcBC7 H3 {
  color: #635a51;
}
.cid-uzfSIWIqKV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uzfSIWIqKV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzfSIWIqKV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzfSIWIqKV .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uzfSIWIqKV .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uzfSIWIqKV .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uzfSIWIqKV .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uzfSIWIqKV .col-text {
    order: 2;
    margin-top: 20px;
  }
}
.cid-uzfSIWIqKV .text-wrapper {
  width: 100%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.cid-uzfSIWIqKV .mbr-section-title {
  color: #00bea3;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uzfSIWIqKV .mbr-section-title {
    margin-bottom: 0;
    text-align: center !important;
  }
}
.cid-uzfSIWIqKV .mbr-section-subtitle {
  color: #212428;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uzfSIWIqKV .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uzfSIWIqKV .mbr-text {
  color: #C4CFDE;
  margin-bottom: 20px;
  padding-right: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 575px;
}
.cid-uzfSIWIqKV .mbr-section-btn {
  margin-top: 10px;
}
.cid-uzfSIWIqKV .list-container {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .cid-uzfSIWIqKV .list-container {
    margin-bottom: 20px;
  }
}
.cid-uzfSIWIqKV .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uzfSIWIqKV .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uzfSIWIqKV .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #c4cfde;
}
.cid-uzfSIWIqKV .list-item-text {
  color: #C4CFDE;
  width: fit-content;
}
.cid-uzfSIWIqKV .col-img {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uzfSIWIqKV .col-img {
    order: 1;
  }
}
.cid-uzfSIWIqKV .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-uzfSIWIqKV .image-wrapper img {
  position: relative;
  z-index: 5;
  object-fit: cover;
  width: 100%;
}
.cid-uzfSIWIqKV .img-bg {
  content: "";
  position: absolute;
  z-index: 4;
  width: 100%;
  height: calc(100% - 130px);
  left: 0;
  bottom: 0;
  background: linear-gradient(145deg, #16827b, #23272b);
  border-radius: 6px;
}
.cid-uzfSIWIqKV .mbr-text,
.cid-uzfSIWIqKV .mbr-section-btn {
  text-align: center;
  color: #212428;
}
.cid-uzfy05HnSh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uzfy05HnSh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzfy05HnSh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzfy05HnSh .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uzfy05HnSh .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uzfy05HnSh .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uzfy05HnSh .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uzfy05HnSh .col-text {
    order: 2;
    margin-top: 20px;
  }
}
.cid-uzfy05HnSh .text-wrapper {
  width: 100%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.cid-uzfy05HnSh .mbr-section-title {
  color: #00bea3;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uzfy05HnSh .mbr-section-title {
    margin-bottom: 0;
    text-align: center !important;
  }
}
.cid-uzfy05HnSh .mbr-section-subtitle {
  color: #212428;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uzfy05HnSh .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uzfy05HnSh .mbr-text {
  color: #C4CFDE;
  margin-bottom: 20px;
  padding-right: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 575px;
}
.cid-uzfy05HnSh .mbr-section-btn {
  margin-top: 10px;
}
.cid-uzfy05HnSh .list-container {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .cid-uzfy05HnSh .list-container {
    margin-bottom: 20px;
  }
}
.cid-uzfy05HnSh .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uzfy05HnSh .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uzfy05HnSh .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #c4cfde;
}
.cid-uzfy05HnSh .list-item-text {
  color: #C4CFDE;
  width: fit-content;
}
.cid-uzfy05HnSh .col-img {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uzfy05HnSh .col-img {
    order: 1;
  }
}
.cid-uzfy05HnSh .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-uzfy05HnSh .image-wrapper img {
  position: relative;
  z-index: 5;
  object-fit: cover;
  width: 100%;
}
.cid-uzfy05HnSh .img-bg {
  content: "";
  position: absolute;
  z-index: 4;
  width: 100%;
  height: calc(100% - 130px);
  left: 0;
  bottom: 0;
  background: linear-gradient(145deg, #0f7699, #23272b);
  border-radius: 6px;
}
.cid-uzfy05HnSh .mbr-text,
.cid-uzfy05HnSh .mbr-section-btn {
  text-align: center;
  color: #212428;
}
.cid-uzfPiJYIIC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uzfPiJYIIC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzfPiJYIIC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzfPiJYIIC .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uzfPiJYIIC .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uzfPiJYIIC .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uzfPiJYIIC .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uzfPiJYIIC .col-text {
    order: 2;
    margin-top: 20px;
  }
}
.cid-uzfPiJYIIC .text-wrapper {
  width: 100%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.cid-uzfPiJYIIC .mbr-section-title {
  color: #00bea3;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uzfPiJYIIC .mbr-section-title {
    margin-bottom: 0;
    text-align: center !important;
  }
}
.cid-uzfPiJYIIC .mbr-section-subtitle {
  color: #212428;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uzfPiJYIIC .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uzfPiJYIIC .mbr-text {
  color: #C4CFDE;
  margin-bottom: 20px;
  padding-right: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 575px;
}
.cid-uzfPiJYIIC .mbr-section-btn {
  margin-top: 10px;
}
.cid-uzfPiJYIIC .list-container {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .cid-uzfPiJYIIC .list-container {
    margin-bottom: 20px;
  }
}
.cid-uzfPiJYIIC .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uzfPiJYIIC .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uzfPiJYIIC .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #c4cfde;
}
.cid-uzfPiJYIIC .list-item-text {
  color: #C4CFDE;
  width: fit-content;
}
.cid-uzfPiJYIIC .col-img {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uzfPiJYIIC .col-img {
    order: 1;
  }
}
.cid-uzfPiJYIIC .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-uzfPiJYIIC .image-wrapper img {
  position: relative;
  z-index: 5;
  object-fit: cover;
  width: 100%;
}
.cid-uzfPiJYIIC .img-bg {
  content: "";
  position: absolute;
  z-index: 4;
  width: 100%;
  height: calc(100% - 130px);
  left: 0;
  bottom: 0;
  background: linear-gradient(145deg, #16827b, #212428);
  border-radius: 6px;
}
.cid-uzfPiJYIIC .mbr-text,
.cid-uzfPiJYIIC .mbr-section-btn {
  text-align: center;
  color: #212428;
}
.cid-uzfTK1McvP {
  padding-top: 2rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uzfTK1McvP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzfTK1McvP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzfTK1McvP .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uzfTK1McvP .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uzfTK1McvP .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uzfTK1McvP .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uzfTK1McvP .col-text {
    order: 2;
    margin-top: 20px;
  }
}
.cid-uzfTK1McvP .text-wrapper {
  width: 100%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.cid-uzfTK1McvP .mbr-section-title {
  color: #00bea3;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uzfTK1McvP .mbr-section-title {
    margin-bottom: 0;
    text-align: center !important;
  }
}
.cid-uzfTK1McvP .mbr-section-subtitle {
  color: #212428;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uzfTK1McvP .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uzfTK1McvP .mbr-text {
  color: #C4CFDE;
  margin-bottom: 20px;
  padding-right: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 575px;
}
.cid-uzfTK1McvP .mbr-section-btn {
  margin-top: 10px;
}
.cid-uzfTK1McvP .list-container {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .cid-uzfTK1McvP .list-container {
    margin-bottom: 20px;
  }
}
.cid-uzfTK1McvP .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uzfTK1McvP .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uzfTK1McvP .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #c4cfde;
}
.cid-uzfTK1McvP .list-item-text {
  color: #C4CFDE;
  width: fit-content;
}
.cid-uzfTK1McvP .col-img {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uzfTK1McvP .col-img {
    order: 1;
  }
}
.cid-uzfTK1McvP .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-uzfTK1McvP .image-wrapper img {
  position: relative;
  z-index: 5;
  object-fit: cover;
  width: 100%;
}
.cid-uzfTK1McvP .img-bg {
  content: "";
  position: absolute;
  z-index: 4;
  width: 100%;
  height: calc(100% - 130px);
  left: 0;
  bottom: 0;
  background: linear-gradient(145deg, #0f7699, #23272b);
  border-radius: 6px;
}
.cid-uzfTK1McvP .mbr-text,
.cid-uzfTK1McvP .mbr-section-btn {
  text-align: center;
  color: #212428;
}
.cid-uzkCbNr2IV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f2;
}
.cid-uzkCbNr2IV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkCbNr2IV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkCbNr2IV .content-wrapper {
  position: relative;
  padding: 100px 100px 105px;
  border-radius: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uzkCbNr2IV .content-wrapper {
    padding: 46px 22px;
  }
}
.cid-uzkCbNr2IV .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-uzkCbNr2IV .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 10px;
}
.cid-uzkCbNr2IV .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 56px;
}
.cid-uzkCbNr2IV .content-wrapper .content-wrap .mbr-section-title span {
  color: #00bea3;
}
@media (max-width: 992px) {
  .cid-uzkCbNr2IV .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-uzkCbNr2IV .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uzkCbNr2IV .content-wrapper .image-wrapper {
  position: absolute;
  right: -50px;
  bottom: -150px;
  width: 400px;
  height: 400px;
}
@media (max-width: 992px) {
  .cid-uzkCbNr2IV .content-wrapper .image-wrapper {
    right: -20px;
    bottom: -75px;
    width: 200px;
    height: 200px;
  }
}
.cid-uzkCbNr2IV .content-wrapper .image-wrapper img {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uzkCbNr2IV .content-wrapper .image-wrapper img {
    width: 200px;
    height: 200px;
  }
}
.cid-uzkCbNr2IV .mbr-section-title {
  color: #212529;
}
.cid-uzkCbNr2IV .mbr-desc {
  color: #212529;
}
.cid-uzkCbNr2IV .mbr-section-title,
.cid-uzkCbNr2IV .mbr-section-btn {
  color: #23272b;
  text-align: center;
}
.cid-uzgJ0sTxqq {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uzgJ0sTxqq .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  transition: background 0.3s;
}
.cid-uzgJ0sTxqq H2 {
  color: #232323;
  text-align: center;
}
.cid-uzgJ0sTxqq H3 {
  color: #ed4266;
  text-align: center;
}
.cid-uzgJ0sTxqq .mbr-text,
.cid-uzgJ0sTxqq .mbr-section-btn {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-uzgJ0sTxqq .md-pb {
    padding-bottom: 2rem;
  }
}
.cid-ro4H3uukei {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ro4H3uukei .card-icon {
  font-size: 56px;
  color: #ed4266;
  transition: color 0.3s;
}
.cid-ro4H3uukei .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-ro4H3uukei .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
}
.cid-ro4H3uukei .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-ro4H3uukei .card {
  padding: 0!important;
}
.cid-ro4H3uukei .card-wrapper {
  padding: 4rem;
  transition: background 0.3s;
}
.cid-ro4H3uukei .card-wrapper:hover {
  background: #ed4266;
}
.cid-ro4H3uukei .card-wrapper:hover .card-icon {
  color: #1b4a61;
}
.cid-ro4H3uukei .card-wrapper:hover .line {
  background: #1b4a61;
}
.cid-ro4H3uukei .card1 {
  background: #1b4a61;
}
.cid-ro4H3uukei .card2 {
  background: #1d5069;
}
.cid-ro4H3uukei .card3 {
  background: #1f5671;
}
.cid-ro4H3uukei .card4 {
  background: #225c79;
}
.cid-ro4H3uukei .card5 {
  background: #246281;
}
.cid-ro4H3uukei .card6 {
  background: #266889;
}
.cid-ro4H3uukei .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 767px) {
  .cid-ro4H3uukei .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-uzgvdbLDNQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uzgvdbLDNQ .card-icon {
  font-size: 56px;
  color: #ed4266;
  transition: color 0.3s;
}
.cid-uzgvdbLDNQ .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uzgvdbLDNQ .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
}
.cid-uzgvdbLDNQ .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uzgvdbLDNQ .card {
  padding: 0!important;
}
.cid-uzgvdbLDNQ .card-wrapper {
  padding: 4rem;
  transition: background 0.3s;
}
.cid-uzgvdbLDNQ .card-wrapper:hover {
  background: #ed4266;
}
.cid-uzgvdbLDNQ .card-wrapper:hover .card-icon {
  color: #1b4a61;
}
.cid-uzgvdbLDNQ .card-wrapper:hover .line {
  background: #1b4a61;
}
.cid-uzgvdbLDNQ .card1 {
  background: #1b4a61;
}
.cid-uzgvdbLDNQ .card2 {
  background: #1d5069;
}
.cid-uzgvdbLDNQ .card3 {
  background: #1f5671;
}
.cid-uzgvdbLDNQ .card4 {
  background: #225c79;
}
.cid-uzgvdbLDNQ .card5 {
  background: #246281;
}
.cid-uzgvdbLDNQ .card6 {
  background: #266889;
}
.cid-uzgvdbLDNQ .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 767px) {
  .cid-uzgvdbLDNQ .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-uzgvfxSBM9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uzgvfxSBM9 .card-icon {
  font-size: 56px;
  color: #ed4266;
  transition: color 0.3s;
}
.cid-uzgvfxSBM9 .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uzgvfxSBM9 .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
}
.cid-uzgvfxSBM9 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uzgvfxSBM9 .card {
  padding: 0!important;
}
.cid-uzgvfxSBM9 .card-wrapper {
  padding: 4rem;
  transition: background 0.3s;
}
.cid-uzgvfxSBM9 .card-wrapper:hover {
  background: #ed4266;
}
.cid-uzgvfxSBM9 .card-wrapper:hover .card-icon {
  color: #1b4a61;
}
.cid-uzgvfxSBM9 .card-wrapper:hover .line {
  background: #1b4a61;
}
.cid-uzgvfxSBM9 .card1 {
  background: #1b4a61;
}
.cid-uzgvfxSBM9 .card2 {
  background: #1d5069;
}
.cid-uzgvfxSBM9 .card3 {
  background: #1f5671;
}
.cid-uzgvfxSBM9 .card4 {
  background: #225c79;
}
.cid-uzgvfxSBM9 .card5 {
  background: #246281;
}
.cid-uzgvfxSBM9 .card6 {
  background: #266889;
}
.cid-uzgvfxSBM9 .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 767px) {
  .cid-uzgvfxSBM9 .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-uzgvgcBth2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uzgvgcBth2 .card-icon {
  font-size: 56px;
  color: #ed4266;
  transition: color 0.3s;
}
.cid-uzgvgcBth2 .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uzgvgcBth2 .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
}
.cid-uzgvgcBth2 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uzgvgcBth2 .card {
  padding: 0!important;
}
.cid-uzgvgcBth2 .card-wrapper {
  padding: 4rem;
  transition: background 0.3s;
}
.cid-uzgvgcBth2 .card-wrapper:hover {
  background: #ed4266;
}
.cid-uzgvgcBth2 .card-wrapper:hover .card-icon {
  color: #1b4a61;
}
.cid-uzgvgcBth2 .card-wrapper:hover .line {
  background: #1b4a61;
}
.cid-uzgvgcBth2 .card1 {
  background: #1b4a61;
}
.cid-uzgvgcBth2 .card2 {
  background: #1d5069;
}
.cid-uzgvgcBth2 .card3 {
  background: #1f5671;
}
.cid-uzgvgcBth2 .card4 {
  background: #225c79;
}
.cid-uzgvgcBth2 .card5 {
  background: #246281;
}
.cid-uzgvgcBth2 .card6 {
  background: #266889;
}
.cid-uzgvgcBth2 .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 767px) {
  .cid-uzgvgcBth2 .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-uzkpHgEboU {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/0000016a-e1dc-d6d4-a1ea-f5dde4640000-2.webp");
}
.cid-uzkpHgEboU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkpHgEboU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkpHgEboU .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uzkpHgEboU .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uzkpHgEboU .content-wrapper .title-wrap .mbr-section-title span {
  color: #11ffdd;
}
.cid-uzkpHgEboU .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uzkpHgEboU .image-wrapper img {
    height: 350px;
  }
}
.cid-uzkpHgEboU .mbr-section-title {
  color: #404349;
}
.cid-uzkpHgEboU .mbr-desc {
  color: #b19a7c;
}
.cid-uzkpHgEboU .mbr-text {
  color: #404349;
}
.cid-uzkpHgEboU .mbr-section-title,
.cid-uzkpHgEboU .title-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-uzhskljL7i {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #16827b;
  background: linear-gradient(45deg, #16827b, #0f7699);
}
.cid-uzhskljL7i .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uzhskljL7i .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-uzhskljL7i H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-uzhskljL7i h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uzhskljL7i .title {
    margin-bottom: 2rem;
  }
  .cid-uzhskljL7i .align-left,
  .cid-uzhskljL7i .align-right {
    text-align: center;
  }
}
.cid-uzgNdhmg8a {
  display: flex;
  background-image: url("../../../assets/images/foto-grupal-web-ctc-1366x768.jpg");
}
.cid-uzgNdhmg8a .mbr-overlay {
  background-color: #232323;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .cid-uzgNdhmg8a {
    align-items: center;
  }
  .cid-uzgNdhmg8a .row {
    justify-content: center;
  }
}
.cid-uzgNdhmg8a p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uzgNdhmg8a .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uzgNdhmg8a {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uzgNdhmg8a .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uzgNdhmg8a .content-wrap {
    width: 100%;
  }
}
.cid-uzgNdhmg8a .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uzgNdhmg8a .mbr-text,
.cid-uzgNdhmg8a .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uzgNdhmg8a .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uzhs2A2tCo {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #16827b;
  background: linear-gradient(45deg, #16827b, #0f7699);
}
.cid-uzhs2A2tCo .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uzhs2A2tCo .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-uzhs2A2tCo H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-uzhs2A2tCo h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uzhs2A2tCo .title {
    margin-bottom: 2rem;
  }
  .cid-uzhs2A2tCo .align-left,
  .cid-uzhs2A2tCo .align-right {
    text-align: center;
  }
}
.cid-uzvziglAOP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #003543;
}
.cid-uzvziglAOP::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 50%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uzvziglAOP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzvziglAOP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uzvziglAOP .container {
    padding: 0 22px;
  }
}
.cid-uzvziglAOP .row {
  justify-content: center;
}
.cid-uzvziglAOP .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uzvziglAOP .content-wrapper {
    padding: 0;
  }
}
.cid-uzvziglAOP .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uzvziglAOP .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uzvziglAOP .number-wrap {
  color: #ffffff;
  text-align: center;
  position: relative;
}
.cid-uzvziglAOP .number {
  color: #11ffdd;
}
.cid-uzvziglAOP .period {
  display: block;
}
.cid-uzvziglAOP .dot {
  display: block;
  position: absolute;
  top: 35%;
  right: -20px;
  font-size: 32px;
}
@media (max-width: 768px) {
  .cid-uzvziglAOP .dot {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-uzvziglAOP .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .cid-uzvziglAOP .countdown-cont .countdown .row .col-3 {
    padding: 0 7px;
  }
}
.cid-uzvziglAOP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uzvziglAOP .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uzkt9lCxma {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uzkt9lCxma .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkt9lCxma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkt9lCxma .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uzkt9lCxma .content-wrapper .mbr-section-title span {
  color: #032b28;
}
.cid-uzkt9lCxma .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uzkt9lCxma .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uzkt9lCxma .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #11ffdd, #00bea3, #11ffdd);
}
@media (max-width: 992px) {
  .cid-uzkt9lCxma .border-wrap {
    margin-top: 32px;
  }
}
.cid-uzkt9lCxma .mbr-section-title {
  color: #ffffff;
}
.cid-uzkt9lCxma .mbr-text,
.cid-uzkt9lCxma .text-wrapper {
  color: #032b28;
  text-align: center;
}
.cid-uzkt9lCxma .mbr-section-title,
.cid-uzkt9lCxma .mbr-section-btn {
  text-align: center;
  color: #032b28;
}
.cid-uzgrmaeg8k {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzgrmaeg8k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzgrmaeg8k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uzgrmaeg8k .container {
    padding: 0 22px;
  }
}
.cid-uzgrmaeg8k .row {
  justify-content: center;
}
.cid-uzgrmaeg8k .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uzgrmaeg8k .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uzgrmaeg8k .panel-group .card {
  border-radius: 0 !important;
}
.cid-uzgrmaeg8k .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #00bea3;
  border-radius: 0;
  padding: 20px;
}
.cid-uzgrmaeg8k .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uzgrmaeg8k .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uzgrmaeg8k .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #00bea3;
  margin-left: 16px;
}
.cid-uzgrmaeg8k .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uzgrmaeg8k .panel-group .card .panel-collapse .panel-body {
  padding: 15px 25px;
}
.cid-uzgrmaeg8k .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uzgrmaeg8k .mbr-section-title {
  color: #212428;
  text-align: center;
}
.cid-uzgrmaeg8k .panel-title-edit {
  color: #16827b;
}
.cid-uzgrmaeg8k .panel-text {
  color: #212428;
}
.cid-uzgzVoKTaM {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uzgzVoKTaM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzgzVoKTaM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uzgzVoKTaM .container {
    padding: 0 22px;
  }
}
.cid-uzgzVoKTaM .row {
  justify-content: center;
}
.cid-uzgzVoKTaM .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uzgzVoKTaM .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uzgzVoKTaM .panel-group .card {
  border-radius: 0 !important;
}
.cid-uzgzVoKTaM .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #00bea3;
  border-radius: 0;
  padding: 20px;
}
.cid-uzgzVoKTaM .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uzgzVoKTaM .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uzgzVoKTaM .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #00bea3;
  margin-left: 16px;
}
.cid-uzgzVoKTaM .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uzgzVoKTaM .panel-group .card .panel-collapse .panel-body {
  padding: 15px 25px;
}
.cid-uzgzVoKTaM .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uzgzVoKTaM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uzgzVoKTaM .panel-title-edit {
  color: #16827b;
}
.cid-uzgzVoKTaM .panel-text {
  color: #212428;
}
.cid-uzk3FNgdSI {
  display: flex;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/pngtree-golf-course-with-grass-and-clouds-in-the-sky-image-15655479-960x538.jpg");
}
.cid-uzk3FNgdSI .mbr-overlay {
  background-color: #23272b;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .cid-uzk3FNgdSI {
    align-items: center;
  }
  .cid-uzk3FNgdSI .row {
    justify-content: center;
  }
}
.cid-uzk3FNgdSI p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uzk3FNgdSI .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uzk3FNgdSI {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uzk3FNgdSI .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uzk3FNgdSI .content-wrap {
    width: 100%;
  }
}
.cid-uzk3FNgdSI .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uzk3FNgdSI .mbr-text,
.cid-uzk3FNgdSI .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uzk3FNgdSI .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uzk8NllItj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #003543;
}
.cid-uzk8NllItj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzk8NllItj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzk8NllItj .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uzk8NllItj .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uzk8NllItj .container {
    padding: 0;
  }
}
.cid-uzk8NllItj .row {
  justify-content: center;
}
.cid-uzk8NllItj .title-wrapper {
  padding: 0 16px;
}
.cid-uzk8NllItj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uzk8NllItj .title-wrapper .mbr-section-subtitle {
  margin: 16px 0 0 0;
}
.cid-uzk8NllItj .title-wrapper .soc-wrapper {
  margin: 16px 0 0 0;
}
.cid-uzk8NllItj .title-wrapper .soc-wrapper .soc-wrap {
  display: inline-flex;
}
.cid-uzk8NllItj .title-wrapper .soc-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #36404c;
}
.cid-uzk8NllItj .title-wrapper .soc-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 40px;
  margin: 0 20px;
  transition: all 0.3s ease-in-out;
}
.cid-uzk8NllItj .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uzk8NllItj .mbr-section-title,
.cid-uzk8NllItj .mbr-iconfont {
  color: #ffffff;
}
.cid-uzk8NllItj .mbr-section-title,
.cid-uzk8NllItj .soc-wrapper {
  text-align: center;
}
.cid-uzh1t6y4VS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uzh1t6y4VS .media-container-row .mbr-text {
  color: #767676;
}
