body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 6.8rem;
  line-height: 1.15;
}
.display-1 > .mbr-iconfont {
  font-size: 8.5rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  line-height: 1.15;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.5rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 5.44rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.76rem;
    font-size: calc( 3.03rem + (6.8 - 3.03) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.03rem + (6.8 - 3.03) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e7c1ff !important;
}
.bg-success {
  background-color: #fff8ae !important;
}
.bg-info {
  background-color: #c3dfff !important;
}
.bg-warning {
  background-color: #f5db6e !important;
}
.bg-danger {
  background-color: #b63b07 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e7c1ff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #131313 !important;
  background-color: #e7c1ff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #131313 !important;
  background-color: #c56aff !important;
  border-color: #c56aff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e7c1ff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #131313 !important;
  background-color: #e7c1ff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #131313 !important;
  background-color: #c56aff !important;
  border-color: #c56aff !important;
}
.btn-info,
.btn-info:active {
  background-color: #c3dfff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #131313 !important;
  background-color: #c3dfff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #131313 !important;
  background-color: #6cb1ff !important;
  border-color: #6cb1ff !important;
}
.btn-success,
.btn-success:active {
  background-color: #fff8ae !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #131313 !important;
  background-color: #fff8ae !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #131313 !important;
  background-color: #fff157 !important;
  border-color: #fff157 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #131313 !important;
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #131313 !important;
  background-color: #efc71d !important;
  border-color: #efc71d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #131313 !important;
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #131313 !important;
  background-color: #632004 !important;
  border-color: #632004 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #131313 !important;
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #131313 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #131313 !important;
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #131313 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e7c1ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c56aff !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #7600c1 !important;
  background-color: #e7c1ff !important;
  border-color: #e7c1ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e7c1ff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c56aff !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #7600c1 !important;
  background-color: #e7c1ff !important;
  border-color: #e7c1ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c3dfff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #6cb1ff !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #005bc3 !important;
  background-color: #c3dfff !important;
  border-color: #c3dfff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fff8ae;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #fff157 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ae9f00 !important;
  background-color: #fff8ae !important;
  border-color: #fff8ae !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f5db6e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #efc71d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5e4d06 !important;
  background-color: #f5db6e !important;
  border-color: #f5db6e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b63b07;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #632004 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b63b07 !important;
  border-color: #b63b07 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #131313;
}
.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: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #131313 !important;
  border-color: #131313 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #e7c1ff !important;
}
.text-secondary {
  color: #e7c1ff !important;
}
.text-success {
  color: #fff8ae !important;
}
.text-info {
  color: #c3dfff !important;
}
.text-warning {
  color: #f5db6e !important;
}
.text-danger {
  color: #b63b07 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #131313 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #c05bff !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c05bff !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ffef48 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #5da9ff !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #edc210 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #541b03 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e7c1ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #131313;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #c3dfff;
}
.alert-warning {
  background-color: #f5db6e;
}
.alert-danger {
  background-color: #b63b07;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e7c1ff;
  border-color: #e7c1ff;
  color: #8600db;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e7c1ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f87a45;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #e7c1ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #e7c1ff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e7c1ff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e7c1ff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e7c1ff;
  border-bottom-color: #e7c1ff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #e7c1ff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #e7c1ff !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='%23e7c1ff' %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: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1440px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
.container-small {
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  word-wrap: break-word;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1500px) {
  .container-small {
    max-width: 1180px;
  }
}
@media (max-width: 1024px) {
  .container-small {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .container-small {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .container-small {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.container-fluid {
  max-width: 1724px;
  padding-left: 12px;
  padding-right: 12px;
}
.row {
  margin-left: -12px;
  margin-right: -12px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 12px;
  padding-right: 12px;
}
b,
strong {
  font-weight: 600 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 68px;
  padding: 20px 44px;
  border-radius: 0;
  font-weight: 600 !important;
  transition: all .3s;
}
@media (max-width: 1199px) {
  .mbr-section-btn .btn {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .mbr-section-btn .btn {
    padding: 15px 20px;
  }
}
.mbr-section-btn .btn-black {
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 4px 4px 0 #FFFFFF !important;
}
.mbr-section-btn .btn-black:hover {
  box-shadow: none !important;
}
.cid-umCdMoCvae {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-umCdMoCvae nav.navbar {
  position: fixed;
}
.cid-umCdMoCvae .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umCdMoCvae .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umCdMoCvae .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umCdMoCvae .dropdown-item:hover,
.cid-umCdMoCvae .dropdown-item:focus {
  background: #e7c1ff !important;
  color: white !important;
}
.cid-umCdMoCvae .dropdown-item:hover span {
  color: white;
}
.cid-umCdMoCvae .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umCdMoCvae .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umCdMoCvae .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umCdMoCvae .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umCdMoCvae .nav-link {
  position: relative;
}
.cid-umCdMoCvae .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umCdMoCvae .container {
    flex-wrap: nowrap;
  }
}
.cid-umCdMoCvae .navbar-nav {
  margin: 0 auto;
}
.cid-umCdMoCvae .dropdown-menu,
.cid-umCdMoCvae .navbar.opened {
  background: #ffffff !important;
}
.cid-umCdMoCvae .nav-item:focus,
.cid-umCdMoCvae .nav-link:focus {
  outline: none;
}
.cid-umCdMoCvae .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umCdMoCvae .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umCdMoCvae .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umCdMoCvae .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umCdMoCvae .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umCdMoCvae .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umCdMoCvae .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-umCdMoCvae .navbar.opened {
  transition: all 0.3s;
}
.cid-umCdMoCvae .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umCdMoCvae .navbar .navbar-logo img {
  width: auto;
}
.cid-umCdMoCvae .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umCdMoCvae .navbar.collapsed {
  justify-content: center;
}
.cid-umCdMoCvae .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umCdMoCvae .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umCdMoCvae .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umCdMoCvae .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umCdMoCvae .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umCdMoCvae .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umCdMoCvae .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umCdMoCvae .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-umCdMoCvae .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umCdMoCvae .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umCdMoCvae .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umCdMoCvae .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umCdMoCvae .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umCdMoCvae .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umCdMoCvae .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umCdMoCvae .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umCdMoCvae .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umCdMoCvae .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umCdMoCvae .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umCdMoCvae .navbar.navbar-short {
  min-height: 60px;
}
.cid-umCdMoCvae .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umCdMoCvae .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-umCdMoCvae .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umCdMoCvae .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umCdMoCvae .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umCdMoCvae .dropdown-item.active,
.cid-umCdMoCvae .dropdown-item:active {
  background-color: transparent;
}
.cid-umCdMoCvae .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umCdMoCvae .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umCdMoCvae .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umCdMoCvae .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-umCdMoCvae .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umCdMoCvae .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umCdMoCvae ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umCdMoCvae .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-umCdMoCvae button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umCdMoCvae button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-umCdMoCvae button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umCdMoCvae button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umCdMoCvae button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umCdMoCvae button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umCdMoCvae nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umCdMoCvae nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umCdMoCvae nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umCdMoCvae nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umCdMoCvae .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umCdMoCvae a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umCdMoCvae .navbar {
    height: 70px;
  }
  .cid-umCdMoCvae .navbar.opened {
    height: auto;
  }
  .cid-umCdMoCvae .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umCdMoCvae .container,
.cid-umCdMoCvae .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-umCdMoCvae .navbar-short {
  background-color: #ffffff !important;
}
.cid-umCdMoCvae .navbar-short .container,
.cid-umCdMoCvae .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-umCdMoCvae .navbar-short .container:before,
.cid-umCdMoCvae .navbar-short .container-fluid:before {
  display: none;
}
.cid-umCdMoCvae .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-umCdMoCvae .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-umCdMoCvae .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-umCdMoCvae .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-umCdMoCvae .container,
  .cid-umCdMoCvae .container-fluid {
    min-height: 85px;
  }
  .cid-umCdMoCvae .navbar-brand {
    min-height: 85px;
  }
  .cid-umCdMoCvae .navbar-short .container,
  .cid-umCdMoCvae .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-umCdMoCvae .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-umCdMoCvae .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-umCdMoCvae .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-umCdMoCvae .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-umCdMoCvae .mbr-section-btn {
    text-align: left;
  }
  .cid-umCdMoCvae .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-umCdMoCvae .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-umCdPlzug2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bg-1920x1080.jpg");
}
.cid-umCdPlzug2 .container-fluid {
  padding-right: 0;
  padding-left: 0;
  height: 100%;
}
.cid-umCdPlzug2 .image-wrapper {
  height: 100%;
}
.cid-umCdPlzug2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uqukPsT1Lb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqukPsT1Lb .row {
  align-items: center;
}
.cid-uqukPsT1Lb .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uqukPsT1Lb .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uqukPsT1Lb .header-text {
    margin-bottom: 20px;
  }
}
.cid-uqukPsT1Lb .mbr-section-title {
  width: 100%;
  color: #111111;
  margin-bottom: 8px;
}
.cid-uqukPsT1Lb .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uqukPsT1Lb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqukPsT1Lb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqvfFIMFho {
  padding-top: 0;
  padding-bottom: 0;
  background-image: linear-gradient(180deg, #ed8692 0, #f7c4cd 100%);
}
.cid-uqvfFIMFho .container-fluid {
  padding: 0;
}
.cid-uqvfFIMFho .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.cid-uqvfFIMFho .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (min-width: 992px) {
  .cid-uqvfFIMFho .card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  .cid-uqvfFIMFho .card:hover:before {
    opacity: 0;
  }
  .cid-uqvfFIMFho .card:hover:after {
    opacity: 1;
  }
  .cid-uqvfFIMFho .card:hover .image-wrapper {
    border-radius: 40px;
  }
}
.cid-uqvfFIMFho .card:nth-child(1) {
  background-image: linear-gradient(180deg, #ed8692 0, #f7c4cd 100%);
}
.cid-uqvfFIMFho .card:nth-child(1):before {
  background-image: linear-gradient(180deg, #ed8692 0, #f7c4cd 100%);
}
.cid-uqvfFIMFho .card:nth-child(1):after {
  background-image: linear-gradient(360deg, #ed8692 0, #f7c4cd 100%);
}
.cid-uqvfFIMFho .card:nth-child(2) {
  background-image: linear-gradient(180deg, #ed8692 0, #f7c4cd 100%);
}
.cid-uqvfFIMFho .card:nth-child(2):before {
  background-image: linear-gradient(180deg, #ed8692 0, #f7c4cd 100%);
}
.cid-uqvfFIMFho .card:nth-child(2):after {
  background-image: linear-gradient(360deg, #ed8692 0, #f7c4cd 100%);
}
.cid-uqvfFIMFho .card-wrapper {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 25px 60px;
}
.cid-uqvfFIMFho .card-title {
  width: 100%;
  margin-bottom: 54px;
  color: #FFFFFF;
}
@media (max-width: 1399px) {
  .cid-uqvfFIMFho .card-title {
    margin-bottom: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uqvfFIMFho .card-title {
    margin-bottom: 45px;
  }
}
.cid-uqvfFIMFho .image-wrapper {
  width: 39.92vw;
  max-width: 600px;
  border-radius: 50%;
  overflow: hidden;
  transition: border-radius 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (max-width: 991px) {
  .cid-uqvfFIMFho .image-wrapper {
    width: 70%;
    max-width: 70%;
  }
}
.cid-uqvfFIMFho .image-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.cid-uqvfFIMFho .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .cid-uqvfFIMFho .mbr-section-btn {
    margin-top: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uqvfFIMFho .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uqvjzGrPI8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqvjzGrPI8 .row {
  align-items: center;
}
.cid-uqvjzGrPI8 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uqvjzGrPI8 .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uqvjzGrPI8 .header-text {
    margin-bottom: 20px;
  }
}
.cid-uqvjzGrPI8 .mbr-section-title {
  width: 100%;
  color: #111111;
  margin-bottom: 8px;
}
.cid-uqvjzGrPI8 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uqvjzGrPI8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqvjzGrPI8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uquhtGylOE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2b4b0;
}
.cid-uquhtGylOE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uquhtGylOE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uquhtGylOE .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uquhtGylOE .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uquhtGylOE .embla__slide .slide-content {
  width: 100%;
}
.cid-uquhtGylOE .embla__slide .slide-content .item-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
@media (max-width: 992px) {
  .cid-uquhtGylOE .embla__slide .slide-content .item-wrapper {
    padding: 30px 20px;
    display: block;
  }
}
.cid-uquhtGylOE .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  width: 44%;
  padding: 70px 0 70px 50px;
  padding: 70px 50px 70px 0;
}
@media (max-width: 992px) {
  .cid-uquhtGylOE .embla__slide .slide-content .item-wrapper .item-content {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uquhtGylOE .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0;
  }
}
.cid-uquhtGylOE .embla__slide .slide-content .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
}
.cid-uquhtGylOE .embla__slide .slide-content .item-wrapper .item-content .item-title span {
  color: #ed463f;
}
.cid-uquhtGylOE .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.cid-uquhtGylOE .embla__slide .slide-content .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uquhtGylOE .embla__slide .slide-content .item-wrapper .item-img {
  width: 46%;
}
@media (max-width: 992px) {
  .cid-uquhtGylOE .embla__slide .slide-content .item-wrapper .item-img {
    width: 100%;
    margin-top: 20px;
  }
}
.cid-uquhtGylOE .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uquhtGylOE .embla__slide .slide-content .item-wrapper .item-img img {
    min-height: 180px;
  }
}
.cid-uquhtGylOE .embla__button--next,
.cid-uquhtGylOE .embla__button--prev {
  display: flex;
}
.cid-uquhtGylOE .embla__button {
  bottom: 30px;
  width: 40px;
  height: 40px;
  font-size: 16px;
  background-color: #404349 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-uquhtGylOE .embla__button {
    bottom: 0;
  }
}
.cid-uquhtGylOE .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uquhtGylOE .embla__button:hover {
  background-color: #f7c4cd !important;
}
.cid-uquhtGylOE .embla__button.embla__button--prev {
  right: 90px;
  right: auto;
  left: 30px;
}
.cid-uquhtGylOE .embla__button.embla__button--next {
  right: 30px;
  right: auto;
  left: 90px;
}
.cid-uquhtGylOE .embla {
  position: relative;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uquhtGylOE .embla {
    padding-bottom: 4rem;
  }
}
.cid-uquhtGylOE .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
  background-color: #f2b4b0;
}
.cid-uquhtGylOE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uquhtGylOE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uquhtGylOE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uquhtGylOE .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uquhtGylOE .mbr-section-title {
  color: #404349;
}
.cid-uquhtGylOE .mbr-text {
  color: #404349;
}
.cid-uquhtGylOE .mbr-desc {
  color: #404349;
}
.cid-uquhtGylOE .item-text {
  text-align: left;
}
.cid-umCf9Ppf8e {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #c3dfff;
}
.cid-umCf9Ppf8e img,
.cid-umCf9Ppf8e .item-img {
  width: 100%;
}
.cid-umCf9Ppf8e .item:focus,
.cid-umCf9Ppf8e span:focus {
  outline: none;
}
.cid-umCf9Ppf8e .item-wrapper {
  position: relative;
}
.cid-umCf9Ppf8e .slide-content {
  position: relative;
  border-radius: 4px;
  background: #c3dfff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-umCf9Ppf8e .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-umCf9Ppf8e .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-umCf9Ppf8e .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-umCf9Ppf8e .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-umCf9Ppf8e .mbr-section-btn {
  margin-top: auto !important;
}
.cid-umCf9Ppf8e .mbr-section-title {
  color: #e1504e;
  text-align: center;
}
.cid-umCf9Ppf8e .mbr-text,
.cid-umCf9Ppf8e .mbr-section-btn {
  text-align: center;
}
.cid-umCf9Ppf8e .item-title {
  text-align: center;
}
.cid-umCf9Ppf8e .item-subtitle {
  text-align: left;
}
.cid-umCf9Ppf8e .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-umCf9Ppf8e .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-umCf9Ppf8e .embla__button--next,
.cid-umCf9Ppf8e .embla__button--prev {
  display: flex;
}
.cid-umCf9Ppf8e .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-umCf9Ppf8e .embla__button {
    display: none;
  }
}
.cid-umCf9Ppf8e .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-umCf9Ppf8e .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-umCf9Ppf8e .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umCf9Ppf8e .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umCf9Ppf8e .embla__button {
    top: auto;
  }
}
.cid-umCf9Ppf8e .embla {
  position: relative;
  width: 100%;
}
.cid-umCf9Ppf8e .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-umCf9Ppf8e .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-umCf9Ppf8e .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-umCf9Ppf8e .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-un5ZPzdBMV {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #f0d8ff;
}
.cid-un5ZPzdBMV img,
.cid-un5ZPzdBMV .item-img {
  width: 100%;
}
.cid-un5ZPzdBMV .item:focus,
.cid-un5ZPzdBMV span:focus {
  outline: none;
}
.cid-un5ZPzdBMV .item-wrapper {
  position: relative;
}
.cid-un5ZPzdBMV .slide-content {
  position: relative;
  border-radius: 4px;
  background: #f0d8ff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-un5ZPzdBMV .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-un5ZPzdBMV .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-un5ZPzdBMV .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-un5ZPzdBMV .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-un5ZPzdBMV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-un5ZPzdBMV .mbr-section-title {
  color: #e35250;
}
.cid-un5ZPzdBMV .mbr-text,
.cid-un5ZPzdBMV .mbr-section-btn {
  text-align: center;
  color: #131313;
}
.cid-un5ZPzdBMV .item-title {
  text-align: center;
}
.cid-un5ZPzdBMV .item-subtitle {
  text-align: left;
}
.cid-un5ZPzdBMV .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-un5ZPzdBMV .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-un5ZPzdBMV .embla__button--next,
.cid-un5ZPzdBMV .embla__button--prev {
  display: flex;
}
.cid-un5ZPzdBMV .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-un5ZPzdBMV .embla__button {
    display: none;
  }
}
.cid-un5ZPzdBMV .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-un5ZPzdBMV .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-un5ZPzdBMV .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-un5ZPzdBMV .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-un5ZPzdBMV .embla__button {
    top: auto;
  }
}
.cid-un5ZPzdBMV .embla {
  position: relative;
  width: 100%;
}
.cid-un5ZPzdBMV .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-un5ZPzdBMV .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-un5ZPzdBMV .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-un5ZPzdBMV .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-un63G8hLJZ {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fffbd4;
}
.cid-un63G8hLJZ img,
.cid-un63G8hLJZ .item-img {
  width: 100%;
}
.cid-un63G8hLJZ .item:focus,
.cid-un63G8hLJZ span:focus {
  outline: none;
}
.cid-un63G8hLJZ .item-wrapper {
  position: relative;
}
.cid-un63G8hLJZ .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fffbd4;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-un63G8hLJZ .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-un63G8hLJZ .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-un63G8hLJZ .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-un63G8hLJZ .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-un63G8hLJZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-un63G8hLJZ .mbr-section-title {
  color: #232323;
}
.cid-un63G8hLJZ .mbr-text,
.cid-un63G8hLJZ .mbr-section-btn {
  text-align: center;
}
.cid-un63G8hLJZ .item-title {
  text-align: center;
}
.cid-un63G8hLJZ .item-subtitle {
  text-align: left;
}
.cid-un63G8hLJZ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-un63G8hLJZ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-un63G8hLJZ .embla__button--next,
.cid-un63G8hLJZ .embla__button--prev {
  display: flex;
}
.cid-un63G8hLJZ .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-un63G8hLJZ .embla__button {
    display: none;
  }
}
.cid-un63G8hLJZ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-un63G8hLJZ .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-un63G8hLJZ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-un63G8hLJZ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-un63G8hLJZ .embla__button {
    top: auto;
  }
}
.cid-un63G8hLJZ .embla {
  position: relative;
  width: 100%;
}
.cid-un63G8hLJZ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-un63G8hLJZ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-un63G8hLJZ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-un63G8hLJZ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-un63G8hLJZ .mbr-section-subtitle {
  color: #e35250;
}
.cid-un67I9GDUJ {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #c3dfff;
}
.cid-un67I9GDUJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-un67I9GDUJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-un67I9GDUJ .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-un67I9GDUJ .team-card:hover {
  transform: translateY(-10px);
}
.cid-un67I9GDUJ .card-wrap {
  background: #c3dfff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-un67I9GDUJ .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-un67I9GDUJ .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-un67I9GDUJ .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-un67I9GDUJ .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-un67I9GDUJ .social-row {
  text-align: center;
}
.cid-un67I9GDUJ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-un67I9GDUJ .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-un67I9GDUJ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-un67I9GDUJ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-un67I9GDUJ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-un67I9GDUJ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-un67I9GDUJ .embla__button--next,
.cid-un67I9GDUJ .embla__button--prev {
  display: flex;
}
.cid-un67I9GDUJ .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-un67I9GDUJ .embla__button {
    display: none;
  }
}
.cid-un67I9GDUJ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-un67I9GDUJ .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-un67I9GDUJ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-un67I9GDUJ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-un67I9GDUJ .embla__button {
    top: auto;
  }
}
.cid-un67I9GDUJ .embla {
  position: relative;
  width: 100%;
}
.cid-un67I9GDUJ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-un67I9GDUJ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-un67I9GDUJ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-un67I9GDUJ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-un67I9GDUJ .mbr-section-title {
  color: #e35250;
}
.cid-un6bsoPeJS {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #f0d8ff;
}
.cid-un6bsoPeJS .item:focus,
.cid-un6bsoPeJS span:focus {
  outline: none;
}
.cid-un6bsoPeJS .item-wrapper {
  position: relative;
}
.cid-un6bsoPeJS .slide-content {
  position: relative;
  border-radius: 4px;
  background: #f0d8ff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-un6bsoPeJS .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-un6bsoPeJS .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-un6bsoPeJS .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-un6bsoPeJS .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-un6bsoPeJS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-un6bsoPeJS .mbr-section-title {
  color: #e35250;
}
.cid-un6bsoPeJS .mbr-text,
.cid-un6bsoPeJS .mbr-section-btn {
  text-align: center;
}
.cid-un6bsoPeJS .item-title {
  text-align: center;
}
.cid-un6bsoPeJS .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-un6bsoPeJS .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-un6bsoPeJS .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-un6bsoPeJS .embla__button--next,
.cid-un6bsoPeJS .embla__button--prev {
  display: flex;
}
.cid-un6bsoPeJS .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-un6bsoPeJS .embla__button {
    display: none;
  }
}
.cid-un6bsoPeJS .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-un6bsoPeJS .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-un6bsoPeJS .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-un6bsoPeJS .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-un6bsoPeJS .embla__button {
    top: auto;
  }
}
.cid-un6bsoPeJS .embla {
  position: relative;
  width: 100%;
}
.cid-un6bsoPeJS .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-un6bsoPeJS .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-un6bsoPeJS .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-un6bsoPeJS .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-un6lAnTd2p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-un6lAnTd2p .mbr-fallback-image.disabled {
  display: none;
}
.cid-un6lAnTd2p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-un6lAnTd2p .container {
    padding: 0 6px;
  }
}
.cid-un6lAnTd2p .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-un6lAnTd2p .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-un6lAnTd2p .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-un6lAnTd2p .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-un6lAnTd2p .row {
    padding: 70px 30px;
  }
}
.cid-un6lAnTd2p .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-un6lAnTd2p .title-wrapper {
  margin-bottom: 64px;
}
.cid-un6lAnTd2p .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-un6lAnTd2p .title-wrapper .mbr-section-title span {
  color: #fffa7d;
}
.cid-un6lAnTd2p .tabs-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.cid-un6lAnTd2p .tabs-wrap .nav.nav-tabs {
  display: inline-flex;
  border: none;
}
.cid-un6lAnTd2p .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: 1px solid #cfcfcf;
  border-radius: 50px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.cid-un6lAnTd2p .tabs-wrap .nav.nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.cid-un6lAnTd2p .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  margin-bottom: 0;
  border: none;
  color: #131313;
  border-radius: 0 !important;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-un6lAnTd2p .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active {
  color: #ffffff;
  background-color: #000000;
}
.cid-un6lAnTd2p .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .cid-un6lAnTd2p .content-wrapper {
    display: block;
  }
}
.cid-un6lAnTd2p .content-wrapper .item {
  position: relative;
  margin-bottom: 90px;
}
.cid-un6lAnTd2p .content-wrapper .item:hover,
.cid-un6lAnTd2p .content-wrapper .item:focus {
  cursor: pointer;
}
.cid-un6lAnTd2p .content-wrapper .item:nth-child(3n) .item-decor {
  background-color: #eec4f8;
}
.cid-un6lAnTd2p .content-wrapper .item:nth-child(3n) .item-wrapper .item-img {
  background-color: #eec4f8;
}
.cid-un6lAnTd2p .content-wrapper .item .item-decor {
  position: absolute;
  top: -30px;
  left: 0;
  height: 50px;
  width: 150px;
  background-color: #eec4f8;
  border-radius: 16px 16px 0 0;
}
.cid-un6lAnTd2p .content-wrapper .item .item-wrapper {
  border-radius: 16px !important;
  background-color: #ffffff;
  height: 100%;
}
.cid-un6lAnTd2p .content-wrapper .item .item-wrapper .item-img {
  padding: 150px 30px 30px;
  background-color: #eec4f8;
  margin-bottom: 40px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-un6lAnTd2p .content-wrapper .item .item-wrapper .item-img {
    padding: 150px 22px 22px;
  }
}
.cid-un6lAnTd2p .content-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: -2rem;
  right: -1rem;
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 50% !important;
}
.cid-un6lAnTd2p .content-wrapper .item .item-wrapper .item-img .card-title {
  margin: 0;
}
.cid-un6lAnTd2p .content-wrapper .item .item-wrapper .item-content {
  padding: 0 30px 30px;
}
@media (max-width: 992px) {
  .cid-un6lAnTd2p .content-wrapper .item .item-wrapper .item-content {
    padding: 0 22px 22px;
  }
}
.cid-un6lAnTd2p .content-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-un6lAnTd2p .mbr-section-title {
  color: #131313;
}
.cid-un6lAnTd2p .card-title {
  color: #ffffff;
}
.cid-un6lAnTd2p .card-text {
  color: #efacff;
  text-align: center;
}
.cid-un6lAnTd2p .mbr-section-title,
.cid-un6lAnTd2p .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-umCegSHT1u {
  background-color: #fbf6ff;
  position: relative;
}
.cid-umCegSHT1u .mbr-fallback-image.disabled {
  display: none;
}
.cid-umCegSHT1u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umCegSHT1u .container,
.cid-umCegSHT1u .container-fluid {
  position: static;
}
.cid-umCegSHT1u .mbr-section-title {
  margin-bottom: 25px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-umCegSHT1u .mbr-section-title {
    margin-bottom: 5px;
  }
}
.cid-umCegSHT1u .mbr-section-subtitle {
  color: #1e2330;
}
.cid-umCegSHT1u .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-umCegSHT1u .mbr-text {
    margin-top: 18px;
  }
}
.cid-umCegSHT1u .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-umCegSHT1u .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-umCegSHT1u .item-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.cid-umCegSHT1u .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-umCegSHT1u .item-img {
    display: none;
  }
}
.cid-umCegSHT1u .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-un6N6UAoeI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-un6N6UAoeI .item:focus,
.cid-un6N6UAoeI span:focus {
  outline: none;
}
.cid-un6N6UAoeI .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-un6N6UAoeI .content-head {
  max-width: 800px;
}
.cid-un6N6UAoeI .item {
  color: #ffffff;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-un6N6UAoeI .item {
    min-height: 45px;
  }
}
