.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #1f477d !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #022f23 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1f477d !important;
  border-color: #1f477d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0e2038 !important;
  border-color: #0e2038 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0e2038 !important;
  border-color: #0e2038 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #022f23 !important;
  border-color: #022f23 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #1f477d;
  color: #1f477d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0e2038 !important;
  background-color: transparent!important;
  border-color: #0e2038 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1f477d !important;
  border-color: #1f477d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #022f23;
  color: #022f23;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #022f23 !important;
  border-color: #022f23 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #1f477d !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #022f23 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0b192b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #1f477d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #022f23;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1f477d;
  border-color: #1f477d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #1f477d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4a84d2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #9bfbe1;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #1f477d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #1f477d;
}
/* Forms */
.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);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1f477d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1f477d;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #1f477d;
  border-bottom-color: #1f477d;
}
.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: #1f477d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%231f477d' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-seD2lrXDNc {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-7-1920x1280.jpg");
}
.cid-seKB9J0NNZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #111111;
}
.cid-seKB9J0NNZ .mbr-section-subtitle {
  color: #999999;
  font-weight: 300;
}
.cid-seKB9J0NNZ .countdown {
  font-weight: 600;
}
.cid-seKB9J0NNZ .number-wrap {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 0;
  padding: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-seKB9J0NNZ .number {
  letter-spacing: -2px;
  background: linear-gradient(to left, #ff6666, #1f477d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-seKB9J0NNZ .period {
  display: block;
  padding-top: 2px;
}
.cid-seKB9J0NNZ .dot {
  display: none;
}
.cid-seKB9J0NNZ .countdown-cont {
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-seKB9J0NNZ .dot {
    display: none;
  }
}
@media (max-width: 543px) {
  .cid-seKB9J0NNZ .number-wrap {
    margin-bottom: 15px;
  }
}
@media (max-width: 550px) {
  .cid-seKB9J0NNZ .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
    max-width: 25%;
    flex: 0 0 25%;
  }
  .cid-seKB9J0NNZ .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-seKB9J0NNZ .number,
  .cid-seKB9J0NNZ .dot {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-seKB9J0NNZ .period {
    font-size: 0.8rem;
  }
}
.cid-seKB9J0NNZ H2 {
  color: #008dd2;
}
.cid-seKB9J0NNZ .mbr-subtitle {
  color: #999999;
}
.cid-seD35uaFv6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-seD35uaFv6 h4 {
  display: flex;
  letter-spacing: 0.03em;
  color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
}
.cid-seD35uaFv6 .panel-text {
  letter-spacing: 0.03em;
  color: #232323;
}
.cid-seD35uaFv6 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #fafafa;
}
.cid-seD35uaFv6 .mbr-section-subtitle {
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #fafafa;
}
.cid-seD35uaFv6 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-seD35uaFv6 .panel-group {
  width: 100%;
}
.cid-seD35uaFv6 .card {
  border-bottom: 1px solid #ffffff !important;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-seD35uaFv6 .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
}
.cid-seD35uaFv6 .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #b2b4d2;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-seD35uaFv6 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-seD35uaFv6 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-seD35uaFv6 .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-seD35uaFv6 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-seD35uaFv6 .card .panel-body {
  background: #ffffff;
}
.cid-seD35uaFv6 .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-seD35uaFv6 .sign {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-seD35uaFv6 .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-seD35uaFv6 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-seD35uaFv6 .header-text,
.cid-seD35uaFv6 .sign {
  color: #000000;
}
.cid-seD2e06X5Y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-seD2e06X5Y .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-seD2e06X5Y .item:last-child .icon-box:before {
  display: none;
}
.cid-seD2e06X5Y .item.last .icon-box:before {
  display: none;
}
.cid-seD2e06X5Y .icon-box {
  background: #28492e;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-seD2e06X5Y .icon-box {
    margin-right: 1rem;
  }
}
.cid-seD2e06X5Y .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 88px;
  left: 50%;
  top: 120%;
  color: #28492e;
  transform: translate(-50%, 0);
}
.cid-seD2e06X5Y span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-seD2e06X5Y .card {
    margin-bottom: 2rem;
  }
  .cid-seD2e06X5Y .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-seD2e06X5Y .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-seD2e06X5Y .icon-box::before {
    top: 114%;
  }
}
.cid-seD2e06X5Y .icon-title {
  color: #4479d9;
}
.cid-seD2e06X5Y .mbr-text,
.cid-seD2e06X5Y .mbr-section-btn {
  text-align: left;
}
.cid-sfcViSdc8K {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000601;
}
.cid-sfcViSdc8K .mbr-text,
.cid-sfcViSdc8K .mbr-section-subtitle {
  color: #767676;
}
.cid-sfcViSdc8K .card-title {
  color: #66458e;
}
.cid-sfcViSdc8K .card .card-img span {
  color: #008dd2;
  font-size: 60px;
  background: linear-gradient(45deg, #008dd2, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sfcViSdc8K .mbr-section-subtitle,
  .cid-sfcViSdc8K .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfcViSdc8K .card .card-img span {
    background: none;
  }
}
.cid-sfcViSdc8K .card-title,
.cid-sfcViSdc8K .card-img {
  color: #008dd2;
}
.cid-sfcViSdc8K .mbr-section-title {
  color: #fafafa;
}
.cid-seVxbXQ232 {
  background-image: url("../../../assets/images/mbr-1920x1345.png");
}
.cid-seVxbXQ232 H3 {
  color: #1f477d;
}
.cid-seVxbXQ232 H1 {
  color: #1f477d;
}
.cid-seVxbXQ232 .mbr-text,
.cid-seVxbXQ232 .mbr-section-btn {
  color: #022f23;
}
.cid-seyqSO8xdD {
  padding-top: 75px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/20170527-114915-500x375.jpg");
}
.cid-seyqSO8xdD .mbr-overlay {
  background: #022f23;
}
.cid-seyqSO8xdD .mbr-section-title {
  letter-spacing: -1px;
}
.cid-tk9uL6bzbL {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tk9uL6bzbL .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sexji4mNfn {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/20180908-165657-1600x900.jpg");
}
.cid-sh6aSxqskQ {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #bbbbbb;
}
.cid-sh6aSxqskQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-sh6aSxqskQ input::-webkit-clear-button {
  display: none;
}
.cid-sh6aSxqskQ input::-webkit-inner-spin-button {
  display: none;
}
.cid-sh6aSxqskQ input::-webkit-outer-spin-button {
  display: none;
}
.cid-sh6aSxqskQ input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sh6aSxqskQ H4 {
  color: #bbbbbb;
}
.cid-sh6aSxqskQ P {
  color: #000601;
}
.cid-sh6aSxqskQ LABEL {
  color: #000601;
}
.cid-sfmitFvpkl {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-sfmitFvpkl .card-wrapper {
  background: #1f477d;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sfmitFvpkl .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sfmitFvpkl .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sfmitFvpkl .card-wrapper {
    padding: 4rem;
  }
}
.cid-sfmitFvpkl .card-title {
  color: #ffffff;
}
.cid-seO5UvWje6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1f477d;
}
.cid-seO5UvWje6 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-seO5UvWje6 .mbr-text {
  color: #ffffff;
}
.cid-sfPbDb5OlE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-11-1920x1280.jpg");
}
.cid-sfPbDb5OlE .mbr-section-title {
  color: #ffffff;
}
.cid-sfPbDb5OlE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfPbDb5OlE .card-title,
.cid-sfPbDb5OlE .card-box {
  color: #ffffff;
}
.cid-sfPhuDFPL0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfPhuDFPL0 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfPhuDFPL0 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfcvD7oe2S {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/sultan5-hole-900x600.jpg");
}
.cid-sfcvD7oe2S H1 {
  color: #000601;
  text-align: center;
}
.cid-sfcvD7oe2S .mbr-text,
.cid-sfcvD7oe2S .mbr-section-btn {
  color: #000601;
}
.cid-sfcKtu3uZf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1345.png");
}
.cid-sfcKtu3uZf .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfcKtu3uZf .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfcU3iAnGY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000601;
}
.cid-sfcU3iAnGY .mbr-text,
.cid-sfcU3iAnGY .mbr-section-subtitle {
  color: #767676;
}
.cid-sfcU3iAnGY .card-title {
  color: #66458e;
}
.cid-sfcU3iAnGY .card .card-img span {
  color: #008dd2;
  font-size: 60px;
  background: linear-gradient(45deg, #008dd2, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sfcU3iAnGY .mbr-section-subtitle,
  .cid-sfcU3iAnGY .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfcU3iAnGY .card .card-img span {
    background: none;
  }
}
.cid-sfcU3iAnGY .card-title,
.cid-sfcU3iAnGY .card-img {
  color: #008dd2;
}
.cid-sfcU3iAnGY .mbr-section-title {
  color: #fafafa;
}
.cid-sfdqBOGSCJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sfdqBOGSCJ img {
  width: 120px;
  margin: auto;
}
.cid-sfdqBOGSCJ .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sfdqBOGSCJ .card {
    max-width: 12.5%;
  }
}
.cid-sfdqDvkM35 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sfdqDvkM35 img {
  width: 120px;
  margin: auto;
}
.cid-sfdqDvkM35 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sfdqDvkM35 .card {
    max-width: 12.5%;
  }
}
.cid-sfdsjw9vwt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sfdsjw9vwt img {
  width: 120px;
  margin: auto;
}
.cid-sfdsjw9vwt .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sfdsjw9vwt .card {
    max-width: 12.5%;
  }
}
.cid-sfcvHaCSqY {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/sultan8-green-900x600.jpg");
}
.cid-sfcvHaCSqY H1 {
  color: #28492e;
  text-align: center;
}
.cid-sfcvHaCSqY .mbr-text,
.cid-sfcvHaCSqY .mbr-section-btn {
  color: #000601;
}
.cid-sfcNVAv0od {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfcNVAv0od .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfcNVAv0od .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfcUir5Kuq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000601;
}
.cid-sfcUir5Kuq .mbr-text,
.cid-sfcUir5Kuq .mbr-section-subtitle {
  color: #767676;
}
.cid-sfcUir5Kuq .card-title {
  color: #66458e;
}
.cid-sfcUir5Kuq .card .card-img span {
  color: #008dd2;
  font-size: 60px;
  background: linear-gradient(45deg, #008dd2, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sfcUir5Kuq .mbr-section-subtitle,
  .cid-sfcUir5Kuq .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfcUir5Kuq .card .card-img span {
    background: none;
  }
}
.cid-sfcUir5Kuq .card-title,
.cid-sfcUir5Kuq .card-img {
  color: #008dd2;
}
.cid-sfcUir5Kuq .mbr-section-title {
  color: #fafafa;
}
.cid-sfcvMYIRmm {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sfcvMYIRmm H1 {
  color: #022f23;
  text-align: center;
}
.cid-sfcvMYIRmm .mbr-text,
.cid-sfcvMYIRmm .mbr-section-btn {
  color: #000601;
}
.cid-sfcOISmJOk {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfcOISmJOk .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfcOISmJOk .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfcOKFVUn2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000601;
}
.cid-sfcOKFVUn2 .mbr-text,
.cid-sfcOKFVUn2 .mbr-section-subtitle {
  color: #767676;
}
.cid-sfcOKFVUn2 .card-title {
  color: #66458e;
}
.cid-sfcOKFVUn2 .card .card-img span {
  color: #008dd2;
  font-size: 60px;
  background: linear-gradient(45deg, #008dd2, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sfcOKFVUn2 .mbr-section-subtitle,
  .cid-sfcOKFVUn2 .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfcOKFVUn2 .card .card-img span {
    background: none;
  }
}
.cid-sfcOKFVUn2 .card-title,
.cid-sfcOKFVUn2 .card-img {
  color: #008dd2;
}
.cid-sfcOKFVUn2 .mbr-section-title {
  color: #fafafa;
}
.cid-sfcvPPDCLc {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/collagen-1024x576.jpg");
}
.cid-sfcvPPDCLc H1 {
  color: #28492e;
  text-align: center;
}
.cid-sfcvPPDCLc .mbr-text,
.cid-sfcvPPDCLc .mbr-section-btn {
  color: #000601;
}
.cid-sfcvPQpvhR {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #1f477d;
}
.cid-sfcvPQpvhR .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sfcvPQpvhR .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sfcvPRdVAO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #bbbbbb;
}
.cid-sfcvPRdVAO .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sfcvPRdVAO .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-sfcvPS16HF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1f477d;
}
.cid-sfcvPS16HF .mbr-text {
  line-height: 1.5;
  color: #fafafa;
}
.cid-sfcvPS16HF .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfLqqTx2om {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/sultan5-hole-900x600.jpg");
}
.cid-sfLqqTx2om .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sfLqqTx2om .plan-body {
  padding-bottom: 2rem;
}
.cid-sfLqqTx2om .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sfLqqTx2om .price {
  color: #008dd2;
}
.cid-sfLqqTx2om .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sfLqqTx2om .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sfLqqTx2om .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-sfLqqTx2om .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sfLqqTx2om .plan {
    margin-bottom: 2rem;
  }
}
.cid-sfLqqTx2om UL {
  color: #28492e;
}
.cid-sfRCvU3kjX {
  padding-top: 120px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/20160610-195418-1320x742.jpg");
}
.cid-sfRCvU3kjX .mbr-text,
.cid-sfRCvU3kjX .mbr-section-btn {
  text-align: left;
}
.cid-sfRCvUvdlZ {
  padding-top: 225px;
  background-image: url("../../../assets/images/20180512-164637-1134x850.jpg");
}
.cid-sfRCvUJvGy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sfRCvUJvGy .card-img span {
  color: #ffffff;
  font-size: 4.7rem;
}
.cid-sfRCvUJvGy .mbr-text {
  color: #cccccc;
}
.cid-sfRCvUJvGy p {
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .cid-sfRCvUJvGy .card {
    margin-bottom: 2rem;
  }
}
.cid-sfRCvUJvGy .mbr-section-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-sfRCvUJvGy .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sgMsxkNfyj {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sgMsxkNfyj .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sgMsxkNfyj .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfRCvVrBWv {
  padding-top: 30px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/img-20191201-wa0037-1512x850.jpg");
}
.cid-sfRCvVrBWv .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sfRCvVrBWv .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sfRCvVrBWv .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sfRCvVrBWv .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sfRCvVrBWv .text-element {
  padding: 1rem;
}
.cid-sfRCvVrBWv .main,
.cid-sfRCvVrBWv .main-reverse {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sfRCvVrBWv .main:first-child {
    padding-top: 1rem;
  }
  .cid-sfRCvVrBWv .image-element,
  .cid-sfRCvVrBWv .text-element {
    margin-bottom: 1rem;
  }
  .cid-sfRCvVrBWv .main-reverse {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-sfRCvVrBWv .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-sfRCvVrBWv .image-element,
  .cid-sfRCvVrBWv .text-element {
    margin-bottom: 0;
  }
  .cid-sfRCvVrBWv .main:first-child {
    padding-top: 0;
  }
}
.cid-sfRCvVrBWv H3 {
  color: #fafafa;
}
.cid-sfRCvUYpb8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfRCvUYpb8 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfRCvUYpb8 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfVwxobKrX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-sfVwxobKrX .title__block {
  margin-bottom: 89px;
}
.cid-sfVwxobKrX .mbr-section-title {
  margin-bottom: 20px;
}
.cid-sfVwxobKrX .timelines-container .separline:last-child:before {
  content: none;
}
.cid-sfVwxobKrX .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-sfVwxobKrX .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #000601;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-sfVwxobKrX .timeline-text-content p {
  margin-bottom: 0;
}
.cid-sfVwxobKrX .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #000601;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-sfVwxobKrX .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-sfVwxobKrX .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-sfVwxobKrX .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-sfVwxobKrX .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-sfVwxobKrX .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #008dd2;
}
.cid-sfVwxobKrX .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-sfVwxobKrX .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #008dd2;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-sfVwxobKrX .title__block {
    margin-bottom: 40px;
  }
  .cid-sfVwxobKrX .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-sfVwxobKrX .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-sfVwxobKrX .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-sfVwxobKrX .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-sfVwxobKrX .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-sfVwxobKrX .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-sfVwxobKrX .iconBackground {
    left: 0 !important;
  }
  .cid-sfVwxobKrX .separline:before {
    left: 0!important;
  }
}
.cid-sfVwxobKrX .mbr-section-title {
  color: #fafafa;
}
.cid-sfVwxobKrX .mbr-section-subtitle {
  color: #fafafa;
}
.cid-sfRZ8xlWc5 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sfRZ8xlWc5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sfRCvX1K6j {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfRCvX1K6j .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfRCvX1K6j .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfRCvXj3m0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfRCvXj3m0 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfRCvXj3m0 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfRCvXyeM6 {
  background-color: #ffffff;
}
.cid-sfRCvXyeM6 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sfRCvXyeM6 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sfRCvXyeM6 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sfRCvXyeM6 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0;
}
.cid-sfRCvXyeM6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-sfRCvXyeM6 .image-element {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-sfRCvXyeM6 .image-element {
    padding-right: 0;
  }
}
.cid-sfRCvXyeM6 .text-element {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sfRCvXyeM6 .mbr-section-subtitle,
.cid-sfRCvXyeM6 .mbr-text {
  color: #878787;
}
.cid-sfRCvXyeM6 .mbr-text {
  line-height: 27px;
  padding: 2.5rem;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sfRCvXyeM6 .image-element {
    padding-bottom: 1rem;
  }
  .cid-sfRCvXyeM6 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
  }
}
.cid-sg38HXlYwG {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dsc-9602-1-800x536.jpg");
}
.cid-sE5rXkUXOw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sDYoozegoH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sDYoozegoH .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sfSCwQqwAi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sfSCwQqwAi .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sfSCwQqwAi .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sfSCwQqwAi .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0;
}
.cid-sfSCwQqwAi .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 991px) {
  .cid-sfSCwQqwAi .image-element {
    padding-right: 0;
  }
}
.cid-sfSCwQqwAi .text-element {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sfSCwQqwAi .mbr-section-subtitle,
.cid-sfSCwQqwAi .mbr-text {
  color: #878787;
}
.cid-sfSCwQqwAi .mbr-text {
  line-height: 27px;
  padding: 2.5rem;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sfSCwQqwAi .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sfSCwQqwAi .text-element {
    padding-top: 0;
  }
}
.cid-sg38IAIq2a {
  padding-top: 240px;
  background-image: url("../../../assets/images/20180908-165657-1600x900.jpg");
}
.cid-sg38JSGuFF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sg38JSGuFF .card-img span {
  color: #ffffff;
  font-size: 4.7rem;
}
.cid-sg38JSGuFF .mbr-text {
  color: #cccccc;
}
.cid-sg38JSGuFF p {
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .cid-sg38JSGuFF .card {
    margin-bottom: 2rem;
  }
}
.cid-sg38JSGuFF .mbr-section-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-sg38JSGuFF .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-seH4JeFV7H {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fotolia-116271086-s-629x763.jpg");
}
.cid-seH4JeFV7H .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-seH4JeFV7H .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #bed3f9;
}
@media (max-width: 991px) {
  .cid-seH4JeFV7H .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-seH4JeFV7H .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-seH4JeFV7H .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #1f477d;
}
.cid-sfRm0Yr8yj {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #8d97ad;
}
.cid-sfRm0Yr8yj .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
#custom-html-jy {
  /* Type valid CSS here */
}
#custom-html-jy div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-jy p {
  font-size: 60px;
  color: #777;
}
.cid-sfFYt7w6LQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfFYt7w6LQ .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
  border-radius: 6px;
}
.cid-sfFYt7w6LQ .card-wrapper:hover .ico-wrap {
  opacity: 1;
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
}
.cid-sfFYt7w6LQ p {
  line-height: 1.6;
}
.cid-sfFYt7w6LQ .btn {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-sfFYt7w6LQ .ico {
  height: 40px;
  width: 40px;
  background: #333333;
  border-radius: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  margin: 0 3px;
  opacity: 0.9;
}
.cid-sfFYt7w6LQ .ico-wrap {
  position: absolute;
  left: 50%;
  display: flex;
  top: 50%;
  margin: auto;
  z-index: 100;
  transition: all 0.3s;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
  transform: scale(0.9) translate(-50%, -50%);
}
.cid-sfFYt7w6LQ .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}
.cid-sfFYt7w6LQ .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 100%;
}
.cid-sfFYt7w6LQ img {
  transition: all 0.3s;
}
.cid-sfFYt7w6LQ .card-box {
  padding: 1rem;
}
.cid-sfFYt7w6LQ .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sfFYt7w6LQ .card-box > p,
.cid-sfFYt7w6LQ .mbr-section-btn {
  color: #9e9e9e;
  text-align: center;
}
.cid-sfFYt7w6LQ .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
@media (max-width: 576px) {
  .cid-sfFYt7w6LQ .ico-wrap {
    opacity: 1;
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
  }
}
.cid-swTe9HAEbB {
  background-image: url("../../../assets/images/dsc-9602-1-800x536.jpg");
}
.cid-sDBEYEadgm {
  padding-top: 120px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/pmilc-main-terrace-1023-hor-wide-1440x810.jpg");
}
.cid-sDBEYExA4i {
  padding-top: 225px;
  background-image: url("../../../assets/images/pmilc-outdoor-pool-8034-hor-clsc-1180x786.jpg");
}
.cid-sDBEYEIqdm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sDBEYEIqdm .card-img span {
  color: #ffffff;
  font-size: 4.7rem;
}
.cid-sDBEYEIqdm .mbr-text {
  color: #cccccc;
}
.cid-sDBEYEIqdm p {
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .cid-sDBEYEIqdm .card {
    margin-bottom: 2rem;
  }
}
.cid-sDBEYEIqdm .mbr-section-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-sDBEYEIqdm .mbr-section-title {
  text-align: center;
  color: #e43f3f;
}
.cid-sE5B0qRNQn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sE5B0qRNQn .mbr-section-subtitle {
  text-align: center;
}
.cid-sDBEYEV7PR {
  background-image: url("../../../assets/images/pmilc-facade-1011-hor-wide-1440x810.jpg");
}
.cid-sDBEYEV7PR .mbr-section-title,
.cid-sDBEYEV7PR .ornament {
  color: #ffffff;
}
.cid-sDBEYEV7PR .mbr-text,
.cid-sDBEYEV7PR .mbr-section-btn {
  color: #fafafa;
}
.cid-sDBEYEV7PR H3 {
  color: #fafafa;
}
.cid-sDBEYFezgw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/pmilc-outdoor-pool-8034-hor-clsc-1180x786.jpg");
}
.cid-sDBEYFezgw .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sDBEYFezgw .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sDBEYFezgw .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sDBEYFezgw .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sDBEYFezgw .text-element {
  padding: 1rem;
}
.cid-sDBEYFezgw .main,
.cid-sDBEYFezgw .main-reverse {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sDBEYFezgw .main:first-child {
    padding-top: 1rem;
  }
  .cid-sDBEYFezgw .image-element,
  .cid-sDBEYFezgw .text-element {
    margin-bottom: 1rem;
  }
  .cid-sDBEYFezgw .main-reverse {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-sDBEYFezgw .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-sDBEYFezgw .image-element,
  .cid-sDBEYFezgw .text-element {
    margin-bottom: 0;
  }
  .cid-sDBEYFezgw .main:first-child {
    padding-top: 0;
  }
}
.cid-sDYpBlcVCr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #bbbbbb;
}
.cid-sDYpBlcVCr .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sDBEYFzaVg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/img-20191201-wa0023-1512x850.jpg");
}
.cid-sDBEYFzaVg .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sDBEYFzaVg .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sDBEYFzaVg .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sDBEYFzaVg .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sDBEYFzaVg .text-element {
  padding: 1rem;
}
.cid-sDBEYFzaVg .main,
.cid-sDBEYFzaVg .main-reverse {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sDBEYFzaVg .main:first-child {
    padding-top: 1rem;
  }
  .cid-sDBEYFzaVg .image-element,
  .cid-sDBEYFzaVg .text-element {
    margin-bottom: 1rem;
  }
  .cid-sDBEYFzaVg .main-reverse {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-sDBEYFzaVg .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-sDBEYFzaVg .image-element,
  .cid-sDBEYFzaVg .text-element {
    margin-bottom: 0;
  }
  .cid-sDBEYFzaVg .main:first-child {
    padding-top: 0;
  }
}
.cid-sGvQaVlNx9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGvQaVlNx9 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sGvQaVlNx9 .card {
    margin-bottom: 2rem!important;
  }
  .cid-sGvQaVlNx9 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sGvQaVlNx9 .link-wrap {
    align-items: center;
  }
}
.cid-sGvQaVlNx9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sGvPGJFqS1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGvPGJFqS1 img {
  width: 120px;
  margin: auto;
}
.cid-sGvPGJFqS1 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sGvPGJFqS1 .card {
    max-width: 12.5%;
  }
}
.cid-sGvPGJMGEV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGvPGJMGEV img {
  width: 120px;
  margin: auto;
}
.cid-sGvPGJMGEV .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sGvPGJMGEV .card {
    max-width: 12.5%;
  }
}
.cid-sGvPGJTkld {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGvPGJTkld img {
  width: 120px;
  margin: auto;
}
.cid-sGvPGJTkld .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sGvPGJTkld .card {
    max-width: 12.5%;
  }
}
.cid-sKds1Av87N {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sKds1Av87N .card-img span {
  color: #ffffff;
  font-size: 4.7rem;
}
.cid-sKds1Av87N .mbr-text {
  color: #cccccc;
}
.cid-sKds1Av87N p {
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .cid-sKds1Av87N .card {
    margin-bottom: 2rem;
  }
}
.cid-sKds1Av87N .mbr-section-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-sKds1Av87N .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sKdsXxkgHx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #008dd2;
}
@media (max-width: 991px) {
  .cid-sKdsXxkgHx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sKdsXxkgHx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sKdsXxkgHx .text-wrapper {
    padding: 2rem;
  }
}
.cid-sKdBYSgr38 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sKdBYSgr38 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sfcnH78TuS {
  padding-top: 495px;
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-sfcnH7udCD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sfcnH7udCD .card-img span {
  color: #ffffff;
  font-size: 4.7rem;
}
.cid-sfcnH7udCD .mbr-text {
  color: #cccccc;
}
.cid-sfcnH7udCD p {
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .cid-sfcnH7udCD .card {
    margin-bottom: 2rem;
  }
}
.cid-sfcnH7udCD .mbr-section-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-sfcnH7udCD .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tk9cesBtYA {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tk9cesBtYA .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sfcDHmPiEI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfcDHmPiEI .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfcDHmPiEI .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfcnH8mnAe {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfcnH8mnAe .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfcnH8mnAe .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfLgSKk13C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fotolia-116271086-s-629x763.jpg");
}
.cid-sfLgSKk13C .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sfLgSKk13C .plan-body {
  padding-bottom: 2rem;
}
.cid-sfLgSKk13C .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sfLgSKk13C .price {
  color: #008dd2;
}
.cid-sfLgSKk13C .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sfLgSKk13C .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sfLgSKk13C .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-sfLgSKk13C .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sfLgSKk13C .plan {
    margin-bottom: 2rem;
  }
}
.cid-sfLgSKk13C UL {
  color: #28492e;
}
.cid-sfcUYY6w3U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000601;
}
.cid-sfcUYY6w3U .mbr-text,
.cid-sfcUYY6w3U .mbr-section-subtitle {
  color: #767676;
}
.cid-sfcUYY6w3U .card-title {
  color: #66458e;
}
.cid-sfcUYY6w3U .card .card-img span {
  color: #008dd2;
  font-size: 60px;
  background: linear-gradient(45deg, #008dd2, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sfcUYY6w3U .mbr-section-subtitle,
  .cid-sfcUYY6w3U .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfcUYY6w3U .card .card-img span {
    background: none;
  }
}
.cid-sfcUYY6w3U .card-title,
.cid-sfcUYY6w3U .card-img {
  color: #008dd2;
}
.cid-sfcUYY6w3U .mbr-section-title {
  color: #fafafa;
}
.cid-sfclvn0k45 {
  padding-top: 435px;
  background-image: url("../../../assets/images/20180908-165657-1600x900.jpg");
}
.cid-sfclvngoha {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f477d;
}
.cid-sfclvngoha .card-img span {
  color: #ffffff;
  font-size: 4.7rem;
}
.cid-sfclvngoha .mbr-text {
  color: #cccccc;
}
.cid-sfclvngoha p {
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .cid-sfclvngoha .card {
    margin-bottom: 2rem;
  }
}
.cid-sfclvngoha .mbr-section-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-sfclvngoha .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tk9bFYhXm2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tk9bFYhXm2 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sfclvnzyg4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfclvnzyg4 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfclvnzyg4 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfclvnRDdK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfclvnRDdK .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfclvnRDdK .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfLjRDjGTX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #1f477d;
}
.cid-sfLjRDjGTX .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sfLjRDjGTX .plan-body {
  padding-bottom: 2rem;
}
.cid-sfLjRDjGTX .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sfLjRDjGTX .price {
  color: #008dd2;
}
.cid-sfLjRDjGTX .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sfLjRDjGTX .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sfLjRDjGTX .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-sfLjRDjGTX .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sfLjRDjGTX .plan {
    margin-bottom: 2rem;
  }
}
.cid-sfLjRDjGTX UL {
  color: #28492e;
}
.cid-sfcnRQB4v3 {
  padding-top: 330px;
  background-image: url("../../../assets/images/mbr-6-1920x1280.jpg");
}
.cid-sfcnRQZ6S8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f477d;
}
.cid-sfcnRQZ6S8 .card-img span {
  color: #ffffff;
  font-size: 4.7rem;
}
.cid-sfcnRQZ6S8 .mbr-text {
  color: #cccccc;
}
.cid-sfcnRQZ6S8 p {
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .cid-sfcnRQZ6S8 .card {
    margin-bottom: 2rem;
  }
}
.cid-sfcnRQZ6S8 .mbr-section-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-sfcnRQZ6S8 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tk9iDKj9OL {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tk9iDKj9OL .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sfcnRRs8eq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfcnRRs8eq .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfcnRRs8eq .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfcnRRU0cj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfcnRRU0cj .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfcnRRU0cj .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfLlx0Swke {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #1f477d;
}
.cid-sfLlx0Swke .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sfLlx0Swke .plan-body {
  padding-bottom: 2rem;
}
.cid-sfLlx0Swke .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sfLlx0Swke .price {
  color: #008dd2;
}
.cid-sfLlx0Swke .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sfLlx0Swke .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sfLlx0Swke .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-sfLlx0Swke .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sfLlx0Swke .plan {
    margin-bottom: 2rem;
  }
}
.cid-sfLlx0Swke UL {
  color: #28492e;
}
.cid-sDVunr3lk6 {
  padding-top: 120px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/dsc00050-1511x850.jpg");
}
.cid-sDVunrQFjo {
  background-image: url("../../../assets/images/anabannergolf-3-1977x1080.jpg");
}
.cid-sDVunrQFjo .mbr-section-title,
.cid-sDVunrQFjo .ornament {
  color: #ffffff;
}
.cid-sDVunrQFjo .mbr-text,
.cid-sDVunrQFjo .mbr-section-btn {
  color: #fafafa;
}
.cid-sDVunrQFjo H3 {
  color: #fafafa;
}
.cid-sE5z9rEgSi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sE5z9rEgSi blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-sDVunrEuTf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sDVunrEuTf .card-img span {
  color: #ffffff;
  font-size: 4.7rem;
}
.cid-sDVunrEuTf .mbr-text {
  color: #cccccc;
}
.cid-sDVunrEuTf p {
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .cid-sDVunrEuTf .card {
    margin-bottom: 2rem;
  }
}
.cid-sDVunrEuTf .mbr-section-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-sDVunrEuTf .mbr-section-title {
  text-align: center;
  color: #e43f3f;
}
.cid-sDVunsvo41 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/img-20191201-wa0023-1512x850.jpg");
}
.cid-sDVunsvo41 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sDVunsvo41 .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sDVunsvo41 .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sDVunsvo41 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sDVunsvo41 .text-element {
  padding: 1rem;
}
.cid-sDVunsvo41 .main,
.cid-sDVunsvo41 .main-reverse {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sDVunsvo41 .main:first-child {
    padding-top: 1rem;
  }
  .cid-sDVunsvo41 .image-element,
  .cid-sDVunsvo41 .text-element {
    margin-bottom: 1rem;
  }
  .cid-sDVunsvo41 .main-reverse {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-sDVunsvo41 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-sDVunsvo41 .image-element,
  .cid-sDVunsvo41 .text-element {
    margin-bottom: 0;
  }
  .cid-sDVunsvo41 .main:first-child {
    padding-top: 0;
  }
}
.cid-sDVunsSB2p {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sDVunsSB2p .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sDVunsSB2p .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sDYq04HnxT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-15-1920x1280.jpg");
}
.cid-sDYq04HnxT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sDVunt2Tjz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sDVunt2Tjz .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sDVunt2Tjz .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sDVuntadYr {
  background-color: #ffffff;
}
.cid-sDVuntadYr .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sDVuntadYr .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sDVuntadYr .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sDVuntadYr .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0;
}
.cid-sDVuntadYr .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-sDVuntadYr .image-element {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-sDVuntadYr .image-element {
    padding-right: 0;
  }
}
.cid-sDVuntadYr .text-element {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sDVuntadYr .mbr-section-subtitle,
.cid-sDVuntadYr .mbr-text {
  color: #878787;
}
.cid-sDVuntadYr .mbr-text {
  line-height: 27px;
  padding: 2.5rem;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sDVuntadYr .image-element {
    padding-bottom: 1rem;
  }
  .cid-sDVuntadYr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
  }
}
.cid-sfclR7zIbi {
  padding-top: 390px;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpg");
}
.cid-sfclR7OnJ4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sfclR7OnJ4 .card-img span {
  color: #ffffff;
  font-size: 4.7rem;
}
.cid-sfclR7OnJ4 .mbr-text {
  color: #cccccc;
}
.cid-sfclR7OnJ4 p {
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .cid-sfclR7OnJ4 .card {
    margin-bottom: 2rem;
  }
}
.cid-sfclR7OnJ4 .mbr-section-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-sfclR7OnJ4 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tk9adMOwJe {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tk9adMOwJe .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sfcGMAOIBH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfcGMAOIBH .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfcGMAOIBH .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfcr3rzsEa {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfcr3rzsEa .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfcr3rzsEa .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfLkYvFhqX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fotolia-116271086-s-629x763.jpg");
}
.cid-sfLkYvFhqX .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sfLkYvFhqX .plan-body {
  padding-bottom: 2rem;
}
.cid-sfLkYvFhqX .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sfLkYvFhqX .price {
  color: #008dd2;
}
.cid-sfLkYvFhqX .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sfLkYvFhqX .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sfLkYvFhqX .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-sfLkYvFhqX .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sfLkYvFhqX .plan {
    margin-bottom: 2rem;
  }
}
.cid-sfLkYvFhqX UL {
  color: #28492e;
}
.cid-sfcnvGZzck {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sfcnvGZzck .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sfcnvHFhcA {
  padding-top: 240px;
  background-image: url("../../../assets/images/20180908-165657-1600x900.jpg");
}
.cid-sfcnvI0LQN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sfcnvI0LQN .card-img span {
  color: #ffffff;
  font-size: 4.7rem;
}
.cid-sfcnvI0LQN .mbr-text {
  color: #cccccc;
}
.cid-sfcnvI0LQN p {
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .cid-sfcnvI0LQN .card {
    margin-bottom: 2rem;
  }
}
.cid-sfcnvI0LQN .mbr-section-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-sfcnvI0LQN .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
#custom-html-fc {
  /* Type valid CSS here */
}
#custom-html-fc div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-fc p {
  font-size: 60px;
  color: #777;
}
.cid-sfcEiFyzwO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfcEiFyzwO .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfcEiFyzwO .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sfcnvINcjh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfcnvINcjh .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sfcnvINcjh .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sN3rDa5lLH {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/dsc-9602-1-800x536.jpg");
}
.cid-sN3rDa5lLH H3 {
  color: #ffffff;
  text-align: center;
}
.cid-sN3rDa5lLH H1 {
  color: #000601;
}
.cid-sN3rDa5lLH .mbr-text,
.cid-sN3rDa5lLH .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tk9eyieIMI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tk9eyieIMI .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
#custom-html-w7 {
  /* Type valid CSS here */
}
#custom-html-w7 div {
  padding: 20px 0;
  color: black;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
