.btn {
  border-width: 2px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 5.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.5rem;
}
.display-2 {
  font-family: 'Lobster', display;
  font-size: 4rem;
  line-height: 1.125;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.8rem;
  line-height: 1.14;
}
.display-5 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 4.16rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.64rem;
    font-size: calc( 2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #272b2e !important;
}
.bg-success {
  background-color: #5e83a3 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ff9e08 !important;
}
.bg-danger {
  background-color: #bc5e4d !important;
}
.btn-primary {
  background: linear-gradient(140deg, #272b2e, #1b1e20 50%, #565f65) !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #272b2e !important;
  border-color: #272b2e !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #3e454a !important;
  border-color: #3e454a !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #3e454a !important;
  border-color: #3e454a !important;
}
.btn-secondary {
  background: linear-gradient(140deg, #24557d, #1e4869 50%, #3f8ac8) !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #24557d !important;
  border-color: #24557d !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #2f70a5 !important;
  border-color: #2f70a5 !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2f70a5 !important;
  border-color: #2f70a5 !important;
}
.btn-info {
  background: linear-gradient(140deg, #ffffff, #f2f2f2 50%, #ffffff) !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success {
  background: linear-gradient(140deg, #5e83a3, #547693 50%, #9fb5c8) !important;
}
.btn-success,
.btn-success:active {
  background-color: #5e83a3 !important;
  border-color: #5e83a3 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #7e9cb6 !important;
  border-color: #7e9cb6 !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #7e9cb6 !important;
  border-color: #7e9cb6 !important;
}
.btn-warning {
  background: linear-gradient(140deg, #ff9e08, #ed9000 50%, #ffc66e) !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff9e08 !important;
  border-color: #ff9e08 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #ffb23b !important;
  border-color: #ffb23b !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ffb23b !important;
  border-color: #ffb23b !important;
}
.btn-danger {
  background: linear-gradient(140deg, #bc5e4d, #ae5241 50%, #d8a197) !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #bc5e4d !important;
  border-color: #bc5e4d !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #ca8072 !important;
  border-color: #ca8072 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ca8072 !important;
  border-color: #ca8072 !important;
}
.btn-white {
  background: linear-gradient(140deg, #ffffff, #f2f2f2 50%, #ffffff) !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black {
  background: linear-gradient(140deg, #232323, #161616 50%, #565656) !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #272b2e;
  color: #272b2e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #272b2e !important;
  border-color: #272b2e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #24557d;
  color: #24557d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #11273a !important;
  background-color: transparent !important;
  border-color: #11273a !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #24557d !important;
  border-color: #24557d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #5e83a3;
  color: #5e83a3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3e576c !important;
  background-color: transparent !important;
  border-color: #3e576c !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #5e83a3 !important;
  border-color: #5e83a3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff9e08;
  color: #ff9e08;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b06b00 !important;
  background-color: transparent !important;
  border-color: #b06b00 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9e08 !important;
  border-color: #ff9e08 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #bc5e4d;
  color: #bc5e4d;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #823d31 !important;
  background-color: transparent !important;
  border-color: #823d31 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #bc5e4d !important;
  border-color: #bc5e4d !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: #272b2e !important;
}
.text-secondary {
  color: #24557d !important;
}
.text-success {
  color: #5e83a3 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ff9e08 !important;
}
.text-danger {
  color: #bc5e4d !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0d1f2e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #384f63 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a16200 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #76382d !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #272b2e;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ff9e08;
}
.alert-danger {
  background-color: #bc5e4d;
}
.mbr-gallery-filter li.active .btn {
  background-color: #272b2e;
  border-color: #272b2e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #272b2e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dadde0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #afc1d1;
}
.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: #ffeed4;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfb2aa;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #272b2e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #272b2e;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #272b2e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #272b2e;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #272b2e;
  border-bottom-color: #272b2e;
}
.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: #272b2e !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: #24557d !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='%23272b2e' %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;
}
.mbr-section-btn .btn {
  padding: 14px 64px;
  border-radius: 3.5rem;
  border-radius: 15px !important;
  padding: 32px 64px;
}
@media (max-width: 992px) {
  .mbr-section-btn .btn {
    padding: 14px;
  }
}
@media (max-width: 992px) {
  .mbr-section-btn .btn {
    padding: 24px;
  }
}
.mbr-section-btn .btn-primary,
.mbr-section-btn .btn-secondary,
.mbr-section-btn .btn-success,
.mbr-section-btn .btn-info,
.mbr-section-btn .btn-warning,
.mbr-section-btn .btn-danger,
.mbr-section-btn .btn-black,
.mbr-section-btn .btn-white {
  border: none !important;
}
.mbr-section-btn .btn-primary:hover,
.mbr-section-btn .btn-secondary:hover,
.mbr-section-btn .btn-success:hover,
.mbr-section-btn .btn-info:hover,
.mbr-section-btn .btn-warning:hover,
.mbr-section-btn .btn-danger:hover,
.mbr-section-btn .btn-black:hover,
.mbr-section-btn .btn-white:hover,
.mbr-section-btn .btn-primary:focus,
.mbr-section-btn .btn-secondary:focus,
.mbr-section-btn .btn-success:focus,
.mbr-section-btn .btn-info:focus,
.mbr-section-btn .btn-warning:focus,
.mbr-section-btn .btn-danger:focus,
.mbr-section-btn .btn-black:focus,
.mbr-section-btn .btn-white:focus {
  opacity: .75 !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn .btn-white-outline:focus {
  opacity: .6 !important;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper,
.item-wrap,
.item-content,
.form-wrapper,
.embla {
  border-radius: 1rem !important;
}
.item-tag {
  border-radius: 12.5rem;
  border-radius: 0 !important;
}
.nav.nav-tabs .nav-link {
  border-radius: .5rem !important;
  border-radius: 0 !important;
}
.form-control {
  border-radius: .5rem !important;
  border-radius: 0 !important;
}
.cid-v2hfSYIf9N {
  background-color: #e2d8d8;
}
.cid-v2hfSYIf9N .mbr-fullscreen {
  padding: 5px 14px !important;
}
.cid-v2hfSYIf9N .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hfSYIf9N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2hfSYIf9N .container-fluid {
  padding: 0 50px;
  margin-top: -15px;
}
@media (max-width: 992px) {
  .cid-v2hfSYIf9N .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v2hfSYIf9N .container {
    padding: 0 16px;
  }
}
.cid-v2hfSYIf9N .row {
  position: relative;
  z-index: 1;
}
.cid-v2hfSYIf9N .card {
  justify-content: center;
}
.cid-v2hfSYIf9N .title-wrapper {
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-v2hfSYIf9N .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2hfSYIf9N .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  background-color: #5e83a3;
  transform: rotate(4deg);
}
@media (max-width: 992px) {
  .cid-v2hfSYIf9N .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-v2hfSYIf9N .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2hfSYIf9N .items-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 1200px) {
  .cid-v2hfSYIf9N .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-v2hfSYIf9N .items-wrapper {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .cid-v2hfSYIf9N .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-v2hfSYIf9N .items-wrapper .item {
  position: relative;
}
.cid-v2hfSYIf9N .items-wrapper .item .item-wrapper .card-boxF {
  padding: 18px 16px;
  background-color: #885672;
  border-radius: 16px;
}
.cid-v2hfSYIf9N .items-wrapper .item .item-wrapper .card-boxF .icon-wrapper .mbr-iconfont {
  font-size: 60px;
  color: #ffffff;
  display: inline-flex;
}
.cid-v2hfSYIf9N .items-wrapper .item .item-wrapper .card-boxF .item-title {
  margin-top: 14px;
  margin-bottom: 0;
}
.cid-v2hfSYIf9N .item {
  position: relative;
}
.cid-v2hfSYIf9N .item .item-wrapper .card-boxH {
  padding: 18px 16px;
  background-color: #24557d;
  border-radius: 16px;
}
.cid-v2hfSYIf9N .item .item-wrapper .card-boxH .icon-wrapper .mbr-iconfont {
  font-size: 60px;
  color: #ffffff;
  display: inline-flex;
}
.cid-v2hfSYIf9N .item .item-wrapper .card-boxH .item-title {
  margin-top: 14px;
  margin-bottom: 0;
}
.cid-v2hfSYIf9N .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-v2hfSYIf9N .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v2hfSYIf9N .mbr-section-title {
  color: #000000;
}
.cid-v2hfSYIf9N .mbr-section-subtitle {
  color: #000000;
}
.cid-v2hfSYIf9N .mbr-text,
.cid-v2hfSYIf9N .text-wrapper {
  color: #24557d;
  text-align: left;
}
.cid-v2hfSYIf9N .btn {
  padding: 5px 14px !important;
  border-radius: 5px;
}
.cid-v2hfSYIf9N .item-title {
  color: #000000;
}
.cid-v2hfSYIf9N .item-title,
.cid-v2hfSYIf9N .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v2hfSYIf9N .mbr-section-subtitle,
.cid-v2hfSYIf9N .subtitle-wrapper {
  color: #24557d;
  text-align: center;
}
.cid-v2hfSYIf9N .mbr-section-title,
.cid-v2hfSYIf9N .mbr-section-btn {
  color: #24557d;
  text-align: center;
}
.cid-v2hfSYIf9N .display-4 {
  line-height: 1.3;
}
.cid-v2hfSYIf9N .img {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  height: 200px;
  width: 200px;
  justify-self: center !important;
}
.cid-v2tdLXTHPT {
  padding-top: 0px;
  padding-bottom: 1px;
  background-color: #5e83a3;
}
.cid-v2tdLXTHPT .mbr-text {
  color: #8d97ad;
}
.cid-v2tdNCi9dG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e2d8d8;
}
.cid-v2tdNCi9dG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2tdNCi9dG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2tdNCi9dG .container,
.cid-v2tdNCi9dG .container-fluid {
  padding: 0 0px;
}
@media (max-width: 992px) {
  .cid-v2tdNCi9dG .container,
  .cid-v2tdNCi9dG .container-fluid {
    padding: 0 20px;
  }
}
.cid-v2tdNCi9dG a {
  display: block;
}
.cid-v2tdNCi9dG a .logo-wrapper {
  padding: 0px 80px 0px 0;
  border-right: 1px solid #24557d;
  border-bottom: 1px solid #24557d;
}
@media (max-width: 992px) {
  .cid-v2tdNCi9dG a .logo-wrapper {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-v2tdNCi9dG a .logo-wrapper {
    padding: 50px 0;
  }
}
.cid-v2tdNCi9dG a .logo-wrapper img {
  height: 250px;
  width: 250px;
  object-fit: contain;
  border-radius: 10px;
  margin: 0 0 0 auto;
}
@media (max-width: 1200px) {
  .cid-v2tdNCi9dG a .logo-wrapper img {
    height: 200px;
    width: 200px;
  }
}
@media (max-width: 992px) {
  .cid-v2tdNCi9dG a .logo-wrapper img {
    margin: 0 auto;
  }
}
.cid-v2tdNCi9dG .copy-wrapper {
  padding: 24px 24px 24px 0;
  border-right: 1px solid #24557d;
}
@media (max-width: 992px) {
  .cid-v2tdNCi9dG .copy-wrapper {
    border-right: none;
  }
}
.cid-v2tdNCi9dG .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v2tdNCi9dG .list-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2tdNCi9dG .list-wrapper {
    height: auto;
    text-align: center;
  }
}
.cid-v2tdNCi9dG .list-wrapper .list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v2tdNCi9dG .list-wrapper .list {
    width: 100%;
    flex-wrap: wrap;
  }
}
.cid-v2tdNCi9dG .list-wrapper .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-out;
}
.cid-v2tdNCi9dG .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2tdNCi9dG .list-wrapper .list .item-wrap {
    margin-bottom: 22px;
  }
}
.cid-v2tdNCi9dG .list-wrapper .list .item-wrap:hover {
  text-decoration: underline;
}
.cid-v2tdNCi9dG .art {
  width: 55%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v2tdNCi9dG .art {
    width: 35%;
    margin-top: -25px;
  }
}
@media (max-width: 767px) {
  .cid-v2tdNCi9dG .art {
    width: 45%;
    margin-top: -25px;
  }
}
.cid-v2tdNCi9dG .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2tdNCi9dG .card-wrapper {
    margin-bottom: 50px;
  }
}
.cid-v2tdNCi9dG .card-wrapper .card-wrap {
  padding: 24px;
  background-color: #24557d;
  border-radius: 24px;
}
.cid-v2tdNCi9dG .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 42px;
}
.cid-v2tdNCi9dG .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 42px;
}
.cid-v2tdNCi9dG .copyright {
  color: #24557d;
  text-align: justify;
}
.cid-v2tdNCi9dG .mbr-section-title {
  color: #3d4045;
}
.cid-v2tdNCi9dG .mbr-text {
  color: #ffffff;
}
.cid-v2tdNCi9dG .list {
  color: #5e83a3;
}
.cid-v2tdNCi9dG .mbr-section-btn {
  text-align: right;
}
.cid-v2tdNCi9dG .mbr-section-title,
.cid-v2tdNCi9dG .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v2tdNCi9dG .btn {
  padding: 15px 54px !important;
}
.cid-v4UuvEXecn.popup-builder {
  background-color: #ffffff;
}
.cid-v4UuvEXecn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v4UuvEXecn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v4UuvEXecn .modal-content,
.cid-v4UuvEXecn .modal-dialog {
  height: auto;
}
.cid-v4UuvEXecn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v4UuvEXecn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v4UuvEXecn .form-wrapper .mbr-form .form-group,
  .cid-v4UuvEXecn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v4UuvEXecn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v4UuvEXecn .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v4UuvEXecn .mbr-text {
  text-align: justify;
}
.cid-v4UuvEXecn .pt-0 {
  padding-top: 0 !important;
}
.cid-v4UuvEXecn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v4UuvEXecn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v4UuvEXecn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v4UuvEXecn .modal-open {
  overflow: hidden;
}
.cid-v4UuvEXecn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v4UuvEXecn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v4UuvEXecn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v4UuvEXecn .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v4UuvEXecn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v4UuvEXecn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v4UuvEXecn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v4UuvEXecn .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v4UuvEXecn .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v4UuvEXecn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v4UuvEXecn .modal-backdrop.fade {
  opacity: 0;
}
.cid-v4UuvEXecn .modal-backdrop.show {
  opacity: .5;
}
.cid-v4UuvEXecn .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v4UuvEXecn .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v4UuvEXecn .modal-header {
    padding: 1rem;
  }
}
.cid-v4UuvEXecn .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v4UuvEXecn .modal-header .close svg {
  fill: #353535;
}
.cid-v4UuvEXecn .modal-header .close:hover {
  opacity: 1;
}
.cid-v4UuvEXecn .modal-header .close:focus {
  outline: none;
}
.cid-v4UuvEXecn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v4UuvEXecn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v4UuvEXecn .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4UuvEXecn .modal-body {
    padding: 1rem;
  }
}
.cid-v4UuvEXecn .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v4UuvEXecn .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4UuvEXecn .modal-footer {
    padding: 1rem;
  }
}
.cid-v4UuvEXecn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v4UuvEXecn .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v4UuvEXecn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v4UuvEXecn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v4UuvEXecn .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v4UuvEXecn .modal-lg,
  .cid-v4UuvEXecn .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v4UuvEXecn .modal-xl {
    max-width: 1140px;
  }
}
.cid-v4UuvEXecn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v4UuvEXecn .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v4UuvEXecn .form-group {
  margin-bottom: 1rem;
}
.cid-v4UuvEXecn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v4UuvEXecn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v4UuvEXecn .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v4UuvEXecn .mbr-section-btn {
  margin: 0;
}
.cid-v4UuvEXecn .mbr-section-btn .btn {
  margin: 0;
}
.cid-v49Yfpg0Nx.popup-builder {
  background-color: #ffffff;
}
.cid-v49Yfpg0Nx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v49Yfpg0Nx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v49Yfpg0Nx .modal-content,
.cid-v49Yfpg0Nx .modal-dialog {
  height: auto;
}
.cid-v49Yfpg0Nx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v49Yfpg0Nx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v49Yfpg0Nx .form-wrapper .mbr-form .form-group,
  .cid-v49Yfpg0Nx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v49Yfpg0Nx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v49Yfpg0Nx .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v49Yfpg0Nx .mbr-text {
  text-align: justify;
}
.cid-v49Yfpg0Nx .pt-0 {
  padding-top: 0 !important;
}
.cid-v49Yfpg0Nx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v49Yfpg0Nx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v49Yfpg0Nx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v49Yfpg0Nx .modal-open {
  overflow: hidden;
}
.cid-v49Yfpg0Nx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v49Yfpg0Nx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v49Yfpg0Nx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v49Yfpg0Nx .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v49Yfpg0Nx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v49Yfpg0Nx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v49Yfpg0Nx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v49Yfpg0Nx .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v49Yfpg0Nx .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v49Yfpg0Nx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v49Yfpg0Nx .modal-backdrop.fade {
  opacity: 0;
}
.cid-v49Yfpg0Nx .modal-backdrop.show {
  opacity: .5;
}
.cid-v49Yfpg0Nx .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v49Yfpg0Nx .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v49Yfpg0Nx .modal-header {
    padding: 1rem;
  }
}
.cid-v49Yfpg0Nx .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v49Yfpg0Nx .modal-header .close svg {
  fill: #353535;
}
.cid-v49Yfpg0Nx .modal-header .close:hover {
  opacity: 1;
}
.cid-v49Yfpg0Nx .modal-header .close:focus {
  outline: none;
}
.cid-v49Yfpg0Nx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v49Yfpg0Nx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v49Yfpg0Nx .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49Yfpg0Nx .modal-body {
    padding: 1rem;
  }
}
.cid-v49Yfpg0Nx .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v49Yfpg0Nx .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49Yfpg0Nx .modal-footer {
    padding: 1rem;
  }
}
.cid-v49Yfpg0Nx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v49Yfpg0Nx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v49Yfpg0Nx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v49Yfpg0Nx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v49Yfpg0Nx .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v49Yfpg0Nx .modal-lg,
  .cid-v49Yfpg0Nx .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v49Yfpg0Nx .modal-xl {
    max-width: 1140px;
  }
}
.cid-v49Yfpg0Nx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v49Yfpg0Nx .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v49Yfpg0Nx .form-group {
  margin-bottom: 1rem;
}
.cid-v49Yfpg0Nx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v49Yfpg0Nx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v49Yfpg0Nx .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v49Yfpg0Nx .mbr-section-btn {
  margin: 0;
}
.cid-v49Yfpg0Nx .mbr-section-btn .btn {
  margin: 0;
}
.cid-v3XAcKu4Lw.popup-builder {
  background-color: #ffffff;
}
.cid-v3XAcKu4Lw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v3XAcKu4Lw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v3XAcKu4Lw .modal-content,
.cid-v3XAcKu4Lw .modal-dialog {
  height: auto;
}
.cid-v3XAcKu4Lw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v3XAcKu4Lw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v3XAcKu4Lw .form-wrapper .mbr-form .form-group,
  .cid-v3XAcKu4Lw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v3XAcKu4Lw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v3XAcKu4Lw .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3XAcKu4Lw .mbr-text {
  text-align: justify;
}
.cid-v3XAcKu4Lw .pt-0 {
  padding-top: 0 !important;
}
.cid-v3XAcKu4Lw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v3XAcKu4Lw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v3XAcKu4Lw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v3XAcKu4Lw .modal-open {
  overflow: hidden;
}
.cid-v3XAcKu4Lw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v3XAcKu4Lw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v3XAcKu4Lw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v3XAcKu4Lw .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v3XAcKu4Lw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v3XAcKu4Lw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v3XAcKu4Lw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v3XAcKu4Lw .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v3XAcKu4Lw .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v3XAcKu4Lw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v3XAcKu4Lw .modal-backdrop.fade {
  opacity: 0;
}
.cid-v3XAcKu4Lw .modal-backdrop.show {
  opacity: .5;
}
.cid-v3XAcKu4Lw .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v3XAcKu4Lw .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3XAcKu4Lw .modal-header {
    padding: 1rem;
  }
}
.cid-v3XAcKu4Lw .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v3XAcKu4Lw .modal-header .close svg {
  fill: #353535;
}
.cid-v3XAcKu4Lw .modal-header .close:hover {
  opacity: 1;
}
.cid-v3XAcKu4Lw .modal-header .close:focus {
  outline: none;
}
.cid-v3XAcKu4Lw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v3XAcKu4Lw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v3XAcKu4Lw .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3XAcKu4Lw .modal-body {
    padding: 1rem;
  }
}
.cid-v3XAcKu4Lw .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3XAcKu4Lw .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3XAcKu4Lw .modal-footer {
    padding: 1rem;
  }
}
.cid-v3XAcKu4Lw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v3XAcKu4Lw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v3XAcKu4Lw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v3XAcKu4Lw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v3XAcKu4Lw .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v3XAcKu4Lw .modal-lg,
  .cid-v3XAcKu4Lw .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v3XAcKu4Lw .modal-xl {
    max-width: 1140px;
  }
}
.cid-v3XAcKu4Lw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v3XAcKu4Lw .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v3XAcKu4Lw .form-group {
  margin-bottom: 1rem;
}
.cid-v3XAcKu4Lw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v3XAcKu4Lw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v3XAcKu4Lw .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v3XAcKu4Lw .mbr-section-btn {
  margin: 0;
}
.cid-v3XAcKu4Lw .mbr-section-btn .btn {
  margin: 0;
}
.cid-v3XtY5810g.popup-builder {
  background-color: #ffffff;
}
.cid-v3XtY5810g.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v3XtY5810g.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v3XtY5810g .modal-content,
.cid-v3XtY5810g .modal-dialog {
  height: auto;
}
.cid-v3XtY5810g .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v3XtY5810g .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v3XtY5810g .form-wrapper .mbr-form .form-group,
  .cid-v3XtY5810g .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v3XtY5810g .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v3XtY5810g .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3XtY5810g .mbr-text {
  text-align: justify;
}
.cid-v3XtY5810g .pt-0 {
  padding-top: 0 !important;
}
.cid-v3XtY5810g .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v3XtY5810g .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v3XtY5810g .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v3XtY5810g .modal-open {
  overflow: hidden;
}
.cid-v3XtY5810g .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v3XtY5810g .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v3XtY5810g .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v3XtY5810g .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v3XtY5810g .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v3XtY5810g .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v3XtY5810g .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v3XtY5810g .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v3XtY5810g .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v3XtY5810g .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v3XtY5810g .modal-backdrop.fade {
  opacity: 0;
}
.cid-v3XtY5810g .modal-backdrop.show {
  opacity: .5;
}
.cid-v3XtY5810g .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v3XtY5810g .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3XtY5810g .modal-header {
    padding: 1rem;
  }
}
.cid-v3XtY5810g .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v3XtY5810g .modal-header .close svg {
  fill: #353535;
}
.cid-v3XtY5810g .modal-header .close:hover {
  opacity: 1;
}
.cid-v3XtY5810g .modal-header .close:focus {
  outline: none;
}
.cid-v3XtY5810g .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v3XtY5810g .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v3XtY5810g .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3XtY5810g .modal-body {
    padding: 1rem;
  }
}
.cid-v3XtY5810g .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3XtY5810g .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3XtY5810g .modal-footer {
    padding: 1rem;
  }
}
.cid-v3XtY5810g .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v3XtY5810g .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v3XtY5810g .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v3XtY5810g .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v3XtY5810g .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v3XtY5810g .modal-lg,
  .cid-v3XtY5810g .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v3XtY5810g .modal-xl {
    max-width: 1140px;
  }
}
.cid-v3XtY5810g .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v3XtY5810g .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v3XtY5810g .form-group {
  margin-bottom: 1rem;
}
.cid-v3XtY5810g .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v3XtY5810g .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v3XtY5810g .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v3XtY5810g .mbr-section-btn {
  margin: 0;
}
.cid-v3XtY5810g .mbr-section-btn .btn {
  margin: 0;
}
.cid-v3T72BUQ3I.popup-builder {
  background-color: #ffffff;
}
.cid-v3T72BUQ3I.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v3T72BUQ3I.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v3T72BUQ3I .modal-content,
.cid-v3T72BUQ3I .modal-dialog {
  height: auto;
}
.cid-v3T72BUQ3I .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v3T72BUQ3I .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v3T72BUQ3I .form-wrapper .mbr-form .form-group,
  .cid-v3T72BUQ3I .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v3T72BUQ3I .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v3T72BUQ3I .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3T72BUQ3I .mbr-text {
  text-align: justify;
}
.cid-v3T72BUQ3I .pt-0 {
  padding-top: 0 !important;
}
.cid-v3T72BUQ3I .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v3T72BUQ3I .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v3T72BUQ3I .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v3T72BUQ3I .modal-open {
  overflow: hidden;
}
.cid-v3T72BUQ3I .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v3T72BUQ3I .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v3T72BUQ3I .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v3T72BUQ3I .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v3T72BUQ3I .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v3T72BUQ3I .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v3T72BUQ3I .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v3T72BUQ3I .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v3T72BUQ3I .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v3T72BUQ3I .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v3T72BUQ3I .modal-backdrop.fade {
  opacity: 0;
}
.cid-v3T72BUQ3I .modal-backdrop.show {
  opacity: .5;
}
.cid-v3T72BUQ3I .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v3T72BUQ3I .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3T72BUQ3I .modal-header {
    padding: 1rem;
  }
}
.cid-v3T72BUQ3I .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v3T72BUQ3I .modal-header .close svg {
  fill: #353535;
}
.cid-v3T72BUQ3I .modal-header .close:hover {
  opacity: 1;
}
.cid-v3T72BUQ3I .modal-header .close:focus {
  outline: none;
}
.cid-v3T72BUQ3I .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v3T72BUQ3I .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v3T72BUQ3I .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3T72BUQ3I .modal-body {
    padding: 1rem;
  }
}
.cid-v3T72BUQ3I .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3T72BUQ3I .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3T72BUQ3I .modal-footer {
    padding: 1rem;
  }
}
.cid-v3T72BUQ3I .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v3T72BUQ3I .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v3T72BUQ3I .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v3T72BUQ3I .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v3T72BUQ3I .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v3T72BUQ3I .modal-lg,
  .cid-v3T72BUQ3I .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v3T72BUQ3I .modal-xl {
    max-width: 1140px;
  }
}
.cid-v3T72BUQ3I .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v3T72BUQ3I .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v3T72BUQ3I .form-group {
  margin-bottom: 1rem;
}
.cid-v3T72BUQ3I .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v3T72BUQ3I .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v3T72BUQ3I .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v3T72BUQ3I .mbr-section-btn {
  margin: 0;
}
.cid-v3T72BUQ3I .mbr-section-btn .btn {
  margin: 0;
}
.cid-v3M3rPW7zn.popup-builder {
  background-color: #ffffff;
}
.cid-v3M3rPW7zn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v3M3rPW7zn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v3M3rPW7zn .modal-content,
.cid-v3M3rPW7zn .modal-dialog {
  height: auto;
}
.cid-v3M3rPW7zn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v3M3rPW7zn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v3M3rPW7zn .form-wrapper .mbr-form .form-group,
  .cid-v3M3rPW7zn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v3M3rPW7zn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v3M3rPW7zn .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3M3rPW7zn .mbr-text {
  text-align: justify;
}
.cid-v3M3rPW7zn .pt-0 {
  padding-top: 0 !important;
}
.cid-v3M3rPW7zn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v3M3rPW7zn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v3M3rPW7zn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v3M3rPW7zn .modal-open {
  overflow: hidden;
}
.cid-v3M3rPW7zn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v3M3rPW7zn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v3M3rPW7zn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v3M3rPW7zn .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v3M3rPW7zn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v3M3rPW7zn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v3M3rPW7zn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v3M3rPW7zn .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v3M3rPW7zn .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v3M3rPW7zn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v3M3rPW7zn .modal-backdrop.fade {
  opacity: 0;
}
.cid-v3M3rPW7zn .modal-backdrop.show {
  opacity: .5;
}
.cid-v3M3rPW7zn .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v3M3rPW7zn .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3M3rPW7zn .modal-header {
    padding: 1rem;
  }
}
.cid-v3M3rPW7zn .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v3M3rPW7zn .modal-header .close svg {
  fill: #353535;
}
.cid-v3M3rPW7zn .modal-header .close:hover {
  opacity: 1;
}
.cid-v3M3rPW7zn .modal-header .close:focus {
  outline: none;
}
.cid-v3M3rPW7zn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v3M3rPW7zn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v3M3rPW7zn .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3M3rPW7zn .modal-body {
    padding: 1rem;
  }
}
.cid-v3M3rPW7zn .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3M3rPW7zn .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3M3rPW7zn .modal-footer {
    padding: 1rem;
  }
}
.cid-v3M3rPW7zn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v3M3rPW7zn .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v3M3rPW7zn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v3M3rPW7zn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v3M3rPW7zn .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v3M3rPW7zn .modal-lg,
  .cid-v3M3rPW7zn .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v3M3rPW7zn .modal-xl {
    max-width: 1140px;
  }
}
.cid-v3M3rPW7zn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v3M3rPW7zn .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v3M3rPW7zn .form-group {
  margin-bottom: 1rem;
}
.cid-v3M3rPW7zn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v3M3rPW7zn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v3M3rPW7zn .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v3M3rPW7zn .mbr-section-btn {
  margin: 0;
}
.cid-v3M3rPW7zn .mbr-section-btn .btn {
  margin: 0;
}
.cid-v3LXEXDGEe.popup-builder {
  background-color: #ffffff;
}
.cid-v3LXEXDGEe.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v3LXEXDGEe.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v3LXEXDGEe .modal-content,
.cid-v3LXEXDGEe .modal-dialog {
  height: auto;
}
.cid-v3LXEXDGEe .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v3LXEXDGEe .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v3LXEXDGEe .form-wrapper .mbr-form .form-group,
  .cid-v3LXEXDGEe .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v3LXEXDGEe .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v3LXEXDGEe .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3LXEXDGEe .mbr-text {
  text-align: justify;
}
.cid-v3LXEXDGEe .pt-0 {
  padding-top: 0 !important;
}
.cid-v3LXEXDGEe .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v3LXEXDGEe .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v3LXEXDGEe .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v3LXEXDGEe .modal-open {
  overflow: hidden;
}
.cid-v3LXEXDGEe .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v3LXEXDGEe .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v3LXEXDGEe .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v3LXEXDGEe .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v3LXEXDGEe .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v3LXEXDGEe .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v3LXEXDGEe .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v3LXEXDGEe .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v3LXEXDGEe .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v3LXEXDGEe .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v3LXEXDGEe .modal-backdrop.fade {
  opacity: 0;
}
.cid-v3LXEXDGEe .modal-backdrop.show {
  opacity: .5;
}
.cid-v3LXEXDGEe .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v3LXEXDGEe .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3LXEXDGEe .modal-header {
    padding: 1rem;
  }
}
.cid-v3LXEXDGEe .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v3LXEXDGEe .modal-header .close svg {
  fill: #353535;
}
.cid-v3LXEXDGEe .modal-header .close:hover {
  opacity: 1;
}
.cid-v3LXEXDGEe .modal-header .close:focus {
  outline: none;
}
.cid-v3LXEXDGEe .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v3LXEXDGEe .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v3LXEXDGEe .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3LXEXDGEe .modal-body {
    padding: 1rem;
  }
}
.cid-v3LXEXDGEe .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3LXEXDGEe .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3LXEXDGEe .modal-footer {
    padding: 1rem;
  }
}
.cid-v3LXEXDGEe .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v3LXEXDGEe .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v3LXEXDGEe .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v3LXEXDGEe .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v3LXEXDGEe .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v3LXEXDGEe .modal-lg,
  .cid-v3LXEXDGEe .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v3LXEXDGEe .modal-xl {
    max-width: 1140px;
  }
}
.cid-v3LXEXDGEe .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v3LXEXDGEe .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v3LXEXDGEe .form-group {
  margin-bottom: 1rem;
}
.cid-v3LXEXDGEe .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v3LXEXDGEe .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v3LXEXDGEe .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v3LXEXDGEe .mbr-section-btn {
  margin: 0;
}
.cid-v3LXEXDGEe .mbr-section-btn .btn {
  margin: 0;
}
.cid-v3GY43kayf.popup-builder {
  background-color: #ffffff;
}
.cid-v3GY43kayf.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v3GY43kayf.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v3GY43kayf .modal-content,
.cid-v3GY43kayf .modal-dialog {
  height: auto;
}
.cid-v3GY43kayf .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v3GY43kayf .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v3GY43kayf .form-wrapper .mbr-form .form-group,
  .cid-v3GY43kayf .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v3GY43kayf .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v3GY43kayf .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GY43kayf .mbr-text {
  text-align: justify;
}
.cid-v3GY43kayf .pt-0 {
  padding-top: 0 !important;
}
.cid-v3GY43kayf .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v3GY43kayf .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v3GY43kayf .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v3GY43kayf .modal-open {
  overflow: hidden;
}
.cid-v3GY43kayf .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v3GY43kayf .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v3GY43kayf .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v3GY43kayf .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v3GY43kayf .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v3GY43kayf .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v3GY43kayf .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v3GY43kayf .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v3GY43kayf .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v3GY43kayf .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v3GY43kayf .modal-backdrop.fade {
  opacity: 0;
}
.cid-v3GY43kayf .modal-backdrop.show {
  opacity: .5;
}
.cid-v3GY43kayf .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v3GY43kayf .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3GY43kayf .modal-header {
    padding: 1rem;
  }
}
.cid-v3GY43kayf .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v3GY43kayf .modal-header .close svg {
  fill: #353535;
}
.cid-v3GY43kayf .modal-header .close:hover {
  opacity: 1;
}
.cid-v3GY43kayf .modal-header .close:focus {
  outline: none;
}
.cid-v3GY43kayf .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v3GY43kayf .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v3GY43kayf .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3GY43kayf .modal-body {
    padding: 1rem;
  }
}
.cid-v3GY43kayf .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3GY43kayf .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3GY43kayf .modal-footer {
    padding: 1rem;
  }
}
.cid-v3GY43kayf .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v3GY43kayf .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v3GY43kayf .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v3GY43kayf .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v3GY43kayf .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v3GY43kayf .modal-lg,
  .cid-v3GY43kayf .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v3GY43kayf .modal-xl {
    max-width: 1140px;
  }
}
.cid-v3GY43kayf .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v3GY43kayf .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v3GY43kayf .form-group {
  margin-bottom: 1rem;
}
.cid-v3GY43kayf .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v3GY43kayf .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v3GY43kayf .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v3GY43kayf .mbr-section-btn {
  margin: 0;
}
.cid-v3GY43kayf .mbr-section-btn .btn {
  margin: 0;
}
.cid-v3GK58AVxB.popup-builder {
  background-color: #ffffff;
}
.cid-v3GK58AVxB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v3GK58AVxB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v3GK58AVxB .modal-content,
.cid-v3GK58AVxB .modal-dialog {
  height: auto;
}
.cid-v3GK58AVxB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v3GK58AVxB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v3GK58AVxB .form-wrapper .mbr-form .form-group,
  .cid-v3GK58AVxB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v3GK58AVxB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v3GK58AVxB .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GK58AVxB .mbr-text {
  text-align: justify;
}
.cid-v3GK58AVxB .pt-0 {
  padding-top: 0 !important;
}
.cid-v3GK58AVxB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v3GK58AVxB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v3GK58AVxB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v3GK58AVxB .modal-open {
  overflow: hidden;
}
.cid-v3GK58AVxB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v3GK58AVxB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v3GK58AVxB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v3GK58AVxB .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v3GK58AVxB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v3GK58AVxB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v3GK58AVxB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v3GK58AVxB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v3GK58AVxB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v3GK58AVxB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v3GK58AVxB .modal-backdrop.fade {
  opacity: 0;
}
.cid-v3GK58AVxB .modal-backdrop.show {
  opacity: .5;
}
.cid-v3GK58AVxB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v3GK58AVxB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3GK58AVxB .modal-header {
    padding: 1rem;
  }
}
.cid-v3GK58AVxB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v3GK58AVxB .modal-header .close svg {
  fill: #353535;
}
.cid-v3GK58AVxB .modal-header .close:hover {
  opacity: 1;
}
.cid-v3GK58AVxB .modal-header .close:focus {
  outline: none;
}
.cid-v3GK58AVxB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v3GK58AVxB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v3GK58AVxB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3GK58AVxB .modal-body {
    padding: 1rem;
  }
}
.cid-v3GK58AVxB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v3GK58AVxB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3GK58AVxB .modal-footer {
    padding: 1rem;
  }
}
.cid-v3GK58AVxB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v3GK58AVxB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v3GK58AVxB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v3GK58AVxB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v3GK58AVxB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v3GK58AVxB .modal-lg,
  .cid-v3GK58AVxB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v3GK58AVxB .modal-xl {
    max-width: 1140px;
  }
}
.cid-v3GK58AVxB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v3GK58AVxB .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v3GK58AVxB .form-group {
  margin-bottom: 1rem;
}
.cid-v3GK58AVxB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v3GK58AVxB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v3GK58AVxB .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v3GK58AVxB .mbr-section-btn {
  margin: 0;
}
.cid-v3GK58AVxB .mbr-section-btn .btn {
  margin: 0;
}
.cid-uTN1I5Ydd8 {
  background-image: url("../../../assets/images/larrey-1-1920x1080.jpg");
}
.cid-uTN1I5Ydd8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTN1I5Ydd8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTN1I5Ydd8 .row {
  margin: 0 -8px;
}
.cid-uTN1I5Ydd8 .row .card {
  padding: 0 8px;
}
.cid-uTN1I5Ydd8 .card-wrapper {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  border-radius: 0px !important;
  position: relative;
  padding: 75px 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .cid-uTN1I5Ydd8 .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uTN1I5Ydd8 .card-wrapper {
    padding: 24px;
  }
}
.cid-uTN1I5Ydd8 .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
}
.cid-uTN1I5Ydd8 .card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #15171a;
  opacity: .5;
}
.cid-uTN1I5Ydd8 .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cid-uTN1I5Ydd8 .card-wrapper .card-wrap .mbr-label {
  margin-bottom: 24px;
}
.cid-uTN1I5Ydd8 .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uTN1I5Ydd8 .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTN1I5Ydd8 .card-wrapper .card-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uTN1I5Ydd8 .card-wrapper .card-wrap .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uTN1I5Ydd8 .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uTN1I5Ydd8 .mbr-section-title {
  color: #2c2c26;
  text-align: center;
}
.cid-uTN1I5Ydd8 .mbr-label {
  color: #63635d;
  text-align: center;
}
.cid-uTN1I5Ydd8 .mbr-text,
.cid-uTN1I5Ydd8 .text-wrapper {
  color: #e2d8d8;
  text-align: center;
}
.cid-uTN1I5Ydd8 .mbr-section-title,
.cid-uTN1I5Ydd8 .mbr-section-btn {
  color: #e2d8d8;
}
.cid-v2t6RUIIaJ {
  padding-top: 0px;
  padding-bottom: 1px;
  background-color: #5e83a3;
}
.cid-v2t6RUIIaJ .mbr-text {
  color: #8d97ad;
}
.cid-v2t6ZYKIn4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e2d8d8;
}
.cid-v2t6ZYKIn4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2t6ZYKIn4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2t6ZYKIn4 .container,
.cid-v2t6ZYKIn4 .container-fluid {
  padding: 0 0px;
}
@media (max-width: 992px) {
  .cid-v2t6ZYKIn4 .container,
  .cid-v2t6ZYKIn4 .container-fluid {
    padding: 0 20px;
  }
}
.cid-v2t6ZYKIn4 a {
  display: block;
}
.cid-v2t6ZYKIn4 a .logo-wrapper {
  padding: 0px 80px 0px 0;
  border-right: 1px solid #24557d;
  border-bottom: 1px solid #24557d;
}
@media (max-width: 992px) {
  .cid-v2t6ZYKIn4 a .logo-wrapper {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-v2t6ZYKIn4 a .logo-wrapper {
    padding: 50px 0;
  }
}
.cid-v2t6ZYKIn4 a .logo-wrapper img {
  height: 250px;
  width: 250px;
  object-fit: contain;
  border-radius: 10px;
  margin: 0 0 0 auto;
}
@media (max-width: 1200px) {
  .cid-v2t6ZYKIn4 a .logo-wrapper img {
    height: 200px;
    width: 200px;
  }
}
@media (max-width: 992px) {
  .cid-v2t6ZYKIn4 a .logo-wrapper img {
    margin: 0 auto;
  }
}
.cid-v2t6ZYKIn4 .copy-wrapper {
  padding: 24px 24px 24px 0;
  border-right: 1px solid #24557d;
}
@media (max-width: 992px) {
  .cid-v2t6ZYKIn4 .copy-wrapper {
    border-right: none;
  }
}
.cid-v2t6ZYKIn4 .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v2t6ZYKIn4 .list-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2t6ZYKIn4 .list-wrapper {
    height: auto;
    text-align: center;
  }
}
.cid-v2t6ZYKIn4 .list-wrapper .list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v2t6ZYKIn4 .list-wrapper .list {
    width: 100%;
    flex-wrap: wrap;
  }
}
.cid-v2t6ZYKIn4 .list-wrapper .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-out;
}
.cid-v2t6ZYKIn4 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2t6ZYKIn4 .list-wrapper .list .item-wrap {
    margin-bottom: 22px;
  }
}
.cid-v2t6ZYKIn4 .list-wrapper .list .item-wrap:hover {
  text-decoration: underline;
}
.cid-v2t6ZYKIn4 .art {
  width: 55%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v2t6ZYKIn4 .art {
    width: 35%;
    margin-top: -25px;
  }
}
@media (max-width: 767px) {
  .cid-v2t6ZYKIn4 .art {
    width: 45%;
    margin-top: -25px;
  }
}
.cid-v2t6ZYKIn4 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2t6ZYKIn4 .card-wrapper {
    margin-bottom: 50px;
  }
}
.cid-v2t6ZYKIn4 .card-wrapper .card-wrap {
  padding: 24px;
  background-color: #24557d;
  border-radius: 24px;
}
.cid-v2t6ZYKIn4 .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 42px;
}
.cid-v2t6ZYKIn4 .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 42px;
}
.cid-v2t6ZYKIn4 .copyright {
  color: #24557d;
  text-align: justify;
}
.cid-v2t6ZYKIn4 .mbr-section-title {
  color: #3d4045;
}
.cid-v2t6ZYKIn4 .mbr-text {
  color: #ffffff;
}
.cid-v2t6ZYKIn4 .list {
  color: #5e83a3;
}
.cid-v2t6ZYKIn4 .mbr-section-btn {
  text-align: right;
}
.cid-v2t6ZYKIn4 .mbr-section-title,
.cid-v2t6ZYKIn4 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v2t6ZYKIn4 .btn {
  padding: 15px 54px !important;
}
.cid-v2gVaGyEnM {
  padding-top: 1px;
  padding-bottom: 1px;
  background-color: #5e83a3;
}
.cid-v2gVaGyEnM .mbr-text {
  color: #8d97ad;
}
.cid-v2gWsth0kt {
  background-color: #e2d8d8;
}
.cid-v2gWsth0kt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gWsth0kt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gWsth0kt .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v2gWsth0kt .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v2gWsth0kt .container {
    padding: 0 16px;
  }
}
.cid-v2gWsth0kt .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-v2gWsth0kt .row {
    margin: 0 10px;
  }
}
.cid-v2gWsth0kt .row .item {
  padding: 0;
}
.cid-v2gWsth0kt .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v2gWsth0kt .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v2gWsth0kt .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2gWsth0kt .panel-group {
  border: 1px solid #9098a4;
  border-radius: 20px;
  overflow: hidden;
}
.cid-v2gWsth0kt .panel-group .card {
  border-top: 1px solid #4a5357;
  border-radius: 0 !important;
}
.cid-v2gWsth0kt .panel-group .card:first-child {
  border-top: none;
}
.cid-v2gWsth0kt .panel-group .card:last-child {
  border-bottom: none;
}
.cid-v2gWsth0kt .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-v2gWsth0kt .panel-group .card .card-header .panel-title {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-v2gWsth0kt .panel-group .card .card-header .panel-title {
    padding: 20px 10px;
  }
}
.cid-v2gWsth0kt .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #6f94a2;
}
.cid-v2gWsth0kt .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
  color: #6f94a2;
  background-color: #192227;
}
.cid-v2gWsth0kt .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #192227;
}
.cid-v2gWsth0kt .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v2gWsth0kt .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #192227;
  background-color: #6f94a2;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-v2gWsth0kt .panel-group .card .panel-collapse .panel-body {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-v2gWsth0kt .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-v2gWsth0kt .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2gWsth0kt .label-wrapper {
  margin-bottom: 32px;
}
.cid-v2gWsth0kt .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f6efef;
  border-top: 2px solid #e2d8d8;
  box-shadow: 0 8px 20px -8px #272b2e;
}
.cid-v2gWsth0kt .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-v2gWsth0kt .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v2gWsth0kt .image-wrapper {
  height: 100%;
}
.cid-v2gWsth0kt .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v2gWsth0kt .image-wrapper img {
    height: 350px;
  }
}
.cid-v2gWsth0kt .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-v2gWsth0kt .panel-title-edit {
  color: #232323;
}
.cid-v2gWsth0kt .panel-text {
  color: #000000;
  text-align: justify;
}
.cid-v2gWsth0kt .mbr-label,
.cid-v2gWsth0kt .label-wrapper {
  text-align: center;
}
.cid-v2t3BIR6sH {
  padding-top: 0px;
  padding-bottom: 1px;
  background-color: #5e83a3;
}
.cid-v2t3BIR6sH .mbr-text {
  color: #8d97ad;
}
.cid-v2t3tFAx4p {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e2d8d8;
}
.cid-v2t3tFAx4p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2t3tFAx4p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2t3tFAx4p .container,
.cid-v2t3tFAx4p .container-fluid {
  padding: 0 0px;
}
@media (max-width: 992px) {
  .cid-v2t3tFAx4p .container,
  .cid-v2t3tFAx4p .container-fluid {
    padding: 0 20px;
  }
}
.cid-v2t3tFAx4p a {
  display: block;
}
.cid-v2t3tFAx4p a .logo-wrapper {
  padding: 0px 80px 0px 0;
  border-right: 1px solid #24557d;
  border-bottom: 1px solid #24557d;
}
@media (max-width: 992px) {
  .cid-v2t3tFAx4p a .logo-wrapper {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-v2t3tFAx4p a .logo-wrapper {
    padding: 50px 0;
  }
}
.cid-v2t3tFAx4p a .logo-wrapper img {
  height: 250px;
  width: 250px;
  object-fit: contain;
  border-radius: 10px;
  margin: 0 0 0 auto;
}
@media (max-width: 1200px) {
  .cid-v2t3tFAx4p a .logo-wrapper img {
    height: 200px;
    width: 200px;
  }
}
@media (max-width: 992px) {
  .cid-v2t3tFAx4p a .logo-wrapper img {
    margin: 0 auto;
  }
}
.cid-v2t3tFAx4p .copy-wrapper {
  padding: 24px 24px 24px 0;
  border-right: 1px solid #24557d;
}
@media (max-width: 992px) {
  .cid-v2t3tFAx4p .copy-wrapper {
    border-right: none;
  }
}
.cid-v2t3tFAx4p .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v2t3tFAx4p .list-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2t3tFAx4p .list-wrapper {
    height: auto;
    text-align: center;
  }
}
.cid-v2t3tFAx4p .list-wrapper .list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v2t3tFAx4p .list-wrapper .list {
    width: 100%;
    flex-wrap: wrap;
  }
}
.cid-v2t3tFAx4p .list-wrapper .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-out;
}
.cid-v2t3tFAx4p .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2t3tFAx4p .list-wrapper .list .item-wrap {
    margin-bottom: 22px;
  }
}
.cid-v2t3tFAx4p .list-wrapper .list .item-wrap:hover {
  text-decoration: underline;
}
.cid-v2t3tFAx4p .art {
  width: 55%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v2t3tFAx4p .art {
    width: 35%;
    margin-top: -25px;
  }
}
@media (max-width: 767px) {
  .cid-v2t3tFAx4p .art {
    width: 45%;
    margin-top: -25px;
  }
}
.cid-v2t3tFAx4p .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2t3tFAx4p .card-wrapper {
    margin-bottom: 50px;
  }
}
.cid-v2t3tFAx4p .card-wrapper .card-wrap {
  padding: 24px;
  background-color: #24557d;
  border-radius: 24px;
}
.cid-v2t3tFAx4p .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 42px;
}
.cid-v2t3tFAx4p .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 42px;
}
.cid-v2t3tFAx4p .copyright {
  color: #24557d;
  text-align: justify;
}
.cid-v2t3tFAx4p .mbr-section-title {
  color: #3d4045;
}
.cid-v2t3tFAx4p .mbr-text {
  color: #ffffff;
}
.cid-v2t3tFAx4p .list {
  color: #5e83a3;
}
.cid-v2t3tFAx4p .mbr-section-btn {
  text-align: right;
}
.cid-v2t3tFAx4p .mbr-section-title,
.cid-v2t3tFAx4p .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v2t3tFAx4p .btn {
  padding: 15px 54px !important;
}
.cid-v2sWdSTndM {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/cocher-1920x729.jpg");
  overflow: hidden;
  position: relative;
}
.cid-v2sWdSTndM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sWdSTndM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sWdSTndM::before,
.cid-v2sWdSTndM::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
}
.cid-v2sWdSTndM::before {
  top: 0;
}
.cid-v2sWdSTndM::after {
  bottom: 0;
}
.cid-v2sWdSTndM .content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v2sWdSTndM .content-wrapper {
    padding: 0 16px;
  }
}
.cid-v2sWdSTndM .content-wrapper::before,
.cid-v2sWdSTndM .content-wrapper::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 1000vh;
  background-color: #eaeaea;
}
.cid-v2sWdSTndM .content-wrapper::before {
  left: 0;
}
.cid-v2sWdSTndM .content-wrapper::after {
  right: 0;
}
.cid-v2sWdSTndM .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v2sWdSTndM .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2sWdSTndM .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v2sWdSTndM .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2sWdSTndM .mbr-section-title {
  color: #0a0a0a;
}
.cid-v2sWdSTndM .mbr-text {
  color: #0a0a0a;
}
.cid-v2sEG6XxYQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2d8d8;
}
.cid-v2sEG6XxYQ .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v2sEG6XxYQ .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v2sEG6XxYQ .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v2sEG6XxYQ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v2sEG6XxYQ .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-v2sEG6XxYQ .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-v2sEG6XxYQ .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-v2sEG6XxYQ .display-4 {
  line-height: 1.3;
}
.cid-v2sEG6XxYQ .line {
  display: inline-block;
}
.cid-v2sEG6XxYQ .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v2sEG6XxYQ .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sEG6XxYQ .wrapp {
    padding: 1rem;
  }
}
.cid-v2sQrDOBeZ {
  padding-top: 0px;
  padding-bottom: 1px;
  background-color: #5e83a3;
}
.cid-v2sQrDOBeZ .mbr-text {
  color: #8d97ad;
}
.cid-v2sPpc2dyH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e2d8d8;
}
.cid-v2sPpc2dyH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sPpc2dyH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sPpc2dyH .container,
.cid-v2sPpc2dyH .container-fluid {
  padding: 0 0px;
}
@media (max-width: 992px) {
  .cid-v2sPpc2dyH .container,
  .cid-v2sPpc2dyH .container-fluid {
    padding: 0 20px;
  }
}
.cid-v2sPpc2dyH a {
  display: block;
}
.cid-v2sPpc2dyH a .logo-wrapper {
  padding: 0px 80px 0px 0;
  border-right: 1px solid #24557d;
  border-bottom: 1px solid #24557d;
}
@media (max-width: 992px) {
  .cid-v2sPpc2dyH a .logo-wrapper {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-v2sPpc2dyH a .logo-wrapper {
    padding: 50px 0;
  }
}
.cid-v2sPpc2dyH a .logo-wrapper img {
  height: 250px;
  width: 250px;
  object-fit: contain;
  border-radius: 10px;
  margin: 0 0 0 auto;
}
@media (max-width: 1200px) {
  .cid-v2sPpc2dyH a .logo-wrapper img {
    height: 200px;
    width: 200px;
  }
}
@media (max-width: 992px) {
  .cid-v2sPpc2dyH a .logo-wrapper img {
    margin: 0 auto;
  }
}
.cid-v2sPpc2dyH .copy-wrapper {
  padding: 24px 24px 24px 0;
  border-right: 1px solid #24557d;
}
@media (max-width: 992px) {
  .cid-v2sPpc2dyH .copy-wrapper {
    border-right: none;
  }
}
.cid-v2sPpc2dyH .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v2sPpc2dyH .list-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2sPpc2dyH .list-wrapper {
    height: auto;
    text-align: center;
  }
}
.cid-v2sPpc2dyH .list-wrapper .list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v2sPpc2dyH .list-wrapper .list {
    width: 100%;
    flex-wrap: wrap;
  }
}
.cid-v2sPpc2dyH .list-wrapper .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-out;
}
.cid-v2sPpc2dyH .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2sPpc2dyH .list-wrapper .list .item-wrap {
    margin-bottom: 22px;
  }
}
.cid-v2sPpc2dyH .list-wrapper .list .item-wrap:hover {
  text-decoration: underline;
}
.cid-v2sPpc2dyH .art {
  width: 55%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v2sPpc2dyH .art {
    width: 35%;
    margin-top: -25px;
  }
}
@media (max-width: 767px) {
  .cid-v2sPpc2dyH .art {
    width: 45%;
    margin-top: -25px;
  }
}
.cid-v2sPpc2dyH .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2sPpc2dyH .card-wrapper {
    margin-bottom: 50px;
  }
}
.cid-v2sPpc2dyH .card-wrapper .card-wrap {
  padding: 24px;
  background-color: #24557d;
  border-radius: 24px;
}
.cid-v2sPpc2dyH .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 42px;
}
.cid-v2sPpc2dyH .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 42px;
}
.cid-v2sPpc2dyH .copyright {
  color: #24557d;
  text-align: justify;
}
.cid-v2sPpc2dyH .mbr-section-title {
  color: #3d4045;
}
.cid-v2sPpc2dyH .mbr-text {
  color: #ffffff;
}
.cid-v2sPpc2dyH .list {
  color: #5e83a3;
}
.cid-v2sPpc2dyH .mbr-section-btn {
  text-align: right;
}
.cid-v2sPpc2dyH .mbr-section-title,
.cid-v2sPpc2dyH .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v2sPpc2dyH .btn {
  padding: 15px 54px !important;
}
.cid-v2sDEm9FtH {
  padding-top: 1px;
  padding-bottom: 1px;
  background-color: #5e83a3;
}
.cid-v2sDEm9FtH .mbr-text {
  color: #8d97ad;
}
.cid-v2sNSsQl0k {
  background-image: url("../../../assets/images/eglise-beaudean-1858x1045.jpg");
}
.cid-v2sNSsQl0k .row {
  margin-left: 35rem;
}
.cid-v2sNSsQl0k .slider-text-two {
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(255, 255, 255, 0.8);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-v2sNSsQl0k .mbr-section-title,
.cid-v2sNSsQl0k .mbr-section-subtitle {
  color: #232323;
}
.cid-v2sNSsQl0k .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-v2sNSsQl0k .mbr-text {
  color: #ffffff;
  font-weight: 100;
}
.cid-v2sNSsQl0k .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-v2sNSsQl0k .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v2sNSsQl0k .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.9);
  }
}
.cid-v2sNSsQl0k .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-v2sNSsQl0k .mbr-section-subtitle {
  color: #efefef;
  text-align: center;
}
.cid-v2sNSsQl0k .wrap-img img {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  display: revert;
}
.cid-v2sNSsQl0k .hr {
  color: #ffffff;
  width: 100%;
  opacity: 1;
}
.cid-v2sNSsQl0k mbr-section-subtitle {
  text-align: center;
}
.cid-v2sNSsQl0k H3 {
  color: #ffffff;
  font-size: 100px;
}
.cid-uvynpwjOjH {
  background-image: url("../../../assets/images/eglise-beaudean-1858x1045.jpg");
}
.cid-uvynpwjOjH .row {
  margin-left: 35rem;
}
.cid-uvynpwjOjH .slider-text-two {
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(255, 255, 255, 0.8);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-uvynpwjOjH .mbr-section-title,
.cid-uvynpwjOjH .mbr-section-subtitle {
  color: #232323;
}
.cid-uvynpwjOjH .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-uvynpwjOjH .mbr-text {
  color: #ffffff;
  font-weight: 100;
}
.cid-uvynpwjOjH .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-uvynpwjOjH .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvynpwjOjH .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.9);
  }
}
.cid-uvynpwjOjH .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uvynpwjOjH .mbr-section-subtitle {
  color: #efefef;
  text-align: center;
}
.cid-uvynpwjOjH .wrap-img img {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  display: revert;
}
.cid-uvynpwjOjH .hr {
  color: #ffffff;
  width: 100%;
  opacity: 1;
}
.cid-uvynpwjOjH mbr-section-subtitle {
  text-align: center;
}
.cid-uvynpwjOjH H3 {
  color: #ffffff;
  font-size: 100px;
}
.cid-ut0njs0ilB {
  padding-top: 6rem;
  padding-bottom: 26rem;
  background-image: url("../../../assets/images/daniel-soucaze-1-1920x1080.jpg");
}
.cid-ut0njs0ilB .mbr-section-subtitle {
  line-height: 40px;
  margin-bottom: 16px;
  margin-top: 110px;
  padding-bottom: 50px;
  padding-left: 10px;
  color: #ffffff;
  letter-spacing: 0.1px;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-ut0njs0ilB .mbr-section-subtitle {
    font-size: 18px;
    text-align: center;
  }
}
.cid-ut0njs0ilB .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-ut0njs0ilB .mbr-section-title {
    margin-top: -11px !important;
  }
}
.cid-ut0njs0ilB .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-ut0njs0ilB .image img {
  width: 10%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ut0njs0ilB .image img {
    width: 80%;
    height: 80%;
    margin: auto;
  }
}
.cid-ut0njs0ilB .mbr-text {
  margin-top: 30px;
}
.cid-ut0njs0ilB .slogan {
  font-family: Lobster;
  transform: rotate(-6deg);
  font-size: 80px;
}
@media (max-width: 767px) {
  .cid-ut0njs0ilB .slogan {
    font-size: 50px;
  }
}
.cid-ut0njs0ilB .display-1 {
  font-size: 80px;
}
@media (max-width: 992px) {
  .cid-ut0njs0ilB .display-1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ut0njs0ilB .display-1 {
    font-size: 40px;
    text-align: center;
  }
}
.cid-ut0njs0ilB .card {
  margin-top: -50px;
}
.cid-ut0njs0ilB .nav-tabs {
  flex-wrap: wrap;
  justify-content: center;
  border: none;
  margin-bottom: 50px;
  margin-top: -60px;
}
@media (max-width: 767px) {
  .cid-ut0njs0ilB .nav-tabs {
    margin-top: -65px;
  }
}
.cid-ut0njs0ilB .nav-item {
  width: 170px;
  min-height: 20px;
}
.cid-ut0njs0ilB .nav-item .mbr-iconfont {
  margin: 0;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 34px;
  line-height: 70px;
  text-align: center;
  margin-bottom: 5px;
}
.cid-ut0njs0ilB .tab1 {
  background-color: #4f7566;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.cid-ut0njs0ilB .tab2 {
  background-color: #1a3459;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.cid-ut0njs0ilB .tab3 {
  background-color: #24557d;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.cid-ut0njs0ilB .tab4 {
  background-color: #a3735d;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.cid-ut0njs0ilB .tab5 {
  background-color: #b5310b;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.cid-ut0njs0ilB .nav-tabs .nav-link {
  padding: 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px !important;
  border: none;
  color: #879a9f !important;
}
.cid-ut0njs0ilB .nav-tabs .nav-item {
  margin: 5px;
}
@media (max-width: 991px) {
  .cid-ut0njs0ilB .title_block {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ut0njs0ilB .nav-item {
    width: 46%;
    min-height: 150px;
  }
  .cid-ut0njs0ilB .nav-item .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .cid-ut0njs0ilB .mbr-text {
    margin-top: 20px;
  }
  .cid-ut0njs0ilB .nav-tabs .nav-link {
    padding: 25px 10px;
  }
  .cid-ut0njs0ilB .nav-tabs .nav-item {
    margin: 0 10px 10px 0;
  }
  .cid-ut0njs0ilB .nav-tabs {
    margin-bottom: 30px;
  }
}
.cid-ut0njs0ilB .mbr-text,
.cid-ut0njs0ilB .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ut0njs0ilB p {
    font-size: 18px;
  }
}
.cid-ut0njs0ilB .mbr-section-subtitle,
.cid-ut0njs0ilB .subtitle-wrapper {
  color: #ffffff;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ut0njs0ilB .mbr-section-subtitle,
  .cid-ut0njs0ilB .subtitle-wrapper {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-ut0njs0ilB .mbr-section-subtitle,
  .cid-ut0njs0ilB .subtitle-wrapper {
    text-align: center;
  }
}
.cid-v2alhAglel {
  padding-top: 75px;
  padding-bottom: 105px;
  background-color: #e2d8d8;
}
.cid-v2alhAglel H1 {
  color: #ffffff;
}
.cid-v2alhAglel .mbr-text,
.cid-v2alhAglel .mbr-section-btn {
  color: #24557d;
  text-align: justify;
  margin-right: 100px;
}
@media (max-width: 992px) {
  .cid-v2alhAglel .mbr-text,
  .cid-v2alhAglel .mbr-section-btn {
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .cid-v2alhAglel .mbr-text,
  .cid-v2alhAglel .mbr-section-btn {
    margin-right: 0px;
  }
}
.cid-v2alhAglel H3 {
  color: #24557d;
}
.cid-v2alhAglel .mbr-section-title {
  color: #24557d;
  text-align: center;
}
.cid-v2alhAglel img {
  border-radius: 0px !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.cid-v2naMFM0Md {
  padding-top: 0px;
  padding-bottom: 1px;
  background-color: #5e83a3;
}
.cid-v2naMFM0Md .mbr-text {
  color: #8d97ad;
}
.cid-v2n6qbELiP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e2d8d8;
}
.cid-v2n6qbELiP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2n6qbELiP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2n6qbELiP .container,
.cid-v2n6qbELiP .container-fluid {
  padding: 0 0px;
}
@media (max-width: 992px) {
  .cid-v2n6qbELiP .container,
  .cid-v2n6qbELiP .container-fluid {
    padding: 0 20px;
  }
}
.cid-v2n6qbELiP a {
  display: block;
}
.cid-v2n6qbELiP a .logo-wrapper {
  padding: 0px 80px 0px 0;
  border-right: 1px solid #24557d;
  border-bottom: 1px solid #24557d;
}
@media (max-width: 992px) {
  .cid-v2n6qbELiP a .logo-wrapper {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-v2n6qbELiP a .logo-wrapper {
    padding: 50px 0;
  }
}
.cid-v2n6qbELiP a .logo-wrapper img {
  height: 250px;
  width: 250px;
  object-fit: contain;
  border-radius: 10px;
  margin: 0 0 0 auto;
}
@media (max-width: 1200px) {
  .cid-v2n6qbELiP a .logo-wrapper img {
    height: 200px;
    width: 200px;
  }
}
@media (max-width: 992px) {
  .cid-v2n6qbELiP a .logo-wrapper img {
    margin: 0 auto;
  }
}
.cid-v2n6qbELiP .copy-wrapper {
  padding: 24px 24px 24px 0;
  border-right: 1px solid #24557d;
}
@media (max-width: 992px) {
  .cid-v2n6qbELiP .copy-wrapper {
    border-right: none;
  }
}
.cid-v2n6qbELiP .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v2n6qbELiP .list-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2n6qbELiP .list-wrapper {
    height: auto;
    text-align: center;
  }
}
.cid-v2n6qbELiP .list-wrapper .list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v2n6qbELiP .list-wrapper .list {
    width: 100%;
    flex-wrap: wrap;
  }
}
.cid-v2n6qbELiP .list-wrapper .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-out;
}
.cid-v2n6qbELiP .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2n6qbELiP .list-wrapper .list .item-wrap {
    margin-bottom: 22px;
  }
}
.cid-v2n6qbELiP .list-wrapper .list .item-wrap:hover {
  text-decoration: underline;
}
.cid-v2n6qbELiP .art {
  width: 55%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v2n6qbELiP .art {
    width: 35%;
    margin-top: -25px;
  }
}
@media (max-width: 767px) {
  .cid-v2n6qbELiP .art {
    width: 45%;
    margin-top: -25px;
  }
}
.cid-v2n6qbELiP .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2n6qbELiP .card-wrapper {
    margin-bottom: 50px;
  }
}
.cid-v2n6qbELiP .card-wrapper .card-wrap {
  padding: 24px;
  background-color: #24557d;
  border-radius: 24px;
}
.cid-v2n6qbELiP .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 42px;
}
.cid-v2n6qbELiP .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 42px;
}
.cid-v2n6qbELiP .copyright {
  color: #24557d;
  text-align: justify;
}
.cid-v2n6qbELiP .mbr-section-title {
  color: #3d4045;
}
.cid-v2n6qbELiP .mbr-text {
  color: #ffffff;
}
.cid-v2n6qbELiP .list {
  color: #5e83a3;
}
.cid-v2n6qbELiP .mbr-section-btn {
  text-align: right;
}
.cid-v2n6qbELiP .mbr-section-title,
.cid-v2n6qbELiP .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v2n6qbELiP .btn {
  padding: 15px 54px !important;
}
