.btn {
  border-radius: 80px;
}
body {
  font-family: 'Space Grotesk', sans-serif;
}
.display-1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.375rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.96875rem;
}
.display-4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.71875rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.0625rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.9rem;
    font-size: calc( 1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .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))));
  }
  .display-7 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.5rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 1.5625rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #fedb01 !important;
}
.bg-success {
  background-color: #eff0f6 !important;
}
.bg-info {
  background-color: #3f69ff !important;
}
.bg-warning {
  background-color: #ff9417 !important;
}
.bg-danger {
  background-color: #179eff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fedb01 !important;
  border-color: #fedb01 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a89101 !important;
  border-color: #a89101 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #a89101 !important;
  border-color: #a89101 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8c8c95 !important;
  border-color: #8c8c95 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #616169 !important;
  border-color: #616169 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #616169 !important;
  border-color: #616169 !important;
}
.btn-info,
.btn-info:active {
  background-color: #3f69ff !important;
  border-color: #3f69ff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0033e7 !important;
  border-color: #0033e7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0033e7 !important;
  border-color: #0033e7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #eff0f6 !important;
  border-color: #eff0f6 !important;
  color: #535c93 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #b8bcd7 !important;
  border-color: #b8bcd7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #535c93 !important;
  background-color: #b8bcd7 !important;
  border-color: #b8bcd7 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff9417 !important;
  border-color: #ff9417 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #bf6700 !important;
  border-color: #bf6700 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #bf6700 !important;
  border-color: #bf6700 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #179eff !important;
  border-color: #179eff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #006fbf !important;
  border-color: #006fbf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #006fbf !important;
  border-color: #006fbf !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fedb01;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a89101 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #fedb01 !important;
  border-color: #fedb01 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8c8c95;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #616169 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8c8c95 !important;
  border-color: #8c8c95 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3f69ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0033e7 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3f69ff !important;
  border-color: #3f69ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #eff0f6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #b8bcd7 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #535c93 !important;
  background-color: #eff0f6 !important;
  border-color: #eff0f6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9417;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #bf6700 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9417 !important;
  border-color: #ff9417 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #179eff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #006fbf !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: #179eff !important;
  border-color: #179eff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent !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: transparent;
  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: transparent !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: #fedb01 !important;
}
.text-secondary {
  color: #8c8c95 !important;
}
.text-success {
  color: #eff0f6 !important;
}
.text-info {
  color: #3f69ff !important;
}
.text-warning {
  color: #ff9417 !important;
}
.text-danger {
  color: #179eff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #988301 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5a5a61 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #aeb3d1 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #002fd8 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #b05f00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #0066b0 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #333333;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.3s;
  /*position: relative;
        background-image: linear-gradient(currentColor 50%, currentColor 50%);
        background-size: 10000px 2px;
        background-repeat: no-repeat;
        background-position: 0 1.2em;*/
  text-decoration: underline;
}
.nav-tabs .nav-link.active {
  color: #fedb01;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #3f69ff;
}
.alert-warning {
  background-color: #ff9417;
}
.alert-danger {
  background-color: #179eff;
}
.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: #fedb01;
  border-color: #fedb01;
  color: #191600;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff8cc;
}
.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: #fff2e3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e3f3ff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.40625rem;
}
.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: #fedb01 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #fedb01;
}
/* 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: #fedb01;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fedb01;
}
.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: #fedb01;
  border-bottom-color: #fedb01;
}
.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: #fedb01 !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: #8c8c95 !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='%23fedb01' %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;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.container {
  max-width: 1220px;
}
a {
  transition: color 300ms ease !important;
  font-weight: 400 !important;
}
.btn,
.btn-lg {
  box-shadow: none !important;
}
body {
  line-height: 1.667em;
  line-height: 30px;
}
.btn,
.btn-lg {
  margin-top: 0;
  margin-bottom: 0;
}
span.btn {
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
span.btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
a.btn {
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
a.btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.cid-sLnr1kEfeQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sLnr1kEfeQ nav.navbar {
  position: fixed;
}
.cid-sLnr1kEfeQ .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-sLnr1kEfeQ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sLnr1kEfeQ .dropdown-item:hover,
.cid-sLnr1kEfeQ .dropdown-item:focus {
  color: #fedb01 !important;
}
.cid-sLnr1kEfeQ .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-sLnr1kEfeQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sLnr1kEfeQ .nav-link {
  position: relative;
  padding: 0;
}
.cid-sLnr1kEfeQ .container {
  display: flex;
  margin: auto;
}
.cid-sLnr1kEfeQ .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLnr1kEfeQ .dropdown-menu,
.cid-sLnr1kEfeQ .navbar.opened {
  background: #ffffff !important;
}
.cid-sLnr1kEfeQ .nav-item:focus,
.cid-sLnr1kEfeQ .nav-link:focus {
  outline: none;
}
.cid-sLnr1kEfeQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sLnr1kEfeQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLnr1kEfeQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sLnr1kEfeQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sLnr1kEfeQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLnr1kEfeQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLnr1kEfeQ .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;
}
.cid-sLnr1kEfeQ .navbar.opened {
  transition: all 0.3s;
}
.cid-sLnr1kEfeQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sLnr1kEfeQ .navbar .navbar-logo img {
  width: auto;
}
.cid-sLnr1kEfeQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLnr1kEfeQ .navbar.collapsed {
  justify-content: center;
}
.cid-sLnr1kEfeQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLnr1kEfeQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLnr1kEfeQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sLnr1kEfeQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLnr1kEfeQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLnr1kEfeQ .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-sLnr1kEfeQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLnr1kEfeQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLnr1kEfeQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLnr1kEfeQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLnr1kEfeQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLnr1kEfeQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLnr1kEfeQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLnr1kEfeQ .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-sLnr1kEfeQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sLnr1kEfeQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLnr1kEfeQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLnr1kEfeQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sLnr1kEfeQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sLnr1kEfeQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLnr1kEfeQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sLnr1kEfeQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sLnr1kEfeQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sLnr1kEfeQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sLnr1kEfeQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLnr1kEfeQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLnr1kEfeQ .dropdown-item.active,
.cid-sLnr1kEfeQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sLnr1kEfeQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLnr1kEfeQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLnr1kEfeQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLnr1kEfeQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sLnr1kEfeQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLnr1kEfeQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLnr1kEfeQ ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-sLnr1kEfeQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sLnr1kEfeQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sLnr1kEfeQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sLnr1kEfeQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLnr1kEfeQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLnr1kEfeQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLnr1kEfeQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLnr1kEfeQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLnr1kEfeQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLnr1kEfeQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLnr1kEfeQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLnr1kEfeQ .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-sLnr1kEfeQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sLnr1kEfeQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sLnr1kEfeQ .navbar {
    height: 70px;
  }
  .cid-sLnr1kEfeQ .navbar.opened {
    height: auto;
  }
  .cid-sLnr1kEfeQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sLnr1kEfeQ a {
  display: inline;
}
.cid-sLnr1kEfeQ img {
  display: inline;
  padding-right: 10px;
}
.cid-sLnr1kEfeQ .dropdown-toggle:after {
  display: none;
}
.cid-sLnr1kEfeQ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sLnr1kEfeQ .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-sLnr1kEfeQ .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sLnr1kEfeQ .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sLnr1kEfeQ .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sLnr1kEfeQ .nav-item {
  margin-right: 32px;
}
.cid-sLnr1kEfeQ .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-sLnr1kEfeQ ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-sLnr1kEfeQ .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-sLnr1kEfeQ .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-sLnr1kEfeQ .navbar-nav {
  margin: auto;
}
.cid-sLnr1kEfeQ .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-sLnr1kEfeQ .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-sLnr1kEfeQ .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-sLnr1kEfeQ .btn {
  border-radius: 1000px !important;
}
.cid-sLnr1kEfeQ .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-sLnr1kEfeQ .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-sLnr1kEfeQ .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-sLnr1kEfeQ .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sLnr1kEfeQ .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-sLnr1kEfeQ .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sLnr1kEfeQ .top {
    margin-top: 25px;
  }
}
.cid-sLnr1kEfeQ .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-sLnr1kEfeQ .container,
  .cid-sLnr1kEfeQ .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sLnr1kEfeQ li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-sLnr1kEfeQ ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-sLnr1kEfeQ .icons-menu {
    min-width: initial !important;
  }
  .cid-sLnr1kEfeQ a.btn {
    margin-top: 10px;
  }
}
.cid-sLnr1kEfeQ a.btn > span {
  margin-left: 0.5rem;
}
.cid-uQPSiYmbhB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uQPSiYmbhB .item-img {
  position: relative;
}
.cid-uQPSiYmbhB .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uQPSiYmbhB .image-wrapper {
    min-height: 600px;
  }
}
@media (max-width: 767px) {
  .cid-uQPSiYmbhB .image-wrapper {
    min-height: 400px;
  }
}
.cid-uQPSiYmbhB .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uQPSiYmbhB .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-uQPSiYmbhB .item-wrapper {
    margin-top: 4rem;
  }
}
.cid-uQPSiYmbhB .link-icon-wrapper {
  position: absolute;
  left: -1px;
  padding: 2rem;
  bottom: -1px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  z-index: 3;
}
@media (max-width: 767px) {
  .cid-uQPSiYmbhB .link-icon-wrapper {
    padding: 1rem;
  }
}
.cid-uQPSiYmbhB .link-icon-wrapper .icon-wrap {
  background: #ffffff;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  border: 1px solid #ffffff;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uQPSiYmbhB .link-icon-wrapper .icon-wrap:hover {
  cursor: pointer;
}
.cid-uQPSiYmbhB .link-icon-wrapper .icon-wrap:hover span {
  transform: scale(1.4);
}
.cid-uQPSiYmbhB .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uQPSiYmbhB .link-icon-wrapper .svg1 {
  position: absolute;
  top: -40px;
  left: 0px;
  transform: rotate(-90deg);
  width: 40px;
}
.cid-uQPSiYmbhB .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uQPSiYmbhB .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(-90deg);
  width: 40px;
  bottom: 0;
  right: -40px;
}
.cid-uQPSiYmbhB .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uQPSiYmbhB img,
.cid-uQPSiYmbhB .item-img {
  width: 100%;
}
.cid-uQPTkF2r8B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQPTkF2r8B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQPTkF2r8B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQPTkF2r8B .content-wrapper .mbr-name {
  margin-bottom: 32px;
}
.cid-uQPTkF2r8B .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uQPTkF2r8B .mbr-name {
  color: #858585;
}
.cid-uQPTkF2r8B .mbr-text {
  color: #191c25;
}
.cid-uQPTkF2r8B .mbr-section-btn {
  text-align: center;
}
.cid-uQPTkF2r8B .mbr-name,
.cid-uQPTkF2r8B .mbr-section-btn {
  color: #5400bb;
}
.cid-sLnr43v4Cv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sLnr43v4Cv img {
  width: 100%;
  display: inline-block;
  padding: 0;
  max-width: 200px;
}
.cid-sLnr43v4Cv .mbr-section-subtitle {
  margin-right: 30px;
  color: #5f5d68;
}
.cid-sLnr43v4Cv .brand {
  display: flex;
  transition: color 300ms ease;
  transition-property: transform, -webkit-transform;
  justify-content: center;
}
.cid-sLnr43v4Cv .brand:hover {
  transform: translate(0px, -4px);
}
.cid-sLnr43v4Cv .brand-row {
  justify-content: space-between;
  align-items: center;
}
.cid-sLnr43v4Cv .row-main {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 460px) {
  .cid-sLnr43v4Cv .row-main {
    flex-direction: column;
  }
  .cid-sLnr43v4Cv .col-auto {
    margin-bottom: 10px;
  }
  .cid-sLnr43v4Cv .mbr-section-subtitle {
    margin-right: 0;
  }
}
.cid-uQQ0PdVAIq {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQQ0PdVAIq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQ0PdVAIq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQ0PdVAIq .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uQQ0PdVAIq .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uQQ0PdVAIq .content-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  padding: 20px 30px 20px 20px;
  border: 1px solid #e5e4e7;
}
@media (max-width: 992px) {
  .cid-uQQ0PdVAIq .content-wrapper .person-wrapper .person-wrap {
    padding: 20px;
  }
}
.cid-uQQ0PdVAIq .content-wrapper .person-wrapper .person-wrap .image-wrapper img {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-uQQ0PdVAIq .content-wrapper .person-wrapper .person-wrap .name-wrapper {
  margin-left: 20px;
}
.cid-uQQ0PdVAIq .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-uQQ0PdVAIq .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-role {
  margin-bottom: 0;
}
.cid-uQQ0PdVAIq .mbr-text {
  color: #19171c;
}
.cid-uQQ0PdVAIq .mbr-name {
  color: #19171c;
  text-align: left;
}
.cid-uQQ0PdVAIq .mbr-role {
  color: #6e6e73;
  text-align: left;
}
.cid-uQQ0PdVAIq .mbr-text,
.cid-uQQ0PdVAIq .text-wrapper,
.cid-uQQ0PdVAIq .person-wrapper {
  text-align: center;
}
.cid-uQP42zxUl4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQP42zxUl4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uQP68sxdta {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uQP68sxdta .container {
    padding: 0 24px;
  }
}
.cid-uQP68sxdta .row .card {
  border-radius: 0 !important;
  padding: 0 12px;
}
.cid-uQP68sxdta .content-wrapper {
  padding: 74px;
  background-color: #f2f2f4;
  border-radius: .75rem;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uQP68sxdta .content-wrapper {
    padding: 24px;
    margin-bottom: 24px;
  }
}
.cid-uQP68sxdta .content-wrapper .icon-wrapper {
  margin-bottom: 20px;
}
.cid-uQP68sxdta .content-wrapper .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #ff4433;
  font-size: 32px;
}
.cid-uQP68sxdta .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQP68sxdta .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQP68sxdta .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uQP68sxdta .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uQP68sxdta .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uQP68sxdta .content-wrapper .mbr-section-btn .btn:hover,
.cid-uQP68sxdta .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uQP68sxdta .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uQP68sxdta .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uQP68sxdta .embla__slide .slide-content {
  width: 100%;
}
.cid-uQP68sxdta .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-uQP68sxdta .embla__slide .slide-content .item-wrapper .item-img {
  height: 100%;
}
.cid-uQP68sxdta .embla__slide .slide-content .item-wrapper .item-img img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .cid-uQP68sxdta .embla__slide .slide-content .item-wrapper .item-img img {
    height: 400px;
  }
}
.cid-uQP68sxdta .embla__button--next,
.cid-uQP68sxdta .embla__button--prev {
  display: flex;
}
.cid-uQP68sxdta .embla__button {
  bottom: 2.5rem;
  width: 80px;
  height: 30px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: #141414 !important;
  color: #ffffff !important;
  border: 1px solid #141414 !important;
  border-radius: 10vmax;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  opacity: 1 !important;
  overflow: hidden;
}
.cid-uQP68sxdta .embla__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
}
.cid-uQP68sxdta .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uQP68sxdta .embla__button:hover {
  box-shadow: inset 81px 10px 5px #7f89e9;
  border-color: #7f89e9 !important;
}
.cid-uQP68sxdta .embla__button:hover::before {
  width: 30%;
}
.cid-uQP68sxdta .embla__button.embla__button--prev {
  left: 1.5rem;
}
.cid-uQP68sxdta .embla__button.embla__button--next {
  left: 7.5rem;
}
.cid-uQP68sxdta .embla {
  position: relative;
  width: 100%;
  border-radius: .75rem !important;
  overflow: hidden;
  height: 100%;
}
.cid-uQP68sxdta .embla::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  background-image: linear-gradient(90deg, #f8e885 -25%, #fb8fc9 47%);
  width: 100%;
  z-index: 1;
}
.cid-uQP68sxdta .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
  height: 100%;
}
.cid-uQP68sxdta .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uQP68sxdta .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uQP68sxdta .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}
.cid-uQP68sxdta .mbr-section-title {
  color: #141414;
}
.cid-uQP68sxdta .mbr-text {
  color: #141414;
}
.cid-uQPNMmydNJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQPNMmydNJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQPNMmydNJ .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-uQPNMmydNJ .container {
    padding: 0 25px;
  }
}
.cid-uQPNMmydNJ .title-wrapper .mbr-section-title {
  margin: 0 42px 50px 0;
}
@media (max-width: 1440px) {
  .cid-uQPNMmydNJ .title-wrapper .mbr-section-title {
    margin: 0 0 50px 0;
  }
}
.cid-uQPNMmydNJ .items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 65px;
  padding-top: 20px;
}
@media (max-width: 992px) {
  .cid-uQPNMmydNJ .items {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}
.cid-uQPNMmydNJ .items .item {
  margin-right: 80px;
}
@media (max-width: 1440px) {
  .cid-uQPNMmydNJ .items .item {
    margin-right: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uQPNMmydNJ .items .item {
    margin: 0;
  }
}
.cid-uQPNMmydNJ .items .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uQPNMmydNJ .items .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uQPNMmydNJ .items .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  display: inline-flex;
  color: #000000;
}
.cid-uQPNMmydNJ .items .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uQPNMmydNJ .items .item .item-wrapper .card-box .mbr-text {
  margin-bottom: 0;
}
.cid-uQPNMmydNJ .mbr-section-title {
  color: #000000;
}
.cid-uQPNMmydNJ .item-title {
  color: #000000;
}
.cid-uQPNMmydNJ .mbr-text {
  color: #000000;
}
.cid-uQPLQLF5Rj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe3e1;
}
.cid-uQPLQLF5Rj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQPLQLF5Rj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQPLQLF5Rj .icon-wrapper {
  margin-bottom: 20px;
}
.cid-uQPLQLF5Rj .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 62px;
  color: #000c3f;
}
.cid-uQPLQLF5Rj .mbr-text {
  margin-bottom: 32px;
  color: #000c3f;
}
.cid-uQPLQLF5Rj .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uQPLQLF5Rj .desc-wrapper .mbr-desc {
    width: 100%;
  }
}
.cid-uQPLQLF5Rj .mbr-desc,
.cid-uQPLQLF5Rj .desc-wrapper {
  color: #000c3f;
  text-align: center;
}
.cid-uQPLQLF5Rj .mbr-text,
.cid-uQPLQLF5Rj .icon-wrapper {
  text-align: center;
}
.cid-uQP6elRZ5M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uQP6elRZ5M .container {
    padding: 0 24px;
  }
}
.cid-uQP6elRZ5M .row .card {
  border-radius: 0 !important;
  padding: 0 12px;
}
.cid-uQP6elRZ5M .content-wrapper {
  padding: 74px;
  background-color: #f2f2f4;
  border-radius: .75rem;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uQP6elRZ5M .content-wrapper {
    padding: 24px;
    margin-bottom: 24px;
  }
}
.cid-uQP6elRZ5M .content-wrapper .icon-wrapper {
  margin-bottom: 20px;
}
.cid-uQP6elRZ5M .content-wrapper .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #ff4433;
  font-size: 32px;
}
.cid-uQP6elRZ5M .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQP6elRZ5M .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQP6elRZ5M .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uQP6elRZ5M .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uQP6elRZ5M .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uQP6elRZ5M .content-wrapper .mbr-section-btn .btn:hover,
.cid-uQP6elRZ5M .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uQP6elRZ5M .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uQP6elRZ5M .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uQP6elRZ5M .embla__slide .slide-content {
  width: 100%;
}
.cid-uQP6elRZ5M .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-uQP6elRZ5M .embla__slide .slide-content .item-wrapper .item-img {
  height: 100%;
}
.cid-uQP6elRZ5M .embla__slide .slide-content .item-wrapper .item-img img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .cid-uQP6elRZ5M .embla__slide .slide-content .item-wrapper .item-img img {
    height: 400px;
  }
}
.cid-uQP6elRZ5M .embla__button--next,
.cid-uQP6elRZ5M .embla__button--prev {
  display: flex;
}
.cid-uQP6elRZ5M .embla__button {
  bottom: 2.5rem;
  width: 80px;
  height: 30px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: #141414 !important;
  color: #ffffff !important;
  border: 1px solid #141414 !important;
  border-radius: 10vmax;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  opacity: 1 !important;
  overflow: hidden;
}
.cid-uQP6elRZ5M .embla__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
}
.cid-uQP6elRZ5M .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uQP6elRZ5M .embla__button:hover {
  box-shadow: inset 81px 10px 5px #7f89e9;
  border-color: #7f89e9 !important;
}
.cid-uQP6elRZ5M .embla__button:hover::before {
  width: 30%;
}
.cid-uQP6elRZ5M .embla__button.embla__button--prev {
  left: 1.5rem;
}
.cid-uQP6elRZ5M .embla__button.embla__button--next {
  left: 7.5rem;
}
.cid-uQP6elRZ5M .embla {
  position: relative;
  width: 100%;
  border-radius: .75rem !important;
  overflow: hidden;
  height: 100%;
}
.cid-uQP6elRZ5M .embla::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  background-image: linear-gradient(90deg, #f8e885 -25%, #fb8fc9 47%);
  width: 100%;
  z-index: 1;
}
.cid-uQP6elRZ5M .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
  height: 100%;
}
.cid-uQP6elRZ5M .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uQP6elRZ5M .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uQP6elRZ5M .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}
.cid-uQP6elRZ5M .mbr-section-title {
  color: #141414;
}
.cid-uQP6elRZ5M .mbr-text {
  color: #141414;
}
.cid-uQP6zPAWoe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uQP6zPAWoe .container {
    padding: 0 24px;
  }
}
.cid-uQP6zPAWoe .row .card {
  border-radius: 0 !important;
  padding: 0 12px;
}
.cid-uQP6zPAWoe .content-wrapper {
  padding: 74px;
  background-color: #f2f2f4;
  border-radius: .75rem;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uQP6zPAWoe .content-wrapper {
    padding: 24px;
    margin-bottom: 24px;
  }
}
.cid-uQP6zPAWoe .content-wrapper .icon-wrapper {
  margin-bottom: 20px;
}
.cid-uQP6zPAWoe .content-wrapper .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #ff4433;
  font-size: 32px;
}
.cid-uQP6zPAWoe .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQP6zPAWoe .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQP6zPAWoe .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uQP6zPAWoe .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uQP6zPAWoe .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uQP6zPAWoe .content-wrapper .mbr-section-btn .btn:hover,
.cid-uQP6zPAWoe .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uQP6zPAWoe .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uQP6zPAWoe .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uQP6zPAWoe .embla__slide .slide-content {
  width: 100%;
}
.cid-uQP6zPAWoe .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-uQP6zPAWoe .embla__slide .slide-content .item-wrapper .item-img {
  height: 100%;
}
.cid-uQP6zPAWoe .embla__slide .slide-content .item-wrapper .item-img img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .cid-uQP6zPAWoe .embla__slide .slide-content .item-wrapper .item-img img {
    height: 400px;
  }
}
.cid-uQP6zPAWoe .embla__button--next,
.cid-uQP6zPAWoe .embla__button--prev {
  display: flex;
}
.cid-uQP6zPAWoe .embla__button {
  bottom: 2.5rem;
  width: 80px;
  height: 30px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: #141414 !important;
  color: #ffffff !important;
  border: 1px solid #141414 !important;
  border-radius: 10vmax;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  opacity: 1 !important;
  overflow: hidden;
}
.cid-uQP6zPAWoe .embla__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
}
.cid-uQP6zPAWoe .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uQP6zPAWoe .embla__button:hover {
  box-shadow: inset 81px 10px 5px #7f89e9;
  border-color: #7f89e9 !important;
}
.cid-uQP6zPAWoe .embla__button:hover::before {
  width: 30%;
}
.cid-uQP6zPAWoe .embla__button.embla__button--prev {
  left: 1.5rem;
}
.cid-uQP6zPAWoe .embla__button.embla__button--next {
  left: 7.5rem;
}
.cid-uQP6zPAWoe .embla {
  position: relative;
  width: 100%;
  border-radius: .75rem !important;
  overflow: hidden;
  height: 100%;
}
.cid-uQP6zPAWoe .embla::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  background-image: linear-gradient(90deg, #f8e885 -25%, #fb8fc9 47%);
  width: 100%;
  z-index: 1;
}
.cid-uQP6zPAWoe .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
  height: 100%;
}
.cid-uQP6zPAWoe .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uQP6zPAWoe .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uQP6zPAWoe .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}
.cid-uQP6zPAWoe .mbr-section-title {
  color: #141414;
}
.cid-uQP6zPAWoe .mbr-text {
  color: #141414;
}
.cid-uQPW3AydaR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-uQPW3AydaR .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-uQPW3AydaR .mbr-section-subtitle {
  color: #000000;
  letter-spacing: 0.03em;
}
.cid-uQPW3AydaR .progressbar-title p {
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.cid-uQPW3AydaR .progress {
  width: 100%;
  height: 16px;
}
.cid-uQPW3AydaR .progress_elements,
.cid-uQPW3AydaR .text-elements {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uQPW3AydaR .progress_elements > div,
.cid-uQPW3AydaR .text-elements > div {
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.cid-uQPW3AydaR .progress-bar {
  height: 16px;
  background-color: #59c978;
}
.cid-uQPW3AydaR .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-uQPW3AydaR .progressbar-number {
  display: inline-block;
}
.cid-uQPW3AydaR .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-uQPW3AydaR .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-uQPW3AydaR .progress_value {
  position: relative;
}
.cid-uQPW3AydaR progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-uQPW3AydaR progress::-webkit-progress-value {
  background: #59c978;
}
.cid-uQPW3AydaR progress[value]::-moz-progress-bar {
  background: #59c978;
}
.cid-uQPW3AydaR progress::-ms-fill {
  background: #59c978;
}
.cid-uQPW3AydaR .progress1 .progressbar-number:before {
  content: '83';
}
.cid-uQPW3AydaR .progress2 .progressbar-number:before {
  content: '36';
}
.cid-uQPW3AydaR .progress3 .progressbar-number:before {
  content: '50';
}
.cid-uQPW3AydaR .progress4 .progressbar-number:before {
  content: '98';
}
.cid-uQPW3AydaR .progress5 .progressbar-number:before {
  content: '20';
}
.cid-uQPW3AydaR .progress-bar-1 {
  width: 83%;
}
.cid-uQPW3AydaR .progress-bar-2 {
  width: 36%;
}
.cid-uQPW3AydaR .progress-bar-3 {
  width: 50%;
}
.cid-uQPW3AydaR .progress-bar-4 {
  width: 98%;
}
.cid-uQPW3AydaR .progress-bar-5 {
  width: 20%;
}
@media (max-width: 767px) {
  .cid-uQPW3AydaR .progress_elements {
    padding-top: 2rem;
  }
}
.cid-uQPW3AydaR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQPW3AydaR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQP8azCpbR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uQP8azCpbR .container {
    padding: 0 24px;
  }
}
.cid-uQP8azCpbR .row .card {
  border-radius: 0 !important;
  padding: 0 12px;
}
.cid-uQP8azCpbR .content-wrapper {
  padding: 74px;
  background-color: #f2f2f4;
  border-radius: .75rem;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uQP8azCpbR .content-wrapper {
    padding: 24px;
    margin-bottom: 24px;
  }
}
.cid-uQP8azCpbR .content-wrapper .icon-wrapper {
  margin-bottom: 20px;
}
.cid-uQP8azCpbR .content-wrapper .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #ff4433;
  font-size: 32px;
}
.cid-uQP8azCpbR .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQP8azCpbR .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQP8azCpbR .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uQP8azCpbR .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uQP8azCpbR .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uQP8azCpbR .content-wrapper .mbr-section-btn .btn:hover,
.cid-uQP8azCpbR .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uQP8azCpbR .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uQP8azCpbR .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uQP8azCpbR .embla__slide .slide-content {
  width: 100%;
}
.cid-uQP8azCpbR .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-uQP8azCpbR .embla__slide .slide-content .item-wrapper .item-img {
  height: 100%;
}
.cid-uQP8azCpbR .embla__slide .slide-content .item-wrapper .item-img img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .cid-uQP8azCpbR .embla__slide .slide-content .item-wrapper .item-img img {
    height: 400px;
  }
}
.cid-uQP8azCpbR .embla__button--next,
.cid-uQP8azCpbR .embla__button--prev {
  display: flex;
}
.cid-uQP8azCpbR .embla__button {
  bottom: 2.5rem;
  width: 80px;
  height: 30px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: #141414 !important;
  color: #ffffff !important;
  border: 1px solid #141414 !important;
  border-radius: 10vmax;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  opacity: 1 !important;
  overflow: hidden;
}
.cid-uQP8azCpbR .embla__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
}
.cid-uQP8azCpbR .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uQP8azCpbR .embla__button:hover {
  box-shadow: inset 81px 10px 5px #7f89e9;
  border-color: #7f89e9 !important;
}
.cid-uQP8azCpbR .embla__button:hover::before {
  width: 30%;
}
.cid-uQP8azCpbR .embla__button.embla__button--prev {
  left: 1.5rem;
}
.cid-uQP8azCpbR .embla__button.embla__button--next {
  left: 7.5rem;
}
.cid-uQP8azCpbR .embla {
  position: relative;
  width: 100%;
  border-radius: .75rem !important;
  overflow: hidden;
  height: 100%;
}
.cid-uQP8azCpbR .embla::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  background-image: linear-gradient(90deg, #f8e885 -25%, #fb8fc9 47%);
  width: 100%;
  z-index: 1;
}
.cid-uQP8azCpbR .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
  height: 100%;
}
.cid-uQP8azCpbR .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uQP8azCpbR .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uQP8azCpbR .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}
.cid-uQP8azCpbR .mbr-section-title {
  color: #141414;
}
.cid-uQP8azCpbR .mbr-text {
  color: #141414;
}
.cid-uQQ8x8dC9i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQQ8x8dC9i .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-uQQ8x8dC9i .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-uQQ8x8dC9i .wrapper {
  padding: 0rem;
}
.cid-uQQ8x8dC9i .icon-left {
  margin-right: 0.1rem;
}
.cid-uQQ8x8dC9i .icon-right {
  margin-left: 0.1rem;
}
.cid-uQQ8x8dC9i .card-wrapper {
  padding: 30px 15px;
  margin: 0 15px;
  width: auto;
  max-width: 100%;
}
.cid-uQQ8x8dC9i .card-title {
  font-weight: 700;
  padding: 10px 20px 10px;
  color: #4c4c4c;
  text-align: left;
  text-transform: uppercase;
}
.cid-uQQ8x8dC9i .card-subtitle {
  text-align: left;
}
.cid-uQQ8x8dC9i .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 12px 0 rgba(20, 20, 43, 0.05) !important;
  overflow: visible;
  padding: 44px 32px 52px;
  background-color: #ffffff;
}
.cid-uQQ8x8dC9i .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-uQQ8x8dC9i .iconfont-wrapper .mbr-iconfont {
  color: #ff9417;
}
.cid-uQQ8x8dC9i .card-text {
  margin-bottom: 16px;
  text-align: left;
}
.cid-uQQ8x8dC9i .margin {
  margin-right: 14px;
}
.cid-uQQ8x8dC9i .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-uQQ8x8dC9i .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-uQQ8x8dC9i .people {
  align-items: center;
}
.cid-uQQ8x8dC9i .item-wrapper {
  width: 100%;
}
.cid-uQQ8x8dC9i .mbr-section-title {
  text-align: center;
  margin-bottom: 16px;
  color: #14142b;
}
.cid-uQQ8x8dC9i img {
  border-radius: 10%;
  height: 128px;
  width: 128px;
  margin: 0;
}
.cid-uQQ8x8dC9i .mbr-iconfont::before {
  font-size: 25px;
}
.cid-uQQ8x8dC9i .card-text,
.cid-uQQ8x8dC9i .iconfont-wrapper {
  color: #8c8c95;
}
.cid-uQQ8x8dC9i .card-subtitle,
.cid-uQQ8x8dC9i .card-subtitle2 {
  display: inline;
}
.cid-uQQ8x8dC9i .card-subtitle2 {
  color: #8c8c95;
}
@media (max-width: 576px) {
  .cid-uQQ8x8dC9i .col-12.col-sm-6:first-child {
    padding-bottom: 20px;
  }
}
@media (max-width: 860px) {
  .cid-uQQ8x8dC9i .row.people {
    flex-direction: column;
    align-items: initial;
  }
  .cid-uQQ8x8dC9i img {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uQQ8x8dC9i .shadow {
    padding-top: 40px;
    padding-bottom: 43px;
  }
}
@media (max-width: 479px) {
  .cid-uQQ8x8dC9i .shadow {
    padding: 33px 25px 36px;
  }
}
.cid-uQQ8x8dC9i .card-text,
.cid-uQQ8x8dC9i .iconfont-wrapper,
.cid-uQQ8x8dC9i .align {
  color: #000000;
}
.cid-uQP63uEUzu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.cid-uQP63uEUzu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQP63uEUzu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQP63uEUzu .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uQP63uEUzu .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uQP63uEUzu .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uQP63uEUzu .container {
    padding: 0 16px;
  }
}
.cid-uQP63uEUzu .row {
  margin: 0 -20px;
}
.cid-uQP63uEUzu .item {
  padding: 0 20px;
}
.cid-uQP63uEUzu .item .item-wrapper .item-img img {
  height: 700px;
  object-fit: cover;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uQP63uEUzu .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uQPYrggVSG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uQPYrggVSG .mbr-text {
  color: #000000;
}
.cid-uQPYrggVSG .line {
  height: 1px;
  width: 100%;
  background-color: #e2e3e9;
  margin-bottom: 32px;
}
