body {
  font-family: 'Syne', sans-serif;
}
.display-1 {
  font-family: 'Syne', sans-serif;
  font-size: 6.25rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.8125rem;
}
.display-2 {
  font-family: 'Syne', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  line-height: 1.14;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  line-height: 1.41;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.375rem;
    font-size: calc( 2.8375rem + (6.25 - 2.8375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.8375rem + (6.25 - 2.8375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.14 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.41 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #1a1fd9 !important;
}
.bg-success {
  background-color: #c298d3 !important;
}
.bg-info {
  background-color: #5cc1ed !important;
}
.bg-warning {
  background-color: #ffe885 !important;
}
.bg-danger {
  background-color: #e6c63b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1a1fd9 !important;
  border-color: #1a1fd9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #11148c !important;
  border-color: #11148c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #11148c !important;
  border-color: #11148c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #1a1fd9 !important;
  border-color: #1a1fd9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #11148c !important;
  border-color: #11148c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #11148c !important;
  border-color: #11148c !important;
}
.btn-info,
.btn-info:active {
  background-color: #5cc1ed !important;
  border-color: #5cc1ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #189fda !important;
  border-color: #189fda !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #189fda !important;
  border-color: #189fda !important;
}
.btn-success,
.btn-success:active {
  background-color: #c298d3 !important;
  border-color: #c298d3 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #9e5bb9 !important;
  border-color: #9e5bb9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #9e5bb9 !important;
  border-color: #9e5bb9 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
  color: #856c00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #2e2600 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #856c00 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1a1fd9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #11148c !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: #1a1fd9 !important;
  border-color: #1a1fd9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1a1fd9;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #11148c !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: #1a1fd9 !important;
  border-color: #1a1fd9 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5cc1ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #189fda !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: #5cc1ed !important;
  border-color: #5cc1ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c298d3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #9e5bb9 !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: #c298d3 !important;
  border-color: #c298d3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe885;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd82e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #856c00 !important;
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c63b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b39617 !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: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.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: #000000 !important;
  border-color: #000000 !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: #1a1fd9 !important;
}
.text-secondary {
  color: #1a1fd9 !important;
}
.text-success {
  color: #c298d3 !important;
}
.text-info {
  color: #5cc1ed !important;
}
.text-warning {
  color: #ffe885 !important;
}
.text-danger {
  color: #e6c63b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0f127e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0f127e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #9851b4 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1795cc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffd51f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a68b15 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #1a1fd9;
}
.nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #5cc1ed;
}
.alert-warning {
  background-color: #ffe885;
}
.alert-danger {
  background-color: #e6c63b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1a1fd9;
  border-color: #1a1fd9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1a1fd9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c7c8f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fdfbf0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #1a1fd9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #1a1fd9;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1a1fd9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1a1fd9;
}
.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: #1a1fd9;
  border-bottom-color: #1a1fd9;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #1a1fd9 !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: #1a1fd9 !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='%231a1fd9' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 100%;
  width: 86%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 801px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1025px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1201px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1441px) {
  .container {
    max-width: 1300px;
  }
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 190px;
  border-radius: 0;
  padding: 17px 48px 15px 50px;
  line-height: 1.33;
  font-weight: 500 !important;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
.mbr-section-btn .btn-primary {
  color: #ffffff !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary:hover {
  color: #000 !important;
  background: 0 0 !important;
}
.mbr-section-btn .btn-primary-outline {
  color: #000000 !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: 0 0;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary-outline:hover {
  color: #fff !important;
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
b {
  font-weight: 600 !important;
}
.cid-tXsMhCxy1m {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tXsMhCxy1m nav.navbar {
  position: fixed;
}
.cid-tXsMhCxy1m .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXsMhCxy1m .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXsMhCxy1m .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXsMhCxy1m .dropdown-item:hover,
.cid-tXsMhCxy1m .dropdown-item:focus {
  background: #1a1fd9 !important;
  color: white !important;
}
.cid-tXsMhCxy1m .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXsMhCxy1m .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXsMhCxy1m .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-tXsMhCxy1m .nav-item {
  margin: 0 31px;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXsMhCxy1m .nav-link {
  position: relative;
}
.cid-tXsMhCxy1m .nav-link:hover,
.cid-tXsMhCxy1m .nav-link:focus,
.cid-tXsMhCxy1m .nav-link:active {
  color: #1a1fd9 !important;
}
.cid-tXsMhCxy1m .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .container {
    flex-wrap: inherit;
  }
}
.cid-tXsMhCxy1m .navbar-caption:hover,
.cid-tXsMhCxy1m .navbar-caption:focus,
.cid-tXsMhCxy1m .navbar-caption:active {
  color: #9e69b3 !important;
}
.cid-tXsMhCxy1m .dropdown-menu,
.cid-tXsMhCxy1m .navbar.opened {
  background: #c47efd !important;
}
.cid-tXsMhCxy1m .nav-item:focus,
.cid-tXsMhCxy1m .nav-link:focus {
  outline: none;
}
.cid-tXsMhCxy1m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXsMhCxy1m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXsMhCxy1m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXsMhCxy1m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXsMhCxy1m .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #c47efd;
}
.cid-tXsMhCxy1m .navbar.opened {
  transition: all 0.3s;
}
.cid-tXsMhCxy1m .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXsMhCxy1m .navbar .navbar-logo img {
  width: auto;
}
.cid-tXsMhCxy1m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXsMhCxy1m .navbar.collapsed {
  justify-content: center;
}
.cid-tXsMhCxy1m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXsMhCxy1m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXsMhCxy1m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXsMhCxy1m .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-tXsMhCxy1m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXsMhCxy1m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXsMhCxy1m .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-tXsMhCxy1m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXsMhCxy1m .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXsMhCxy1m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXsMhCxy1m .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXsMhCxy1m .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXsMhCxy1m .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXsMhCxy1m .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXsMhCxy1m .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
}
.cid-tXsMhCxy1m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXsMhCxy1m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXsMhCxy1m .dropdown-item.active,
.cid-tXsMhCxy1m .dropdown-item:active {
  background-color: transparent;
}
.cid-tXsMhCxy1m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXsMhCxy1m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c47efd;
}
.cid-tXsMhCxy1m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXsMhCxy1m .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-tXsMhCxy1m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXsMhCxy1m ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tXsMhCxy1m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #9e69b3;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXsMhCxy1m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXsMhCxy1m .navbar {
    height: 70px;
  }
  .cid-tXsMhCxy1m .navbar.opened {
    height: auto;
  }
  .cid-tXsMhCxy1m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXl4tfuIcf {
  padding-top: 3rem;
  padding-bottom: 12rem;
  overflow: hidden;
  background-color: #5cc1ed;
}
.cid-tXl4tfuIcf h2,
.cid-tXl4tfuIcf h4,
.cid-tXl4tfuIcf p {
  margin: 0;
}
.cid-tXl4tfuIcf .bg-image-wrap {
  width: 50%;
  height: 150%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.9;
  background-image: url("../../../assets/images/-0f03e8a3-bd3c-4a80-a4c5-05727c53f6aa-1024x1024.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: rotate(15deg) scale(1.2) translate(50px, -30px);
}
@media (max-width: 1440px) {
  .cid-tXl4tfuIcf .bg-image-wrap {
    width: 60%;
  }
}
@media (max-width: 800px) {
  .cid-tXl4tfuIcf .bg-image-wrap {
    width: 65%;
  }
}
@media (max-width: 400px) {
  .cid-tXl4tfuIcf .bg-image-wrap {
    display: none;
  }
}
.cid-tXl4tfuIcf .container-fluid {
  padding: 0;
  margin: 0 auto;
  width: 1300px;
  max-width: 1300px;
}
@media (max-width: 1440px) {
  .cid-tXl4tfuIcf .container-fluid {
    width: 1100px;
  }
}
@media (max-width: 1200px) {
  .cid-tXl4tfuIcf .container-fluid {
    width: 960px;
  }
}
@media (max-width: 1024px) {
  .cid-tXl4tfuIcf .container-fluid {
    width: 768px;
  }
}
@media (max-width: 800px) {
  .cid-tXl4tfuIcf .container-fluid {
    width: 86%;
  }
}
.cid-tXl4tfuIcf .text-elements {
  width: 100%;
}
.cid-tXl4tfuIcf .heading {
  padding-right: 50%;
}
@media (max-width: 1024px) {
  .cid-tXl4tfuIcf .heading {
    padding-right: 38%;
  }
}
@media (max-width: 767px) {
  .cid-tXl4tfuIcf .heading {
    padding-right: 0;
  }
}
.cid-tXl4tfuIcf .mbr-section-title {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-tXl4tfuIcf .mbr-section-subtitle {
  margin-bottom: 6px;
}
.cid-tXl4tfuIcf .mbr-text {
  margin-top: 10px;
  margin-bottom: 30px;
  padding-right: 73%;
}
@media (max-width: 1024px) {
  .cid-tXl4tfuIcf .mbr-text {
    padding-right: 63%;
  }
}
@media (max-width: 767px) {
  .cid-tXl4tfuIcf .mbr-text {
    padding-right: 40px;
  }
}
.cid-tXl4tfuIcf .link {
  font-weight: 600;
  position: relative;
  margin-right: 73%;
}
@media (max-width: 1024px) {
  .cid-tXl4tfuIcf .link {
    margin-right: 63%;
  }
}
@media (max-width: 767px) {
  .cid-tXl4tfuIcf .link {
    margin-right: 40px;
  }
}
.cid-tXl4tfuIcf .link::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 1;
  background-color: #ee3102;
  transition: transform 0.35s cubic-bezier(0.23, 0.02, 0.15, 0.9);
}
.cid-tXsJivK4lP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXsJivK4lP .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tXsJivK4lP .mbr-section-title {
  color: #000000;
  margin-bottom: 20.4px;
}
.cid-tXsJivK4lP .animation-box {
  position: relative;
  width: 78px;
  height: 86px;
}
@keyframes zoom-1 {
  0%,
  10% {
    transform: scale(0) rotate(0);
  }
  30%,
  32% {
    transform: scale(0.6) rotate(10deg);
  }
  100%,
  85% {
    transform: scale(0) rotate(60deg);
  }
}
@keyframes zoom-2 {
  0%,
  15% {
    transform: scale(0) rotate(0);
  }
  50%,
  54% {
    transform: scale(0.4) rotate(0);
  }
  100%,
  82% {
    transform: scale(0) rotate(80deg);
  }
}
.cid-tXsJivK4lP .star {
  color: #9e69b3;
  fill: currentColor;
  overflow: hidden;
}
.cid-tXsJivK4lP .star:nth-of-type(2) {
  position: absolute;
  top: -35px;
  left: 50px;
  transform: scale(0);
  animation: zoom-1 3.1s infinite;
}
.cid-tXsJivK4lP .star:nth-of-type(3) {
  position: absolute;
  top: -45px;
  left: -50px;
  animation: zoom-2 3.1s infinite;
}
.cid-tXsCW2JKFX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXsCW2JKFX .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tXsCW2JKFX .mbr-section-title {
  color: #000000;
  margin-bottom: 20.4px;
}
.cid-tXsCW2JKFX .animation-box {
  position: relative;
  width: 78px;
  height: 86px;
}
@keyframes zoom-1 {
  0%,
  10% {
    transform: scale(0) rotate(0);
  }
  30%,
  32% {
    transform: scale(0.6) rotate(10deg);
  }
  100%,
  85% {
    transform: scale(0) rotate(60deg);
  }
}
@keyframes zoom-2 {
  0%,
  15% {
    transform: scale(0) rotate(0);
  }
  50%,
  54% {
    transform: scale(0.4) rotate(0);
  }
  100%,
  82% {
    transform: scale(0) rotate(80deg);
  }
}
.cid-tXsCW2JKFX .star {
  color: #9e69b3;
  fill: currentColor;
  overflow: hidden;
}
.cid-tXsCW2JKFX .star:nth-of-type(2) {
  position: absolute;
  top: -35px;
  left: 50px;
  transform: scale(0);
  animation: zoom-1 3.1s infinite;
}
.cid-tXsCW2JKFX .star:nth-of-type(3) {
  position: absolute;
  top: -45px;
  left: -50px;
  animation: zoom-2 3.1s infinite;
}
.cid-tXsrg3TkKD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-tXsrg3TkKD h2,
.cid-tXsrg3TkKD h3,
.cid-tXsrg3TkKD h4,
.cid-tXsrg3TkKD h5,
.cid-tXsrg3TkKD p {
  margin: 0;
}
.cid-tXsrg3TkKD .content {
  width: 1288px;
  max-width: 1288px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 44px;
}
@media (max-width: 1440px) {
  .cid-tXsrg3TkKD .content {
    width: 1100px;
  }
}
@media (max-width: 1200px) {
  .cid-tXsrg3TkKD .content {
    width: 960px;
  }
}
@media (max-width: 1024px) {
  .cid-tXsrg3TkKD .content {
    width: 768px;
  }
}
@media (max-width: 800px) {
  .cid-tXsrg3TkKD .content {
    width: 696px;
  }
}
@media (max-width: 600px) {
  .cid-tXsrg3TkKD .content {
    width: 500px;
  }
}
@media (max-width: 400px) {
  .cid-tXsrg3TkKD .content {
    width: 296px;
  }
}
.cid-tXsrg3TkKD .mbr-section-title {
  color: #000000;
}
.cid-tXsrg3TkKD .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-tXsrg3TkKD .controls {
  position: absolute;
  right: 0;
  bottom: -44px;
}
.cid-tXsrg3TkKD .embla {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.cid-tXsrg3TkKD .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tXsrg3TkKD .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tXsrg3TkKD .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tXsrg3TkKD .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  width: 100%;
}
.cid-tXsrg3TkKD .embla__slide {
  position: relative;
}
.cid-tXsrg3TkKD .card-wrap {
  width: 1288px;
}
@media (max-width: 1440px) {
  .cid-tXsrg3TkKD .card-wrap {
    width: 1100px;
  }
}
@media (max-width: 1200px) {
  .cid-tXsrg3TkKD .card-wrap {
    width: 960px;
  }
}
@media (max-width: 1024px) {
  .cid-tXsrg3TkKD .card-wrap {
    width: 768px;
  }
}
@media (max-width: 800px) {
  .cid-tXsrg3TkKD .card-wrap {
    width: 696px;
  }
}
@media (max-width: 600px) {
  .cid-tXsrg3TkKD .card-wrap {
    width: 500px;
  }
}
@media (max-width: 400px) {
  .cid-tXsrg3TkKD .card-wrap {
    width: 296px;
  }
}
.cid-tXsrg3TkKD .image-wrap {
  width: 100%;
  overflow: hidden;
}
.cid-tXsrg3TkKD .image-wrap img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-tXsrg3TkKD .embla__button--next svg polygon,
.cid-tXsrg3TkKD .embla__button--prev svg polygon {
  transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cid-tXsrg3TkKD .embla__button--next svg,
.cid-tXsrg3TkKD .embla__button--prev svg {
  overflow: hidden;
}
.cid-tXsrg3TkKD .embla__button--prev {
  vertical-align: super;
  color: #000;
  transition: color 0.25s ease-out;
}
.cid-tXsrg3TkKD .embla__button--prev:hover {
  color: #000;
}
.cid-tXsrg3TkKD .embla__button--prev svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.cid-tXsrg3TkKD .embla__button--prev svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}
.cid-tXsrg3TkKD .embla__button--prev:hover svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.cid-tXsrg3TkKD .embla__button--prev:hover svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition-delay: 0.3s;
}
.cid-tXsrg3TkKD .embla__button--next {
  vertical-align: sub;
  color: #000;
  transition: color 0.25s ease-out;
}
.cid-tXsrg3TkKD .embla__button--next:hover {
  color: #000;
}
.cid-tXsrg3TkKD .embla__button--next svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.cid-tXsrg3TkKD .embla__button--next svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.cid-tXsrg3TkKD .embla__button--next:hover svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}
.cid-tXsrg3TkKD .embla__button--next:hover svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition-delay: 0.3s;
}
.cid-tXsggt8Bso {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5cc1ed;
}
.cid-tXsggt8Bso h2,
.cid-tXsggt8Bso h4,
.cid-tXsggt8Bso p {
  margin: 0;
}
.cid-tXsggt8Bso img {
  width: 100%;
  height: auto;
}
.cid-tXsggt8Bso .text-elements-wrap {
  width: 88.5%;
}
@media (max-width: 767px) {
  .cid-tXsggt8Bso .text-elements-wrap {
    width: 100%;
  }
}
.cid-tXsggt8Bso .text-elements {
  padding-left: 12%;
}
@media (max-width: 1024px) {
  .cid-tXsggt8Bso .text-elements {
    padding-top: 12%;
    padding-left: 0;
  }
}
@media (max-width: 1024px) {
  .cid-tXsggt8Bso .col-md-7,
  .cid-tXsggt8Bso .col-md-5 {
    width: 100%;
  }
}
.cid-tXsggt8Bso .mbr-section-title {
  color: #000000;
  margin-bottom: 20px;
}
.cid-tXsggt8Bso .mbr-section-subtitle {
  margin-bottom: 6px;
  color: #ffffff;
}
.cid-tXsggt8Bso .mbr-text {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tXsggt8Bso .link-wrap {
  padding-top: 25px;
}
.cid-tXsggt8Bso .link {
  font-weight: 600;
  position: relative;
}
.cid-tXsggt8Bso .link::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 1;
  background-color: #ee3102;
  transition: transform 0.35s cubic-bezier(0.23, 0.02, 0.15, 0.9);
}
.cid-tXsxrwY1ua {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #c47efd;
}
.cid-tXsxrwY1ua h2,
.cid-tXsxrwY1ua h4,
.cid-tXsxrwY1ua p {
  margin: 0;
}
.cid-tXsxrwY1ua img {
  width: 100%;
  height: auto;
}
.cid-tXsxrwY1ua .text-elements-wrap {
  width: 88.5%;
}
@media (max-width: 767px) {
  .cid-tXsxrwY1ua .text-elements-wrap {
    width: 100%;
  }
}
.cid-tXsxrwY1ua .text-elements {
  padding-left: 12%;
  padding-right: 23.5%;
}
@media (max-width: 1024px) {
  .cid-tXsxrwY1ua .text-elements {
    padding-top: 12%;
    padding-left: 0;
  }
}
@media (max-width: 1024px) {
  .cid-tXsxrwY1ua .text-elements {
    padding-bottom: 12%;
    padding-right: 0;
  }
}
@media (max-width: 1024px) {
  .cid-tXsxrwY1ua .col-md-7,
  .cid-tXsxrwY1ua .col-md-5 {
    width: 100%;
  }
}
.cid-tXsxrwY1ua .mbr-section-title {
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}
.cid-tXsxrwY1ua .mbr-section-subtitle {
  margin-bottom: 6px;
  text-align: center;
  color: #ffffff;
}
.cid-tXsxrwY1ua .mbr-text {
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.cid-tXsxrwY1ua .link-wrap {
  padding-top: 25px;
}
.cid-tXsxrwY1ua .link {
  font-weight: 600;
  position: relative;
}
.cid-tXsxrwY1ua .link::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 1;
  background-color: #ee3102;
  transition: transform 0.35s cubic-bezier(0.23, 0.02, 0.15, 0.9);
}
.cid-tXsCjrlP0i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXsCjrlP0i .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tXsCjrlP0i .mbr-section-title {
  color: #000000;
  margin-bottom: 20.4px;
}
.cid-tXsCjrlP0i .animation-box {
  position: relative;
  width: 78px;
  height: 86px;
}
@keyframes zoom-1 {
  0%,
  10% {
    transform: scale(0) rotate(0);
  }
  30%,
  32% {
    transform: scale(0.6) rotate(10deg);
  }
  100%,
  85% {
    transform: scale(0) rotate(60deg);
  }
}
@keyframes zoom-2 {
  0%,
  15% {
    transform: scale(0) rotate(0);
  }
  50%,
  54% {
    transform: scale(0.4) rotate(0);
  }
  100%,
  82% {
    transform: scale(0) rotate(80deg);
  }
}
.cid-tXsCjrlP0i .star {
  color: #9e69b3;
  fill: currentColor;
  overflow: hidden;
}
.cid-tXsCjrlP0i .star:nth-of-type(2) {
  position: absolute;
  top: -35px;
  left: 50px;
  transform: scale(0);
  animation: zoom-1 3.1s infinite;
}
.cid-tXsCjrlP0i .star:nth-of-type(3) {
  position: absolute;
  top: -45px;
  left: -50px;
  animation: zoom-2 3.1s infinite;
}
.cid-u09tEWSvYB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u09tEWSvYB .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-u09tEWSvYB .mbr-section-title {
  color: #20d604;
  margin-bottom: 20.4px;
}
.cid-u09tEWSvYB .animation-box {
  position: relative;
  width: 78px;
  height: 86px;
}
@keyframes zoom-1 {
  0%,
  10% {
    transform: scale(0) rotate(0);
  }
  30%,
  32% {
    transform: scale(0.6) rotate(10deg);
  }
  100%,
  85% {
    transform: scale(0) rotate(60deg);
  }
}
@keyframes zoom-2 {
  0%,
  15% {
    transform: scale(0) rotate(0);
  }
  50%,
  54% {
    transform: scale(0.4) rotate(0);
  }
  100%,
  82% {
    transform: scale(0) rotate(80deg);
  }
}
.cid-u09tEWSvYB .star {
  color: #7e4395;
  fill: currentColor;
  overflow: hidden;
}
.cid-u09tEWSvYB .star:nth-of-type(2) {
  position: absolute;
  top: -35px;
  left: 50px;
  transform: scale(0);
  animation: zoom-1 3.1s infinite;
}
.cid-u09tEWSvYB .star:nth-of-type(3) {
  position: absolute;
  top: -45px;
  left: -50px;
  animation: zoom-2 3.1s infinite;
}
.cid-u0acGb1tNm {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/a863044e-d5af-45ce-894d-c394c2245d3d-2000x667.jpg");
}
.cid-u0acGb1tNm .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-u0acGb1tNm .mbr-section-title {
  color: #000000;
  margin-bottom: 20.4px;
}
.cid-u0acGb1tNm .animation-box {
  position: relative;
  width: 78px;
  height: 86px;
}
@keyframes zoom-1 {
  0%,
  10% {
    transform: scale(0) rotate(0);
  }
  30%,
  32% {
    transform: scale(0.6) rotate(10deg);
  }
  100%,
  85% {
    transform: scale(0) rotate(60deg);
  }
}
@keyframes zoom-2 {
  0%,
  15% {
    transform: scale(0) rotate(0);
  }
  50%,
  54% {
    transform: scale(0.4) rotate(0);
  }
  100%,
  82% {
    transform: scale(0) rotate(80deg);
  }
}
.cid-u0acGb1tNm .star {
  color: #9e69b3;
  fill: currentColor;
  overflow: hidden;
}
.cid-u0acGb1tNm .star:nth-of-type(2) {
  position: absolute;
  top: -35px;
  left: 50px;
  transform: scale(0);
  animation: zoom-1 3.1s infinite;
}
.cid-u0acGb1tNm .star:nth-of-type(3) {
  position: absolute;
  top: -45px;
  left: -50px;
  animation: zoom-2 3.1s infinite;
}
.cid-u0aqbMOoks {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0aqbMOoks .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0aqbMOoks .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0aqbMOoks .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 3rem;
}
.cid-u0aqbMOoks .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-u0aqbMOoks .mbr-text,
.cid-u0aqbMOoks .mbr-section-btn {
  color: #232323;
}
.cid-u0aqbMOoks .mbr-section-title,
.cid-u0aqbMOoks .line {
  color: #232323;
  text-align: center;
}
.cid-u0aqbMOoks h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-u0aqbMOoks h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-u0aqbMOoks .mbr-section-subtitle,
.cid-u0aqbMOoks .align {
  text-align: center;
  color: #232323;
}
.cid-tXsi7N5MX0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tXsi7N5MX0 h2,
.cid-tXsi7N5MX0 h3,
.cid-tXsi7N5MX0 h4,
.cid-tXsi7N5MX0 h5,
.cid-tXsi7N5MX0 p {
  margin: 0;
}
.cid-tXsi7N5MX0 .content {
  width: 1288px;
  max-width: 1288px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 44px;
}
@media (max-width: 1440px) {
  .cid-tXsi7N5MX0 .content {
    width: 1100px;
  }
}
@media (max-width: 1200px) {
  .cid-tXsi7N5MX0 .content {
    width: 960px;
  }
}
@media (max-width: 1024px) {
  .cid-tXsi7N5MX0 .content {
    width: 768px;
  }
}
@media (max-width: 800px) {
  .cid-tXsi7N5MX0 .content {
    width: 696px;
  }
}
@media (max-width: 600px) {
  .cid-tXsi7N5MX0 .content {
    width: 500px;
  }
}
@media (max-width: 400px) {
  .cid-tXsi7N5MX0 .content {
    width: 296px;
  }
}
.cid-tXsi7N5MX0 .mbr-section-title {
  color: #000000;
}
.cid-tXsi7N5MX0 .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-tXsi7N5MX0 .controls {
  position: absolute;
  right: 0;
  bottom: -44px;
}
.cid-tXsi7N5MX0 .embla {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.cid-tXsi7N5MX0 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tXsi7N5MX0 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tXsi7N5MX0 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tXsi7N5MX0 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  width: 100%;
}
.cid-tXsi7N5MX0 .embla__slide {
  position: relative;
}
.cid-tXsi7N5MX0 .card-wrap {
  width: 1288px;
}
@media (max-width: 1440px) {
  .cid-tXsi7N5MX0 .card-wrap {
    width: 1100px;
  }
}
@media (max-width: 1200px) {
  .cid-tXsi7N5MX0 .card-wrap {
    width: 960px;
  }
}
@media (max-width: 1024px) {
  .cid-tXsi7N5MX0 .card-wrap {
    width: 768px;
  }
}
@media (max-width: 800px) {
  .cid-tXsi7N5MX0 .card-wrap {
    width: 696px;
  }
}
@media (max-width: 600px) {
  .cid-tXsi7N5MX0 .card-wrap {
    width: 500px;
  }
}
@media (max-width: 400px) {
  .cid-tXsi7N5MX0 .card-wrap {
    width: 296px;
  }
}
.cid-tXsi7N5MX0 .image-wrap {
  width: 100%;
  overflow: hidden;
}
.cid-tXsi7N5MX0 .image-wrap img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-tXsi7N5MX0 .embla__button--next svg polygon,
.cid-tXsi7N5MX0 .embla__button--prev svg polygon {
  transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cid-tXsi7N5MX0 .embla__button--next svg,
.cid-tXsi7N5MX0 .embla__button--prev svg {
  overflow: hidden;
}
.cid-tXsi7N5MX0 .embla__button--prev {
  vertical-align: super;
  color: #000;
  transition: color 0.25s ease-out;
}
.cid-tXsi7N5MX0 .embla__button--prev:hover {
  color: #000;
}
.cid-tXsi7N5MX0 .embla__button--prev svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.cid-tXsi7N5MX0 .embla__button--prev svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}
.cid-tXsi7N5MX0 .embla__button--prev:hover svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.cid-tXsi7N5MX0 .embla__button--prev:hover svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition-delay: 0.3s;
}
.cid-tXsi7N5MX0 .embla__button--next {
  vertical-align: sub;
  color: #000;
  transition: color 0.25s ease-out;
}
.cid-tXsi7N5MX0 .embla__button--next:hover {
  color: #000;
}
.cid-tXsi7N5MX0 .embla__button--next svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.cid-tXsi7N5MX0 .embla__button--next svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.cid-tXsi7N5MX0 .embla__button--next:hover svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}
.cid-tXsi7N5MX0 .embla__button--next:hover svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition-delay: 0.3s;
}
.cid-u0kjevp2We {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u0kjevp2We .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-u0kjevp2We .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-u0kjevp2We .mbr-section-btn {
  margin-top: 20px;
}
.cid-u0kjevp2We .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0kjevp2We .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0aCWlemwE {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/image0-10-2000x667.jpg");
}
.cid-u0aCWlemwE .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-u0aCWlemwE .mbr-section-title {
  color: #000000;
  margin-bottom: 20.4px;
}
.cid-u0aCWlemwE .animation-box {
  position: relative;
  width: 78px;
  height: 86px;
}
@keyframes zoom-1 {
  0%,
  10% {
    transform: scale(0) rotate(0);
  }
  30%,
  32% {
    transform: scale(0.6) rotate(10deg);
  }
  100%,
  85% {
    transform: scale(0) rotate(60deg);
  }
}
@keyframes zoom-2 {
  0%,
  15% {
    transform: scale(0) rotate(0);
  }
  50%,
  54% {
    transform: scale(0.4) rotate(0);
  }
  100%,
  82% {
    transform: scale(0) rotate(80deg);
  }
}
.cid-u0aCWlemwE .star {
  color: #c47efd;
  fill: currentColor;
  overflow: hidden;
}
.cid-u0aCWlemwE .star:nth-of-type(2) {
  position: absolute;
  top: -35px;
  left: 50px;
  transform: scale(0);
  animation: zoom-1 3.1s infinite;
}
.cid-u0aCWlemwE .star:nth-of-type(3) {
  position: absolute;
  top: -45px;
  left: -50px;
  animation: zoom-2 3.1s infinite;
}
.cid-tXsF0gDg7P {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5cc1ed;
}
.cid-tXsF0gDg7P h2,
.cid-tXsF0gDg7P h4,
.cid-tXsF0gDg7P p {
  margin: 0;
}
.cid-tXsF0gDg7P img {
  width: 100%;
  height: auto;
}
.cid-tXsF0gDg7P .text-elements-wrap {
  width: 88.5%;
}
@media (max-width: 767px) {
  .cid-tXsF0gDg7P .text-elements-wrap {
    width: 100%;
  }
}
.cid-tXsF0gDg7P .text-elements {
  padding-left: 12%;
  padding-right: 23.5%;
}
@media (max-width: 1024px) {
  .cid-tXsF0gDg7P .text-elements {
    padding-top: 12%;
    padding-left: 0;
  }
}
@media (max-width: 1024px) {
  .cid-tXsF0gDg7P .text-elements {
    padding-bottom: 12%;
    padding-right: 0;
  }
}
@media (max-width: 1024px) {
  .cid-tXsF0gDg7P .col-md-7,
  .cid-tXsF0gDg7P .col-md-5 {
    width: 100%;
  }
}
.cid-tXsF0gDg7P .mbr-section-title {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-tXsF0gDg7P .mbr-section-subtitle {
  margin-bottom: 6px;
}
.cid-tXsF0gDg7P .mbr-text {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tXsF0gDg7P .link-wrap {
  padding-top: 25px;
}
.cid-tXsF0gDg7P .link {
  font-weight: 600;
  position: relative;
}
.cid-tXsF0gDg7P .link::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 1;
  background-color: #ee3102;
  transition: transform 0.35s cubic-bezier(0.23, 0.02, 0.15, 0.9);
}
.cid-tXsCoaoGFu {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #5cc1ed;
}
.cid-tXsCoaoGFu h2,
.cid-tXsCoaoGFu h4,
.cid-tXsCoaoGFu p {
  margin: 0;
}
.cid-tXsCoaoGFu img {
  width: 100%;
  height: auto;
}
.cid-tXsCoaoGFu .text-elements-wrap {
  width: 88.5%;
}
@media (max-width: 767px) {
  .cid-tXsCoaoGFu .text-elements-wrap {
    width: 100%;
  }
}
.cid-tXsCoaoGFu .text-elements {
  padding-left: 12%;
}
@media (max-width: 1024px) {
  .cid-tXsCoaoGFu .text-elements {
    padding-top: 12%;
    padding-left: 0;
  }
}
@media (max-width: 1024px) {
  .cid-tXsCoaoGFu .col-md-7,
  .cid-tXsCoaoGFu .col-md-5 {
    width: 100%;
  }
}
.cid-tXsCoaoGFu .mbr-section-title {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-tXsCoaoGFu .mbr-section-subtitle {
  margin-bottom: 6px;
}
.cid-tXsCoaoGFu .mbr-text {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tXsCoaoGFu .link-wrap {
  padding-top: 25px;
}
.cid-tXsCoaoGFu .link {
  font-weight: 600;
  position: relative;
}
.cid-tXsCoaoGFu .link::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 1;
  background-color: #ee3102;
  transition: transform 0.35s cubic-bezier(0.23, 0.02, 0.15, 0.9);
}
.cid-u0DUtAGVjw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-7-1920x1280.jpeg");
}
.cid-u0DUtAGVjw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0DUtAGVjw .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-u0DUtAGVjw .container {
    padding: 10px 8px;
  }
}
.cid-u0DUtAGVjw .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 40px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-u0DUtAGVjw .row {
    padding: 50px 10px;
  }
}
.cid-u0DUtAGVjw .row .card {
  padding: 0;
}
.cid-u0DUtAGVjw .social-wrapper {
  padding-right: 16px;
}
@media (max-width: 992px) {
  .cid-u0DUtAGVjw .social-wrapper {
    padding: 0;
    margin-bottom: 32px;
    text-align: center;
  }
}
.cid-u0DUtAGVjw .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-u0DUtAGVjw .social-wrapper .soc-wrap {
    display: block;
  }
}
.cid-u0DUtAGVjw .social-wrapper .soc-wrap .soc-item {
  margin-left: -0.5rem;
}
@media (max-width: 768px) {
  .cid-u0DUtAGVjw .social-wrapper .soc-wrap .soc-item {
    margin-left: 0;
  }
}
.cid-u0DUtAGVjw .social-wrapper .soc-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-u0DUtAGVjw .social-wrapper .soc-wrap .soc-item:nth-child(2) a .mbr-iconfont {
  background-color: #ffe161;
}
.cid-u0DUtAGVjw .social-wrapper .soc-wrap .soc-item:nth-child(3) a .mbr-iconfont {
  background-color: #c47efd;
}
.cid-u0DUtAGVjw .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-u0DUtAGVjw .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-u0DUtAGVjw .social-wrapper .soc-wrap .soc-item a:focus .mbr-iconfont {
  border-radius: 100%;
}
.cid-u0DUtAGVjw .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 33px;
  color: #ffffff;
  background-color: #3283fb;
  transition: all 0.5s ease-in-out;
}
.cid-u0DUtAGVjw .mbr-section-title {
  padding-right: 80px;
  margin-bottom: 0;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-u0DUtAGVjw .mbr-section-title {
    padding: 0;
    margin-bottom: 22px;
    text-align: center;
  }
}
.cid-u0DUtAGVjw .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-u0DUtAGVjw .mbr-section-btn {
    text-align: center;
  }
}
.cid-u0DUtAGVjw .mbr-section-title,
.cid-u0DUtAGVjw .social-wrapper,
.cid-u0DUtAGVjw .mbr-section-btn {
  text-align: right;
}
.cid-u0l0FLls6t {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-u0l0FLls6t .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0l0FLls6t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0l0FLls6t .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u0l0FLls6t .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u0l0FLls6t .container {
    padding: 0 24px;
  }
}
.cid-u0l0FLls6t .row {
  justify-content: center;
  padding-bottom: 200px;
}
.cid-u0l0FLls6t .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap {
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 16px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-title {
  margin-right: 70px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-title {
    margin-right: 20px;
  }
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn {
  width: 80px;
  height: 30px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  font-size: 18px !important;
  margin: 0;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-u0l0FLls6t .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0l0FLls6t .lists-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-u0l0FLls6t .lists-wrapper {
    display: block;
  }
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #fb8fc9 -5%, #7f89e9 95%);
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:hover::before,
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-u0l0FLls6t .mbr-copy {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: #141414;
}
.cid-u0l0FLls6t .decor-wrapper {
  position: absolute;
  bottom: -50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-u0l0FLls6t .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-u0l0FLls6t .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-u0l0FLls6t .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-u0l0FLls6t .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-u0l0FLls6t .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-u0l0FLls6t .mbr-section-title {
  color: #141414;
}
.cid-u0l0FLls6t .mbr-text {
  color: #141414;
}
.cid-u0l0FLls6t .list {
  color: #141414;
}
.cid-tXsMhCxy1m {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tXsMhCxy1m nav.navbar {
  position: fixed;
}
.cid-tXsMhCxy1m .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXsMhCxy1m .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXsMhCxy1m .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXsMhCxy1m .dropdown-item:hover,
.cid-tXsMhCxy1m .dropdown-item:focus {
  background: #1a1fd9 !important;
  color: white !important;
}
.cid-tXsMhCxy1m .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXsMhCxy1m .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXsMhCxy1m .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-tXsMhCxy1m .nav-item {
  margin: 0 31px;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXsMhCxy1m .nav-link {
  position: relative;
}
.cid-tXsMhCxy1m .nav-link:hover,
.cid-tXsMhCxy1m .nav-link:focus,
.cid-tXsMhCxy1m .nav-link:active {
  color: #1a1fd9 !important;
}
.cid-tXsMhCxy1m .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .container {
    flex-wrap: inherit;
  }
}
.cid-tXsMhCxy1m .navbar-caption:hover,
.cid-tXsMhCxy1m .navbar-caption:focus,
.cid-tXsMhCxy1m .navbar-caption:active {
  color: #9e69b3 !important;
}
.cid-tXsMhCxy1m .dropdown-menu,
.cid-tXsMhCxy1m .navbar.opened {
  background: #c47efd !important;
}
.cid-tXsMhCxy1m .nav-item:focus,
.cid-tXsMhCxy1m .nav-link:focus {
  outline: none;
}
.cid-tXsMhCxy1m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXsMhCxy1m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXsMhCxy1m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXsMhCxy1m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXsMhCxy1m .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #c47efd;
}
.cid-tXsMhCxy1m .navbar.opened {
  transition: all 0.3s;
}
.cid-tXsMhCxy1m .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXsMhCxy1m .navbar .navbar-logo img {
  width: auto;
}
.cid-tXsMhCxy1m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXsMhCxy1m .navbar.collapsed {
  justify-content: center;
}
.cid-tXsMhCxy1m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXsMhCxy1m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXsMhCxy1m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXsMhCxy1m .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-tXsMhCxy1m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXsMhCxy1m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXsMhCxy1m .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-tXsMhCxy1m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXsMhCxy1m .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXsMhCxy1m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXsMhCxy1m .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXsMhCxy1m .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXsMhCxy1m .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXsMhCxy1m .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXsMhCxy1m .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
}
.cid-tXsMhCxy1m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXsMhCxy1m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXsMhCxy1m .dropdown-item.active,
.cid-tXsMhCxy1m .dropdown-item:active {
  background-color: transparent;
}
.cid-tXsMhCxy1m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXsMhCxy1m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c47efd;
}
.cid-tXsMhCxy1m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXsMhCxy1m .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-tXsMhCxy1m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXsMhCxy1m ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tXsMhCxy1m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #9e69b3;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXsMhCxy1m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXsMhCxy1m .navbar {
    height: 70px;
  }
  .cid-tXsMhCxy1m .navbar.opened {
    height: auto;
  }
  .cid-tXsMhCxy1m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXtf4nVQa7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tXtf4nVQa7 h2,
.cid-tXtf4nVQa7 h3,
.cid-tXtf4nVQa7 h4,
.cid-tXtf4nVQa7 p {
  margin: 0;
}
.cid-tXtf4nVQa7 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-tXtf4nVQa7 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-tXtf4nVQa7 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tXtf4nVQa7 .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-tXtf4nVQa7 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-tXtf4nVQa7 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-u0l0FLls6t {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-u0l0FLls6t .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0l0FLls6t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0l0FLls6t .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u0l0FLls6t .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u0l0FLls6t .container {
    padding: 0 24px;
  }
}
.cid-u0l0FLls6t .row {
  justify-content: center;
  padding-bottom: 200px;
}
.cid-u0l0FLls6t .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap {
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 16px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-title {
  margin-right: 70px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-title {
    margin-right: 20px;
  }
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn {
  width: 80px;
  height: 30px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  font-size: 18px !important;
  margin: 0;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-u0l0FLls6t .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0l0FLls6t .lists-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-u0l0FLls6t .lists-wrapper {
    display: block;
  }
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #fb8fc9 -5%, #7f89e9 95%);
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:hover::before,
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-u0l0FLls6t .mbr-copy {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: #141414;
}
.cid-u0l0FLls6t .decor-wrapper {
  position: absolute;
  bottom: -50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-u0l0FLls6t .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-u0l0FLls6t .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-u0l0FLls6t .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-u0l0FLls6t .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-u0l0FLls6t .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-u0l0FLls6t .mbr-section-title {
  color: #141414;
}
.cid-u0l0FLls6t .mbr-text {
  color: #141414;
}
.cid-u0l0FLls6t .list {
  color: #141414;
}
.cid-tXsMhCxy1m {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tXsMhCxy1m nav.navbar {
  position: fixed;
}
.cid-tXsMhCxy1m .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXsMhCxy1m .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXsMhCxy1m .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXsMhCxy1m .dropdown-item:hover,
.cid-tXsMhCxy1m .dropdown-item:focus {
  background: #1a1fd9 !important;
  color: white !important;
}
.cid-tXsMhCxy1m .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXsMhCxy1m .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXsMhCxy1m .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-tXsMhCxy1m .nav-item {
  margin: 0 31px;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXsMhCxy1m .nav-link {
  position: relative;
}
.cid-tXsMhCxy1m .nav-link:hover,
.cid-tXsMhCxy1m .nav-link:focus,
.cid-tXsMhCxy1m .nav-link:active {
  color: #1a1fd9 !important;
}
.cid-tXsMhCxy1m .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .container {
    flex-wrap: inherit;
  }
}
.cid-tXsMhCxy1m .navbar-caption:hover,
.cid-tXsMhCxy1m .navbar-caption:focus,
.cid-tXsMhCxy1m .navbar-caption:active {
  color: #9e69b3 !important;
}
.cid-tXsMhCxy1m .dropdown-menu,
.cid-tXsMhCxy1m .navbar.opened {
  background: #c47efd !important;
}
.cid-tXsMhCxy1m .nav-item:focus,
.cid-tXsMhCxy1m .nav-link:focus {
  outline: none;
}
.cid-tXsMhCxy1m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXsMhCxy1m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXsMhCxy1m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXsMhCxy1m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXsMhCxy1m .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #c47efd;
}
.cid-tXsMhCxy1m .navbar.opened {
  transition: all 0.3s;
}
.cid-tXsMhCxy1m .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXsMhCxy1m .navbar .navbar-logo img {
  width: auto;
}
.cid-tXsMhCxy1m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXsMhCxy1m .navbar.collapsed {
  justify-content: center;
}
.cid-tXsMhCxy1m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXsMhCxy1m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXsMhCxy1m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXsMhCxy1m .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-tXsMhCxy1m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXsMhCxy1m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXsMhCxy1m .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-tXsMhCxy1m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXsMhCxy1m .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXsMhCxy1m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXsMhCxy1m .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXsMhCxy1m .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXsMhCxy1m .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXsMhCxy1m .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXsMhCxy1m .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
}
.cid-tXsMhCxy1m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXsMhCxy1m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXsMhCxy1m .dropdown-item.active,
.cid-tXsMhCxy1m .dropdown-item:active {
  background-color: transparent;
}
.cid-tXsMhCxy1m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXsMhCxy1m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c47efd;
}
.cid-tXsMhCxy1m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXsMhCxy1m .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-tXsMhCxy1m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXsMhCxy1m ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tXsMhCxy1m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #9e69b3;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXsMhCxy1m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXsMhCxy1m .navbar {
    height: 70px;
  }
  .cid-tXsMhCxy1m .navbar.opened {
    height: auto;
  }
  .cid-tXsMhCxy1m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0FSqJbH3M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0FSqJbH3M .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0FSqJbH3M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0FSqJbH3M .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u0FSqJbH3M .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u0FSqJbH3M .container {
    padding: 0 24px;
  }
}
.cid-u0FSqJbH3M .row {
  justify-content: center;
}
.cid-u0FSqJbH3M .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u0FSqJbH3M .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u0FSqJbH3M .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0FSqJbH3M .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-u0FSqJbH3M .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-u0FSqJbH3M .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-u0FSqJbH3M .content-wrapper .mbr-section-btn .btn:hover,
.cid-u0FSqJbH3M .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-u0FSqJbH3M .decor-wrapper {
  position: absolute;
  top: -65%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-u0FSqJbH3M .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-u0FSqJbH3M .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-u0FSqJbH3M .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-u0FSqJbH3M .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-u0FSqJbH3M .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-u0FSqJbH3M .image-wrapper {
  position: absolute;
  bottom: -46%;
  right: -2rem;
  width: 60%;
  height: 500px;
}
@media (max-width: 992px) {
  .cid-u0FSqJbH3M .image-wrapper {
    position: static;
    width: 100%;
    height: 350px;
    margin-top: 32px;
  }
}
.cid-u0FSqJbH3M .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
.cid-u0FSqJbH3M .image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .8;
  border-radius: .75rem;
  pointer-events: none;
}
.cid-u0FSqJbH3M .mbr-section-title {
  color: #141414;
}
.cid-u0FSqJbH3M .mbr-text {
  color: #141414;
}
.cid-u0FSqJbH3M .mbr-section-title,
.cid-u0FSqJbH3M .mbr-section-btn {
  text-align: center;
}
.cid-tXthj64TqC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tXthj64TqC .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tXthj64TqC h2,
.cid-tXthj64TqC h3,
.cid-tXthj64TqC p {
  margin: 0;
}
.cid-tXthj64TqC .inner-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXthj64TqC .form-wrap {
  width: 70%;
}
@media (max-width: 1024px) {
  .cid-tXthj64TqC .form-wrap {
    width: 100%;
  }
}
.cid-tXthj64TqC .form-inner-wrap {
  width: 95%;
  max-width: 95%;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .cid-tXthj64TqC .form-inner-wrap {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tXthj64TqC .text {
  display: flex;
  align-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  width: 30%;
}
@media (max-width: 1024px) {
  .cid-tXthj64TqC .text {
    width: 100%;
    padding-top: 50px;
  }
}
.cid-tXthj64TqC .heading {
  margin-bottom: 20px;
}
.cid-tXthj64TqC .mbr-section-title {
  color: #000000;
}
.cid-tXthj64TqC .mbr-main-text {
  color: #6b6b6b;
  font-weight: 300;
}
.cid-tXthj64TqC .mbr-section-subtitle {
  color: #000000;
  padding-right: 30%;
}
@media (max-width: 767px) {
  .cid-tXthj64TqC .mbr-section-subtitle {
    padding: 0;
  }
}
.cid-tXthj64TqC .mbr-sub-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-tXthj64TqC .mbr-contacts {
  color: #000000;
  margin-bottom: 10px;
}
.cid-tXthj64TqC form .mbr-section-btn {
  text-align: center;
  padding: 0.7rem 1rem;
  width: 200px;
}
.cid-tXthj64TqC textarea {
  width: 100%;
  padding: 11px 18px;
  border: 1px solid #000000;
  height: 134px;
  border-radius: 0;
}
.cid-tXthj64TqC input,
.cid-tXthj64TqC select {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 20px;
  padding: 11px 0;
  margin-right: 24px;
  font-family: inherit;
  font-size: 14px;
  line-height: 24px;
  font-weight: inherit;
  color: #6b6b6b;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  outline: 0;
  cursor: pointer;
  transition: color 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out;
}
.cid-tXthj64TqC input:last-child,
.cid-tXthj64TqC select:last-child {
  margin-right: 0;
}
.cid-tXthj64TqC .form-check-input {
  padding: 0;
  border: 1px solid #000000;
}
.cid-tXthj64TqC .form-check-input:checked {
  padding: 0;
  background-color: #000000;
  border-color: #000000;
}
.cid-tXthj64TqC .form-control {
  color: #000000;
  border-radius: 0;
  outline: none;
}
.cid-tXthj64TqC .value {
  border: none;
}
.cid-tXthj64TqC input[type="range"] {
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
.cid-tXthj64TqC input[type="range"]::-moz-range-track {
  border: inherit;
  background: transparent;
}
.cid-tXthj64TqC input[type="range"]::-ms-track {
  border: inherit;
  background: transparent;
  color: transparent;
}
.cid-tXthj64TqC input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: transparent;
  border: 1px solid #000000;
  border-radius: 1px;
}
.cid-tXthj64TqC input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #000000;
  margin-top: -6px;
}
.cid-tXthj64TqC input[type="range"]:focus {
  outline: none;
}
.cid-tXthj64TqC input[type="range"]:focus::-webkit-slider-thumb {
  background: #000000;
}
.cid-tXthj64TqC input[type="range"]::-ms-fill-upper {
  background: transparent;
}
.cid-tXthj64TqC input[type="range"]::-ms-fill-lower {
  background: black;
}
.cid-u1gBRbfcE7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u1gBRbfcE7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1gBRbfcE7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1gBRbfcE7 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u1gBRbfcE7 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u1gBRbfcE7 .container {
    padding: 0 24px;
  }
}
.cid-u1gBRbfcE7 .row {
  justify-content: center;
}
.cid-u1gBRbfcE7 .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u1gBRbfcE7 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u1gBRbfcE7 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u1gBRbfcE7 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-u1gBRbfcE7 .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-u1gBRbfcE7 .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-u1gBRbfcE7 .content-wrapper .mbr-section-btn .btn:hover,
.cid-u1gBRbfcE7 .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-u1gBRbfcE7 .decor-wrapper {
  position: absolute;
  top: -65%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-u1gBRbfcE7 .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-u1gBRbfcE7 .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-u1gBRbfcE7 .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-u1gBRbfcE7 .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-u1gBRbfcE7 .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-u1gBRbfcE7 .image-wrapper {
  position: absolute;
  bottom: -46%;
  right: -2rem;
  width: 60%;
  height: 500px;
}
@media (max-width: 992px) {
  .cid-u1gBRbfcE7 .image-wrapper {
    position: static;
    width: 100%;
    height: 350px;
    margin-top: 32px;
  }
}
.cid-u1gBRbfcE7 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
.cid-u1gBRbfcE7 .image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .8;
  border-radius: .75rem;
  pointer-events: none;
}
.cid-u1gBRbfcE7 .mbr-section-title {
  color: #141414;
}
.cid-u1gBRbfcE7 .mbr-text {
  color: #141414;
}
.cid-u1gBRbfcE7 .mbr-section-title,
.cid-u1gBRbfcE7 .mbr-section-btn {
  text-align: center;
}
.cid-u1gDM4gupt {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-7-1920x1280.jpeg");
}
.cid-u1gDM4gupt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1gDM4gupt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1gDM4gupt .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u1gDM4gupt .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u1gDM4gupt .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u1gDM4gupt .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u1gDM4gupt .container {
    padding: 0 16px;
  }
}
.cid-u1gDM4gupt .row {
  justify-content: center;
  height: 500px;
}
@media (max-width: 992px) {
  .cid-u1gDM4gupt .row {
    height: 350px;
  }
}
.cid-u0l0FLls6t {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-u0l0FLls6t .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0l0FLls6t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0l0FLls6t .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u0l0FLls6t .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u0l0FLls6t .container {
    padding: 0 24px;
  }
}
.cid-u0l0FLls6t .row {
  justify-content: center;
  padding-bottom: 200px;
}
.cid-u0l0FLls6t .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap {
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 16px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-title {
  margin-right: 70px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-title {
    margin-right: 20px;
  }
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn {
  width: 80px;
  height: 30px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  font-size: 18px !important;
  margin: 0;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-u0l0FLls6t .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0l0FLls6t .lists-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-u0l0FLls6t .lists-wrapper {
    display: block;
  }
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #fb8fc9 -5%, #7f89e9 95%);
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:hover::before,
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-u0l0FLls6t .mbr-copy {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: #141414;
}
.cid-u0l0FLls6t .decor-wrapper {
  position: absolute;
  bottom: -50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-u0l0FLls6t .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-u0l0FLls6t .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-u0l0FLls6t .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-u0l0FLls6t .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-u0l0FLls6t .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-u0l0FLls6t .mbr-section-title {
  color: #141414;
}
.cid-u0l0FLls6t .mbr-text {
  color: #141414;
}
.cid-u0l0FLls6t .list {
  color: #141414;
}
.cid-tXsMhCxy1m {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tXsMhCxy1m nav.navbar {
  position: fixed;
}
.cid-tXsMhCxy1m .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXsMhCxy1m .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXsMhCxy1m .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXsMhCxy1m .dropdown-item:hover,
.cid-tXsMhCxy1m .dropdown-item:focus {
  background: #1a1fd9 !important;
  color: white !important;
}
.cid-tXsMhCxy1m .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXsMhCxy1m .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXsMhCxy1m .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-tXsMhCxy1m .nav-item {
  margin: 0 31px;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXsMhCxy1m .nav-link {
  position: relative;
}
.cid-tXsMhCxy1m .nav-link:hover,
.cid-tXsMhCxy1m .nav-link:focus,
.cid-tXsMhCxy1m .nav-link:active {
  color: #1a1fd9 !important;
}
.cid-tXsMhCxy1m .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .container {
    flex-wrap: inherit;
  }
}
.cid-tXsMhCxy1m .navbar-caption:hover,
.cid-tXsMhCxy1m .navbar-caption:focus,
.cid-tXsMhCxy1m .navbar-caption:active {
  color: #9e69b3 !important;
}
.cid-tXsMhCxy1m .dropdown-menu,
.cid-tXsMhCxy1m .navbar.opened {
  background: #c47efd !important;
}
.cid-tXsMhCxy1m .nav-item:focus,
.cid-tXsMhCxy1m .nav-link:focus {
  outline: none;
}
.cid-tXsMhCxy1m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXsMhCxy1m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXsMhCxy1m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXsMhCxy1m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXsMhCxy1m .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #c47efd;
}
.cid-tXsMhCxy1m .navbar.opened {
  transition: all 0.3s;
}
.cid-tXsMhCxy1m .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXsMhCxy1m .navbar .navbar-logo img {
  width: auto;
}
.cid-tXsMhCxy1m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXsMhCxy1m .navbar.collapsed {
  justify-content: center;
}
.cid-tXsMhCxy1m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXsMhCxy1m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXsMhCxy1m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXsMhCxy1m .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-tXsMhCxy1m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXsMhCxy1m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXsMhCxy1m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXsMhCxy1m .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-tXsMhCxy1m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXsMhCxy1m .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tXsMhCxy1m .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXsMhCxy1m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXsMhCxy1m .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXsMhCxy1m .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXsMhCxy1m .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXsMhCxy1m .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXsMhCxy1m .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
}
.cid-tXsMhCxy1m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXsMhCxy1m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXsMhCxy1m .dropdown-item.active,
.cid-tXsMhCxy1m .dropdown-item:active {
  background-color: transparent;
}
.cid-tXsMhCxy1m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXsMhCxy1m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXsMhCxy1m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c47efd;
}
.cid-tXsMhCxy1m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXsMhCxy1m .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-tXsMhCxy1m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXsMhCxy1m ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tXsMhCxy1m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #9e69b3;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXsMhCxy1m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXsMhCxy1m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXsMhCxy1m .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXsMhCxy1m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tXsMhCxy1m a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXsMhCxy1m .navbar {
    height: 70px;
  }
  .cid-tXsMhCxy1m .navbar.opened {
    height: auto;
  }
  .cid-tXsMhCxy1m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXtNbPOui0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXtNbPOui0 .content {
  padding: 1rem;
}
.cid-tXtNbPOui0 h2,
.cid-tXtNbPOui0 h4,
.cid-tXtNbPOui0 p {
  margin: 0;
}
.cid-tXtNbPOui0 .mbr-section-title {
  color: #000000;
}
.cid-tXtNbPOui0 .mbr-section-subtitle {
  color: #24262b;
}
.cid-tXtNbPOui0 .mbr-text {
  color: #6b6b6b;
  margin-top: 14px;
}
.cid-tXtNbPOui0 .mbr-section-btn {
  margin-top: 30.4px;
}
.cid-tXtNbPOui0 .btn {
  padding: 0.7rem 1rem;
  width: 200px;
}
.cid-tXFYKYRiQt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXFYKYRiQt .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tXFYKYRiQt .mbr-section-title {
  color: #dd051a;
  margin-bottom: 20.4px;
}
.cid-tXFYKYRiQt .animation-box {
  position: relative;
  width: 78px;
  height: 86px;
}
@keyframes zoom-1 {
  0%,
  10% {
    transform: scale(0) rotate(0);
  }
  30%,
  32% {
    transform: scale(0.6) rotate(10deg);
  }
  100%,
  85% {
    transform: scale(0) rotate(60deg);
  }
}
@keyframes zoom-2 {
  0%,
  15% {
    transform: scale(0) rotate(0);
  }
  50%,
  54% {
    transform: scale(0.4) rotate(0);
  }
  100%,
  82% {
    transform: scale(0) rotate(80deg);
  }
}
.cid-tXFYKYRiQt .star {
  color: #7e4395;
  fill: currentColor;
  overflow: hidden;
}
.cid-tXFYKYRiQt .star:nth-of-type(2) {
  position: absolute;
  top: -35px;
  left: 50px;
  transform: scale(0);
  animation: zoom-1 3.1s infinite;
}
.cid-tXFYKYRiQt .star:nth-of-type(3) {
  position: absolute;
  top: -45px;
  left: -50px;
  animation: zoom-2 3.1s infinite;
}
.cid-tXFspivTdx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tXFspivTdx h2,
.cid-tXFspivTdx h3,
.cid-tXFspivTdx h4,
.cid-tXFspivTdx h5 {
  margin: 0;
}
.cid-tXFspivTdx .mbr-section-title {
  color: #000000;
}
.cid-tXFspivTdx .mbr-card-title {
  text-align: center;
  color: #7e4395;
}
.cid-tXFspivTdx .mbr-card-subtitle {
  text-align: center;
  color: #6b6b6b;
}
.cid-tXFspivTdx .image-container {
  min-height: 738px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: minmax(346px, 704px) minmax(153px, 332px) minmax(153px, 332px) minmax(153px, 332px);
  grid-template-rows: 1fr 1fr;
  grid-gap: 40px;
  grid-template-areas: "img1 img2 img4 img5" "img1 img3 img4 img6";
}
@media (min-width: 681px) and (max-width: 1024px) {
  .cid-tXFspivTdx .image-container {
    grid-template-columns: minmax(290px, 442px) minmax(290px, 442px);
    grid-template-rows: 924px 442px 442px 442px;
    grid-gap: 40px;
    grid-template-areas: "img1 img1" "img2 img4" "img3 img4" "img6 img5";
  }
}
@media (max-width: 680px) {
  .cid-tXFspivTdx .image-container {
    grid-template-columns: minmax(260px, 620px);
    grid-template-rows: 697px 329px 697px 329px 329px 329px;
    grid-gap: 40px;
    grid-template-areas: "img1" "img2" "img4" "img3" "img5" "img6";
  }
}
.cid-tXFspivTdx #img1 {
  grid-area: img1;
  background-image: url("../../../assets/images/black-history-month-themed-mockup-of-an-ai-generated-woman-wearing-a-t-shirt-m36990-2000x3000.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tXFspivTdx #img2 {
  grid-area: img2;
  background-image: url("../../../assets/images/context-2-2000x2000.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tXFspivTdx #img3 {
  grid-area: img3;
  background-image: url("../../../assets/images/context-1-3-2000x2000.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tXFspivTdx #img4 {
  grid-area: img4;
  background-image: url("../../../assets/images/mockup-of-a-folded-pullover-hoodie-against-a-flat-surface-33895-3-1440x2160.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tXFspivTdx #img5 {
  grid-area: img5;
  background-image: url("../../../assets/images/context-1-2-2000x2000.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tXFspivTdx #img6 {
  grid-area: img6;
  background-image: url("../../../assets/images/gildan-hoodie-mockup-of-a-happy-man-and-woman-posing-against-a-colorful-background-m36559-3-2000x3014.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tXFspivTdx .top-left,
.cid-tXFspivTdx .bottom-right {
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
}
.cid-tXFspivTdx .top-left::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #1497d0;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}
.cid-tXFspivTdx .top-left::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #1497d0;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}
.cid-tXFspivTdx .bottom-right::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #1497d0;
  bottom: 0;
  right: 0;
  transition: all 1s ease-out;
}
.cid-tXFspivTdx .bottom-right::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #1497d0;
  bottom: 0;
  right: 0;
  transition: all 1s ease-out;
}
.cid-tXFspivTdx .text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background: #ffffff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 1s ease-out;
}
.cid-tXFspivTdx .image-wrap:hover .text-wrap {
  opacity: 1;
}
.cid-tXFspivTdx .image-wrap:hover .top-left::before {
  height: 100%;
}
.cid-tXFspivTdx .image-wrap:hover .top-left::after {
  width: 100%;
}
.cid-tXFspivTdx .image-wrap:hover .bottom-right::before {
  height: 100%;
}
.cid-tXFspivTdx .image-wrap:hover .bottom-right::after {
  width: 100%;
}
.cid-tXFspivTdx .mbr-section-subtitle {
  color: #24262b;
}
.cid-tXGhYSR09k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tXGhYSR09k .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tXGhYSR09k .mbr-section-title {
  color: #20d604;
  margin-bottom: 20.4px;
}
.cid-tXGhYSR09k .animation-box {
  position: relative;
  width: 78px;
  height: 86px;
}
@keyframes zoom-1 {
  0%,
  10% {
    transform: scale(0) rotate(0);
  }
  30%,
  32% {
    transform: scale(0.6) rotate(10deg);
  }
  100%,
  85% {
    transform: scale(0) rotate(60deg);
  }
}
@keyframes zoom-2 {
  0%,
  15% {
    transform: scale(0) rotate(0);
  }
  50%,
  54% {
    transform: scale(0.4) rotate(0);
  }
  100%,
  82% {
    transform: scale(0) rotate(80deg);
  }
}
.cid-tXGhYSR09k .star {
  color: #7e4395;
  fill: currentColor;
  overflow: hidden;
}
.cid-tXGhYSR09k .star:nth-of-type(2) {
  position: absolute;
  top: -35px;
  left: 50px;
  transform: scale(0);
  animation: zoom-1 3.1s infinite;
}
.cid-tXGhYSR09k .star:nth-of-type(3) {
  position: absolute;
  top: -45px;
  left: -50px;
  animation: zoom-2 3.1s infinite;
}
.cid-u1LYinKr2e {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u1LYinKr2e .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-u1LYinKr2e .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-u1LYinKr2e .mbr-section-btn {
  margin-top: 30px;
}
.cid-u1LYinKr2e .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1LYinKr2e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1GDXw8IXh {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u1GDXw8IXh .container-fluid {
  padding: 0 !important;
}
.cid-u1GDXw8IXh .row {
  width: 100%!important;
  max-width: 100%!important;
  padding-right: calc((100% - 1300px)/ 2) !important;
}
@media (max-width: 1440px) {
  .cid-u1GDXw8IXh .row {
    padding-right: calc((100% - 1100px)/ 2) !important;
  }
}
@media (max-width: 1200px) {
  .cid-u1GDXw8IXh .row {
    padding-right: calc((100% - 960px)/ 2) !important;
  }
}
@media (max-width: 1024px) {
  .cid-u1GDXw8IXh .row {
    padding-right: calc((100% - 86%)/ 2) !important;
  }
}
@media (max-width: 880px) and (min-width: 768px) {
  .cid-u1GDXw8IXh .row {
    padding-left: 25px !important;
  }
}
.cid-u1GDXw8IXh img,
.cid-u1GDXw8IXh .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u1GDXw8IXh .item:focus,
.cid-u1GDXw8IXh span:focus {
  outline: none;
}
.cid-u1GDXw8IXh .item {
  cursor: pointer;
}
.cid-u1GDXw8IXh .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  overflow: hidden;
}
.cid-u1GDXw8IXh .item-wrapper:hover img {
  transform: scale(1);
}
.cid-u1GDXw8IXh .item-wrapper:hover .img-overlay {
  opacity: 0.7;
}
.cid-u1GDXw8IXh .item-wrapper:hover .item-title,
.cid-u1GDXw8IXh .item-wrapper:hover .mbr-text {
  background-position: right;
}
.cid-u1GDXw8IXh .item-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-u1GDXw8IXh .item-img img {
  width: 100%;
  transform: scale(1.05);
  transition: transform .6s ease;
  transform-style: preserve-3d;
}
.cid-u1GDXw8IXh .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #5cc1ed;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-out;
}
.cid-u1GDXw8IXh .mbr-text {
  color: #000000;
  margin-top: 24px;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-u1GDXw8IXh .item-title {
  color: #000000;
  text-align: left;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-u1GDXw8IXh .item-content {
  position: absolute;
  width: 100%;
  max-width: 100%;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 20px 40px 23px;
}
@media (max-width: 1440px) {
  .cid-u1GDXw8IXh .item-content {
    padding: 20px 20px 23px;
  }
}
.cid-u1GDXw8IXh .item-content a {
  color: inherit;
  -webkit-text-fill-color: currentColor;
}
.cid-u1GDXw8IXh .mbr-section-btn {
  margin-top: 20px;
}
.cid-u0FZpvRmq5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u0FZpvRmq5 .row {
  width: 100%!important;
  max-width: 100%!important;
}
.cid-u0FZpvRmq5 img,
.cid-u0FZpvRmq5 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u0FZpvRmq5 .item:focus,
.cid-u0FZpvRmq5 span:focus {
  outline: none;
}
.cid-u0FZpvRmq5 .item {
  padding: 0 !important;
  margin-bottom: 80px !important;
}
@media (max-width: 1440px) {
  .cid-u0FZpvRmq5 .item {
    margin-bottom: 70px !important;
  }
}
.cid-u0FZpvRmq5 .item-wrap {
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0FZpvRmq5 .img-wrap {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 15px;
}
.cid-u0FZpvRmq5 .item-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-u0FZpvRmq5 .item-img img {
  width: 100%;
}
.cid-u0FZpvRmq5 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u0FZpvRmq5 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u0FZpvRmq5 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u0FZpvRmq5 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u0FZpvRmq5 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u0FZpvRmq5 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tXGicqOs2p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tXGicqOs2p .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tXGicqOs2p .mbr-section-title {
  color: #dd051a;
  margin-bottom: 20.4px;
}
.cid-tXGicqOs2p .animation-box {
  position: relative;
  width: 78px;
  height: 86px;
}
@keyframes zoom-1 {
  0%,
  10% {
    transform: scale(0) rotate(0);
  }
  30%,
  32% {
    transform: scale(0.6) rotate(10deg);
  }
  100%,
  85% {
    transform: scale(0) rotate(60deg);
  }
}
@keyframes zoom-2 {
  0%,
  15% {
    transform: scale(0) rotate(0);
  }
  50%,
  54% {
    transform: scale(0.4) rotate(0);
  }
  100%,
  82% {
    transform: scale(0) rotate(80deg);
  }
}
.cid-tXGicqOs2p .star {
  color: #7e4395;
  fill: currentColor;
  overflow: hidden;
}
.cid-tXGicqOs2p .star:nth-of-type(2) {
  position: absolute;
  top: -35px;
  left: 50px;
  transform: scale(0);
  animation: zoom-1 3.1s infinite;
}
.cid-tXGicqOs2p .star:nth-of-type(3) {
  position: absolute;
  top: -45px;
  left: -50px;
  animation: zoom-2 3.1s infinite;
}
.cid-u0l0FLls6t {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-u0l0FLls6t .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0l0FLls6t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0l0FLls6t .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u0l0FLls6t .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u0l0FLls6t .container {
    padding: 0 24px;
  }
}
.cid-u0l0FLls6t .row {
  justify-content: center;
  padding-bottom: 200px;
}
.cid-u0l0FLls6t .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap {
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 16px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-title {
  margin-right: 70px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-title {
    margin-right: 20px;
  }
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn {
  width: 80px;
  height: 30px;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  font-size: 18px !important;
  margin: 0;
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-u0l0FLls6t .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-u0l0FLls6t .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0l0FLls6t .lists-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-u0l0FLls6t .lists-wrapper {
    display: block;
  }
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #fb8fc9 -5%, #7f89e9 95%);
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:hover::before,
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.cid-u0l0FLls6t .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-u0l0FLls6t .mbr-copy {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: #141414;
}
.cid-u0l0FLls6t .decor-wrapper {
  position: absolute;
  bottom: -50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-u0l0FLls6t .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-u0l0FLls6t .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-u0l0FLls6t .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-u0l0FLls6t .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-u0l0FLls6t .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-u0l0FLls6t .mbr-section-title {
  color: #141414;
}
.cid-u0l0FLls6t .mbr-text {
  color: #141414;
}
.cid-u0l0FLls6t .list {
  color: #141414;
}
