@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #4284df !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #7237a2 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #4284df !important;
  border-color: #4284df !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-primary:before {
  background-color: #1f5eb6 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1f5eb6 !important;
  border-color: #1f5eb6 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-secondary:before {
  background-color: #eb3934 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3934 !important;
  border-color: #eb3934 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-info:before {
  background-color: #4a2469 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a2469 !important;
  border-color: #4a2469 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #1b53a0;
  color: #1b53a0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #4284df;
}
.btn-primary-outline:before {
  background-color: #4284df;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9221d;
  color: #e9221d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #f27d7a;
}
.btn-secondary-outline:before {
  background-color: #f27d7a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3c1d56;
  color: #3c1d56;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #7237a2;
}
.btn-info-outline:before {
  background-color: #7237a2;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4284df;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #4284df !important;
}
.text-secondary {
  color: #f27d7a !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #7237a2 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1b53a0 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3c1d56 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #7237a2;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4284df;
  border-color: #4284df;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4284df;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f0f6fd;
}
.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: #b083d5;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #4284df;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #4284df;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #4284df;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.24rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4284df;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #4284df;
  border-bottom-color: #4284df;
}
.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: #4284df !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: #f27d7a !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%234284df' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-s1DhK8LWQA {
  background-image: url("../../../assets/images/mbr-1920x1920.jpg");
}
.cid-s1DhK8LWQA .column-content {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #eae9ff;
  width: 100%;
  float: right;
  position: relative;
}
.cid-s1DhK8LWQA .text-content .btn-bgr {
  z-index: 0;
}
.cid-s1DhK8LWQA .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-s1DhK8LWQA .container-full-width {
  position: relative;
}
.cid-s1DhK8LWQA .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-s1DhK8LWQA .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-s1DhK8LWQA .layer path {
  fill: #eae9ff;
}
@media (min-width: 576px) {
  .cid-s1DhK8LWQA .text-content {
    width: 540px;
  }
  .cid-s1DhK8LWQA .column-content {
    width: 100%;
  }
  .cid-s1DhK8LWQA .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-s1DhK8LWQA .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-s1DhK8LWQA .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-s1DhK8LWQA .column-content {
    width: 50%;
  }
  .cid-s1DhK8LWQA .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-s1DhK8LWQA .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s1DhK8LWQA .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-s1DhK8LWQA .column-content {
    height: 33rem;
  }
}
.cid-s1Dkw6kN80 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1DtUtjlpC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DtUtjlpC .mbr-text,
.cid-s1DtUtjlpC blockquote {
  color: #767676;
}
.cid-s1DtUtjlpC .mbr-text {
  color: #000000;
}
.cid-s1DkL4u8gP {
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-s1DkL4u8gP .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-s1DkL4u8gP .text-content .btn-bgr {
  z-index: 0;
}
.cid-s1DkL4u8gP .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-s1DkL4u8gP h3 {
  color: #000000;
  font-weight: 300;
}
.cid-s1DkL4u8gP p {
  color: #464646;
}
.cid-s1DkL4u8gP h2 {
  color: #000000;
}
.cid-s1DkL4u8gP .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-s1DkL4u8gP .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-s1DkL4u8gP .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-s1DkL4u8gP .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-s1DkL4u8gP .text-content {
    width: 100%;
  }
}
.cid-s1DkL4u8gP .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-s1DkL4u8gP .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-s1DkL4u8gP .mbr-text {
    text-align: center;
  }
}
.cid-s1DkL4u8gP P {
  color: #000000;
}
.cid-s1Du9PvvOn {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1Du9PvvOn .mbr-text,
.cid-s1Du9PvvOn blockquote {
  color: #767676;
}
.cid-s1Du9PvvOn .mbr-text {
  color: #000000;
}
.cid-s1DoH7b0W4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1Dr58oWba {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e9f2ff;
}
.cid-s1Dr58oWba .container {
  max-width: 1500px;
}
.cid-s1Dr58oWba img {
  width: 100%;
}
.cid-s1Dr58oWba h2 {
  padding: 0;
  margin: 0;
}
.cid-s1Dr58oWba .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-s1Dr58oWba .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-s1Dr58oWba .img-col {
  position: relative;
}
.cid-s1Dr58oWba .img2 {
  position: absolute;
  right: 6rem;
  top: -6rem;
  width: 320px;
}
@media (max-width: 1200px) {
  .cid-s1Dr58oWba .img2 {
    right: 3rem;
  }
}
@media (max-width: 992px) {
  .cid-s1Dr58oWba .title-col {
    margin-bottom: 4rem!important;
  }
  .cid-s1Dr58oWba .img2 {
    top: -2rem;
  }
  .cid-s1Dr58oWba .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-s1Dr58oWba .img2 {
    width: 50%;
  }
  .cid-s1Dr58oWba .number {
    margin: auto;
  }
}
.cid-s1DurWvU5n {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DurWvU5n .mbr-text,
.cid-s1DurWvU5n blockquote {
  color: #767676;
}
.cid-s1DurWvU5n .mbr-text {
  color: #000000;
}
.cid-s1DsM1kklA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1DtpJhDQ1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DtpJhDQ1 .mbr-text,
.cid-s1DtpJhDQ1 blockquote {
  color: #767676;
}
.cid-s1DtpJhDQ1 .mbr-text {
  color: #000000;
}
.cid-s1DuKwSdMC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1DuZ3Dvls {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  background: linear-gradient(#ffffff, #fae0e0);
}
.cid-s1DuZ3Dvls .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-s1DuZ3Dvls .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-s1DuZ3Dvls .btn {
  margin: 0px !important;
}
.cid-s1DuZ3Dvls .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s1DuZ3Dvls .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s1DuZ3Dvls .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-s1DuZ3Dvls .carousel-item .wrap-img {
  text-align: center;
}
.cid-s1DuZ3Dvls .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-s1DuZ3Dvls .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-s1DuZ3Dvls .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-s1DuZ3Dvls .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #4284df;
  display: inline-block;
  border: 4px solid #4284df;
}
.cid-s1DuZ3Dvls .carousel-indicators li.active {
  border-color: #1144c3;
}
@media (max-width: 768px) {
  .cid-s1DuZ3Dvls .second-col {
    padding-top: 2rem;
  }
}
.cid-s1DyysUreV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DyysUreV .mbr-text,
.cid-s1DyysUreV blockquote {
  color: #767676;
}
.cid-s1DyysUreV .mbr-text {
  color: #232323;
}
.cid-s1DzykYFIF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1DAiTPODF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DAiTPODF .mbr-text,
.cid-s1DAiTPODF blockquote {
  color: #767676;
}
.cid-s1DAiTPODF .mbr-text {
  color: #000000;
}
.cid-s1DAM1N7ZO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ddfcfc;
}
.cid-s1DAM1N7ZO img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-s1DAM1N7ZO img:hover {
  transform: scale(1.1);
}
.cid-s1DAM1N7ZO .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-s1DAM1N7ZO h2 {
  padding: 0;
  margin: 0;
}
.cid-s1DAM1N7ZO .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s1DAM1N7ZO .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-s1DAM1N7ZO .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-s1DAM1N7ZO .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-s1DAM1N7ZO .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-s1DAM1N7ZO .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-s1DAM1N7ZO .mbr-iconfont {
  margin: 0!important;
}
.cid-s1DAM1N7ZO .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-s1DAM1N7ZO .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-s1DAM1N7ZO .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-s1DAM1N7ZO .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-s1DAM1N7ZO .text-col {
    padding: 2rem 1rem;
  }
}
.cid-s1DAM1N7ZO H2 {
  color: #333333;
}
.cid-s1DAM1N7ZO .mbr-text {
  color: #000000;
}
.cid-s1DGq4pfkS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DGq4pfkS .mbr-text,
.cid-s1DGq4pfkS blockquote {
  color: #767676;
}
.cid-s1DGq4pfkS .mbr-text {
  color: #000000;
}
.cid-s1DGq4pfkS .mbr-text P {
  text-align: left;
}
.cid-s1DH9Fjuga {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1DHgHQjUO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DHgHQjUO .mbr-text,
.cid-s1DHgHQjUO blockquote {
  color: #767676;
}
.cid-s1DHgHQjUO .mbr-text {
  color: #000000;
}
.cid-s1DHgHQjUO .mbr-text P {
  text-align: left;
}
.cid-s1DHMxTZoc {
  background-image: url("../../../assets/images/mbr-1-1920x1285.jpg");
}
.cid-s1DHMxTZoc .text-content {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s1DHMxTZoc .text-content .btn-bgr {
  z-index: 0;
}
.cid-s1DHMxTZoc .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-s1DHMxTZoc h3 {
  color: #000000;
  font-weight: 300;
}
.cid-s1DHMxTZoc p {
  color: #464646;
}
.cid-s1DHMxTZoc h2 {
  color: #000000;
}
.cid-s1DHMxTZoc .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-s1DHMxTZoc .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-s1DHMxTZoc .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-s1DHMxTZoc .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-s1DHMxTZoc .text-content {
    width: 100%;
  }
}
.cid-s1DHMxTZoc .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-s1DHMxTZoc .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-s1DHMxTZoc .mbr-text {
    text-align: center;
  }
}
.cid-s1DIJKa5vE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DIJKa5vE .mbr-text,
.cid-s1DIJKa5vE blockquote {
  color: #767676;
}
.cid-s1DIJKa5vE .mbr-text {
  color: #000000;
}
.cid-s1DIJKa5vE .mbr-text P {
  text-align: left;
}
.cid-s1DJsXd8GQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DMNqQrHR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DMNqQrHR .mbr-text,
.cid-s1DMNqQrHR blockquote {
  color: #767676;
}
.cid-s1DMNqQrHR .mbr-text {
  color: #000000;
}
.cid-s1DMNqQrHR .mbr-text P {
  text-align: center;
}
.cid-s1DJQZqbjd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DJQZqbjd h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-s1DJQZqbjd .mbr-section-subtitle {
  color: #767676;
}
.cid-s1DJQZqbjd .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-s1DJQZqbjd .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-s1DJQZqbjd .mbr-text-right {
  text-align: center;
}
.cid-s1DJQZqbjd .mbr-text-left {
  text-align: center;
}
.cid-s1DLGjNtl5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DLGjNtl5 .mbr-text,
.cid-s1DLGjNtl5 blockquote {
  color: #767676;
}
.cid-s1DLGjNtl5 .mbr-text {
  color: #000000;
}
.cid-s1DLGjNtl5 .mbr-text P {
  text-align: center;
}
.cid-s1DNcz4ofi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DNcz4ofi .mbr-text,
.cid-s1DNcz4ofi blockquote {
  color: #767676;
}
.cid-s1DNcz4ofi .mbr-text {
  color: #000000;
}
.cid-s1DOjQA7WB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fffdda;
}
.cid-s1DONZH3gF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fffdda;
}
.cid-s1DONZH3gF .mbr-text,
.cid-s1DONZH3gF blockquote {
  color: #767676;
}
.cid-s1DONZH3gF .mbr-text {
  color: #000000;
}
.cid-s1DQ1LVxwU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fffdda;
}
.cid-s1DQ1LVxwU P {
  color: #767676;
}
.cid-s1DRRyAaxh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1DRMFMByN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-s1DRMFMByN .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-s1DRMFMByN .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-s1DRMFMByN .mbr-text {
  color: #000000;
}
.cid-s1DSpIMKoD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1DSpIMKoD .mbr-text,
.cid-s1DSpIMKoD blockquote {
  color: #767676;
}
.cid-s1DSpIMKoD .mbr-text {
  color: #000000;
}
.cid-s1DSE2iuCF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6faf2;
}
.cid-s1DSIHcjqE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e6faf2;
}
.cid-s1DSIHcjqE .mbr-text,
.cid-s1DSIHcjqE blockquote {
  color: #767676;
}
.cid-s1DSIHcjqE .mbr-text {
  color: #000000;
}
.cid-s1DTaSPNip {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e6faf2;
}
.cid-s1DTaSPNip P {
  color: #767676;
}
.cid-s1DUDqPYAP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-s1DUDqPYAP .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s1DUDqPYAP .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-s1DUDqPYAP .mbr-list {
  margin: 0;
}
.cid-s1DUDqPYAP .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-s1DUDqPYAP .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-s1DUDqPYAP .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-s1DUDqPYAP .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
