body {
  font-family: 'Roboto', sans-serif;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.7rem 1.3rem;
  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 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #f6ae0c !important;
}
.bg-success {
  background-color: #764d9e !important;
}
.bg-info {
  background-color: #8caff0 !important;
}
.bg-warning {
  background-color: #f5841f !important;
}
.bg-danger {
  background-color: #d944b7 !important;
}
.btn-primary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #f6ae0c !important;
  border-color: #f6ae0c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #f6ae0c !important;
  border-color: #f6ae0c !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #f6ae0c !important;
  border-color: #f6ae0c !important;
}
.btn-primary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-primary:hover {
  color: black !important;
}
.btn-primary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-secondary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: black !important;
}
.btn-secondary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-info {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #8caff0 !important;
  border-color: #8caff0 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #8caff0 !important;
  border-color: #8caff0 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #8caff0 !important;
  border-color: #8caff0 !important;
}
.btn-info:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-info:hover {
  color: black !important;
}
.btn-info:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-success {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #764d9e !important;
  border-color: #764d9e !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #764d9e !important;
  border-color: #764d9e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #764d9e !important;
  border-color: #764d9e !important;
}
.btn-success:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-success:hover {
  color: black !important;
}
.btn-success:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-warning {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #f5841f !important;
  border-color: #f5841f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #f5841f !important;
  border-color: #f5841f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #f5841f !important;
  border-color: #f5841f !important;
}
.btn-warning:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-warning:hover {
  color: black !important;
}
.btn-warning:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-danger {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #d944b7 !important;
  border-color: #d944b7 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #d944b7 !important;
  border-color: #d944b7 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #d944b7 !important;
  border-color: #d944b7 !important;
}
.btn-danger:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-danger:hover {
  color: black !important;
}
.btn-danger:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover {
  color: black !important;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #f6ae0c;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-black {
  position: relative;
  z-index: 1;
  border: 0;
}
.btn-black,
.btn-black:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-black:hover {
  color: black !important;
}
.btn-black:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f6ae0c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a57406 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f6ae0c !important;
  border-color: #f6ae0c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8caff0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3f7ae6 !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: #8caff0 !important;
  border-color: #8caff0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #764d9e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #4a3164 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #764d9e !important;
  border-color: #764d9e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f5841f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b55a08 !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: #f5841f !important;
  border-color: #f5841f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d944b7;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a52187 !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: #d944b7 !important;
  border-color: #d944b7 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #272727;
}
.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: #272727 !important;
  border-color: #272727 !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: #f6ae0c !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #764d9e !important;
}
.text-info {
  color: #8caff0 !important;
}
.text-warning {
  color: #f5841f !important;
}
.text-danger {
  color: #d944b7 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #272727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #f6ae0c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #432c59 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3270e4 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a75307 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #981f7c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f6ae0c;
}
.nav-tabs .nav-link:not(.active) {
  color: #272727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #8caff0;
}
.alert-warning {
  background-color: #f5841f;
}
.alert-danger {
  background-color: #d944b7;
}
.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: #f6ae0c;
  border-color: #f6ae0c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f6ae0c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf0d1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b69ccf;
}
.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: #feefe2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbeef8;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #f6ae0c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #f6ae0c;
}
/* 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: #f6ae0c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f6ae0c;
}
.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: #f6ae0c;
  border-bottom-color: #f6ae0c;
}
.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: #f6ae0c !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: #e43f3f !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='%23f6ae0c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uEC7tgDYiz {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uEC7tgDYiz .mbr-section-title {
  color: #764d9e;
}
.cid-uEC7tgDYiz .mbr-text,
.cid-uEC7tgDYiz .mbr-section-btn {
  color: #262642;
}
.cid-uEC7tgDYiz .mbr-section-subtitle {
  color: #000000;
}
.cid-uEC7tgDYiz img {
  border-radius: 2rem;
}
.cid-uEC7tgDYiz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEC7tgDYiz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4DrAw9G6m {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ff8a8a;
}
.cid-v4DrAw9G6m .icon1 {
  background: #a8aaf1;
}
.cid-v4DrAw9G6m .link-text-wrapper {
  display: flex;
  align-items: center;
}
.cid-v4DrAw9G6m .link-text-wrapper p {
  padding: 0;
  margin: 0;
  padding-left: 1rem;
}
.cid-v4DrAw9G6m .link-wrapper {
  align-items: center;
  display: flex;
  position: relative;
  margin: auto;
  width: 70px;
  height: 70px;
}
.cid-v4DrAw9G6m .link-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-v4DrAw9G6m .inline-wrapper {
  display: inline-block;
}
.cid-v4DrAw9G6m .align-wrapper {
  width: 100%;
}
.cid-v4DrAw9G6m .iconfont-wrapper {
  box-shadow: 0px 0px 0px 2px #1c1c25 inset;
  border-radius: 50%;
  min-width: 70px;
  width: 70px;
  align-items: center;
  display: flex;
  height: 70px;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  cursor: pointer;
}
.cid-v4DrAw9G6m .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-v4DrAw9G6m .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-v4DrAw9G6m .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-v4DrAw9G6m .mbr-iconfont {
  transition: all 0.3s;
  font-size: 1.8rem;
  color: #1c1c25;
  position: relative;
}
.cid-v4DrAw9G6m .icon-bg {
  position: absolute;
  overflow: visible;
  top: 6px;
  right: -6px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: 1;
  height: 100%;
  border-radius: 50%;
}
.cid-v4DrAw9G6m img {
  border-radius: 8px;
}
@media (min-width: 992px) {
  .cid-v4DrAw9G6m img {
    width: 90%;
    height: 100%;
    object-fit: cover;
  }
}
.cid-v4DrAw9G6m .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-v4DrAw9G6m .mbr-section-subtitle {
  color: #767676;
}
.cid-v4DrAw9G6m .main-sub-title {
  background: #e7e7fb;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  padding: 0.1rem 1rem;
}
.cid-v4DrAw9G6m .card-text {
  color: #767676;
}
.cid-v4DrAw9G6m .main-sub-title,
.cid-v4DrAw9G6m .align-wrapper {
  color: #33358c;
}
.cid-v4DrAw9G6m .main-text {
  color: #777d74;
}
.cid-v4DrAw9G6m .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-v4DrAw9G6m .modalWindow .modalWindow-container {
  transform: translateY(50vh) translateY(-22vw);
}
.cid-v4DrAw9G6m .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-v4DrAw9G6m a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-v4DrAw9G6m a.close:hover {
  color: #ffffff;
}
.cid-v4DrAw9G6m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4DrAw9G6m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4DrAw9G6m .main-text,
.cid-v4DrAw9G6m .link-align-wrapper {
  color: #ffffff;
}
.cid-v4DrAw9G6m .main-title {
  color: #353535;
}
.cid-v4CyIHPEcq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v4CyIHPEcq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4CyIHPEcq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4CyIHPEcq .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v4CyIHPEcq .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v4CyIHPEcq .items-wrap {
  justify-content: center;
  margin: 0 -46px;
}
.cid-v4CyIHPEcq .items-wrap .item {
  padding: 0 46px;
}
.cid-v4CyIHPEcq .item {
  margin-bottom: 32px;
}
.cid-v4CyIHPEcq .item:hover .item-wrapper .item-img img,
.cid-v4CyIHPEcq .item:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-v4CyIHPEcq .item .item-wrapper .item-desc {
  margin-bottom: 22px;
}
.cid-v4CyIHPEcq .item .item-wrapper .item-img {
  margin-bottom: 22px;
}
.cid-v4CyIHPEcq .item .item-wrapper .item-img .image-wrapper {
  overflow: hidden;
}
.cid-v4CyIHPEcq .item .item-wrapper .item-img .image-wrapper img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-v4CyIHPEcq .item .item-wrapper .item-img .image-wrapper img {
    height: 350px;
  }
}
.cid-v4CyIHPEcq .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-v4CyIHPEcq .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-v4CyIHPEcq .mbr-section-btn {
  margin-top: 42px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v4CyIHPEcq .mbr-section-btn {
    margin-top: 22px;
  }
}
.cid-v4CyIHPEcq .mbr-section-title {
  color: #191c25;
}
.cid-v4CyIHPEcq .item-desc {
  color: #191c25;
  text-align: center;
}
.cid-v4CyIHPEcq .item-title {
  color: #764d9e;
  text-align: center;
}
.cid-v4CyIHPEcq .item-name {
  color: #191c25;
  text-align: center;
}
.cid-v4CyIHPEcq .mbr-section-title,
.cid-v4CyIHPEcq .mbr-section-btn {
  color: #e43f3f;
  text-align: center;
}
.cid-v4Dtlzmjza {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v4Dtlzmjza .icon1 {
  background: #a8aaf1;
}
.cid-v4Dtlzmjza .link-text-wrapper {
  display: flex;
  align-items: center;
}
.cid-v4Dtlzmjza .link-text-wrapper p {
  padding: 0;
  margin: 0;
  padding-left: 1rem;
}
.cid-v4Dtlzmjza .link-wrapper {
  align-items: center;
  display: flex;
  position: relative;
  margin: auto;
  width: 70px;
  height: 70px;
}
.cid-v4Dtlzmjza .link-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-v4Dtlzmjza .inline-wrapper {
  display: inline-block;
}
.cid-v4Dtlzmjza .align-wrapper {
  width: 100%;
}
.cid-v4Dtlzmjza .iconfont-wrapper {
  box-shadow: 0px 0px 0px 2px #1c1c25 inset;
  border-radius: 50%;
  min-width: 70px;
  width: 70px;
  align-items: center;
  display: flex;
  height: 70px;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  cursor: pointer;
}
.cid-v4Dtlzmjza .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-v4Dtlzmjza .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-v4Dtlzmjza .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-v4Dtlzmjza .mbr-iconfont {
  transition: all 0.3s;
  font-size: 1.8rem;
  color: #1c1c25;
  position: relative;
}
.cid-v4Dtlzmjza .icon-bg {
  position: absolute;
  overflow: visible;
  top: 6px;
  right: -6px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: 1;
  height: 100%;
  border-radius: 50%;
}
.cid-v4Dtlzmjza img {
  border-radius: 8px;
}
@media (min-width: 992px) {
  .cid-v4Dtlzmjza img {
    width: 90%;
    height: 100%;
    object-fit: cover;
  }
}
.cid-v4Dtlzmjza .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-v4Dtlzmjza .mbr-section-subtitle {
  color: #767676;
}
.cid-v4Dtlzmjza .main-sub-title {
  background: #e7e7fb;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  padding: 0.1rem 1rem;
}
.cid-v4Dtlzmjza .card-text {
  color: #767676;
}
.cid-v4Dtlzmjza .main-sub-title,
.cid-v4Dtlzmjza .align-wrapper {
  color: #33358c;
}
.cid-v4Dtlzmjza .main-text {
  color: #777d74;
}
.cid-v4Dtlzmjza .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-v4Dtlzmjza .modalWindow .modalWindow-container {
  transform: translateY(50vh) translateY(-22vw);
}
.cid-v4Dtlzmjza .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-v4Dtlzmjza a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-v4Dtlzmjza a.close:hover {
  color: #ffffff;
}
.cid-v4Dtlzmjza .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4Dtlzmjza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLjaK6msYM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLjaK6msYM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLjaK6msYM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLjaK6msYM .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border-right: solid 1px #f6ae0c;
  border-bottom: solid 1px #f6ae0c;
  border-radius: 0 !important;
}
.cid-uLjaK6msYM .img-wrapper {
  max-height: 50px;
}
.cid-uLjaK6msYM .card-top {
  border: solid 1px #f6ae0c;
  border-radius: 0 !important;
  padding: 1rem;
}
.cid-uLjaK6msYM .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
}
.cid-uLjaK6msYM .card-row {
  border-left: solid 1px #f6ae0c;
  border-right: solid 1px #f6ae0c;
}
.cid-uLjaK6msYM .card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border-radius: 0 !important;
  border-left: solid 1px #f6ae0c;
  border-bottom: solid 1px #f6ae0c;
  transition: all ease-in-out 0.3s;
}
.cid-uLjaK6msYM .card-img:hover {
  background-color: #f6ae0c;
  transition: all ease-in-out 0.3s;
}
.cid-uLjaK6msYM .card-img:hover img {
  filter: brightness(0) invert(1);
}
.cid-uLjaK6msYM .card-img img {
  max-width: 200px;
}
.cid-uLjaK6msYM .card-img-wrapper:first-child .card-img {
  border-left: none;
}
@media screen and (max-width: 992px) {
  .cid-uLjaK6msYM .card-img {
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .cid-uLjaK6msYM .card-img {
    height: 150px;
  }
}
.cid-v4CBfL3AWw {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
  background: linear-gradient(180deg, #ffffff, #efefef);
}
.cid-v4CBfL3AWw .mbr-iconfont-social {
  font-size: 32px;
  color: #565a69;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-v4CBfL3AWw .mbr-iconfont-social:hover {
  color: #8264fd;
}
.cid-v4CBfL3AWw .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-v4CBfL3AWw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #f6ae0c, #e43f3f);
  display: inline-block;
}
.cid-v4CBfL3AWw .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-v4CBfL3AWw .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-v4CBfL3AWw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4CBfL3AWw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t3rST5NvQf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-umAQwJvY5F {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-umAQwJvY5F .row {
  flex-direction: row-reverse;
}
.cid-umAQwJvY5F .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-umAQwJvY5F .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #f6ae0c;
}
.cid-umAQwJvY5F .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-umAQwJvY5F .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-umAQwJvY5F .mbr-section-title {
  color: #764d9e;
}
@media (min-width: 1400px) {
  .cid-umAQwJvY5F .col-12 {
    padding: 0 2rem;
  }
  .cid-umAQwJvY5F .row {
    margin: 0 -2rem;
  }
}
.cid-umAQwJvY5F .mbr-text,
.cid-umAQwJvY5F .mbr-section-btn {
  color: #353535;
}
.cid-umB58Cr3DB {
  background-color: #ffffff;
}
.cid-umB58Cr3DB .item-wrapper {
  width: 100%;
}
.cid-umB58Cr3DB .row {
  align-items: center;
  justify-content: center;
}
.cid-umB58Cr3DB .b {
  margin-bottom: 30px;
}
.cid-umB58Cr3DB img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-umB58Cr3DB .b,
  .cid-umB58Cr3DB .t {
    margin-bottom: 20px;
  }
}
.cid-umFltFOEn7 {
  background-color: #ffffff;
}
.cid-umFltFOEn7 .item-wrapper {
  width: 100%;
}
.cid-umFltFOEn7 .row {
  align-items: center;
  justify-content: center;
}
.cid-umFltFOEn7 .b {
  margin-bottom: 30px;
}
.cid-umFltFOEn7 img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-umFltFOEn7 .b,
  .cid-umFltFOEn7 .t {
    margin-bottom: 20px;
  }
}
.cid-umF9fOv6pq {
  background-color: #ffffff;
}
.cid-umF9fOv6pq .item-wrapper {
  width: 100%;
}
.cid-umF9fOv6pq .row {
  align-items: center;
  justify-content: center;
}
.cid-umF9fOv6pq .b {
  margin-bottom: 30px;
}
.cid-umF9fOv6pq img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-umF9fOv6pq .b,
  .cid-umF9fOv6pq .t {
    margin-bottom: 20px;
  }
}
.cid-umFhafx9v5 {
  background-color: #ffffff;
}
.cid-umFhafx9v5 .item-wrapper {
  width: 100%;
}
.cid-umFhafx9v5 .row {
  align-items: center;
  justify-content: center;
}
.cid-umFhafx9v5 .b {
  margin-bottom: 30px;
}
.cid-umFhafx9v5 img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-umFhafx9v5 .b,
  .cid-umFhafx9v5 .t {
    margin-bottom: 20px;
  }
}
.cid-umFlK1z2pW {
  background-color: #ffffff;
}
.cid-umFlK1z2pW .item-wrapper {
  width: 100%;
}
.cid-umFlK1z2pW .row {
  align-items: center;
  justify-content: center;
}
.cid-umFlK1z2pW .b {
  margin-bottom: 30px;
}
.cid-umFlK1z2pW img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-umFlK1z2pW .b,
  .cid-umFlK1z2pW .t {
    margin-bottom: 20px;
  }
}
.cid-umFTs54lK7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-umFTs54lK7 .container {
  max-width: 1132px;
}
.cid-umFTs54lK7 .col-md-7 {
  margin: auto !important;
}
@media (max-width: 992px) {
  .cid-umFTs54lK7 .b {
    margin-bottom: 20px;
  }
}
.cid-uuqxJBsgRQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uqbnIgCSii {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqbnIgCSii .row {
  flex-direction: row-reverse;
}
.cid-uqbnIgCSii .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uqbnIgCSii .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #f6ae0c;
}
.cid-uqbnIgCSii .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uqbnIgCSii .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uqbnIgCSii .mbr-section-title {
  color: #3fb142;
}
@media (min-width: 1400px) {
  .cid-uqbnIgCSii .col-12 {
    padding: 0 2rem;
  }
  .cid-uqbnIgCSii .row {
    margin: 0 -2rem;
  }
}
.cid-uqbnIgCSii .mbr-text,
.cid-uqbnIgCSii .mbr-section-btn {
  color: #353535;
}
.cid-uqbvenBiEE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uqbvenBiEE .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-uqbvenBiEE .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uqbvenBiEE .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-uqbvenBiEE .wrapper {
  height: 100%;
  padding: 44px 40px;
  border: 1px solid;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-uqbvenBiEE .wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uqbvenBiEE .image-wrapper img {
  border: 2px solid #51add0;
  background-color: #51add0;
}
.cid-uqbvenBiEE .mbr-section-title {
  color: #3fb142;
}
.cid-uqeHfZrUIq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/material-fabricamakers-1920x1080.webp");
}
.cid-uqeHfZrUIq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqeHfZrUIq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqeHfZrUIq .items-wrapper {
  justify-content: flex-end;
}
.cid-uqeHfZrUIq .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqeHfZrUIq .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqeHfZrUIq .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
  width: 500px;
  height: 500px;
}
@media (max-width: 1700px) {
  .cid-uqeHfZrUIq .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-uqeHfZrUIq .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uqeHfZrUIq .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uqeHfZrUIq .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 1200px) {
  .cid-uqeHfZrUIq .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uqeHfZrUIq .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uqeHfZrUIq .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .cid-uqeHfZrUIq .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uqeHfZrUIq .content-wrapper {
    padding-left: 0;
  }
}
.cid-uqeHfZrUIq .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-uqeHfZrUIq .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uqeHfZrUIq .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uqeHfZrUIq .mbr-desc {
  color: #272b2e;
}
.cid-uqeHfZrUIq .mbr-section-title {
  color: #272b2e;
}
.cid-uqeHfZrUIq .mbr-text,
.cid-uqeHfZrUIq .text-wrapper {
  color: #272b2e;
}
.cid-uqeKTQU0s5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqeKTQU0s5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqeKTQU0s5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqeKTQU0s5 .card-wrapper {
  border: 2px solid #f6ae0c;
  border-radius: 1rem;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uqeKTQU0s5 .card-wrapper {
    padding: 1rem;
  }
}
.cid-uqeKTQU0s5 .image-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uqeKTQU0s5 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uqeKTQU0s5 .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uqeKTQU0s5 .text-wrapper p {
  margin: 0;
}
.cid-uqeKTQU0s5 .mbr-section-title {
  color: #491414;
}
.cid-uqeKTQU0s5 .mbr-text {
  color: #491414;
}
.cid-uqeKTQU0s5 .name {
  color: #005695;
}
.cid-uqeKTQU0s5 .position {
  color: #491414;
}
.cid-uqeW1BaBev {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uqeW1BaBev .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqeW1BaBev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqeW1BaBev .col-lg-8 {
  padding: 4rem 6rem;
}
@media (max-width: 1600px) {
  .cid-uqeW1BaBev .col-lg-8 {
    padding: 2rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uqeW1BaBev .col-lg-8 {
    padding: 2rem 1rem;
  }
}
.cid-uqeW1BaBev .img-col {
  border-left: 1px solid lightgray;
  padding: 1rem;
}
.cid-uqeW1BaBev .img-col img {
  width: 140px;
}
@media (max-width: 767px) {
  .cid-uqeW1BaBev .img-col {
    border-left: 0px solid lightgray;
    padding: 0;
    padding-top: 1rem;
  }
}
.cid-uqeW1BaBev .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uqeW1BaBev .mbr-text,
.cid-uqeW1BaBev .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uqeW1BaBev .mbr-section-title,
.cid-uqeW1BaBev .line {
  color: #808080;
}
.cid-uqeW1BaBev .mbr-section-subtitle,
.cid-uqeW1BaBev .align {
  text-align: left;
  color: #005695;
}
.cid-uqf89dDgHV {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uqf89dDgHV .item-wrapper {
  width: 100%;
}
.cid-uqf89dDgHV .row {
  align-items: center;
  justify-content: center;
}
.cid-uqf89dDgHV .b {
  margin-bottom: 30px;
}
.cid-uqf89dDgHV img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-uqf89dDgHV .b,
  .cid-uqf89dDgHV .t {
    margin-bottom: 20px;
  }
}
.cid-uqDEIv2UIi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uqDEIv2UIi .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-uqDEIv2UIi .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-uqDEIv2UIi .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uqDEIv2UIi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-uqDEIv2UIi .item {
    padding: 0 3rem;
  }
}
.cid-uqDEIv2UIi img,
.cid-uqDEIv2UIi .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 150px;
  object-fit: cover;
}
.cid-uqDEIv2UIi .item:focus,
.cid-uqDEIv2UIi span:focus {
  outline: none;
}
.cid-uqDEIv2UIi .mbr-section-title {
  color: #f5841f;
}
.cid-uqDEIv2UIi .mbr-text,
.cid-uqDEIv2UIi .mbr-section-btn {
  color: #353535;
}
.cid-uqDEIv2UIi .mbr-section-subtitle {
  color: #353535;
}
.cid-uqDEIv2UIi .mbr-section-title DIV {
  text-align: left;
}
.cid-uqDEIv2UIi .item-title {
  color: #f5841f;
}
.cid-uqf6R1B5nj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqf6R1B5nj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqf6R1B5nj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqf6R1B5nj a {
  font-weight: bold;
}
.cid-uqf6R1B5nj .mbr-section-title {
  color: #f5841f;
  text-align: center;
}
.cid-uqf6R1B5nj .mbr-text,
.cid-uqf6R1B5nj .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uuqx87LIpq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uqDJUkp8fh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqDJUkp8fh .row {
  flex-direction: row-reverse;
}
.cid-uqDJUkp8fh .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uqDJUkp8fh .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #f6ae0c;
}
.cid-uqDJUkp8fh .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uqDJUkp8fh .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uqDJUkp8fh .mbr-section-title {
  color: #f5841f;
}
@media (min-width: 1400px) {
  .cid-uqDJUkp8fh .col-12 {
    padding: 0 2rem;
  }
  .cid-uqDJUkp8fh .row {
    margin: 0 -2rem;
  }
}
.cid-uqDJUkp8fh .mbr-text,
.cid-uqDJUkp8fh .mbr-section-btn {
  color: #353535;
}
.cid-uqEjvdeOG8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uqEjvdeOG8 .link-wrap {
  width: 100%;
}
.cid-uqEjvdeOG8 .card-box,
.cid-uqEjvdeOG8 .img-wrapper {
  width: 50%;
}
.cid-uqEjvdeOG8 img {
  margin: auto;
  width: 80%;
}
.cid-uqEjvdeOG8 .link {
  display: inline-block;
}
.cid-uqEjvdeOG8 .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-uqEjvdeOG8 .link a:before {
  position: absolute;
  right: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-uqEjvdeOG8 .link a:hover {
  text-decoration: underline;
}
.cid-uqEjvdeOG8 .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-uqEjvdeOG8 .card-wrapper {
  padding: 3rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uqEjvdeOG8 .link,
.cid-uqEjvdeOG8 .link-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uqEjvdeOG8 .card {
    margin-bottom: 2rem;
  }
  .cid-uqEjvdeOG8 img {
    width: 100%;
  }
  .cid-uqEjvdeOG8 .card-wrapper {
    flex-direction: column;
  }
  .cid-uqEjvdeOG8 .card-box,
  .cid-uqEjvdeOG8 .img-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uqEjvdeOG8 .card-wrapper {
    padding: 3rem 1rem;
  }
  .cid-uqEjvdeOG8 .card-box,
  .cid-uqEjvdeOG8 .img-wrapper {
    width: 100%;
  }
}
.cid-uqEjvdeOG8 .card-subtitle {
  color: #0077ff;
}
.cid-uqEjvdeOG8 .mbr-text,
.cid-uqEjvdeOG8 .link-wrap {
  color: #333333;
}
.cid-uqEjvdeOG8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqEjvdeOG8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqEjvdeOG8 .card-title,
.cid-uqEjvdeOG8 .card-box {
  color: #3fb142;
}
.cid-uqEmDRJgOB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uqEmDRJgOB .link-wrap {
  width: 100%;
}
.cid-uqEmDRJgOB .card-box,
.cid-uqEmDRJgOB .img-wrapper {
  width: 50%;
}
.cid-uqEmDRJgOB img {
  margin: auto;
  width: 80%;
}
.cid-uqEmDRJgOB .link {
  display: inline-block;
}
.cid-uqEmDRJgOB .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-uqEmDRJgOB .link a:before {
  position: absolute;
  right: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-uqEmDRJgOB .link a:hover {
  text-decoration: underline;
}
.cid-uqEmDRJgOB .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-uqEmDRJgOB .card-wrapper {
  padding: 3rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uqEmDRJgOB .link,
.cid-uqEmDRJgOB .link-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uqEmDRJgOB .card {
    margin-bottom: 2rem;
  }
  .cid-uqEmDRJgOB img {
    width: 100%;
  }
  .cid-uqEmDRJgOB .card-wrapper {
    flex-direction: column;
  }
  .cid-uqEmDRJgOB .card-box,
  .cid-uqEmDRJgOB .img-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uqEmDRJgOB .card-wrapper {
    padding: 3rem 1rem;
  }
  .cid-uqEmDRJgOB .card-box,
  .cid-uqEmDRJgOB .img-wrapper {
    width: 100%;
  }
}
.cid-uqEmDRJgOB .card-subtitle {
  color: #0077ff;
}
.cid-uqEmDRJgOB .mbr-text,
.cid-uqEmDRJgOB .link-wrap {
  color: #333333;
}
.cid-uqEmDRJgOB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqEmDRJgOB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqEmDRJgOB .card-title,
.cid-uqEmDRJgOB .card-box {
  color: #3fb142;
}
.cid-uqEmY5h4vu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uqEmY5h4vu .link-wrap {
  width: 100%;
}
.cid-uqEmY5h4vu .card-box,
.cid-uqEmY5h4vu .img-wrapper {
  width: 50%;
}
.cid-uqEmY5h4vu img {
  margin: auto;
  width: 80%;
}
.cid-uqEmY5h4vu .link {
  display: inline-block;
}
.cid-uqEmY5h4vu .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-uqEmY5h4vu .link a:before {
  position: absolute;
  right: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-uqEmY5h4vu .link a:hover {
  text-decoration: underline;
}
.cid-uqEmY5h4vu .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-uqEmY5h4vu .card-wrapper {
  padding: 3rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uqEmY5h4vu .link,
.cid-uqEmY5h4vu .link-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uqEmY5h4vu .card {
    margin-bottom: 2rem;
  }
  .cid-uqEmY5h4vu img {
    width: 100%;
  }
  .cid-uqEmY5h4vu .card-wrapper {
    flex-direction: column;
  }
  .cid-uqEmY5h4vu .card-box,
  .cid-uqEmY5h4vu .img-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uqEmY5h4vu .card-wrapper {
    padding: 3rem 1rem;
  }
  .cid-uqEmY5h4vu .card-box,
  .cid-uqEmY5h4vu .img-wrapper {
    width: 100%;
  }
}
.cid-uqEmY5h4vu .card-subtitle {
  color: #0077ff;
}
.cid-uqEmY5h4vu .mbr-text,
.cid-uqEmY5h4vu .link-wrap {
  color: #333333;
}
.cid-uqEmY5h4vu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqEmY5h4vu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqEmY5h4vu .card-title,
.cid-uqEmY5h4vu .card-box {
  color: #3fb142;
}
.cid-uqEnloVQIW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uqEnloVQIW .link-wrap {
  width: 100%;
}
.cid-uqEnloVQIW .card-box,
.cid-uqEnloVQIW .img-wrapper {
  width: 50%;
}
.cid-uqEnloVQIW img {
  margin: auto;
  width: 80%;
}
.cid-uqEnloVQIW .link {
  display: inline-block;
}
.cid-uqEnloVQIW .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-uqEnloVQIW .link a:before {
  position: absolute;
  right: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-uqEnloVQIW .link a:hover {
  text-decoration: underline;
}
.cid-uqEnloVQIW .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-uqEnloVQIW .card-wrapper {
  padding: 3rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uqEnloVQIW .link,
.cid-uqEnloVQIW .link-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uqEnloVQIW .card {
    margin-bottom: 2rem;
  }
  .cid-uqEnloVQIW img {
    width: 100%;
  }
  .cid-uqEnloVQIW .card-wrapper {
    flex-direction: column;
  }
  .cid-uqEnloVQIW .card-box,
  .cid-uqEnloVQIW .img-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uqEnloVQIW .card-wrapper {
    padding: 3rem 1rem;
  }
  .cid-uqEnloVQIW .card-box,
  .cid-uqEnloVQIW .img-wrapper {
    width: 100%;
  }
}
.cid-uqEnloVQIW .card-subtitle {
  color: #0077ff;
}
.cid-uqEnloVQIW .mbr-text,
.cid-uqEnloVQIW .link-wrap {
  color: #333333;
}
.cid-uqEnloVQIW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqEnloVQIW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqEnloVQIW .card-title,
.cid-uqEnloVQIW .card-box {
  color: #3fb142;
}
.cid-uqDJUn1lsU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqDJUn1lsU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqDJUn1lsU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqDJUn1lsU a {
  font-weight: bold;
}
.cid-uqDJUn1lsU .mbr-section-title {
  color: #f5841f;
  text-align: center;
}
.cid-uqDJUn1lsU .mbr-text,
.cid-uqDJUn1lsU .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uuqxy99M1C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uqF8olwjAT {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqF8olwjAT .row {
  flex-direction: row-reverse;
}
.cid-uqF8olwjAT .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uqF8olwjAT .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #f6ae0c;
}
.cid-uqF8olwjAT .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uqF8olwjAT .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uqF8olwjAT .mbr-section-title {
  color: #f5841f;
}
@media (min-width: 1400px) {
  .cid-uqF8olwjAT .col-12 {
    padding: 0 2rem;
  }
  .cid-uqF8olwjAT .row {
    margin: 0 -2rem;
  }
}
.cid-uqF8olwjAT .mbr-text,
.cid-uqF8olwjAT .mbr-section-btn {
  color: #353535;
}
.cid-uqFeEpSzBZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe313;
}
.cid-uqFeEpSzBZ .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uqFeEpSzBZ .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uqFeEpSzBZ .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uqFeEpSzBZ .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-uqFeEpSzBZ .mbr-text,
.cid-uqFeEpSzBZ .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uqFeEpSzBZ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqFeEpSzBZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqFeEpSzBZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqFf1MtcFX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uqFf1MtcFX .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uqFf1MtcFX .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uqFf1MtcFX .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uqFf1MtcFX .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-uqFf1MtcFX .mbr-text,
.cid-uqFf1MtcFX .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uqFf1MtcFX .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqFf1MtcFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqFf1MtcFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqgg05VSf {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/sacola-robo-1920x1080.webp");
}
.cid-uuqgg05VSf .mbr-overlay {
  background-color: #353535;
  opacity: 0;
}
@media (max-width: 992px) {
  .cid-uuqgg05VSf {
    background-position: right;
  }
}
.cid-uuqgg05VSf input,
.cid-uuqgg05VSf textarea {
  border-radius: 0;
}
.cid-uuqgg05VSf input:hover,
.cid-uuqgg05VSf textarea:hover {
  border: 1px solid transparent !important;
}
.cid-uuqgg05VSf .row {
  justify-content: flex-end;
}
.cid-uuqgg05VSf textarea {
  min-height: 200px;
}
.cid-uuqgg05VSf .col-auto {
  margin-right: auto;
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-uuqgg05VSf .col-auto {
    margin: auto;
  }
}
.cid-uuqgg05VSf .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cid-uuqgg05VSf .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #f6ae0c;
  font-size: 1.2rem;
}
.cid-uuqgg05VSf .mbr-main-subtitle {
  background: #f6ae0c;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-uuqgg05VSf .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #f6ae0c;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uuqgg05VSf .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-uuqgg05VSf .btn {
  padding: 1rem 3rem;
}
.cid-uuqgg05VSf .form-control,
.cid-uuqgg05VSf .field-input {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uuqgg05VSf .form-control::-webkit-input-placeholder,
.cid-uuqgg05VSf .field-input::-webkit-input-placeholder,
.cid-uuqgg05VSf .form-control::-webkit-input-placeholder,
.cid-uuqgg05VSf .field-input::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uuqgg05VSf .form-control:-moz-placeholder,
.cid-uuqgg05VSf .field-input:-moz-placeholder,
.cid-uuqgg05VSf .form-control:-moz-placeholder,
.cid-uuqgg05VSf .field-input:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uuqgg05VSf .form-control:hover,
.cid-uuqgg05VSf .field-input:hover,
.cid-uuqgg05VSf .form-control:focus,
.cid-uuqgg05VSf .field-input:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uuqgg05VSf .form-control:hover::-webkit-input-placeholder,
.cid-uuqgg05VSf .field-input:hover::-webkit-input-placeholder,
.cid-uuqgg05VSf .form-control:focus::-webkit-input-placeholder,
.cid-uuqgg05VSf .field-input:focus::-webkit-input-placeholder,
.cid-uuqgg05VSf .form-control:hover::-webkit-input-placeholder,
.cid-uuqgg05VSf .field-input:hover::-webkit-input-placeholder,
.cid-uuqgg05VSf .form-control:focus::-webkit-input-placeholder,
.cid-uuqgg05VSf .field-input:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uuqgg05VSf .form-control:hover:-moz-placeholder,
.cid-uuqgg05VSf .field-input:hover:-moz-placeholder,
.cid-uuqgg05VSf .form-control:focus:-moz-placeholder,
.cid-uuqgg05VSf .field-input:focus:-moz-placeholder,
.cid-uuqgg05VSf .form-control:hover:-moz-placeholder,
.cid-uuqgg05VSf .field-input:hover:-moz-placeholder,
.cid-uuqgg05VSf .form-control:focus:-moz-placeholder,
.cid-uuqgg05VSf .field-input:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uuqgg05VSf .jq-number__spin:hover,
.cid-uuqgg05VSf .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uuqgg05VSf .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uuqgg05VSf .jq-selectbox li,
.cid-uuqgg05VSf .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqgg05VSf .jq-selectbox li:hover,
.cid-uuqgg05VSf .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqgg05VSf .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uuqgg05VSf .jq-number__spin.minus:hover:after,
.cid-uuqgg05VSf .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uuqgg05VSf .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uuqgg05VSf .jq-number__spin.minus:after,
.cid-uuqgg05VSf .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uuqgg05VSf .mbr-section-text {
  color: #353535;
}
.cid-uuqgg05VSf .mbr-section-title {
  color: #000000;
}
.cid-uuqgg05VSf .soc-link,
.cid-uuqgg05VSf .soc-wrapper {
  color: #000000;
}
.cid-uqFim6sWtN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqFim6sWtN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqFim6sWtN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqFim6sWtN a {
  font-weight: bold;
}
.cid-uqFim6sWtN .mbr-section-title {
  color: #f5841f;
  text-align: center;
}
.cid-uqFim6sWtN .mbr-text,
.cid-uqFim6sWtN .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uuqxuacOkS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ureb6FcgN0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ureb6FcgN0 .row {
  flex-direction: row-reverse;
}
.cid-ureb6FcgN0 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ureb6FcgN0 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #f6ae0c;
}
.cid-ureb6FcgN0 .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-ureb6FcgN0 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-ureb6FcgN0 .mbr-section-title {
  color: #e43f3f;
}
@media (min-width: 1400px) {
  .cid-ureb6FcgN0 .col-12 {
    padding: 0 2rem;
  }
  .cid-ureb6FcgN0 .row {
    margin: 0 -2rem;
  }
}
.cid-ureb6FcgN0 .mbr-text,
.cid-ureb6FcgN0 .mbr-section-btn {
  color: #353535;
}
.cid-ureb6Fwaxu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-ureb6Fwaxu .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-ureb6Fwaxu .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ureb6Fwaxu .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-ureb6Fwaxu .wrapper {
  height: 100%;
  padding: 44px 40px;
  border: 1px solid;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-ureb6Fwaxu .wrapper {
    padding: 3rem 1rem;
  }
}
.cid-ureb6Fwaxu .image-wrapper img {
  border: 2px solid #51add0;
  background-color: #51add0;
}
.cid-ureb6Fwaxu .mbr-section-title {
  color: #e43f3f;
}
.cid-ureb6FRMbM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aviao-1024x576.webp");
}
.cid-ureb6FRMbM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ureb6FRMbM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ureb6FRMbM .items-wrapper {
  justify-content: flex-end;
}
.cid-ureb6FRMbM .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ureb6FRMbM .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ureb6FRMbM .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
  width: 500px;
  height: 500px;
}
@media (max-width: 1700px) {
  .cid-ureb6FRMbM .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-ureb6FRMbM .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-ureb6FRMbM .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-ureb6FRMbM .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 1200px) {
  .cid-ureb6FRMbM .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-ureb6FRMbM .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-ureb6FRMbM .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .cid-ureb6FRMbM .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-ureb6FRMbM .content-wrapper {
    padding-left: 0;
  }
}
.cid-ureb6FRMbM .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-ureb6FRMbM .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ureb6FRMbM .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-ureb6FRMbM .mbr-desc {
  color: #272b2e;
}
.cid-ureb6FRMbM .mbr-section-title {
  color: #272b2e;
}
.cid-ureb6FRMbM .mbr-text,
.cid-ureb6FRMbM .text-wrapper {
  color: #272b2e;
}
.cid-ureACfy4OO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ureACfy4OO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ureACfy4OO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ureACfy4OO .row {
  justify-content: center;
}
.cid-ureACfy4OO .text-wrapper {
  padding: 22px 0;
}
.cid-ureACfy4OO .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ureACfy4OO .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-ureACfy4OO .image-wrapper img {
  position: absolute;
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 100%;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-ureACfy4OO .image-wrapper img {
    position: static;
    width: 250px;
    height: 250px;
  }
}
.cid-ureACfy4OO .mbr-text {
  color: #373f46;
  text-align: left;
}
.cid-urefAKVxK2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-urefAKVxK2 .column-wrapper {
  padding-left: 1.5rem;
}
.cid-urefAKVxK2 .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-urefAKVxK2 .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-urefAKVxK2 .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-urefAKVxK2 .mbr-text,
.cid-urefAKVxK2 .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-urefAKVxK2 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urefAKVxK2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urefAKVxK2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uregPh8rUr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uregPh8rUr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uregPh8rUr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uregPh8rUr .row {
  display: flex;
  align-items: flex-start;
  gap: 6em;
}
@media (max-width: 767px) {
  .cid-uregPh8rUr .row {
    gap: 3em;
  }
}
@media (max-width: 575px) {
  .cid-uregPh8rUr .row {
    flex-wrap: wrap;
  }
}
.cid-uregPh8rUr .col-text {
  width: 1%;
  flex-grow: 1;
}
@media (max-width: 575px) {
  .cid-uregPh8rUr .col-text {
    width: 100%;
  }
}
.cid-uregPh8rUr .mbr-section-title {
  color: #272727;
  opacity: 0.4;
  margin-bottom: 4px;
}
.cid-uregPh8rUr .mbr-text {
  color: #272727;
  margin-bottom: 0;
}
.cid-uregPh8rUr .mbr-section-btn {
  margin-top: 20px;
}
.cid-uregPh8rUr .col-img {
  width: 1%;
  flex-grow: 1;
}
@media (max-width: 575px) {
  .cid-uregPh8rUr .col-img {
    width: 100%;
  }
}
.cid-uregPh8rUr .image-wrapper {
  width: 80%;
  margin: 0 auto;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uregPh8rUr .image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uregPh8rUr .image-wrapper img {
    height: 360px;
  }
}
@media (max-width: 767px) {
  .cid-uregPh8rUr .image-wrapper img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-uregPh8rUr .image-wrapper {
    width: 100%;
  }
}
.cid-uregaDYaAi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uregaDYaAi .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uregaDYaAi .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uregaDYaAi .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uregaDYaAi .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-uregaDYaAi .mbr-text,
.cid-uregaDYaAi .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uregaDYaAi .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uregaDYaAi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uregaDYaAi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ureb6GxpbW {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-ureb6GxpbW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ureb6GxpbW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ureb6GxpbW .col-lg-8 {
  padding: 4rem 6rem;
}
@media (max-width: 1600px) {
  .cid-ureb6GxpbW .col-lg-8 {
    padding: 2rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-ureb6GxpbW .col-lg-8 {
    padding: 2rem 1rem;
  }
}
.cid-ureb6GxpbW .img-col {
  border-left: 1px solid lightgray;
  padding: 1rem;
}
.cid-ureb6GxpbW .img-col img {
  width: 140px;
}
@media (max-width: 767px) {
  .cid-ureb6GxpbW .img-col {
    border-left: 0px solid lightgray;
    padding: 0;
    padding-top: 1rem;
  }
}
.cid-ureb6GxpbW .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-ureb6GxpbW .mbr-text,
.cid-ureb6GxpbW .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-ureb6GxpbW .mbr-section-title,
.cid-ureb6GxpbW .line {
  color: #808080;
}
.cid-ureb6GxpbW .mbr-section-subtitle,
.cid-ureb6GxpbW .align {
  text-align: left;
  color: #005695;
}
.cid-ureb6GSCkU {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ureb6GSCkU .item-wrapper {
  width: 100%;
}
.cid-ureb6GSCkU .row {
  align-items: center;
  justify-content: center;
}
.cid-ureb6GSCkU .b {
  margin-bottom: 30px;
}
.cid-ureb6GSCkU img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-ureb6GSCkU .b,
  .cid-ureb6GSCkU .t {
    margin-bottom: 20px;
  }
}
.cid-uresLgiAIJ {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uresLgiAIJ .item-wrapper {
  width: 100%;
}
.cid-uresLgiAIJ .row {
  align-items: center;
  justify-content: center;
}
.cid-uresLgiAIJ .b {
  margin-bottom: 30px;
}
.cid-uresLgiAIJ img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-uresLgiAIJ .b,
  .cid-uresLgiAIJ .t {
    margin-bottom: 20px;
  }
}
.cid-ureb6HJRMU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ureb6HJRMU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ureb6HJRMU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ureb6HJRMU a {
  font-weight: bold;
}
.cid-ureb6HJRMU .mbr-section-title {
  color: #e43f3f;
  text-align: center;
}
.cid-ureb6HJRMU .mbr-text,
.cid-ureb6HJRMU .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uuqxf4H587 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-us2ZNNRGnt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us2ZNNRGnt .row {
  flex-direction: row-reverse;
}
.cid-us2ZNNRGnt .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-us2ZNNRGnt .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #f6ae0c;
}
.cid-us2ZNNRGnt .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-us2ZNNRGnt .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-us2ZNNRGnt .mbr-section-title {
  color: #005695;
}
@media (min-width: 1400px) {
  .cid-us2ZNNRGnt .col-12 {
    padding: 0 2rem;
  }
  .cid-us2ZNNRGnt .row {
    margin: 0 -2rem;
  }
}
.cid-us2ZNNRGnt .mbr-text,
.cid-us2ZNNRGnt .mbr-section-btn {
  color: #353535;
}
.cid-us2ZNOAu6A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fabricamakers-sala14-1920x1080.webp");
}
.cid-us2ZNOAu6A .mbr-fallback-image.disabled {
  display: none;
}
.cid-us2ZNOAu6A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us2ZNOAu6A .items-wrapper {
  justify-content: flex-end;
}
.cid-us2ZNOAu6A .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-us2ZNOAu6A .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-us2ZNOAu6A .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
  width: 500px;
  height: 500px;
}
@media (max-width: 1700px) {
  .cid-us2ZNOAu6A .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-us2ZNOAu6A .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-us2ZNOAu6A .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-us2ZNOAu6A .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 1200px) {
  .cid-us2ZNOAu6A .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-us2ZNOAu6A .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-us2ZNOAu6A .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .cid-us2ZNOAu6A .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-us2ZNOAu6A .content-wrapper {
    padding-left: 0;
  }
}
.cid-us2ZNOAu6A .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-us2ZNOAu6A .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-us2ZNOAu6A .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-us2ZNOAu6A .mbr-desc {
  color: #272b2e;
}
.cid-us2ZNOAu6A .mbr-section-title {
  color: #272b2e;
}
.cid-us2ZNOAu6A .mbr-text,
.cid-us2ZNOAu6A .text-wrapper {
  color: #272b2e;
}
.cid-us2ZNOAu6A .mbr-section-title,
.cid-us2ZNOAu6A .mbr-section-btn {
  color: #005695;
}
.cid-uupq6mL6GN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uupq6mL6GN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupq6mL6GN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupq6mL6GN .container {
  overflow: hidden;
}
.cid-uupq6mL6GN .row {
  justify-content: center;
}
.cid-uupq6mL6GN .title-wrapper {
  margin-bottom: 80px;
}
.cid-uupq6mL6GN .title-wrapper .mbr-section-title {
  padding-top: 22px;
  margin-bottom: 0;
}
.cid-uupq6mL6GN .video-block {
  width: 62%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uupq6mL6GN .video-block {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .cid-uupq6mL6GN .video-block {
    width: 100%;
  }
}
.cid-uupq6mL6GN .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uupq6mL6GN .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uupq6mL6GN .app-video-wrapper::before {
  color: #495dff;
  text-shadow: none;
}
.cid-uupq6mL6GN .mbr-section-title {
  color: #495DFF;
}
.cid-us2ZNPfcux {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-us2ZNPfcux .column-wrapper {
  padding-left: 1.5rem;
}
.cid-us2ZNPfcux .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-us2ZNPfcux .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-us2ZNPfcux .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-us2ZNPfcux .mbr-text,
.cid-us2ZNPfcux .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-us2ZNPfcux .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-us2ZNPfcux .mbr-fallback-image.disabled {
  display: none;
}
.cid-us2ZNPfcux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us3F9Ex0wi {
  background-color: #ffffff;
}
.cid-us3F9Ex0wi .mbr-fallback-image.disabled {
  display: none;
}
.cid-us3F9Ex0wi .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-us3F9Ex0wi .container {
    padding: 0 16px;
  }
}
.cid-us3F9Ex0wi .row {
  margin: 0 -28px;
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-us3F9Ex0wi .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-us3F9Ex0wi .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-us3F9Ex0wi .item {
  padding: 0 28px;
  margin-bottom: 32px;
}
.cid-us3F9Ex0wi .item:hover .item-wrapper .item-content .mbr-section-btn .btn .mbr-iconfont,
.cid-us3F9Ex0wi .item:focus .item-wrapper .item-content .mbr-section-btn .btn .mbr-iconfont {
  transform: translateX(8px);
}
.cid-us3F9Ex0wi .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-us3F9Ex0wi .item .item-wrapper .item-img img {
  height: 280px;
  object-fit: cover;
  margin-bottom: 26px;
}
.cid-us3F9Ex0wi .item .item-wrapper .item-img .item-text {
  margin-bottom: 12px;
}
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline {
  padding: 0;
  border: none !important;
  flex-direction: row;
}
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline .mbr-iconfont,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline .mbr-iconfont,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline .mbr-iconfont,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline .mbr-iconfont,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline .mbr-iconfont,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline .mbr-iconfont,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline .mbr-iconfont,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline .mbr-iconfont {
  margin-left: 8px;
  margin-right: 0;
  transition: all 0.3s ease-in-out;
}
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:hover,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:hover,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:hover,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:hover,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:hover,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:hover,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:hover,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:hover,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:focus,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:focus,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:focus,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:focus,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:focus,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:focus,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:focus,
.cid-us3F9Ex0wi .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:focus {
  transform: scale(1);
}
.cid-us3F9Ex0wi .mbr-section-title {
  color: #764d9e;
  text-align: center;
}
.cid-us3F9Ex0wi .item-text {
  color: #000000;
}
.cid-us3O29VhFZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-us3O29VhFZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-us3O29VhFZ .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-us3O29VhFZ .container {
    padding: 0 20px;
  }
}
.cid-us3O29VhFZ .item {
  margin-top: 32px;
}
.cid-us3O29VhFZ .item:first-child {
  margin-top: 0;
}
.cid-us3O29VhFZ .item:nth-child(2) {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-us3O29VhFZ .item:nth-child(2) {
    margin-top: 32px;
  }
}
.cid-us3O29VhFZ .item:nth-child(2n) .item-wrapper {
  background-color: #005695;
}
.cid-us3O29VhFZ .item:nth-child(2n) .item-wrapper .card-box .icon-wrapper_2 .icons-wrap .icon-wrap .mbr-iconfont {
  color: #ffffff;
}
.cid-us3O29VhFZ .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 40px;
  background-color: #ffe161;
  border-radius: 20px !important;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-us3O29VhFZ .item .item-wrapper {
    padding: 46px 20px;
  }
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .card-desc_1,
.cid-us3O29VhFZ .item .item-wrapper .card-box .card-desc_2 {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .card-desc_1,
  .cid-us3O29VhFZ .item .item-wrapper .card-box .card-desc_2 {
    margin-bottom: 46px;
  }
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1,
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1,
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 {
    margin-bottom: 46px;
  }
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap,
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap {
  display: inline-flex;
}
@media (max-width: 768px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap,
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap {
    display: inline-block;
  }
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap .icon-wrap,
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap .icon-wrap {
  margin-left: 60px;
}
@media (max-width: 1200px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap .icon-wrap,
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap .icon-wrap {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap .icon-wrap,
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap .icon-wrap {
    margin: 0 0 20px 0;
  }
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap .icon-wrap:first-child,
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap .icon-wrap:first-child {
  margin-left: 0;
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap .icon-wrap .mbr-iconfont,
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap .icon-wrap .mbr-iconfont {
  display: block;
  font-size: 65px;
  color: #000000;
}
@media (max-width: 1440px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap .icon-wrap .mbr-iconfont,
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap .icon-wrap .mbr-iconfont {
    font-size: 100px;
  }
}
@media (max-width: 1200px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap .icon-wrap .mbr-iconfont,
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap .icon-wrap .mbr-iconfont {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap .icon-wrap .mbr-iconfont,
  .cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap .icon-wrap .mbr-iconfont {
    font-size: 60px;
  }
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap .icon-wrap .icon-desc_1,
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap .icon-wrap .icon-desc_1,
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_1 .icons-wrap .icon-wrap .icon-desc_2,
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .icons-wrap .icon-wrap .icon-desc_2 {
  margin: 20px 0 0 0;
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .icon-wrapper_2 .mbr-iconfont {
  color: #ffffff;
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .card-title_1,
.cid-us3O29VhFZ .item .item-wrapper .card-box .card-title_2 {
  margin-bottom: 32px;
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .title-wrapper_1 .card-title_1 {
  display: inline-flex;
  width: 70%;
  margin-bottom: 32px;
  background-image: linear-gradient(#000000 31.5%, #005695);
  color: transparent;
  -webkit-background-clip: text;
}
@media (max-width: 1200px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .title-wrapper_1 .card-title_1 {
    width: 100%;
  }
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .title-wrapper_2 .card-title_2 {
  display: inline-flex;
  width: 70%;
  margin-bottom: 32px;
  background-image: linear-gradient(#ffffff 31.5%, #005695);
  color: transparent;
  -webkit-background-clip: text;
}
@media (max-width: 1200px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .title-wrapper_2 .card-title_2 {
    width: 100%;
  }
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .text-wrapper_1 .card-text_1 {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .text-wrapper_1 .card-text_1 {
    width: 100%;
  }
}
.cid-us3O29VhFZ .item .item-wrapper .card-box .text-wrapper_2 .card-text_2 {
  display: inline-flex;
  width: 50%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-us3O29VhFZ .item .item-wrapper .card-box .text-wrapper_2 .card-text_2 {
    width: 100%;
  }
}
.cid-us3O29VhFZ .card-desc_1 {
  color: #000000;
  text-align: center;
}
.cid-us3O29VhFZ .card-desc_2 {
  color: #ffffff;
  text-align: center;
}
.cid-us3O29VhFZ .card-text_1,
.cid-us3O29VhFZ .text-wrapper_1 {
  color: #000000;
  text-align: center;
}
.cid-us3O29VhFZ .card-text_2,
.cid-us3O29VhFZ .text-wrapper_2 {
  color: #ffffff;
  text-align: center;
}
.cid-us3O29VhFZ .icon-desc_1 {
  color: #000000;
  text-align: center;
}
.cid-us3O29VhFZ .icon-desc_2 {
  color: #ffffff;
  text-align: center;
}
.cid-us3O29VhFZ .card-title_1,
.cid-us3O29VhFZ .buttons_1,
.cid-us3O29VhFZ .icon-wrapper_1,
.cid-us3O29VhFZ .title-wrapper_1 {
  text-align: center;
}
.cid-us3O29VhFZ .card-title_2,
.cid-us3O29VhFZ .buttons_2,
.cid-us3O29VhFZ .icon-wrapper_2,
.cid-us3O29VhFZ .title-wrapper_2 {
  text-align: center;
}
.cid-uuqxjqlAIJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-utQMzEk0EF {
  background-color: #ffffff;
}
.cid-utQMzEk0EF .row {
  flex-direction: row-reverse;
}
.cid-utQMzEk0EF .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-utQMzEk0EF .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #f6ae0c;
}
.cid-utQMzEk0EF .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-utQMzEk0EF .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-utQMzEk0EF .mbr-section-title {
  color: #e43f3f;
}
@media (min-width: 1400px) {
  .cid-utQMzEk0EF .col-12 {
    padding: 0 2rem;
  }
  .cid-utQMzEk0EF .row {
    margin: 0 -2rem;
  }
}
.cid-utQMzEk0EF .mbr-text,
.cid-utQMzEk0EF .mbr-section-btn {
  color: #353535;
}
.cid-utQO3oDyt4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fabricamakers-index0-1920x1080.webp");
}
.cid-utQO3oDyt4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utQO3oDyt4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utQO3oDyt4 .container {
  overflow: hidden;
}
.cid-utQO3oDyt4 .row {
  justify-content: center;
}
.cid-utQO3oDyt4 .title-wrapper {
  margin-bottom: 80px;
}
.cid-utQO3oDyt4 .title-wrapper .mbr-section-title {
  padding-top: 22px;
  margin-bottom: 0;
}
.cid-utQO3oDyt4 .video-block {
  width: 62%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-utQO3oDyt4 .video-block {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .cid-utQO3oDyt4 .video-block {
    width: 100%;
  }
}
.cid-utQO3oDyt4 .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-utQO3oDyt4 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-utQO3oDyt4 .app-video-wrapper::before {
  color: #495dff;
  text-shadow: none;
}
.cid-utQO3oDyt4 .mbr-section-title {
  color: #495DFF;
}
.cid-utQMzEGhTx {
  background-color: #ffffff;
}
.cid-utQMzEGhTx .item-wrapper {
  width: 100%;
}
.cid-utQMzEGhTx .row {
  align-items: center;
  justify-content: center;
}
.cid-utQMzEGhTx .b {
  margin-bottom: 30px;
}
.cid-utQMzEGhTx img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-utQMzEGhTx .b,
  .cid-utQMzEGhTx .t {
    margin-bottom: 20px;
  }
}
.cid-utReXpu3Da {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fff0b0;
}
.cid-utReXpu3Da .circle-wrap {
  position: absolute;
  top: 0;
  left: -9%;
  width: 1100px;
  height: 1100px;
  border-radius: 100%;
  border: 120px solid #ffffff;
  opacity: .6;
}
.cid-utReXpu3Da .mbr-fallback-image.disabled {
  display: none;
}
.cid-utReXpu3Da .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-utReXpu3Da .container {
    padding: 0 15px;
  }
}
.cid-utReXpu3Da .row {
  position: relative;
  z-index: 1;
}
.cid-utReXpu3Da .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-utReXpu3Da .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-utReXpu3Da .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-utReXpu3Da .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-utReXpu3Da .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-utReXpu3Da .content-wrapper .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utReXpu3Da .content-wrapper .content-wrap {
    display: block;
  }
}
.cid-utReXpu3Da .content-wrapper .content-wrap .images-wrapper {
  width: 48%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  height: fit-content;
}
@media (max-width: 992px) {
  .cid-utReXpu3Da .content-wrapper .content-wrap .images-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.cid-utReXpu3Da .content-wrapper .content-wrap .images-wrapper .card {
  justify-content: center;
}
.cid-utReXpu3Da .content-wrapper .content-wrap .images-wrapper .images-item img {
  margin-bottom: 45px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-utReXpu3Da .content-wrapper .content-wrap .images-wrapper .images-item img {
    margin-bottom: 40px;
  }
}
.cid-utReXpu3Da .content-wrapper .content-wrap .images-wrapper .images-item img:last-child {
  margin-bottom: 0;
}
.cid-utReXpu3Da .content-wrapper .content-wrap .images-wrapper .images-item .image_1 {
  height: 360px;
}
@media (max-width: 992px) {
  .cid-utReXpu3Da .content-wrapper .content-wrap .images-wrapper .images-item .image_1 {
    height: 300px;
  }
}
.cid-utReXpu3Da .content-wrapper .content-wrap .images-wrapper .images-item .image_2 {
  height: 220px;
}
@media (max-width: 992px) {
  .cid-utReXpu3Da .content-wrapper .content-wrap .images-wrapper .images-item .image_2 {
    height: 300px;
  }
}
.cid-utReXpu3Da .content-wrapper .content-wrap .items-wrapper {
  width: 38%;
  padding-top: 70px;
}
@media (max-width: 992px) {
  .cid-utReXpu3Da .content-wrapper .content-wrap .items-wrapper {
    padding-top: 40px;
    width: 100%;
  }
}
.cid-utReXpu3Da .content-wrapper .content-wrap .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 30px;
}
.cid-utReXpu3Da .content-wrapper .content-wrap .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 30px;
}
.cid-utReXpu3Da .mbr-section-title {
  color: #30262b;
}
.cid-utReXpu3Da .item-title {
  color: #30262b;
}
.cid-utReXpu3Da .item-text {
  color: #30262b;
}
.cid-utQMzFivuV {
  background-color: #ffffff;
}
.cid-utQMzFivuV .item-wrapper {
  width: 100%;
}
.cid-utQMzFivuV .row {
  align-items: center;
  justify-content: center;
}
.cid-utQMzFivuV .b {
  margin-bottom: 30px;
}
.cid-utQMzFivuV img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-utQMzFivuV .b,
  .cid-utQMzFivuV .t {
    margin-bottom: 20px;
  }
}
.cid-utR4BYpv6K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-utR4BYpv6K .mbr-fallback-image.disabled {
  display: none;
}
.cid-utR4BYpv6K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utR4BYpv6K .items-wrapper {
  justify-content: flex-end;
}
.cid-utR4BYpv6K .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-utR4BYpv6K .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-utR4BYpv6K .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
  width: 500px;
  height: 500px;
}
@media (max-width: 1700px) {
  .cid-utR4BYpv6K .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-utR4BYpv6K .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-utR4BYpv6K .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-utR4BYpv6K .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 1200px) {
  .cid-utR4BYpv6K .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-utR4BYpv6K .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-utR4BYpv6K .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .cid-utR4BYpv6K .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-utR4BYpv6K .content-wrapper {
    padding-left: 0;
  }
}
.cid-utR4BYpv6K .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-utR4BYpv6K .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-utR4BYpv6K .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-utR4BYpv6K .mbr-desc {
  color: #272b2e;
}
.cid-utR4BYpv6K .mbr-section-title {
  color: #272b2e;
}
.cid-utR4BYpv6K .mbr-text,
.cid-utR4BYpv6K .text-wrapper {
  color: #272b2e;
}
.cid-utR4BYpv6K .mbr-section-title,
.cid-utR4BYpv6K .mbr-section-btn {
  color: #005695;
}
.cid-utQMzEZbBM {
  background-color: #ffffff;
}
.cid-utQMzEZbBM .item-wrapper {
  width: 100%;
}
.cid-utQMzEZbBM .row {
  align-items: center;
  justify-content: center;
}
.cid-utQMzEZbBM .b {
  margin-bottom: 30px;
}
.cid-utQMzEZbBM img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-utQMzEZbBM .b,
  .cid-utQMzEZbBM .t {
    margin-bottom: 20px;
  }
}
.cid-utR1ZptfMA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fabricamakers-index0-1920x1080.webp");
}
.cid-utR1ZptfMA .mbr-fallback-image.disabled {
  display: none;
}
.cid-utR1ZptfMA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utR1ZptfMA .container {
  overflow: hidden;
}
.cid-utR1ZptfMA .row {
  justify-content: center;
}
.cid-utR1ZptfMA .title-wrapper {
  margin-bottom: 80px;
}
.cid-utR1ZptfMA .title-wrapper .mbr-section-title {
  padding-top: 22px;
  margin-bottom: 0;
}
.cid-utR1ZptfMA .video-block {
  width: 62%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-utR1ZptfMA .video-block {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .cid-utR1ZptfMA .video-block {
    width: 100%;
  }
}
.cid-utR1ZptfMA .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-utR1ZptfMA .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-utR1ZptfMA .app-video-wrapper::before {
  color: #495dff;
  text-shadow: none;
}
.cid-utR1ZptfMA .mbr-section-title {
  color: #495DFF;
}
.cid-utQMzFC31p {
  background-color: #ffffff;
}
.cid-utQMzFC31p .item-wrapper {
  width: 100%;
}
.cid-utQMzFC31p .row {
  align-items: center;
  justify-content: center;
}
.cid-utQMzFC31p .b {
  margin-bottom: 30px;
}
.cid-utQMzFC31p img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-utQMzFC31p .b,
  .cid-utQMzFC31p .t {
    margin-bottom: 20px;
  }
}
.cid-utQMzFYnxf {
  background-color: #ffffff;
}
.cid-utQMzFYnxf .item-wrapper {
  width: 100%;
}
.cid-utQMzFYnxf .row {
  align-items: center;
  justify-content: center;
}
.cid-utQMzFYnxf .b {
  margin-bottom: 30px;
}
.cid-utQMzFYnxf img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-utQMzFYnxf .b,
  .cid-utQMzFYnxf .t {
    margin-bottom: 20px;
  }
}
.cid-utRn9t0ivY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-utRn9t0ivY .mbr-fallback-image.disabled {
  display: none;
}
.cid-utRn9t0ivY .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-utRn9t0ivY .container {
    padding: 0 16px;
  }
}
.cid-utRn9t0ivY .row {
  justify-content: center;
}
.cid-utRn9t0ivY .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-utRn9t0ivY .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-utRn9t0ivY .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-utRn9t0ivY .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #e43f3f !important;
  color: #8caff0 !important;
  border-color: #e43f3f !important;
}
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f6ae0c !important;
  color: #8caff0 !important;
}
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #e43f3f !important;
  color: #8caff0 !important;
}
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #764d9e !important;
  color: #8caff0 !important;
}
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #8caff0 !important;
  color: #e43f3f !important;
  border-color: #8caff0 !important;
}
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f5841f !important;
  color: #8caff0 !important;
}
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #d944b7 !important;
  color: #8caff0 !important;
}
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-utRn9t0ivY .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-utRn9t0ivY .mbr-desc {
  color: #706cff;
}
.cid-utRn9t0ivY .mbr-section-title {
  color: #000000;
}
.cid-utRn9t0ivY .mbr-text {
  color: #000000;
}
.cid-utRn9t0ivY .mbr-section-btn {
  text-align: center;
}
.cid-uuqxRq4iAc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-utRooIxq7l {
  background-color: #ffffff;
}
.cid-utRooIxq7l .row {
  flex-direction: row-reverse;
}
.cid-utRooIxq7l .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-utRooIxq7l .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #f6ae0c;
}
.cid-utRooIxq7l .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-utRooIxq7l .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-utRooIxq7l .mbr-section-title {
  color: #005695;
}
@media (min-width: 1400px) {
  .cid-utRooIxq7l .col-12 {
    padding: 0 2rem;
  }
  .cid-utRooIxq7l .row {
    margin: 0 -2rem;
  }
}
.cid-utRooIxq7l .mbr-text,
.cid-utRooIxq7l .mbr-section-btn {
  color: #353535;
}
.cid-utRooLFRis {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-utRooLFRis .mbr-fallback-image.disabled {
  display: none;
}
.cid-utRooLFRis .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utRooLFRis .items-wrapper {
  justify-content: flex-end;
}
.cid-utRooLFRis .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-utRooLFRis .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-utRooLFRis .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
  width: 500px;
  height: 500px;
}
@media (max-width: 1700px) {
  .cid-utRooLFRis .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-utRooLFRis .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-utRooLFRis .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-utRooLFRis .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 1200px) {
  .cid-utRooLFRis .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-utRooLFRis .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-utRooLFRis .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .cid-utRooLFRis .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-utRooLFRis .content-wrapper {
    padding-left: 0;
  }
}
.cid-utRooLFRis .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-utRooLFRis .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-utRooLFRis .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-utRooLFRis .mbr-desc {
  color: #272b2e;
}
.cid-utRooLFRis .mbr-section-title {
  color: #272b2e;
}
.cid-utRooLFRis .mbr-text,
.cid-utRooLFRis .text-wrapper {
  color: #272b2e;
}
.cid-utRooLFRis .mbr-section-title,
.cid-utRooLFRis .mbr-section-btn {
  color: #005695;
}
.cid-utRooOKBNj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-utRooOKBNj .mbr-fallback-image.disabled {
  display: none;
}
.cid-utRooOKBNj .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-utRooOKBNj .container {
    padding: 0 16px;
  }
}
.cid-utRooOKBNj .row {
  justify-content: center;
}
.cid-utRooOKBNj .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-utRooOKBNj .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-utRooOKBNj .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-utRooOKBNj .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #e43f3f !important;
  color: #8caff0 !important;
  border-color: #e43f3f !important;
}
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f6ae0c !important;
  color: #8caff0 !important;
}
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #e43f3f !important;
  color: #8caff0 !important;
}
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #764d9e !important;
  color: #8caff0 !important;
}
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #8caff0 !important;
  color: #e43f3f !important;
  border-color: #8caff0 !important;
}
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f5841f !important;
  color: #8caff0 !important;
}
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #d944b7 !important;
  color: #8caff0 !important;
}
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-utRooOKBNj .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-utRooOKBNj .mbr-desc {
  color: #706cff;
}
.cid-utRooOKBNj .mbr-section-title {
  color: #000000;
}
.cid-utRooOKBNj .mbr-text {
  color: #000000;
}
.cid-utRooOKBNj .mbr-section-btn {
  text-align: center;
}
.cid-uuqxVQ0O4X {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uuqyoIEZw0 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uuqyoIEZw0 .mbr-section-title {
  color: #764d9e;
}
.cid-uuqyoIEZw0 .mbr-text,
.cid-uuqyoIEZw0 .mbr-section-btn {
  color: #262642;
}
.cid-uuqyoIEZw0 .mbr-section-subtitle {
  color: #000000;
}
.cid-uuqyoIEZw0 img {
  border-radius: 2rem;
}
.cid-uuqyoIEZw0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqyoIEZw0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLpkMqmzMA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLpkMqmzMA .item-subtitle {
  width: fit-content;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 1rem;
  text-align: center;
  color: #17003b;
}
.cid-uLpkMqmzMA .item-subtitle:before {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  transition: all 0.3s;
  left: 0;
  background: #6bffc7;
  z-index: -1;
}
.cid-uLpkMqmzMA .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uLpkMqmzMA .item-wrapper:hover .item-subtitle:before {
  width: 0%;
}
@media (min-width: 992px) {
  .cid-uLpkMqmzMA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLpkMqmzMA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLpkMqmzMA b,
.cid-uLpkMqmzMA strong {
  font-weight: 900;
}
.cid-uLpkMqmzMA img,
.cid-uLpkMqmzMA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uLpkMqmzMA .item:focus,
.cid-uLpkMqmzMA span:focus {
  outline: none;
}
.cid-uLpkMqmzMA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLpkMqmzMA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLpkMqmzMA .mbr-section-title {
  color: #f5841f;
}
.cid-uLpkMqmzMA .mbr-text,
.cid-uLpkMqmzMA .mbr-section-btn {
  text-align: center;
  color: #17003b;
}
.cid-uLpkMqmzMA .item-title {
  text-align: center;
  color: #262642;
}
.cid-uLpkMqmzMA .mbr-section-subtitle {
  color: #17003b;
}
.cid-uLpkMqmzMA .item-subtitle,
.cid-uLpkMqmzMA .item-content {
  text-align: center;
}
.cid-uEzspVoXJZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEzspVoXJZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEzspVoXJZ .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-uEzspVoXJZ .container {
    padding: 0 16px;
  }
}
.cid-uEzspVoXJZ .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEzspVoXJZ .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEzspVoXJZ .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEzspVoXJZ .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEzspVoXJZ .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEzspVoXJZ .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEzspVoXJZ .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEzspVoXJZ .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEzspVoXJZ .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEzspVoXJZ .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEzspVoXJZ .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEzspVoXJZ .mbr-desc {
  color: #08323C;
}
.cid-uEzspVoXJZ .mbr-text {
  color: #08323C;
}
.cid-uEzh69ojfp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEzh69ojfp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEzh69ojfp .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-uEzh69ojfp .container {
    padding: 0 16px;
  }
}
.cid-uEzh69ojfp .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEzh69ojfp .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEzh69ojfp .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEzh69ojfp .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEzh69ojfp .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEzh69ojfp .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEzh69ojfp .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEzh69ojfp .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEzh69ojfp .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEzh69ojfp .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEzh69ojfp .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEzh69ojfp .mbr-desc {
  color: #08323C;
}
.cid-uEzh69ojfp .mbr-text {
  color: #08323C;
}
.cid-uEuy9UVQiP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEuy9UVQiP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEuy9UVQiP .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-uEuy9UVQiP .container {
    padding: 0 16px;
  }
}
.cid-uEuy9UVQiP .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEuy9UVQiP .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEuy9UVQiP .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEuy9UVQiP .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEuy9UVQiP .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEuy9UVQiP .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEuy9UVQiP .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEuy9UVQiP .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEuy9UVQiP .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEuy9UVQiP .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEuy9UVQiP .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEuy9UVQiP .mbr-desc {
  color: #08323C;
}
.cid-uEuy9UVQiP .mbr-text {
  color: #08323C;
}
.cid-uEuo7W7eQl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEuo7W7eQl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEuo7W7eQl .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-uEuo7W7eQl .container {
    padding: 0 16px;
  }
}
.cid-uEuo7W7eQl .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEuo7W7eQl .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEuo7W7eQl .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEuo7W7eQl .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEuo7W7eQl .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEuo7W7eQl .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEuo7W7eQl .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEuo7W7eQl .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEuo7W7eQl .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEuo7W7eQl .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEuo7W7eQl .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEuo7W7eQl .mbr-desc {
  color: #08323C;
}
.cid-uEuo7W7eQl .mbr-text {
  color: #08323C;
}
.cid-uEukJ5LrLG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEukJ5LrLG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEukJ5LrLG .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-uEukJ5LrLG .container {
    padding: 0 16px;
  }
}
.cid-uEukJ5LrLG .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEukJ5LrLG .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEukJ5LrLG .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEukJ5LrLG .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEukJ5LrLG .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEukJ5LrLG .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEukJ5LrLG .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEukJ5LrLG .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEukJ5LrLG .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEukJ5LrLG .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEukJ5LrLG .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEukJ5LrLG .mbr-desc {
  color: #08323C;
}
.cid-uEukJ5LrLG .mbr-text {
  color: #08323C;
}
.cid-uEujTDj1MK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEujTDj1MK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEujTDj1MK .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-uEujTDj1MK .container {
    padding: 0 16px;
  }
}
.cid-uEujTDj1MK .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEujTDj1MK .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEujTDj1MK .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEujTDj1MK .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEujTDj1MK .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEujTDj1MK .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEujTDj1MK .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEujTDj1MK .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEujTDj1MK .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEujTDj1MK .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEujTDj1MK .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEujTDj1MK .mbr-desc {
  color: #08323C;
}
.cid-uEujTDj1MK .mbr-text {
  color: #08323C;
}
.cid-uEuj21Y8Ym {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEuj21Y8Ym .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEuj21Y8Ym .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-uEuj21Y8Ym .container {
    padding: 0 16px;
  }
}
.cid-uEuj21Y8Ym .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEuj21Y8Ym .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEuj21Y8Ym .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEuj21Y8Ym .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEuj21Y8Ym .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEuj21Y8Ym .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEuj21Y8Ym .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEuj21Y8Ym .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEuj21Y8Ym .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEuj21Y8Ym .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEuj21Y8Ym .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEuj21Y8Ym .mbr-desc {
  color: #08323C;
}
.cid-uEuj21Y8Ym .mbr-text {
  color: #08323C;
}
.cid-uEucCQAmE8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEucCQAmE8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEucCQAmE8 .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-uEucCQAmE8 .container {
    padding: 0 16px;
  }
}
.cid-uEucCQAmE8 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEucCQAmE8 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEucCQAmE8 .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEucCQAmE8 .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEucCQAmE8 .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEucCQAmE8 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEucCQAmE8 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEucCQAmE8 .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEucCQAmE8 .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEucCQAmE8 .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEucCQAmE8 .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEucCQAmE8 .mbr-desc {
  color: #08323C;
}
.cid-uEucCQAmE8 .mbr-text {
  color: #08323C;
}
.cid-uEuc9skNQE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEuc9skNQE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEuc9skNQE .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-uEuc9skNQE .container {
    padding: 0 16px;
  }
}
.cid-uEuc9skNQE .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEuc9skNQE .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEuc9skNQE .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEuc9skNQE .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEuc9skNQE .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEuc9skNQE .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEuc9skNQE .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEuc9skNQE .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEuc9skNQE .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEuc9skNQE .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEuc9skNQE .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEuc9skNQE .mbr-desc {
  color: #08323C;
}
.cid-uEuc9skNQE .mbr-text {
  color: #08323C;
}
.cid-uEubshcYIi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEubshcYIi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEubshcYIi .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-uEubshcYIi .container {
    padding: 0 16px;
  }
}
.cid-uEubshcYIi .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEubshcYIi .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEubshcYIi .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEubshcYIi .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEubshcYIi .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEubshcYIi .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEubshcYIi .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEubshcYIi .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEubshcYIi .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEubshcYIi .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEubshcYIi .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEubshcYIi .mbr-desc {
  color: #08323C;
}
.cid-uEubshcYIi .mbr-text {
  color: #08323C;
}
.cid-uEuaqnpNl7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEuaqnpNl7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEuaqnpNl7 .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-uEuaqnpNl7 .container {
    padding: 0 16px;
  }
}
.cid-uEuaqnpNl7 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEuaqnpNl7 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEuaqnpNl7 .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEuaqnpNl7 .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEuaqnpNl7 .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEuaqnpNl7 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEuaqnpNl7 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEuaqnpNl7 .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEuaqnpNl7 .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEuaqnpNl7 .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEuaqnpNl7 .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEuaqnpNl7 .mbr-desc {
  color: #08323C;
}
.cid-uEuaqnpNl7 .mbr-text {
  color: #08323C;
}
.cid-uEu9GEW9tW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEu9GEW9tW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEu9GEW9tW .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-uEu9GEW9tW .container {
    padding: 0 16px;
  }
}
.cid-uEu9GEW9tW .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEu9GEW9tW .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEu9GEW9tW .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEu9GEW9tW .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEu9GEW9tW .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEu9GEW9tW .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEu9GEW9tW .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEu9GEW9tW .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEu9GEW9tW .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEu9GEW9tW .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEu9GEW9tW .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEu9GEW9tW .mbr-desc {
  color: #08323C;
}
.cid-uEu9GEW9tW .mbr-text {
  color: #08323C;
}
.cid-uEu94Et4w8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEu94Et4w8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEu94Et4w8 .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-uEu94Et4w8 .container {
    padding: 0 16px;
  }
}
.cid-uEu94Et4w8 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEu94Et4w8 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEu94Et4w8 .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEu94Et4w8 .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEu94Et4w8 .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEu94Et4w8 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEu94Et4w8 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEu94Et4w8 .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEu94Et4w8 .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEu94Et4w8 .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEu94Et4w8 .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEu94Et4w8 .mbr-desc {
  color: #08323C;
}
.cid-uEu94Et4w8 .mbr-text {
  color: #08323C;
}
.cid-uEu8lF8Lxm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEu8lF8Lxm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEu8lF8Lxm .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-uEu8lF8Lxm .container {
    padding: 0 16px;
  }
}
.cid-uEu8lF8Lxm .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEu8lF8Lxm .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEu8lF8Lxm .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEu8lF8Lxm .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEu8lF8Lxm .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEu8lF8Lxm .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEu8lF8Lxm .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEu8lF8Lxm .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEu8lF8Lxm .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEu8lF8Lxm .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEu8lF8Lxm .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEu8lF8Lxm .mbr-desc {
  color: #08323C;
}
.cid-uEu8lF8Lxm .mbr-text {
  color: #08323C;
}
.cid-uEu6pndrDS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEu6pndrDS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEu6pndrDS .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-uEu6pndrDS .container {
    padding: 0 16px;
  }
}
.cid-uEu6pndrDS .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEu6pndrDS .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEu6pndrDS .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEu6pndrDS .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEu6pndrDS .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEu6pndrDS .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEu6pndrDS .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEu6pndrDS .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEu6pndrDS .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEu6pndrDS .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEu6pndrDS .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEu6pndrDS .mbr-desc {
  color: #08323C;
}
.cid-uEu6pndrDS .mbr-text {
  color: #08323C;
}
.cid-uEu4Kx2ALQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEu4Kx2ALQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEu4Kx2ALQ .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-uEu4Kx2ALQ .container {
    padding: 0 16px;
  }
}
.cid-uEu4Kx2ALQ .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uEu4Kx2ALQ .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uEu4Kx2ALQ .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uEu4Kx2ALQ .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEu4Kx2ALQ .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uEu4Kx2ALQ .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uEu4Kx2ALQ .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uEu4Kx2ALQ .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uEu4Kx2ALQ .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uEu4Kx2ALQ .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uEu4Kx2ALQ .mbr-section-title {
  color: #9e9e9e;
}
.cid-uEu4Kx2ALQ .mbr-desc {
  color: #08323C;
}
.cid-uEu4Kx2ALQ .mbr-text {
  color: #08323C;
}
.cid-uE2xJazyVX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uE2xJazyVX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uE2xJazyVX .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-uE2xJazyVX .container {
    padding: 0 16px;
  }
}
.cid-uE2xJazyVX .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uE2xJazyVX .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uE2xJazyVX .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uE2xJazyVX .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uE2xJazyVX .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uE2xJazyVX .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uE2xJazyVX .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uE2xJazyVX .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uE2xJazyVX .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uE2xJazyVX .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uE2xJazyVX .mbr-section-title {
  color: #9e9e9e;
}
.cid-uE2xJazyVX .mbr-desc {
  color: #08323C;
}
.cid-uE2xJazyVX .mbr-text {
  color: #08323C;
}
.cid-uE2vduKVtg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uE2vduKVtg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uE2vduKVtg .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-uE2vduKVtg .container {
    padding: 0 16px;
  }
}
.cid-uE2vduKVtg .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uE2vduKVtg .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uE2vduKVtg .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uE2vduKVtg .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uE2vduKVtg .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uE2vduKVtg .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uE2vduKVtg .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uE2vduKVtg .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uE2vduKVtg .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uE2vduKVtg .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uE2vduKVtg .mbr-section-title {
  color: #9e9e9e;
}
.cid-uE2vduKVtg .mbr-desc {
  color: #08323C;
}
.cid-uE2vduKVtg .mbr-text {
  color: #08323C;
}
.cid-uDaCZLmcyW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uDaCZLmcyW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDaCZLmcyW .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-uDaCZLmcyW .container {
    padding: 0 16px;
  }
}
.cid-uDaCZLmcyW .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uDaCZLmcyW .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uDaCZLmcyW .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uDaCZLmcyW .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uDaCZLmcyW .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uDaCZLmcyW .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uDaCZLmcyW .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uDaCZLmcyW .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uDaCZLmcyW .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uDaCZLmcyW .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uDaCZLmcyW .mbr-section-title {
  color: #9e9e9e;
}
.cid-uDaCZLmcyW .mbr-desc {
  color: #08323C;
}
.cid-uDaCZLmcyW .mbr-text {
  color: #08323C;
}
.cid-uD5Q8g0hw8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uD5Q8g0hw8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5Q8g0hw8 .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-uD5Q8g0hw8 .container {
    padding: 0 16px;
  }
}
.cid-uD5Q8g0hw8 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD5Q8g0hw8 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uD5Q8g0hw8 .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5Q8g0hw8 .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5Q8g0hw8 .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uD5Q8g0hw8 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5Q8g0hw8 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uD5Q8g0hw8 .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uD5Q8g0hw8 .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uD5Q8g0hw8 .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uD5Q8g0hw8 .mbr-section-title {
  color: #9e9e9e;
  text-align: left;
}
.cid-uD5Q8g0hw8 .mbr-desc {
  color: #08323C;
}
.cid-uD5Q8g0hw8 .mbr-text {
  color: #08323C;
}
.cid-uD5yWrUaZ1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uD5yWrUaZ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5yWrUaZ1 .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-uD5yWrUaZ1 .container {
    padding: 0 16px;
  }
}
.cid-uD5yWrUaZ1 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD5yWrUaZ1 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uD5yWrUaZ1 .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5yWrUaZ1 .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5yWrUaZ1 .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uD5yWrUaZ1 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5yWrUaZ1 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uD5yWrUaZ1 .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uD5yWrUaZ1 .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uD5yWrUaZ1 .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uD5yWrUaZ1 .mbr-section-title {
  color: #9e9e9e;
  text-align: left;
}
.cid-uD5yWrUaZ1 .mbr-desc {
  color: #08323C;
}
.cid-uD5yWrUaZ1 .mbr-text {
  color: #08323C;
}
.cid-uD5wNmNUfB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uD5wNmNUfB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5wNmNUfB .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-uD5wNmNUfB .container {
    padding: 0 16px;
  }
}
.cid-uD5wNmNUfB .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD5wNmNUfB .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uD5wNmNUfB .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5wNmNUfB .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5wNmNUfB .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uD5wNmNUfB .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5wNmNUfB .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uD5wNmNUfB .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uD5wNmNUfB .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uD5wNmNUfB .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uD5wNmNUfB .mbr-section-title {
  color: #9e9e9e;
  text-align: left;
}
.cid-uD5wNmNUfB .mbr-desc {
  color: #08323C;
}
.cid-uD5wNmNUfB .mbr-text {
  color: #08323C;
}
.cid-uD5uOwj007 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uD5uOwj007 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5uOwj007 .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-uD5uOwj007 .container {
    padding: 0 16px;
  }
}
.cid-uD5uOwj007 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD5uOwj007 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uD5uOwj007 .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5uOwj007 .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5uOwj007 .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uD5uOwj007 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5uOwj007 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uD5uOwj007 .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uD5uOwj007 .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uD5uOwj007 .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uD5uOwj007 .mbr-section-title {
  color: #9e9e9e;
  text-align: left;
}
.cid-uD5uOwj007 .mbr-desc {
  color: #08323C;
}
.cid-uD5uOwj007 .mbr-text {
  color: #08323C;
}
.cid-uD5rdwS3oO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uD5rdwS3oO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5rdwS3oO .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-uD5rdwS3oO .container {
    padding: 0 16px;
  }
}
.cid-uD5rdwS3oO .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD5rdwS3oO .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uD5rdwS3oO .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5rdwS3oO .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5rdwS3oO .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uD5rdwS3oO .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5rdwS3oO .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uD5rdwS3oO .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uD5rdwS3oO .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uD5rdwS3oO .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uD5rdwS3oO .mbr-section-title {
  color: #9e9e9e;
  text-align: left;
}
.cid-uD5rdwS3oO .mbr-desc {
  color: #08323C;
}
.cid-uD5rdwS3oO .mbr-text {
  color: #08323C;
}
.cid-uD5qH4y7Yc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uD5qH4y7Yc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5qH4y7Yc .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-uD5qH4y7Yc .container {
    padding: 0 16px;
  }
}
.cid-uD5qH4y7Yc .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD5qH4y7Yc .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uD5qH4y7Yc .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5qH4y7Yc .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5qH4y7Yc .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uD5qH4y7Yc .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5qH4y7Yc .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uD5qH4y7Yc .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uD5qH4y7Yc .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uD5qH4y7Yc .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uD5qH4y7Yc .mbr-section-title {
  color: #9e9e9e;
  text-align: left;
}
.cid-uD5qH4y7Yc .mbr-desc {
  color: #08323C;
}
.cid-uD5qH4y7Yc .mbr-text {
  color: #08323C;
}
.cid-uD5n25HlIB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uD5n25HlIB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5n25HlIB .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-uD5n25HlIB .container {
    padding: 0 16px;
  }
}
.cid-uD5n25HlIB .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD5n25HlIB .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uD5n25HlIB .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5n25HlIB .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5n25HlIB .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uD5n25HlIB .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5n25HlIB .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uD5n25HlIB .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uD5n25HlIB .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uD5n25HlIB .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uD5n25HlIB .mbr-section-title {
  color: #9e9e9e;
  text-align: left;
}
.cid-uD5n25HlIB .mbr-desc {
  color: #08323C;
}
.cid-uD5n25HlIB .mbr-text {
  color: #08323C;
}
.cid-uD5eynfOsE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uD5eynfOsE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5eynfOsE .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-uD5eynfOsE .container {
    padding: 0 16px;
  }
}
.cid-uD5eynfOsE .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD5eynfOsE .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uD5eynfOsE .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5eynfOsE .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5eynfOsE .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uD5eynfOsE .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5eynfOsE .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uD5eynfOsE .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uD5eynfOsE .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uD5eynfOsE .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uD5eynfOsE .mbr-section-title {
  color: #9e9e9e;
  text-align: left;
}
.cid-uD5eynfOsE .mbr-desc {
  color: #08323C;
}
.cid-uD5eynfOsE .mbr-text {
  color: #08323C;
}
.cid-uD5gx8ZlNE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uD5gx8ZlNE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5gx8ZlNE .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-uD5gx8ZlNE .container {
    padding: 0 16px;
  }
}
.cid-uD5gx8ZlNE .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD5gx8ZlNE .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uD5gx8ZlNE .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5gx8ZlNE .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5gx8ZlNE .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uD5gx8ZlNE .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5gx8ZlNE .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uD5gx8ZlNE .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uD5gx8ZlNE .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uD5gx8ZlNE .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uD5gx8ZlNE .mbr-section-title {
  color: #9e9e9e;
  text-align: left;
}
.cid-uD5gx8ZlNE .mbr-desc {
  color: #08323C;
}
.cid-uD5gx8ZlNE .mbr-text {
  color: #08323C;
}
.cid-uD5chf8ccF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uD5chf8ccF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5chf8ccF .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-uD5chf8ccF .container {
    padding: 0 16px;
  }
}
.cid-uD5chf8ccF .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD5chf8ccF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uD5chf8ccF .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5chf8ccF .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5chf8ccF .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uD5chf8ccF .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5chf8ccF .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uD5chf8ccF .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uD5chf8ccF .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uD5chf8ccF .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uD5chf8ccF .mbr-section-title {
  color: #9e9e9e;
  text-align: left;
}
.cid-uD5chf8ccF .mbr-desc {
  color: #08323C;
}
.cid-uD5chf8ccF .mbr-text {
  color: #08323C;
}
.cid-uD5a0bDNf8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uD5a0bDNf8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5a0bDNf8 .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-uD5a0bDNf8 .container {
    padding: 0 16px;
  }
}
.cid-uD5a0bDNf8 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD5a0bDNf8 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uD5a0bDNf8 .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5a0bDNf8 .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5a0bDNf8 .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uD5a0bDNf8 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uD5a0bDNf8 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uD5a0bDNf8 .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uD5a0bDNf8 .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uD5a0bDNf8 .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uD5a0bDNf8 .mbr-section-title {
  color: #9e9e9e;
}
.cid-uD5a0bDNf8 .mbr-desc {
  color: #08323C;
}
.cid-uD5a0bDNf8 .mbr-text {
  color: #08323C;
}
.cid-uuqxmRvzTI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uuqUs4Z4ZB {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uuqUs4Z4ZB .mbr-section-title {
  color: #9e43dd;
}
.cid-uuqUs4Z4ZB .mbr-text,
.cid-uuqUs4Z4ZB .mbr-section-btn {
  color: #262642;
}
.cid-uuqUs4Z4ZB .mbr-section-subtitle {
  color: #000000;
}
.cid-uuqUs4Z4ZB img {
  border-radius: 2rem;
}
.cid-uuqUs4Z4ZB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqUs4Z4ZB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqUs5nbqc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuqUs5nbqc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqUs5nbqc .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-uuqUs5nbqc .container {
    padding: 0 24px;
  }
}
.cid-uuqUs5nbqc .image-wrapper {
  padding-right: 40px;
}
@media (max-width: 992px) {
  .cid-uuqUs5nbqc .image-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.cid-uuqUs5nbqc .image-wrapper img {
  height: 600px;
  object-fit: cover;
  border-radius: 40px !important;
}
@media (max-width: 992px) {
  .cid-uuqUs5nbqc .image-wrapper img {
    height: 350px;
  }
}
.cid-uuqUs5nbqc .content-wrapper {
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-uuqUs5nbqc .content-wrapper {
    padding: 0;
  }
}
.cid-uuqUs5nbqc .content-wrapper .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uuqUs5nbqc .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uuqUs5nbqc .content-wrapper .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uuqUs5nbqc .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uuqUs5nbqc .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uuqUs5nbqc .content-wrapper .items-wrapper .item {
  margin-bottom: 32px;
}
.cid-uuqUs5nbqc .content-wrapper .items-wrapper .item:nth-child(2n) .item-wrapper .card-box .card-number_2 {
  background-color: #f2fafd;
}
.cid-uuqUs5nbqc .content-wrapper .items-wrapper .item:nth-child(3n) .item-wrapper .card-box .card-number_3 {
  background-color: #fefced;
}
.cid-uuqUs5nbqc .content-wrapper .items-wrapper .item .item-wrapper .card-box {
  display: flex;
}
.cid-uuqUs5nbqc .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-number_1,
.cid-uuqUs5nbqc .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-number_2,
.cid-uuqUs5nbqc .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-number_3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  background-color: #fff2fb;
  border-radius: 16px;
  margin-right: 24px;
}
@media (max-width: 992px) {
  .cid-uuqUs5nbqc .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-number_1,
  .cid-uuqUs5nbqc .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-number_2,
  .cid-uuqUs5nbqc .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-number_3 {
    margin-right: 16px;
  }
}
.cid-uuqUs5nbqc .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uuqUs5nbqc .content-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uuqUs5nbqc .content-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uuqUs5nbqc .mbr-section-title {
  color: #262642;
}
.cid-uuqUs5nbqc .mbr-section-subtitle {
  color: #8e8ead;
}
.cid-uuqUs5nbqc .card-text {
  color: #262642;
}
.cid-uuqUs5nbqc .card-number_1 {
  color: #990066;
}
.cid-uuqUs5nbqc .card-number_2 {
  color: #4A8DFF;
}
.cid-uuqUs5nbqc .card-number_3 {
  color: #ff3399;
}
.cid-uuqUs5nbqc .mbr-section-title,
.cid-uuqUs5nbqc .mbr-section-btn {
  color: #c23995;
}
.cid-uuqUs5MXJ1 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uuqUs5MXJ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqUs5MXJ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uuqUs5MXJ1 .container {
    padding: 0 16px;
  }
}
.cid-uuqUs5MXJ1 .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uuqUs5MXJ1 .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uuqUs5MXJ1 .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uuqUs5MXJ1 .title-wrapper {
  margin-bottom: 80px;
}
.cid-uuqUs5MXJ1 .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uuqUs5MXJ1 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uuqUs5MXJ1 .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uuqUs5MXJ1 .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uuqUs5MXJ1 .item .item-wrapper:hover .item-img img,
.cid-uuqUs5MXJ1 .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uuqUs5MXJ1 .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uuqUs5MXJ1 .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uuqUs5MXJ1 .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uuqUs5MXJ1 .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uuqUs5MXJ1 .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uuqUs5MXJ1 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uuqUs5MXJ1 .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uuqUs5MXJ1 .item-name {
  color: #000000;
}
.cid-uuqUs5MXJ1 .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uuqUs5MXJ1 .item-name,
.cid-uuqUs5MXJ1 .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uuqUs6d9TO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuqUs6d9TO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqUs6d9TO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uuqUs6d9TO .container {
    padding: 0 16px;
  }
}
.cid-uuqUs6d9TO .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uuqUs6d9TO .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uuqUs6d9TO .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uuqUs6d9TO .title-wrapper {
  margin-bottom: 80px;
}
.cid-uuqUs6d9TO .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uuqUs6d9TO .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uuqUs6d9TO .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uuqUs6d9TO .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uuqUs6d9TO .item .item-wrapper:hover .item-img img,
.cid-uuqUs6d9TO .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uuqUs6d9TO .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uuqUs6d9TO .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uuqUs6d9TO .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uuqUs6d9TO .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uuqUs6d9TO .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uuqUs6d9TO .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uuqUs6d9TO .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uuqUs6d9TO .item-name {
  color: #000000;
}
.cid-uuqUs6d9TO .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uuqUs6d9TO .item-name,
.cid-uuqUs6d9TO .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uuqUs6F5A9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuqUs6F5A9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqUs6F5A9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uuqUs6F5A9 .container {
    padding: 0 16px;
  }
}
.cid-uuqUs6F5A9 .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uuqUs6F5A9 .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uuqUs6F5A9 .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uuqUs6F5A9 .title-wrapper {
  margin-bottom: 80px;
}
.cid-uuqUs6F5A9 .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uuqUs6F5A9 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uuqUs6F5A9 .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uuqUs6F5A9 .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uuqUs6F5A9 .item .item-wrapper:hover .item-img img,
.cid-uuqUs6F5A9 .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uuqUs6F5A9 .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uuqUs6F5A9 .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uuqUs6F5A9 .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uuqUs6F5A9 .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uuqUs6F5A9 .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uuqUs6F5A9 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uuqUs6F5A9 .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uuqUs6F5A9 .item-name {
  color: #000000;
}
.cid-uuqUs6F5A9 .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uuqUs6F5A9 .item-name,
.cid-uuqUs6F5A9 .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uuqUs7bIj8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuqUs7bIj8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqUs7bIj8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uuqUs7bIj8 .container {
    padding: 0 16px;
  }
}
.cid-uuqUs7bIj8 .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uuqUs7bIj8 .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uuqUs7bIj8 .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uuqUs7bIj8 .title-wrapper {
  margin-bottom: 80px;
}
.cid-uuqUs7bIj8 .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uuqUs7bIj8 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uuqUs7bIj8 .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uuqUs7bIj8 .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uuqUs7bIj8 .item .item-wrapper:hover .item-img img,
.cid-uuqUs7bIj8 .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uuqUs7bIj8 .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uuqUs7bIj8 .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uuqUs7bIj8 .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uuqUs7bIj8 .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uuqUs7bIj8 .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uuqUs7bIj8 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uuqUs7bIj8 .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uuqUs7bIj8 .item-name {
  color: #000000;
}
.cid-uuqUs7bIj8 .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uuqUs7bIj8 .item-name,
.cid-uuqUs7bIj8 .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uuqUs7E3RU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuqUs7E3RU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqUs7E3RU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uuqUs7E3RU .container {
    padding: 0 16px;
  }
}
.cid-uuqUs7E3RU .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uuqUs7E3RU .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uuqUs7E3RU .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uuqUs7E3RU .title-wrapper {
  margin-bottom: 80px;
}
.cid-uuqUs7E3RU .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uuqUs7E3RU .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uuqUs7E3RU .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uuqUs7E3RU .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uuqUs7E3RU .item .item-wrapper:hover .item-img img,
.cid-uuqUs7E3RU .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uuqUs7E3RU .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uuqUs7E3RU .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uuqUs7E3RU .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uuqUs7E3RU .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uuqUs7E3RU .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uuqUs7E3RU .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uuqUs7E3RU .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uuqUs7E3RU .item-name {
  color: #000000;
}
.cid-uuqUs7E3RU .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uuqUs7E3RU .item-name,
.cid-uuqUs7E3RU .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uLpgmi4Oiw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLpgmi4Oiw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLpgmi4Oiw .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-uLpgmi4Oiw .container {
    padding: 0 16px;
  }
}
.cid-uLpgmi4Oiw .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uLpgmi4Oiw .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uLpgmi4Oiw .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLpgmi4Oiw .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLpgmi4Oiw .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uLpgmi4Oiw .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLpgmi4Oiw .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uLpgmi4Oiw .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uLpgmi4Oiw .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uLpgmi4Oiw .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uLpgmi4Oiw .mbr-section-title {
  color: #9e9e9e;
}
.cid-uLpgmi4Oiw .mbr-desc {
  color: #08323C;
}
.cid-uLpgmi4Oiw .mbr-text {
  color: #08323C;
}
.cid-uuqUs8yhKb {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uuqUs8yhKb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqUs8yhKb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqUs8yhKb .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uuqUs8yhKb .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uuqUs8yhKb .container {
    padding: 0 25px;
  }
}
.cid-uuqUs8yhKb .title-wrapper {
  margin-bottom: 40px;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uuqUs8yhKb .title-wrapper {
    padding: 0 25px;
  }
}
.cid-uuqUs8yhKb .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uuqUs8yhKb .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 360px;
  max-width: 360px;
}
@media (max-width: 768px) {
  .cid-uuqUs8yhKb .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uuqUs8yhKb .embla__slide .card-wrap {
  width: 100%;
}
.cid-uuqUs8yhKb .embla__slide .card-wrap a {
  display: block;
}
.cid-uuqUs8yhKb .embla__slide .card-wrap a:hover .item-wrapper .image-wrap img {
  transform: scale(1.06) translateX(6px);
}
.cid-uuqUs8yhKb .embla__slide .card-wrap a .item-wrapper .image-wrap {
  overflow: hidden;
}
.cid-uuqUs8yhKb .embla__slide .card-wrap a .item-wrapper .image-wrap img {
  height: 350px;
  object-fit: cover;
  transform: scale(1.06) translateX(0);
  transition: all 0.3s ease-in-out;
}
.cid-uuqUs8yhKb .embla__button--next,
.cid-uuqUs8yhKb .embla__button--prev {
  display: flex;
}
.cid-uuqUs8yhKb .embla__button {
  top: -1rem;
  width: 25px;
  height: 25px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent;
  color: #f6ae0c;
  border: none;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uuqUs8yhKb .embla__button {
    display: none;
  }
}
.cid-uuqUs8yhKb .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uuqUs8yhKb .embla__button:hover {
  background: transparent;
  color: #f6ae0c;
  opacity: .7;
}
.cid-uuqUs8yhKb .embla__button.embla__button--prev {
  right: 125px;
  margin-left: 0;
}
@media (max-width: 768px) {
  .cid-uuqUs8yhKb .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-uuqUs8yhKb .embla__button.embla__button--next {
  right: 60px;
  margin-right: 0;
}
@media (max-width: 768px) {
  .cid-uuqUs8yhKb .embla__button.embla__button--next {
    right: 25px;
  }
}
@media (max-width: 768px) {
  .cid-uuqUs8yhKb .embla__button {
    top: auto;
    bottom: -3rem;
  }
}
.cid-uuqUs8yhKb .embla {
  position: relative;
  width: 100%;
}
.cid-uuqUs8yhKb .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uuqUs8yhKb .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uuqUs8yhKb .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uuqUs8yhKb .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uuqUs8yhKb .mbr-section-title {
  color: #E33030;
}
.cid-uuqUs8yhKb .mbr-section-title,
.cid-uuqUs8yhKb .mbr-section-btn {
  text-align: center;
}
.cid-uuqUs9RXfi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uqmR3it11w {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uqmR3it11w .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-uqmR3it11w input,
.cid-uqmR3it11w textarea {
  font-size: 14px;
}
.cid-uqmR3it11w input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-uqmR3it11w textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-uqmR3it11w .form-group {
  margin-bottom: 1.3rem;
}
.cid-uqmR3it11w .block-title {
  margin-bottom: 0.7rem;
}
.cid-uqmR3it11w .form-control:hover,
.cid-uqmR3it11w .form-control:focus {
  color: #000000 !important;
}
.cid-uqmR3it11w .mbr-section-subtitle {
  font-weight: 700;
}
.cid-uqmR3it11w img {
  width: 90%;
  border-radius: 8px;
}
.cid-uqmR3it11w .btn {
  border-radius: 30px;
}
.cid-uqmR3it11w .form-control,
.cid-uqmR3it11w .field-input {
  padding: 0.5rem;
  background-color: #e2e3e7;
  border-color: #e2e3e7;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uqmR3it11w .form-control:hover,
.cid-uqmR3it11w .field-input:hover {
  background-color: #e2e3e7;
  border-color: #e2e3e7 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uqmR3it11w .form-control:focus,
.cid-uqmR3it11w .field-input:focus {
  background-color: #ffffff;
  border-color: #e2e3e7 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uqmR3it11w input::-webkit-input-placeholder,
.cid-uqmR3it11w textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-uqmR3it11w input:-moz-placeholder,
.cid-uqmR3it11w textarea:-moz-placeholder {
  color: #000000;
}
.cid-uqmR3it11w .jq-selectbox li,
.cid-uqmR3it11w .jq-selectbox li {
  background-color: #e2e3e7;
  color: #000000;
}
.cid-uqmR3it11w .jq-selectbox li:hover,
.cid-uqmR3it11w .jq-selectbox li.selected {
  background-color: #e2e3e7;
  color: #000000;
}
.cid-uqmR3it11w .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #e2e3e7;
}
.cid-uqmR3it11w .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #e2e3e7;
}
@media (max-width: 992px) {
  .cid-uqmR3it11w img {
    width: 100%;
  }
  .cid-uqmR3it11w .google-map {
    margin-bottom: 2rem;
  }
}
.cid-uqmR3it11w .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-uqmR3it11w .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqmR3it11w .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqmR3it11w .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqmR3it11w .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-uqmR3it11w .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-uqmR3it11w .mbr-form {
    margin-top: 2rem;
  }
  .cid-uqmR3it11w .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-uqmR3it11w .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqmR3it11w .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-uqmR3it11w H5 {
  color: #d944b7;
}
.cid-uuqx34BJDW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uLo0VyenT9 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uLo0VyenT9 .mbr-section-title {
  color: #e43f3f;
}
.cid-uLo0VyenT9 .mbr-text,
.cid-uLo0VyenT9 .mbr-section-btn {
  color: #262642;
}
.cid-uLo0VyenT9 .mbr-section-subtitle {
  color: #000000;
}
.cid-uLo0VyenT9 img {
  border-radius: 2rem;
}
.cid-uLo0VyenT9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLo0VyenT9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLo0VyYFdp {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLo0VyYFdp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLo0VyYFdp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLo0VyYFdp .container {
    padding: 0 16px;
  }
}
.cid-uLo0VyYFdp .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uLo0VyYFdp .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uLo0VyYFdp .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLo0VyYFdp .title-wrapper {
  margin-bottom: 80px;
}
.cid-uLo0VyYFdp .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLo0VyYFdp .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLo0VyYFdp .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uLo0VyYFdp .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uLo0VyYFdp .item .item-wrapper:hover .item-img img,
.cid-uLo0VyYFdp .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uLo0VyYFdp .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uLo0VyYFdp .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uLo0VyYFdp .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uLo0VyYFdp .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uLo0VyYFdp .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uLo0VyYFdp .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLo0VyYFdp .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uLo0VyYFdp .item-name {
  color: #000000;
}
.cid-uLo0VyYFdp .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uLo0VyYFdp .item-name,
.cid-uLo0VyYFdp .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uLo0VzrxQe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLo0VzrxQe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLo0VzrxQe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLo0VzrxQe .container {
    padding: 0 16px;
  }
}
.cid-uLo0VzrxQe .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uLo0VzrxQe .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uLo0VzrxQe .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLo0VzrxQe .title-wrapper {
  margin-bottom: 80px;
}
.cid-uLo0VzrxQe .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLo0VzrxQe .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLo0VzrxQe .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uLo0VzrxQe .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uLo0VzrxQe .item .item-wrapper:hover .item-img img,
.cid-uLo0VzrxQe .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uLo0VzrxQe .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uLo0VzrxQe .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uLo0VzrxQe .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uLo0VzrxQe .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uLo0VzrxQe .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uLo0VzrxQe .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLo0VzrxQe .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uLo0VzrxQe .item-name {
  color: #000000;
}
.cid-uLo0VzrxQe .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uLo0VzrxQe .item-name,
.cid-uLo0VzrxQe .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uLp8TOEjiw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLp8TOEjiw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLp8TOEjiw .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-uLp8TOEjiw .container {
    padding: 0 16px;
  }
}
.cid-uLp8TOEjiw .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uLp8TOEjiw .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uLp8TOEjiw .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLp8TOEjiw .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLp8TOEjiw .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uLp8TOEjiw .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLp8TOEjiw .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uLp8TOEjiw .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uLp8TOEjiw .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uLp8TOEjiw .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uLp8TOEjiw .mbr-section-title {
  color: #9e9e9e;
}
.cid-uLp8TOEjiw .mbr-desc {
  color: #08323C;
}
.cid-uLp8TOEjiw .mbr-text {
  color: #08323C;
}
.cid-uLo0VCjEVP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uLp57W7Lmi {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uLp57W7Lmi .mbr-section-title {
  color: #e43f3f;
}
.cid-uLp57W7Lmi .mbr-text,
.cid-uLp57W7Lmi .mbr-section-btn {
  color: #262642;
}
.cid-uLp57W7Lmi .mbr-section-subtitle {
  color: #000000;
}
.cid-uLp57W7Lmi img {
  border-radius: 2rem;
}
.cid-uLp57W7Lmi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLp57W7Lmi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLp9uwBm1e {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLp9uwBm1e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLp9uwBm1e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLp9uwBm1e .container {
    padding: 0 16px;
  }
}
.cid-uLp9uwBm1e .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uLp9uwBm1e .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uLp9uwBm1e .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLp9uwBm1e .title-wrapper {
  margin-bottom: 80px;
}
.cid-uLp9uwBm1e .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLp9uwBm1e .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLp9uwBm1e .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uLp9uwBm1e .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uLp9uwBm1e .item .item-wrapper:hover .item-img img,
.cid-uLp9uwBm1e .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uLp9uwBm1e .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uLp9uwBm1e .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uLp9uwBm1e .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uLp9uwBm1e .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uLp9uwBm1e .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uLp9uwBm1e .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLp9uwBm1e .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uLp9uwBm1e .item-name {
  color: #000000;
}
.cid-uLp9uwBm1e .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uLp9uwBm1e .item-name,
.cid-uLp9uwBm1e .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uLpaFPUwDd {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLpaFPUwDd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLpaFPUwDd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLpaFPUwDd .container {
    padding: 0 16px;
  }
}
.cid-uLpaFPUwDd .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uLpaFPUwDd .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uLpaFPUwDd .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLpaFPUwDd .title-wrapper {
  margin-bottom: 80px;
}
.cid-uLpaFPUwDd .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLpaFPUwDd .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLpaFPUwDd .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uLpaFPUwDd .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uLpaFPUwDd .item .item-wrapper:hover .item-img img,
.cid-uLpaFPUwDd .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uLpaFPUwDd .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uLpaFPUwDd .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uLpaFPUwDd .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uLpaFPUwDd .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uLpaFPUwDd .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uLpaFPUwDd .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLpaFPUwDd .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uLpaFPUwDd .item-name {
  color: #000000;
}
.cid-uLpaFPUwDd .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uLpaFPUwDd .item-name,
.cid-uLpaFPUwDd .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uLp61E8p0v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLp61E8p0v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLp61E8p0v .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-uLp61E8p0v .container {
    padding: 0 16px;
  }
}
.cid-uLp61E8p0v .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uLp61E8p0v .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uLp61E8p0v .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLp61E8p0v .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLp61E8p0v .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uLp61E8p0v .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLp61E8p0v .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uLp61E8p0v .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uLp61E8p0v .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uLp61E8p0v .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uLp61E8p0v .mbr-section-title {
  color: #9e9e9e;
}
.cid-uLp61E8p0v .mbr-desc {
  color: #08323C;
}
.cid-uLp61E8p0v .mbr-text {
  color: #08323C;
}
.cid-uLp57YuUQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uLphVm2QuW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLphVm2QuW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLphVm2QuW .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-uLphVm2QuW .container {
    padding: 0 16px;
  }
}
.cid-uLphVm2QuW .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uLphVm2QuW .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uLphVm2QuW .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLphVm2QuW .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLphVm2QuW .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uLphVm2QuW .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLphVm2QuW .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uLphVm2QuW .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uLphVm2QuW .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uLphVm2QuW .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uLphVm2QuW .mbr-section-title {
  color: #9e9e9e;
}
.cid-uLphVm2QuW .mbr-desc {
  color: #08323C;
}
.cid-uLphVm2QuW .mbr-text {
  color: #08323C;
}
.cid-uLphSEPxfp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uLphtIDtHP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLphtIDtHP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLphtIDtHP .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-uLphtIDtHP .container {
    padding: 0 16px;
  }
}
.cid-uLphtIDtHP .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uLphtIDtHP .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uLphtIDtHP .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLphtIDtHP .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLphtIDtHP .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uLphtIDtHP .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLphtIDtHP .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uLphtIDtHP .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uLphtIDtHP .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uLphtIDtHP .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uLphtIDtHP .mbr-section-title {
  color: #9e9e9e;
}
.cid-uLphtIDtHP .mbr-desc {
  color: #08323C;
}
.cid-uLphtIDtHP .mbr-text {
  color: #08323C;
}
.cid-uLphnrOlGC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uLsGEgajOw {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uLsGEgajOw .mbr-section-title {
  color: #e43f3f;
}
.cid-uLsGEgajOw .mbr-text,
.cid-uLsGEgajOw .mbr-section-btn {
  color: #262642;
}
.cid-uLsGEgajOw .mbr-section-subtitle {
  color: #000000;
}
.cid-uLsGEgajOw img {
  border-radius: 2rem;
}
.cid-uLsGEgajOw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLsGEgajOw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLsGEj8ehE {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLsGEj8ehE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLsGEj8ehE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLsGEj8ehE .container {
    padding: 0 16px;
  }
}
.cid-uLsGEj8ehE .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uLsGEj8ehE .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uLsGEj8ehE .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLsGEj8ehE .title-wrapper {
  margin-bottom: 80px;
}
.cid-uLsGEj8ehE .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLsGEj8ehE .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLsGEj8ehE .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uLsGEj8ehE .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uLsGEj8ehE .item .item-wrapper:hover .item-img img,
.cid-uLsGEj8ehE .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uLsGEj8ehE .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uLsGEj8ehE .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uLsGEj8ehE .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uLsGEj8ehE .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uLsGEj8ehE .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uLsGEj8ehE .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLsGEj8ehE .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uLsGEj8ehE .item-name {
  color: #000000;
}
.cid-uLsGEj8ehE .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uLsGEj8ehE .item-name,
.cid-uLsGEj8ehE .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uLsLeMzFcU {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLsLeMzFcU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLsLeMzFcU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLsLeMzFcU .container {
    padding: 0 16px;
  }
}
.cid-uLsLeMzFcU .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uLsLeMzFcU .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uLsLeMzFcU .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLsLeMzFcU .title-wrapper {
  margin-bottom: 80px;
}
.cid-uLsLeMzFcU .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLsLeMzFcU .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLsLeMzFcU .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uLsLeMzFcU .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uLsLeMzFcU .item .item-wrapper:hover .item-img img,
.cid-uLsLeMzFcU .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uLsLeMzFcU .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uLsLeMzFcU .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uLsLeMzFcU .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uLsLeMzFcU .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uLsLeMzFcU .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uLsLeMzFcU .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLsLeMzFcU .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uLsLeMzFcU .item-name {
  color: #000000;
}
.cid-uLsLeMzFcU .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uLsLeMzFcU .item-name,
.cid-uLsLeMzFcU .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uLsLfMFadF {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLsLfMFadF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLsLfMFadF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLsLfMFadF .container {
    padding: 0 16px;
  }
}
.cid-uLsLfMFadF .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uLsLfMFadF .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uLsLfMFadF .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLsLfMFadF .title-wrapper {
  margin-bottom: 80px;
}
.cid-uLsLfMFadF .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLsLfMFadF .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLsLfMFadF .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uLsLfMFadF .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uLsLfMFadF .item .item-wrapper:hover .item-img img,
.cid-uLsLfMFadF .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uLsLfMFadF .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uLsLfMFadF .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uLsLfMFadF .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uLsLfMFadF .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uLsLfMFadF .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uLsLfMFadF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLsLfMFadF .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uLsLfMFadF .item-name {
  color: #000000;
}
.cid-uLsLfMFadF .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uLsLfMFadF .item-name,
.cid-uLsLfMFadF .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uLsMnQF0q0 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLsMnQF0q0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLsMnQF0q0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLsMnQF0q0 .container {
    padding: 0 16px;
  }
}
.cid-uLsMnQF0q0 .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uLsMnQF0q0 .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uLsMnQF0q0 .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLsMnQF0q0 .title-wrapper {
  margin-bottom: 80px;
}
.cid-uLsMnQF0q0 .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLsMnQF0q0 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLsMnQF0q0 .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uLsMnQF0q0 .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uLsMnQF0q0 .item .item-wrapper:hover .item-img img,
.cid-uLsMnQF0q0 .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uLsMnQF0q0 .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uLsMnQF0q0 .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uLsMnQF0q0 .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uLsMnQF0q0 .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uLsMnQF0q0 .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uLsMnQF0q0 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLsMnQF0q0 .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uLsMnQF0q0 .item-name {
  color: #000000;
}
.cid-uLsMnQF0q0 .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uLsMnQF0q0 .item-name,
.cid-uLsMnQF0q0 .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uLsMQYsGgn {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLsMQYsGgn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLsMQYsGgn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLsMQYsGgn .container {
    padding: 0 16px;
  }
}
.cid-uLsMQYsGgn .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uLsMQYsGgn .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uLsMQYsGgn .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLsMQYsGgn .title-wrapper {
  margin-bottom: 80px;
}
.cid-uLsMQYsGgn .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uLsMQYsGgn .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLsMQYsGgn .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uLsMQYsGgn .item {
  padding: 0 12px;
  margin-bottom: 32px;
}
.cid-uLsMQYsGgn .item .item-wrapper:hover .item-img img,
.cid-uLsMQYsGgn .item .item-wrapper:focus .item-img img {
  transform: scale(1.1);
}
.cid-uLsMQYsGgn .item .item-wrapper .item-img {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.cid-uLsMQYsGgn .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uLsMQYsGgn .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-uLsMQYsGgn .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uLsMQYsGgn .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 14px;
}
.cid-uLsMQYsGgn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLsMQYsGgn .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uLsMQYsGgn .item-name {
  color: #000000;
}
.cid-uLsMQYsGgn .item-role {
  color: #6f6f6f;
  text-align: left;
}
.cid-uLsMQYsGgn .item-name,
.cid-uLsMQYsGgn .mbr-section-btn {
  text-align: left;
  color: #bc0f84;
}
.cid-uLsGZdPDox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLsGZdPDox .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLsGZdPDox .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-uLsGZdPDox .container {
    padding: 0 16px;
  }
}
.cid-uLsGZdPDox .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uLsGZdPDox .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uLsGZdPDox .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLsGZdPDox .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLsGZdPDox .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uLsGZdPDox .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uLsGZdPDox .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uLsGZdPDox .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uLsGZdPDox .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uLsGZdPDox .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uLsGZdPDox .mbr-section-title {
  color: #9e9e9e;
  text-align: left;
}
.cid-uLsGZdPDox .mbr-desc {
  color: #08323C;
}
.cid-uLsGZdPDox .mbr-text {
  color: #08323C;
}
.cid-uLsGEkConL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uN4TFls1tM {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/paulo-netho-biblioteca2-1000x502.webp");
}
.cid-uN4TFls1tM .mbr-section-subtitle {
  color: #ffdc07;
}
.cid-uN4TFls1tM .mbr-section-title,
.cid-uN4TFls1tM .mbr-text,
.cid-uN4TFls1tM .icon-description {
  color: #465052;
}
.cid-uN4TFls1tM .mbr-media {
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uN4TFls1tM .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uN4TFls1tM .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uN4TFls1tM .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uN4TFls1tM a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uN4TFls1tM a.close:hover {
  color: #ffffff;
}
.cid-uN4TFls1tM .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-uN4TFls1tM .btn-play {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  background: #66458e;
  width: 60px;
  height: 60px;
  border: 1px solid #66458e;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-uN4TFls1tM .btn-play:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 150%;
  height: 150%;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  left: -25%;
  top: -25%;
  opacity: 1;
  -webkit-animation: 1s btn-video linear infinite;
  animation: 1s btn-video linear infinite;
}
@media (max-width: 767px) {
  .cid-uN4TFls1tM .mbr-section-subtitle,
  .cid-uN4TFls1tM .mbr-section-title,
  .cid-uN4TFls1tM .mbr-text {
    text-align: center !important;
  }
  .cid-uN4TFls1tM .mbr-media {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uN4TFls1tM .btn-play {
    margin-bottom: 2rem;
  }
}
@keyframes btn-video {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-webkit-keyframes btn-video {
  0% {
    -webkit-transform: scale(0.68);
  }
  100% {
    -webkit-transform: scale(1.2);
    -webkit-opacity: 0;
  }
}
.cid-uN4TFls1tM .mbr-section-title {
  color: #ffffff;
}
.cid-uN4TFls1tM .mbr-text {
  color: #ffdc07;
}
.cid-v4w5u5ohyV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.cid-v4w5u5ohyV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4w5u5ohyV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4w5u5ohyV .title-wrapper {
  margin-bottom: 40px;
}
.cid-v4w5u5ohyV .title-wrapper .mbr-label {
  margin-bottom: 20px;
}
.cid-v4w5u5ohyV .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v4w5u5ohyV .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4w5u5ohyV .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v4w5u5ohyV .card-wrapper {
  box-shadow: 0 10px 25px -20px #6c7179;
  padding: 8px;
  background-color: #ffffff;
}
.cid-v4w5u5ohyV .mbr-label {
  color: #be0000;
  text-align: center;
}
.cid-v4w5u5ohyV .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v4w5u5ohyV .mbr-text,
.cid-v4w5u5ohyV .text-wrapper {
  color: #6c7179;
  text-align: center;
}
.cid-v4w7Fl68w2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.cid-v4w7Fl68w2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4w7Fl68w2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4w7Fl68w2 .title-wrapper {
  margin-bottom: 40px;
}
.cid-v4w7Fl68w2 .title-wrapper .mbr-label {
  margin-bottom: 20px;
}
.cid-v4w7Fl68w2 .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v4w7Fl68w2 .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4w7Fl68w2 .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v4w7Fl68w2 .card-wrapper {
  box-shadow: 0 10px 25px -20px #6c7179;
  padding: 8px;
  background-color: #ffffff;
}
.cid-v4w7Fl68w2 .mbr-label {
  color: #be0000;
  text-align: center;
}
.cid-v4w7Fl68w2 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v4w7Fl68w2 .mbr-text,
.cid-v4w7Fl68w2 .text-wrapper {
  color: #6c7179;
  text-align: center;
}
.cid-v24fIP5ANR {
  background-color: #ffffff;
}
.cid-v24fIP5ANR .column-wrapper {
  padding-left: 1.5rem;
}
.cid-v24fIP5ANR .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-v24fIP5ANR .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-v24fIP5ANR .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-v24fIP5ANR .mbr-text,
.cid-v24fIP5ANR .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-v24fIP5ANR .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v24fIP5ANR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v24fIP5ANR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v24e92H6NL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v24e92H6NL .column-wrapper {
  padding-left: 1.5rem;
}
.cid-v24e92H6NL .row {
  flex-direction: row-reverse;
}
.cid-v24e92H6NL .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-v24e92H6NL .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-v24e92H6NL .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-v24e92H6NL .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-v24e92H6NL .mbr-text,
.cid-v24e92H6NL .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-v24e92H6NL .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v24e92H6NL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v24e92H6NL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN4TK35tzQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uN4TK35tzQ .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-uN4TK35tzQ .mbr-section-title,
.cid-uN4TK35tzQ .mbr-section-subtitle {
  text-align: center;
}
.cid-uN4TK35tzQ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uN4TK35tzQ .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uN4TK35tzQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uN4TK35tzQ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uN4TK35tzQ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uN4TK35tzQ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uN4TK35tzQ .cost {
  color: #c5425a;
}
.cid-uN4TK35tzQ .card-title {
  color: #5c3c84;
}
.cid-uur94sp0gX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uLtgKOWiVW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLtgKOWiVW .row {
  flex-direction: row-reverse;
}
.cid-uLtgKOWiVW .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uLtgKOWiVW .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #f6ae0c;
}
.cid-uLtgKOWiVW .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uLtgKOWiVW .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uLtgKOWiVW .mbr-section-title {
  color: #f5841f;
}
@media (min-width: 1400px) {
  .cid-uLtgKOWiVW .col-12 {
    padding: 0 2rem;
  }
  .cid-uLtgKOWiVW .row {
    margin: 0 -2rem;
  }
}
.cid-uLtgKOWiVW .mbr-text,
.cid-uLtgKOWiVW .mbr-section-btn {
  color: #353535;
}
.cid-uLurdpRKbX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLurdpRKbX .row::before {
  content: '';
  position: absolute;
  left: -20px;
  top: -3rem;
  display: block;
  width: 150px;
  height: 150px;
  border: 20px solid #ee2947;
  border-radius: 50%;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uLurdpRKbX .row::before {
    display: none;
  }
}
.cid-uLurdpRKbX .row::after {
  content: '';
  position: absolute;
  left: 130px;
  top: -3rem;
  display: block;
  width: 150px;
  height: 150px;
  border: 20px solid #f3722f;
  border-radius: 50%;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uLurdpRKbX .row::after {
    display: none;
  }
}
.cid-uLurdpRKbX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLurdpRKbX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLurdpRKbX .video-wrapper iframe {
  width: 100%;
}
.cid-uLurdpRKbX .app-video-wrapper::before {
  font-size: 100px;
  line-height: 100px;
  border: 10px solid #8caff0;
  border-radius: 50%;
  padding: 28px 28px 28px 30px;
  top: 45%;
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uLurdpRKbX .app-video-wrapper::before {
    font-size: 70px;
    line-height: 70px;
    border: none;
    padding: 0;
    top: 50%;
    left: 50%;
  }
}
.cid-uLurdpRKbX .video-block {
  position: relative;
  z-index: 1;
}
.cid-uLurdpRKbX .video-block .video-wrapper iframe {
  z-index: 1;
  position: relative;
}
.cid-uLurdpRKbX .video-block .image-absolute {
  position: absolute;
  top: -12rem;
  left: -4rem;
  width: 300px;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uLurdpRKbX .video-block .image-absolute {
    display: none;
  }
}
.cid-uLuqkRA47V {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLuqkRA47V .image-wrapper {
  padding: 0 2rem;
}
.cid-uLuqkRA47V .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-uLuqkRA47V .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-uLuqkRA47V .mbr-section-title {
  color: #a01e97;
  margin-bottom: 1.5rem;
}
.cid-uLuqkRA47V .mbr-section-subtitle {
  color: #54575f;
  margin-bottom: 4rem;
}
.cid-uLuqkRA47V .mbr-text {
  color: #000000;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-uLuqkRA47V .text-wrapper,
  .cid-uLuqkRA47V .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-uLuqkRA47V .text-wrapper,
  .cid-uLuqkRA47V .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-uLuqkRA47V .text-wrapper,
  .cid-uLuqkRA47V .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-uLuqkRA47V .text-wrapper,
  .cid-uLuqkRA47V .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-uLuqkRA47V .text-wrapper,
  .cid-uLuqkRA47V .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-uLuqkRA47V .content {
    text-align: center;
  }
}
.cid-uLuqkRA47V .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-uLuqkRA47V .mbr-card-title {
    text-align: start;
  }
}
.cid-uLuqkRA47V .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-uLuqkRA47V .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-uLuqkRA47V .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-uLuqkRA47V .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-uLuqkRA47V .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-uLuqkRA47V .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-uLuqkRA47V .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-uLuqkRA47V .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-uLuqkRA47V .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-uLuqkRA47V .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-uLuqkRA47V .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-uLuqkRA47V .nutrition-wrap {
    width: 100%;
  }
}
.cid-uLuqkRA47V .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-uLuqkRA47V .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-uLuqkRA47V .tile-text-wrap {
  display: flex;
}
.cid-uLuqkRA47V svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-uLuqkRA47V svg path {
  fill: #cd8ad1;
}
.cid-uLuqkRA47V .numbers {
  display: flex;
  align-self: center;
}
.cid-uLuqkRA47V .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-uLuqkRA47V .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-uLuqkRA47V .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-uLuqkRA47V .mbr-tile-text {
    text-align: start;
  }
}
.cid-uLuqkRA47V .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLuqkRA47V .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-uLuqkRA47V .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-uLuqkRA47V .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-uLuqkRA47V .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-uLuqkRA47V .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-uLuqkRA47V .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-uLuqkRA47V .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-uLuqkRA47V .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-uLuqkRA47V div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-uLuqkRA47V .mbr-section-btn {
  display: flex;
}
.cid-uLuqkRA47V .mbr-text-title {
  color: #a01e97;
}
.cid-uLurZFqShG {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/brinquedos-santosdumont-14bis-827x269.webp");
}
@media (max-width: 767px) {
  .cid-uLurZFqShG .row {
    flex-direction: column-reverse;
  }
  .cid-uLurZFqShG .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-uLurZFqShG .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uLurZFqShG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uLurZFqShG .media-content,
.cid-uLurZFqShG .mbr-figure {
  align-self: center;
}
.cid-uLurZFqShG .mbr-figure iframe {
  width: 100%;
}
.cid-uLurZFqShG .mbr-section-title {
  color: #8203ba;
  text-align: right;
}
.cid-uLurZFqShG .mbr-text,
.cid-uLurZFqShG .mbr-section-btn {
  text-align: right;
  color: #12265a;
}
.cid-uLunI7bvta {
  background: #ffffff;
  padding-top: 120px;
  padding-bottom: 120px;
}
.cid-uLunI7bvta .image-block img {
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .cid-uLunI7bvta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .cid-uLunI7bvta .container {
    padding: 0 1rem;
  }
  .cid-uLunI7bvta .image-block {
    width: 100% !important;
  }
}
.cid-uLunI7bvta .container-fluid {
  padding: 0;
}
.cid-uLunOCdCjy {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLunOCdCjy .image-wrapper {
  padding: 0 2rem;
}
.cid-uLunOCdCjy .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-uLunOCdCjy .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-uLunOCdCjy .mbr-section-title {
  color: #228555;
  margin-bottom: 1.5rem;
}
.cid-uLunOCdCjy .mbr-section-subtitle {
  color: #54575f;
  margin-bottom: 4rem;
}
.cid-uLunOCdCjy .mbr-text {
  color: #000000;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-uLunOCdCjy .text-wrapper,
  .cid-uLunOCdCjy .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-uLunOCdCjy .text-wrapper,
  .cid-uLunOCdCjy .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-uLunOCdCjy .text-wrapper,
  .cid-uLunOCdCjy .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-uLunOCdCjy .text-wrapper,
  .cid-uLunOCdCjy .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-uLunOCdCjy .text-wrapper,
  .cid-uLunOCdCjy .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-uLunOCdCjy .content {
    text-align: center;
  }
}
.cid-uLunOCdCjy .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-uLunOCdCjy .mbr-card-title {
    text-align: start;
  }
}
.cid-uLunOCdCjy .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-uLunOCdCjy .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-uLunOCdCjy .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-uLunOCdCjy .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-uLunOCdCjy .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-uLunOCdCjy .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-uLunOCdCjy .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-uLunOCdCjy .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-uLunOCdCjy .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-uLunOCdCjy .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-uLunOCdCjy .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-uLunOCdCjy .nutrition-wrap {
    width: 100%;
  }
}
.cid-uLunOCdCjy .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-uLunOCdCjy .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-uLunOCdCjy .tile-text-wrap {
  display: flex;
}
.cid-uLunOCdCjy svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-uLunOCdCjy svg path {
  fill: #cd8ad1;
}
.cid-uLunOCdCjy .numbers {
  display: flex;
  align-self: center;
}
.cid-uLunOCdCjy .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-uLunOCdCjy .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-uLunOCdCjy .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-uLunOCdCjy .mbr-tile-text {
    text-align: start;
  }
}
.cid-uLunOCdCjy .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLunOCdCjy .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-uLunOCdCjy .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-uLunOCdCjy .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-uLunOCdCjy .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-uLunOCdCjy .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-uLunOCdCjy .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-uLunOCdCjy .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-uLunOCdCjy .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-uLunOCdCjy div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-uLunOCdCjy .mbr-section-btn {
  display: flex;
}
.cid-uLunOCdCjy .mbr-text-title {
  color: #ae7a12;
}
.cid-uLukGbtibK {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/brinquedos-santosdumont-14bis-827x269.webp");
}
@media (max-width: 767px) {
  .cid-uLukGbtibK .row {
    flex-direction: column-reverse;
  }
  .cid-uLukGbtibK .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-uLukGbtibK .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uLukGbtibK .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uLukGbtibK .media-content,
.cid-uLukGbtibK .mbr-figure {
  align-self: center;
}
.cid-uLukGbtibK .mbr-figure iframe {
  width: 100%;
}
.cid-uLukGbtibK .mbr-section-title {
  color: #8203ba;
  text-align: right;
}
.cid-uLukGbtibK .mbr-text,
.cid-uLukGbtibK .mbr-section-btn {
  text-align: right;
  color: #12265a;
}
.cid-uLtgKQbEq4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLtgKQbEq4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLtgKQbEq4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLtgKQbEq4 a {
  font-weight: bold;
}
.cid-uLtgKQbEq4 .mbr-section-title {
  color: #f5841f;
  text-align: center;
}
.cid-uLtgKQbEq4 .mbr-text,
.cid-uLtgKQbEq4 .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uLtiBmQHYH {
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/caminhao-fabrica-2-1000x502.webp");
}
.cid-uLtiBmQHYH .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-uLtiBmQHYH .wrap {
  padding: 0 25px;
}
.cid-uLtiBmQHYH .wrap:before {
  content: '';
  position: absolute;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #e51e1e;
  top: 0px;
  right: 0px;
}
.cid-uLtiBmQHYH .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-uLtiBmQHYH .mbr-text {
  margin-bottom: 20px;
}
.cid-uLtiBmQHYH .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uLtiBmQHYH .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-uLtiBmQHYH .container,
  .cid-uLtiBmQHYH .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uLtiBmQHYH .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-uLtiBmQHYH a.close {
    right: 50px;
    top: 25px;
  }
  .cid-uLtiBmQHYH .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-uLtiBmQHYH .mbr-section-title,
.cid-uLtiBmQHYH .mbr-figure {
  color: #ffffff;
  text-align: left;
}
.cid-uLtivutKab {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-uLtivutKab .mbr-section-subtitle {
  color: #cccccc;
}
.cid-uLtivutKab h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-uLtivutKab h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uLtivutKab h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uLtivutKab .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #767676;
  margin: 15px 0.5rem;
  display: block;
}
.cid-uLtivutKab .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-uLtivutKab .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-uLtivutKab .mbr-iconfont-social:hover:before {
  background: #767676;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-uLtivutKab .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uLtivutKab .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-uLtivutKab .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-uLtivutKab .mbr-section-title,
.cid-uLtivutKab .social-list {
  color: #1e43a0;
}
@media (max-width: 768px) {
  .cid-uLtivutKab h2:before,
  .cid-uLtivutKab h2:after {
    display: none;
  }
}
.cid-uLtgKQu7Oq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
#custom-html-d4 {
  /* Type valid CSS here */
}
#custom-html-d4 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-d4 p {
  font-size: 60px;
  color: #777;
}
.cid-v4rKKUnaSL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4rKKUnaSL .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;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4rKKUnaSL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4rKKUnaSL .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4rKKUnaSL .navbar.opened {
  transition: all 0.3s;
}
.cid-v4rKKUnaSL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4rKKUnaSL .navbar .navbar-logo img {
  width: auto;
}
.cid-v4rKKUnaSL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4rKKUnaSL .navbar.collapsed {
  justify-content: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4rKKUnaSL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4rKKUnaSL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4rKKUnaSL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar {
    min-height: 72px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4rKKUnaSL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4rKKUnaSL .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-v4rKKUnaSL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4rKKUnaSL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4rKKUnaSL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4rKKUnaSL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4rKKUnaSL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4rKKUnaSL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4rKKUnaSL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4rKKUnaSL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4rKKUnaSL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4rKKUnaSL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4rKKUnaSL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4rKKUnaSL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4rKKUnaSL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4rKKUnaSL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4rKKUnaSL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4rKKUnaSL .nav-item:focus,
.cid-v4rKKUnaSL .nav-link:focus {
  outline: none;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4rKKUnaSL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4rKKUnaSL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4rKKUnaSL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4rKKUnaSL .dropdown-item.active,
.cid-v4rKKUnaSL .dropdown-item:active {
  background-color: transparent;
}
.cid-v4rKKUnaSL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4rKKUnaSL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4rKKUnaSL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4rKKUnaSL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4rKKUnaSL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .navbar-buttons {
    text-align: left;
  }
}
.cid-v4rKKUnaSL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4rKKUnaSL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4rKKUnaSL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4rKKUnaSL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4rKKUnaSL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4rKKUnaSL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4rKKUnaSL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4rKKUnaSL .navbar {
    height: 70px;
  }
  .cid-v4rKKUnaSL .navbar.opened {
    height: auto;
  }
  .cid-v4rKKUnaSL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4rKKUnaSL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4rKKUnaSL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4rKKUnaSL .navbar-brand {
    margin-right: auto;
  }
  .cid-v4rKKUnaSL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4rKKUnaSL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4rKKUnaSL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4rKKUnaSL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4rKKUnaSL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4rKKUnaSL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-v4khGZhMpl {
  background-color: #ffffff;
}
.cid-v4khGZhMpl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4khGZhMpl .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-v4khGZhMpl .container {
    padding: 0 16px;
  }
}
.cid-v4khGZhMpl .row {
  margin: 0 -28px;
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-v4khGZhMpl .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-v4khGZhMpl .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v4khGZhMpl .item {
  padding: 0 28px;
  margin-bottom: 32px;
}
.cid-v4khGZhMpl .item:hover .item-wrapper .item-content .mbr-section-btn .btn .mbr-iconfont,
.cid-v4khGZhMpl .item:focus .item-wrapper .item-content .mbr-section-btn .btn .mbr-iconfont {
  transform: translateX(8px);
}
.cid-v4khGZhMpl .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-v4khGZhMpl .item .item-wrapper .item-img img {
  height: 280px;
  object-fit: cover;
  margin-bottom: 26px;
}
.cid-v4khGZhMpl .item .item-wrapper .item-img .item-text {
  margin-bottom: 12px;
}
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline {
  padding: 0;
  border: none !important;
  flex-direction: row;
}
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline .mbr-iconfont,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline .mbr-iconfont,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline .mbr-iconfont,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline .mbr-iconfont,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline .mbr-iconfont,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline .mbr-iconfont,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline .mbr-iconfont,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline .mbr-iconfont {
  margin-left: 8px;
  margin-right: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:hover,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:hover,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:hover,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:hover,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:hover,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:hover,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:hover,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:hover,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:focus,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:focus,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:focus,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:focus,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:focus,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:focus,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:focus,
.cid-v4khGZhMpl .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:focus {
  transform: scale(1);
}
.cid-v4khGZhMpl .mbr-section-title {
  color: #764d9e;
  text-align: center;
}
.cid-v4khGZhMpl .item-text {
  color: #000000;
}
.cid-v4khi7t3DJ {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v4khi7t3DJ .item-wrapper {
  width: 100%;
}
.cid-v4khi7t3DJ .row {
  align-items: center;
  justify-content: center;
}
.cid-v4khi7t3DJ .b {
  margin-bottom: 30px;
}
.cid-v4khi7t3DJ img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-v4khi7t3DJ .b,
  .cid-v4khi7t3DJ .t {
    margin-bottom: 20px;
  }
}
.cid-v4khi7VJNE {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v4khi7VJNE .item-wrapper {
  width: 100%;
}
.cid-v4khi7VJNE .row {
  align-items: center;
  justify-content: center;
}
.cid-v4khi7VJNE .b {
  margin-bottom: 30px;
}
.cid-v4khi7VJNE img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-v4khi7VJNE .b,
  .cid-v4khi7VJNE .t {
    margin-bottom: 20px;
  }
}
.cid-v4khi8MRvF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
.cid-v4xJ9hP3VD {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4xJ9hP3VD .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;
}
@media (max-width: 767px) {
  .cid-v4xJ9hP3VD .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4xJ9hP3VD .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-v4xJ9hP3VD .navbar {
    padding: 0 128px !important;
  }
}
.cid-v4xJ9hP3VD .navbar.opened {
  transition: all 0.3s;
}
.cid-v4xJ9hP3VD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4xJ9hP3VD .navbar .navbar-logo img {
  width: auto;
}
.cid-v4xJ9hP3VD .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4xJ9hP3VD .navbar.collapsed {
  justify-content: center;
}
.cid-v4xJ9hP3VD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4xJ9hP3VD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4xJ9hP3VD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v4xJ9hP3VD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4xJ9hP3VD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4xJ9hP3VD .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-v4xJ9hP3VD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4xJ9hP3VD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4xJ9hP3VD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4xJ9hP3VD .navbar {
    min-height: 72px;
  }
  .cid-v4xJ9hP3VD .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4xJ9hP3VD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4xJ9hP3VD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4xJ9hP3VD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4xJ9hP3VD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4xJ9hP3VD .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-v4xJ9hP3VD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4xJ9hP3VD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4xJ9hP3VD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4xJ9hP3VD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4xJ9hP3VD .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4xJ9hP3VD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4xJ9hP3VD .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v4xJ9hP3VD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4xJ9hP3VD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4xJ9hP3VD .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-v4xJ9hP3VD .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v4xJ9hP3VD .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v4xJ9hP3VD .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4xJ9hP3VD .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4xJ9hP3VD .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v4xJ9hP3VD .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v4xJ9hP3VD .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v4xJ9hP3VD .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4xJ9hP3VD .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-v4xJ9hP3VD .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v4xJ9hP3VD .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v4xJ9hP3VD .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4xJ9hP3VD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v4xJ9hP3VD .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4xJ9hP3VD .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4xJ9hP3VD .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4xJ9hP3VD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4xJ9hP3VD .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v4xJ9hP3VD .nav-item:focus,
.cid-v4xJ9hP3VD .nav-link:focus {
  outline: none;
}
.cid-v4xJ9hP3VD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4xJ9hP3VD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4xJ9hP3VD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4xJ9hP3VD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4xJ9hP3VD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4xJ9hP3VD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4xJ9hP3VD .dropdown-item.active,
.cid-v4xJ9hP3VD .dropdown-item:active {
  background-color: transparent;
}
.cid-v4xJ9hP3VD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4xJ9hP3VD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4xJ9hP3VD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4xJ9hP3VD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4xJ9hP3VD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v4xJ9hP3VD .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4xJ9hP3VD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4xJ9hP3VD .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4xJ9hP3VD .navbar-buttons {
    text-align: left;
  }
}
.cid-v4xJ9hP3VD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4xJ9hP3VD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v4xJ9hP3VD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4xJ9hP3VD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4xJ9hP3VD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4xJ9hP3VD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4xJ9hP3VD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4xJ9hP3VD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4xJ9hP3VD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4xJ9hP3VD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4xJ9hP3VD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4xJ9hP3VD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4xJ9hP3VD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4xJ9hP3VD .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4xJ9hP3VD .navbar {
    height: 70px;
  }
  .cid-v4xJ9hP3VD .navbar.opened {
    height: auto;
  }
  .cid-v4xJ9hP3VD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4xJ9hP3VD .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-v4xJ9hP3VD .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v4xJ9hP3VD .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4xJ9hP3VD .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4xJ9hP3VD .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4xJ9hP3VD .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v4xJ9hP3VD .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4xJ9hP3VD .navbar-brand {
    margin-right: auto;
  }
  .cid-v4xJ9hP3VD .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(8px);
  }
  .cid-v4xJ9hP3VD .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4xJ9hP3VD .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v4xJ9hP3VD .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4xJ9hP3VD .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4xJ9hP3VD .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4xJ9hP3VD .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4xJ9hP3VD .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4xJ9hP3VD .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v4xJ9hP3VD .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4xJ9hP3VD .navbar-collapse {
    padding: 1rem;
  }
}
.cid-v4xJ9iodLJ {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v4xJ9iodLJ .mbr-section-title {
  color: #e43f3f;
}
.cid-v4xJ9iodLJ .mbr-text,
.cid-v4xJ9iodLJ .mbr-section-btn {
  color: #262642;
}
.cid-v4xJ9iodLJ .mbr-section-subtitle {
  color: #000000;
}
.cid-v4xJ9iodLJ img {
  border-radius: 2rem;
}
.cid-v4xJ9iodLJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4xJ9iodLJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4Nsb1FOc1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4Nsb1FOc1 .container {
    padding: 0 25px;
  }
}
.cid-v4Nsb1FOc1 .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v4Nsb1FOc1 .title-wrapper {
    padding: 0 25px;
  }
}
.cid-v4Nsb1FOc1 .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-v4Nsb1FOc1 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v4Nsb1FOc1 .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-v4Nsb1FOc1 .item:focus,
.cid-v4Nsb1FOc1 span:focus {
  outline: none;
}
.cid-v4Nsb1FOc1 .item-wrapper {
  position: relative;
}
.cid-v4Nsb1FOc1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 460px;
  max-width: 460px;
}
@media (max-width: 767px) {
  .cid-v4Nsb1FOc1 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v4Nsb1FOc1 .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-v4Nsb1FOc1 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 250px;
  object-fit: cover;
}
.cid-v4Nsb1FOc1 .embla__button--next,
.cid-v4Nsb1FOc1 .embla__button--prev {
  display: flex;
}
.cid-v4Nsb1FOc1 .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #262642 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v4Nsb1FOc1 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v4Nsb1FOc1 .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-v4Nsb1FOc1 .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-v4Nsb1FOc1 .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #262642 !important;
  color: #f0f0f0 !important;
}
.cid-v4Nsb1FOc1 .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-v4Nsb1FOc1 .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-v4Nsb1FOc1 .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #262642 !important;
  color: #f0f0f0 !important;
}
.cid-v4Nsb1FOc1 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-v4Nsb1FOc1 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-v4Nsb1FOc1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v4Nsb1FOc1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v4Nsb1FOc1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v4Nsb1FOc1 .mbr-section-title {
  color: #000000;
}
.cid-v4Nsb1FOc1 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v4Nsb1FOc1 .mbr-section-title,
.cid-v4Nsb1FOc1 .mbr-section-btn {
  text-align: center;
  color: #5ca312;
}
.cid-v4NyHy1WNe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-v4NyHy1WNe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4NyHy1WNe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4NyHy1WNe .title-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 1440px) {
  .cid-v4NyHy1WNe .title-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v4NyHy1WNe .title-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-v4NyHy1WNe .title-wrapper .label-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v4NyHy1WNe .title-wrapper .label-wrapper {
    margin-bottom: 28px;
  }
}
.cid-v4NyHy1WNe .title-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v4NyHy1WNe .title-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-v4NyHy1WNe .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-v4NyHy1WNe .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-v4NyHy1WNe .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v4NyHy1WNe .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v4NyHy1WNe .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-v4NyHy1WNe .title-wrapper .mbr-text {
  margin-top: 22px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4NyHy1WNe .title-wrapper .mbr-text {
    margin-top: 18px;
  }
}
.cid-v4NyHy1WNe .items-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.cid-v4NyHy1WNe .items-wrapper .item {
  width: 33.33%;
  padding: 0 7px;
  margin-bottom: 14px;
}
@media (max-width: 1440px) {
  .cid-v4NyHy1WNe .items-wrapper .item {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-v4NyHy1WNe .items-wrapper .item {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-v4NyHy1WNe .items-wrapper .item .item-wrapper {
  padding: 46px;
  height: 100%;
  background-color: #ffffff;
  overflow: hidden !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v4NyHy1WNe .items-wrapper .item .item-wrapper {
    padding: 18px;
  }
}
.cid-v4NyHy1WNe .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.cid-v4NyHy1WNe .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 22px;
}
.cid-v4NyHy1WNe .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-v4NyHy1WNe .items-wrapper .item .item-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  width: 100%;
}
.cid-v4NyHy1WNe .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
}
.cid-v4NyHy1WNe .mbr-label,
.cid-v4NyHy1WNe .label-wrapper {
  color: #1a0b54;
  text-align: center;
}
.cid-v4NyHy1WNe .mbr-section-title {
  color: #1a0b54;
  text-align: center;
}
.cid-v4NyHy1WNe .mbr-section-subtitle,
.cid-v4NyHy1WNe .subtitle-wrapper {
  color: #1a0b54;
  text-align: center;
}
.cid-v4NyHy1WNe .mbr-text {
  color: #a997ce;
  text-align: center;
}
.cid-v4NyHy1WNe .item-title {
  color: #e43f3f;
}
.cid-v4NyHy1WNe .item-text {
  color: #1a0b54;
}
.cid-v4NOoarn9y {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4NOoarn9y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4NOoarn9y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4NOoarn9y .decor-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.cid-v4NOoarn9y .decor-wrap .decor-wrap_1 {
  width: 20%;
  height: 1px;
  background-image: linear-gradient(90deg, #eeeef4, #cdcddd 50%, #eeeef4);
  box-shadow: 0 0.5px 0.0625rem 0 #ffffff;
  margin-bottom: 32px;
}
.cid-v4NOoarn9y .decor-wrap .decor-wrap_2 {
  width: 38%;
  height: 1px;
  background-image: linear-gradient(90deg, #eeeef4, #cdcddd 50%, #eeeef4);
  box-shadow: 0 0.5px 0.0625rem 0 #ffffff;
  margin-bottom: 32px;
}
.cid-v4NOoarn9y .decor-wrap .decor-wrap_3 {
  width: 75%;
  height: 1px;
  background-image: linear-gradient(90deg, #eeeef4, #cdcddd 50%, #eeeef4);
  box-shadow: 0 0.5px 0.0625rem 0 #ffffff;
  margin-bottom: 32px;
}
.cid-v4NOoarn9y .items-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1440px) {
  .cid-v4NOoarn9y .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-v4NOoarn9y .items-wrapper {
    display: block;
    padding: 0 16px;
  }
}
.cid-v4NOoarn9y .item {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-v4NOoarn9y .item {
    margin-bottom: 16px;
  }
}
.cid-v4NOoarn9y .item .item-wrapper {
  height: 100%;
  padding: 12px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  box-shadow: 0 .25rem .375rem #00000014;
}
@media (max-width: 992px) {
  .cid-v4NOoarn9y .item .item-wrapper {
    padding: 6px;
  }
}
.cid-v4NOoarn9y .item .item-wrapper .card-box {
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v4NOoarn9y .item .item-wrapper .card-box {
    padding: 16px;
  }
}
.cid-v4NOoarn9y .item .item-wrapper .card-box .item-img {
  margin-bottom: 24px;
}
.cid-v4NOoarn9y .item .item-wrapper .card-box .item-img img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v4NOoarn9y .item .item-wrapper .card-box .item-img img {
    height: 300px;
  }
}
@media (max-width: 425px) {
  .cid-v4NOoarn9y .item .item-wrapper .card-box .item-img img {
    height: 250px;
  }
}
.cid-v4NOoarn9y .item .item-wrapper .card-box .item-name {
  margin-bottom: 4px;
}
.cid-v4NOoarn9y .item .item-wrapper .card-box .item-role {
  margin-bottom: 0;
  text-transform: uppercase;
}
.cid-v4NOoarn9y .item .item-wrapper .card-box .item-text {
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-v4NOoarn9y .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 16px;
}
.cid-v4NOoarn9y .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v4NOoarn9y .item-name {
  color: #181824;
}
.cid-v4NOoarn9y .item-role {
  color: #49496d;
}
.cid-v4NOoarn9y .item-text {
  color: #54547e;
}
.cid-v4OaFWK1Cz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v4OaFWK1Cz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-v4OaFWK1Cz .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-v4OaFWK1Cz .mbr-text {
  color: #000000;
  letter-spacing: 0.03em;
}
.cid-v4xJ9lPoC4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #764d9e;
  overflow: hidden;
}
