body {
  font-family: 'Lexend', sans-serif;
}
.display-1 {
  font-family: 'Bebas Neue', display;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Bebas Neue', display;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.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: #a148ff !important;
}
.bg-success {
  background-color: #263d5a !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  background-color: #a148ff !important;
  background: linear-gradient(90deg, #a148ff 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-primary,
.btn-primary:active {
  background-color: #a148ff;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary {
  background-color: #ff6f45 !important;
  background: linear-gradient(90deg, #ff6f45 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6f45;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary:hover {
  transform: translateY(-3px);
}
.btn-info {
  background-color: #47b5ed !important;
  background: linear-gradient(90deg, #47b5ed 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info:hover {
  transform: translateY(-3px);
}
.btn-success {
  background-color: #263d5a !important;
  background: linear-gradient(90deg, #263d5a 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-success,
.btn-success:active {
  background-color: #263d5a;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success:hover {
  transform: translateY(-3px);
}
.btn-warning {
  background-color: #ffe161 !important;
  background: linear-gradient(90deg, #ffe161 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161;
  color: #614f00 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a;
}
.btn-warning:hover {
  transform: translateY(-3px);
}
.btn-danger {
  background-color: #ff9966 !important;
  background: linear-gradient(90deg, #ff9966 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger:hover {
  transform: translateY(-3px);
}
.btn-white {
  background-color: #fafafa !important;
  background: linear-gradient(90deg, #fafafa 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf;
}
.btn-white:hover {
  transform: translateY(-3px);
}
.btn-black {
  background-color: #232323 !important;
  background: linear-gradient(90deg, #232323 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-black,
.btn-black:active {
  background-color: #232323;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black:hover {
  transform: translateY(-3px);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a148ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #7500f0 !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: #a148ff !important;
  border-color: #a148ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6f45;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ed3600 !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: #ff6f45 !important;
  border-color: #ff6f45 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !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: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #263d5a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0c141d !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: #263d5a !important;
  border-color: #263d5a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !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: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #a148ff !important;
}
.text-secondary {
  color: #ff6f45 !important;
}
.text-success {
  color: #263d5a !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #6d00e1 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #de3200 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #080c12 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  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: #a148ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a148ff;
  border-color: #a148ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a148ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4c7ab3;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #a148ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #a148ff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a148ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #a148ff;
}
.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: #a148ff;
  border-bottom-color: #a148ff;
}
.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: #a148ff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6f45 !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='%23a148ff' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
@media (max-width: 445px) {
  .container-banner {
    height: 11.5rem!important;
  }
}
.cid-sPITnNkbGi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPITnNkbGi nav.navbar {
  position: fixed;
}
.cid-sPITnNkbGi .navbar-nav {
  margin: auto;
}
.cid-sPITnNkbGi .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPITnNkbGi .dropdown-item:hover,
.cid-sPITnNkbGi .dropdown-item:focus {
  background: #a148ff !important;
  color: white !important;
}
.cid-sPITnNkbGi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPITnNkbGi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPITnNkbGi .navbar-short,
.cid-sPITnNkbGi .opened {
  background: #5e71db !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sPITnNkbGi .navbar-short .nav-link,
.cid-sPITnNkbGi .opened .nav-link,
.cid-sPITnNkbGi .navbar-short .navbar-caption,
.cid-sPITnNkbGi .opened .navbar-caption,
.cid-sPITnNkbGi .navbar-short .mbr-iconfont,
.cid-sPITnNkbGi .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sPITnNkbGi .navbar-short .hamburger span,
.cid-sPITnNkbGi .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-sPITnNkbGi .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sPITnNkbGi .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-sPITnNkbGi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPITnNkbGi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPITnNkbGi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPITnNkbGi .container {
  display: flex;
  margin: auto;
}
.cid-sPITnNkbGi .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPITnNkbGi .dropdown-menu,
.cid-sPITnNkbGi .navbar.opened {
  background: #5e71db !important;
}
.cid-sPITnNkbGi .nav-item:focus,
.cid-sPITnNkbGi .nav-link:focus {
  outline: none;
}
.cid-sPITnNkbGi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPITnNkbGi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPITnNkbGi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPITnNkbGi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPITnNkbGi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPITnNkbGi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPITnNkbGi .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #5e71db;
}
.cid-sPITnNkbGi .navbar.opened {
  transition: all 0.3s;
}
.cid-sPITnNkbGi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPITnNkbGi .navbar .navbar-logo img {
  width: auto;
}
.cid-sPITnNkbGi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPITnNkbGi .navbar.collapsed {
  justify-content: center;
}
.cid-sPITnNkbGi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPITnNkbGi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPITnNkbGi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-sPITnNkbGi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPITnNkbGi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPITnNkbGi .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-sPITnNkbGi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPITnNkbGi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPITnNkbGi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPITnNkbGi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPITnNkbGi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPITnNkbGi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPITnNkbGi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPITnNkbGi .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-sPITnNkbGi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPITnNkbGi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPITnNkbGi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPITnNkbGi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPITnNkbGi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPITnNkbGi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPITnNkbGi .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPITnNkbGi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPITnNkbGi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPITnNkbGi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPITnNkbGi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPITnNkbGi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPITnNkbGi .dropdown-item.active,
.cid-sPITnNkbGi .dropdown-item:active {
  background-color: transparent;
}
.cid-sPITnNkbGi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPITnNkbGi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPITnNkbGi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPITnNkbGi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5e71db;
}
.cid-sPITnNkbGi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPITnNkbGi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPITnNkbGi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPITnNkbGi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPITnNkbGi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPITnNkbGi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #9cf21d;
}
.cid-sPITnNkbGi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPITnNkbGi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPITnNkbGi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPITnNkbGi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPITnNkbGi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPITnNkbGi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPITnNkbGi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPITnNkbGi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPITnNkbGi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPITnNkbGi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPITnNkbGi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPITnNkbGi .navbar {
    height: 70px;
  }
  .cid-sPITnNkbGi .navbar.opened {
    height: auto;
  }
  .cid-sPITnNkbGi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPIZSptCpr {
  overflow-x: hidden !important;
}
.cid-sPIZSptCpr,
.cid-sPIZSptCpr .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-sPIZSptCpr .mbr-section-title {
  color: #263d5a;
}
.cid-sPIZSptCpr .mbr-section-title span {
  color: #a148ff;
}
.cid-sPIZSptCpr .mbr-text {
  color: #9cf21d;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sPIZSptCpr .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 42s !important;
  animation-duration: 42s;
  background-image: url("../../../assets/images/03-2-2500x1667.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sPIZSptCpr .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sPIZSptCpr .mbr-overlay {
  z-index: 1;
}
.cid-sPIZSptCpr .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sPITzJf4ij {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5e71db;
}
.cid-sPITzJf4ij .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #a148ff;
}
.cid-sPITzJf4ij .svg-top .st0 {
  fill: #5e71db;
}
@media (max-width: 992px) {
  .cid-sPITzJf4ij .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sPITzJf4ij .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sPITzJf4ij .col-12 {
    padding: 0 2rem;
  }
  .cid-sPITzJf4ij .row {
    margin: 0 -2rem;
  }
}
.cid-sPITzJf4ij .mbr-text,
.cid-sPITzJf4ij .mbr-section-btn {
  color: #ffffff;
}
.cid-sPJvv8ZAt8 {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sPJvv8ZAt8 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sPJvv8ZAt8 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sPJvv8ZAt8 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sPJvv8ZAt8 .mbr-text,
.cid-sPJvv8ZAt8 .mbr-section-btn {
  color: #263d5a;
}
.cid-sPJvv8ZAt8 .mbr-section-title {
  color: #263d5a;
}
.cid-sPIUbOmATe {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-sPIUbOmATe .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #379eeb;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPIUbOmATe .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sPIUbOmATe .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sPIUbOmATe .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-sPIUbOmATe .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sPIUbOmATe .row {
  justify-content: center;
}
.cid-sPIUbOmATe .card-text {
  color: #263d5a;
}
.cid-sPIUbOmATe .card-title,
.cid-sPIUbOmATe .iconfont-wrapper {
  color: #263d5a;
}
.cid-sPIUbOmATe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sPIUbOmATe .mbr-section-title {
  color: #263d5a;
}
.cid-sPIUbOmATe .card-price,
.cid-sPIUbOmATe .iconfont-wrapper {
  color: #263d5a;
}
.cid-uBRp0d8sBw {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-uBRp0d8sBw .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #379eeb;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBRp0d8sBw .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uBRp0d8sBw .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uBRp0d8sBw .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uBRp0d8sBw .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBRp0d8sBw .row {
  justify-content: center;
}
.cid-uBRp0d8sBw .card-text {
  color: #263d5a;
}
.cid-uBRp0d8sBw .card-title,
.cid-uBRp0d8sBw .iconfont-wrapper {
  color: #263d5a;
}
.cid-uBRp0d8sBw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBRp0d8sBw .mbr-section-title {
  color: #263d5a;
}
.cid-uBRp0d8sBw .card-price,
.cid-uBRp0d8sBw .iconfont-wrapper {
  color: #263d5a;
}
.cid-sPITxlytY9 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #5e71db;
}
.cid-sPITxlytY9 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #a148ff;
}
.cid-sPITxlytY9 .svg-top .st0 {
  fill: #5e71db;
}
@media (max-width: 992px) {
  .cid-sPITxlytY9 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sPITxlytY9 .col-12 {
    padding: 0 2rem;
  }
  .cid-sPITxlytY9 .row {
    margin: 0 -2rem;
  }
}
.cid-sPITxlytY9 .mbr-text,
.cid-sPITxlytY9 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-sPITxlytY9 .mbr-section-title {
  color: #ffffff;
}
.cid-sPJxeBuPN7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/19-1280x720.jpg");
}
.cid-sPJxeBuPN7 .google-map {
  height: 30rem;
  position: relative;
  border-radius: 30px;
}
.cid-sPJxeBuPN7 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  opacity: 0.8;
  backdrop-filter: blur(3.5px);
}
.cid-sPJxeBuPN7 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sPJxeBuPN7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sPJxeBuPN7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sPJxeBuPN7 .mbr-section-title {
  color: #263d5a;
}
.cid-sPJnoX5H7S {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/44-1600x1200.jpg");
}
.cid-sPJnoX5H7S .mbr-overlay {
  background-color: #5e71db;
  opacity: 0;
}
.cid-sPJnoX5H7S input,
.cid-sPJnoX5H7S textarea {
  opacity: 0.7;
  border-radius: 10px;
}
.cid-sPJnoX5H7S input:hover,
.cid-sPJnoX5H7S textarea:hover {
  border-color: transparent!important;
}
.cid-sPJnoX5H7S .btn {
  border-radius: 2rem;
  padding: 1rem 3rem;
  width: -webkit-fill-available;
}
.cid-sPJnoX5H7S h4 {
  margin-bottom: 3rem;
}
.cid-sPJnoX5H7S .col-auto {
  width: 100%;
}
.cid-sPJnoX5H7S textarea {
  min-height: 250px;
}
.cid-sPJnoX5H7S .mbr-form {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 7rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sPJnoX5H7S .mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-sPJnoX5H7S .mbr-form:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sPJnoX5H7S H4 {
  text-align: center;
  color: #263d5a;
}
.cid-sPJnL7vfub {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #343351;
  position: relative;
  overflow: hidden;
}
.cid-sPJnL7vfub .container {
  max-width: 1400px;
}
.cid-sPJnL7vfub .card-img2 span {
  padding-top: 6px;
}
.cid-sPJnL7vfub .soc-item a {
  padding-top: 5px;
}
.cid-sPJnL7vfub .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sPJnL7vfub .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sPJnL7vfub .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sPJnL7vfub .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sPJnL7vfub svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sPJnL7vfub #e2_shape {
  fill: #9fdbf8 !important;
}
.cid-sPJnL7vfub .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sPJnL7vfub .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sPJnL7vfub .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sPJnL7vfub .card-img {
  width: auto;
}
.cid-sPJnL7vfub .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sPJnL7vfub .soc-item span {
  font-size: 1.4rem;
}
.cid-sPJnL7vfub .soc-item:hover span {
  color: #a148ff !important;
}
.cid-sPJnL7vfub .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sPJnL7vfub .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sPJnL7vfub .media-wrap {
  margin-bottom: 1rem;
}
.cid-sPJnL7vfub .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sPJnL7vfub img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sPJnL7vfub .item {
    justify-content: center;
  }
  .cid-sPJnL7vfub .quote::after {
    left: 60px;
  }
}
.cid-sPJnL7vfub .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sPJnL7vfub .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sPJnL7vfub .text1 {
  color: #ffffff;
}
.cid-sPJnL7vfub .item-title {
  color: #ffffff;
}
.cid-sPJnL7vfub H5 {
  color: #ffffff;
}
.cid-sPJnL7vfub .theme {
  color: #ffffff;
}
.cid-sPJnL7vfub .copyright > p {
  color: #ff3366;
}
.cid-sPJnL7vfub .text2 {
  color: #ffffff;
}
.cid-sPJy4PhTHO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPJy4PhTHO nav.navbar {
  position: fixed;
}
.cid-sPJy4PhTHO .navbar-nav {
  margin: auto;
}
.cid-sPJy4PhTHO .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPJy4PhTHO .dropdown-item:hover,
.cid-sPJy4PhTHO .dropdown-item:focus {
  background: #a148ff !important;
  color: white !important;
}
.cid-sPJy4PhTHO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPJy4PhTHO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPJy4PhTHO .navbar-short,
.cid-sPJy4PhTHO .opened {
  background: #5e71db !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sPJy4PhTHO .navbar-short .nav-link,
.cid-sPJy4PhTHO .opened .nav-link,
.cid-sPJy4PhTHO .navbar-short .navbar-caption,
.cid-sPJy4PhTHO .opened .navbar-caption,
.cid-sPJy4PhTHO .navbar-short .mbr-iconfont,
.cid-sPJy4PhTHO .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sPJy4PhTHO .navbar-short .hamburger span,
.cid-sPJy4PhTHO .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-sPJy4PhTHO .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sPJy4PhTHO .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-sPJy4PhTHO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPJy4PhTHO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPJy4PhTHO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPJy4PhTHO .container {
  display: flex;
  margin: auto;
}
.cid-sPJy4PhTHO .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPJy4PhTHO .dropdown-menu,
.cid-sPJy4PhTHO .navbar.opened {
  background: #5e71db !important;
}
.cid-sPJy4PhTHO .nav-item:focus,
.cid-sPJy4PhTHO .nav-link:focus {
  outline: none;
}
.cid-sPJy4PhTHO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPJy4PhTHO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPJy4PhTHO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPJy4PhTHO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPJy4PhTHO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPJy4PhTHO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPJy4PhTHO .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #5e71db;
}
.cid-sPJy4PhTHO .navbar.opened {
  transition: all 0.3s;
}
.cid-sPJy4PhTHO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPJy4PhTHO .navbar .navbar-logo img {
  width: auto;
}
.cid-sPJy4PhTHO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPJy4PhTHO .navbar.collapsed {
  justify-content: center;
}
.cid-sPJy4PhTHO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPJy4PhTHO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPJy4PhTHO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-sPJy4PhTHO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPJy4PhTHO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPJy4PhTHO .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-sPJy4PhTHO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPJy4PhTHO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPJy4PhTHO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPJy4PhTHO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPJy4PhTHO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPJy4PhTHO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPJy4PhTHO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPJy4PhTHO .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-sPJy4PhTHO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPJy4PhTHO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPJy4PhTHO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPJy4PhTHO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPJy4PhTHO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPJy4PhTHO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPJy4PhTHO .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPJy4PhTHO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPJy4PhTHO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPJy4PhTHO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPJy4PhTHO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPJy4PhTHO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPJy4PhTHO .dropdown-item.active,
.cid-sPJy4PhTHO .dropdown-item:active {
  background-color: transparent;
}
.cid-sPJy4PhTHO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPJy4PhTHO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPJy4PhTHO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPJy4PhTHO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5e71db;
}
.cid-sPJy4PhTHO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPJy4PhTHO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPJy4PhTHO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPJy4PhTHO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPJy4PhTHO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPJy4PhTHO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #9cf21d;
}
.cid-sPJy4PhTHO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPJy4PhTHO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPJy4PhTHO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPJy4PhTHO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPJy4PhTHO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPJy4PhTHO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPJy4PhTHO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPJy4PhTHO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPJy4PhTHO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPJy4PhTHO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPJy4PhTHO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPJy4PhTHO .navbar {
    height: 70px;
  }
  .cid-sPJy4PhTHO .navbar.opened {
    height: auto;
  }
  .cid-sPJy4PhTHO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPJy4QEJvC {
  overflow-x: hidden !important;
}
.cid-sPJy4QEJvC,
.cid-sPJy4QEJvC .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-sPJy4QEJvC .mbr-section-title {
  color: #263d5a;
}
.cid-sPJy4QEJvC .mbr-section-title span {
  color: #a148ff;
}
.cid-sPJy4QEJvC .mbr-text {
  color: #9cf21d;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sPJy4QEJvC .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 42s !important;
  animation-duration: 42s;
  background-image: url("../../../assets/images/03-2-2500x1667.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sPJy4QEJvC .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sPJy4QEJvC .mbr-overlay {
  z-index: 1;
}
.cid-sPJy4QEJvC .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sPJyEpvFgF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sPJyEpvFgF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sPJyEpvFgF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sPJyEpvFgF .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sPJyEpvFgF .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sPJyEpvFgF .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-sPJyEpvFgF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sPJyEpvFgF .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-sPJyEpvFgF .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-sPJyEpvFgF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sPJyEpvFgF .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-sPJyEpvFgF .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-sPJyEpvFgF .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-sPJyEpvFgF .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-sPJyEpvFgF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sPJyEpvFgF .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-sPJyEpvFgF .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-sPJyEpvFgF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sPJyEpvFgF .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-sPJyEpvFgF .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sPJzdJyqpe {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sPJzdJyqpe .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-sPJzdJyqpe .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sPJzdJyqpe .image-block:hover:before {
  opacity: 0.4;
}
.cid-sPJzdJyqpe .image-block:hover .wrap {
  opacity: 1;
}
.cid-sPJzdJyqpe .image-block:hover img {
  transform: scale(1.05);
}
.cid-sPJzdJyqpe .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-sPJzdJyqpe h4 {
  letter-spacing: 2px;
}
.cid-sPJzdJyqpe figcaption {
  position: relative;
}
.cid-sPJzdJyqpe figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sPJzdJyqpe img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-sPJzdJyqpe .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-sPJzdJyqpe .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-sPJzdJyqpe .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-sPJzdJyqpe .image-block:before {
    opacity: 0.4;
  }
  .cid-sPJzdJyqpe .image-block .wrap {
    opacity: 1;
  }
}
.cid-sPJzhFVHVU {
  padding-top: 615px;
  background-image: url("../../../assets/images/36-1136x640.jpg");
}
.cid-sPJy4TeHUi {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-sPJy4TeHUi .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #379eeb;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPJy4TeHUi .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sPJy4TeHUi .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sPJy4TeHUi .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-sPJy4TeHUi .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sPJy4TeHUi .row {
  justify-content: center;
}
.cid-sPJy4TeHUi .card-text {
  color: #263d5a;
}
.cid-sPJy4TeHUi .card-title,
.cid-sPJy4TeHUi .iconfont-wrapper {
  color: #263d5a;
}
.cid-sPJy4TeHUi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sPJy4TeHUi .mbr-section-title {
  color: #263d5a;
}
.cid-sPJy4TeHUi .card-price,
.cid-sPJy4TeHUi .iconfont-wrapper {
  color: #263d5a;
}
.cid-sPJy4Um9Kp {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #5e71db;
}
.cid-sPJy4Um9Kp .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #a148ff;
}
.cid-sPJy4Um9Kp .svg-top .st0 {
  fill: #5e71db;
}
@media (max-width: 992px) {
  .cid-sPJy4Um9Kp .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sPJy4Um9Kp .col-12 {
    padding: 0 2rem;
  }
  .cid-sPJy4Um9Kp .row {
    margin: 0 -2rem;
  }
}
.cid-sPJy4Um9Kp .mbr-text,
.cid-sPJy4Um9Kp .mbr-section-btn {
  color: #ffffff;
}
.cid-sPJy4Um9Kp .mbr-section-title {
  color: #ffffff;
}
.cid-sPJy4VhxeU {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/19-1280x720.jpg");
}
.cid-sPJy4VhxeU .google-map {
  height: 30rem;
  position: relative;
  border-radius: 30px;
}
.cid-sPJy4VhxeU .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  opacity: 0.8;
  backdrop-filter: blur(3.5px);
}
.cid-sPJy4VhxeU .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sPJy4VhxeU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sPJy4VhxeU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sPJy4VhxeU .mbr-section-title {
  color: #263d5a;
}
.cid-sPJy4WjrMz {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/44-1600x1200.jpg");
}
.cid-sPJy4WjrMz .mbr-overlay {
  background-color: #5e71db;
  opacity: 0;
}
.cid-sPJy4WjrMz input,
.cid-sPJy4WjrMz textarea {
  opacity: 0.7;
  border-radius: 10px;
}
.cid-sPJy4WjrMz input:hover,
.cid-sPJy4WjrMz textarea:hover {
  border-color: transparent!important;
}
.cid-sPJy4WjrMz .btn {
  border-radius: 2rem;
  padding: 1rem 3rem;
  width: -webkit-fill-available;
}
.cid-sPJy4WjrMz h4 {
  margin-bottom: 3rem;
}
.cid-sPJy4WjrMz .col-auto {
  width: 100%;
}
.cid-sPJy4WjrMz textarea {
  min-height: 250px;
}
.cid-sPJy4WjrMz .mbr-form {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 7rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sPJy4WjrMz .mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-sPJy4WjrMz .mbr-form:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sPJy4WjrMz H4 {
  text-align: center;
  color: #263d5a;
}
.cid-sPJy4Xbt5N {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #343351;
  position: relative;
  overflow: hidden;
}
.cid-sPJy4Xbt5N .container {
  max-width: 1400px;
}
.cid-sPJy4Xbt5N .card-img2 span {
  padding-top: 6px;
}
.cid-sPJy4Xbt5N .soc-item a {
  padding-top: 5px;
}
.cid-sPJy4Xbt5N .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sPJy4Xbt5N .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sPJy4Xbt5N .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sPJy4Xbt5N .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sPJy4Xbt5N svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sPJy4Xbt5N #e2_shape {
  fill: #9fdbf8 !important;
}
.cid-sPJy4Xbt5N .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sPJy4Xbt5N .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sPJy4Xbt5N .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sPJy4Xbt5N .card-img {
  width: auto;
}
.cid-sPJy4Xbt5N .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sPJy4Xbt5N .soc-item span {
  font-size: 1.4rem;
}
.cid-sPJy4Xbt5N .soc-item:hover span {
  color: #a148ff !important;
}
.cid-sPJy4Xbt5N .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sPJy4Xbt5N .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sPJy4Xbt5N .media-wrap {
  margin-bottom: 1rem;
}
.cid-sPJy4Xbt5N .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sPJy4Xbt5N img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sPJy4Xbt5N .item {
    justify-content: center;
  }
  .cid-sPJy4Xbt5N .quote::after {
    left: 60px;
  }
}
.cid-sPJy4Xbt5N .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sPJy4Xbt5N .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sPJy4Xbt5N .text1 {
  color: #ffffff;
}
.cid-sPJy4Xbt5N .item-title {
  color: #ffffff;
}
.cid-sPJy4Xbt5N H5 {
  color: #ffffff;
}
.cid-sPJy4Xbt5N .theme {
  color: #ffffff;
}
.cid-sPJy4Xbt5N .copyright > p {
  color: #ff3366;
}
.cid-sPJy4Xbt5N .text2 {
  color: #ffffff;
}