#custom-html-w7 p {
  font-size: 30px;
  color: black;
}
.cid-tk99pNnL9G {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tk99pNnL9G .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t9XeX9xQgh {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t9XeX9xQgh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t9XeX9xQgh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t9XeX9xQgh .text-wrapper {
    padding: 2rem;
  }
}
#custom-html-wj {
  /* Type valid CSS here */
}
#custom-html-wj div {
  padding: 10px 0;
  color: white;
  text-align: center;
  background-color: black;
}
#custom-html-wj p {
  font-size: 25px;
  color: white;
}
#custom-html-wj button {
  background-color: #1f477d;
  font-size: 12px;
}
.cid-t8Zx31rGMt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1f477d;
}
.cid-t8Zx31rGMt .mbr-text {
  color: #ffffff;
}
.cid-t8Zx31rGMt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t5ZhxcG1OI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000601;
}
.cid-t5ZhxcG1OI .mbr-text,
.cid-t5ZhxcG1OI .mbr-section-subtitle {
  color: #767676;
}
.cid-t5ZhxcG1OI .card-title {
  color: #66458e;
}
.cid-t5ZhxcG1OI .card .card-img span {
  color: #008dd2;
  font-size: 60px;
  background: linear-gradient(45deg, #008dd2, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-t5ZhxcG1OI .mbr-section-subtitle,
  .cid-t5ZhxcG1OI .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t5ZhxcG1OI .card .card-img span {
    background: none;
  }
}
.cid-t5ZhxcG1OI .card-title,
.cid-t5ZhxcG1OI .card-img {
  color: #008dd2;
}
.cid-t5ZhxcG1OI .mbr-section-title {
  color: #fafafa;
}
#custom-html-ui {
  margin: 10px;
}
.cid-sWMMqmrgFg {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWMMqmrgFg img {
  width: 120px;
  margin: auto;
}
.cid-sWMMqmrgFg .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sWMMqmrgFg .card {
    max-width: 12.5%;
  }
}
.cid-sPhVextWes {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sPhVextWes img {
  width: 120px;
  margin: auto;
}
.cid-sPhVextWes .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sPhVextWes .card {
    max-width: 12.5%;
  }
}
.cid-sLycTMhvgL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #1f477d;
}
.cid-sLycTMhvgL img {
  width: 120px;
  margin: auto;
}
.cid-sLycTMhvgL .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sLycTMhvgL .card {
    max-width: 12.5%;
  }
}
.cid-sOzbjHItP7 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #1f477d;
}
.cid-sOzbjHItP7 img {
  width: 120px;
  margin: auto;
}
.cid-sOzbjHItP7 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sOzbjHItP7 .card {
    max-width: 12.5%;
  }
}
.cid-sOzbjHItP7 .mbr-section-title {
  color: #ffffff;
}
.cid-sP2y4PvSpQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sP2y4PvSpQ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sP2y4PvSpQ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sP2y4PvSpQ .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sP2y4PvSpQ .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sP2y4PvSpQ .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sP2y4PvSpQ .bg-instagram:hover {
  background: #bd005c;
}
.cid-sP2y4PvSpQ .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sP2y4PvSpQ [class^="socicon-"]:before,
.cid-sP2y4PvSpQ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sPLrrnSlBv .container-fluid {
  padding: 0;
  max-width: 100%;
}
.cid-sPLrrnSlBv .parallax-container {
  width: 100%;
  height: 500px;
  background-image: url("../../../assets/images/colage1-mp-2000x844.jpg");
  background-attachment: fixed;
  background-size: cover;
}
.cid-tk9ISQa6SI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f477d;
}
.cid-tk9ISQa6SI .fb-page,
.cid-tk9ISQa6SI span,
.cid-tk9ISQa6SI iframe {
  width: 500px;
  height: 920px;
}
.cid-tk9ISQa6SI blockquote {
  display: none;
}
.cid-tk9ISQa6SI .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-tk9ISQa6SI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tk9ISQa6SI .mbr-section-title {
  color: #ffffff;
}
#custom-html-ur {
  /* Type valid CSS here */
}
#custom-html-ur div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-ur p {
  font-size: 60px;
  color: #777;
}
#custom-html-ur iframe {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  max-width: 1000px;
  height: 600px;
}
