.btn {
  border-width: 2px;
}

body {
  font-family: 'Roboto', sans-serif;
}

.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}

.display-1>.mbr-iconfont {
  font-size: 5rem;
}

.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 6rem;
  line-height: 1.1;
}

.display-2>.mbr-iconfont {
  font-size: 7.5rem;
}

.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.display-4>.mbr-iconfont {
  font-size: 1.25rem;
}

.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}

.display-5>.mbr-iconfont {
  font-size: 2.25rem;
}

.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

.display-7>.mbr-iconfont {
  font-size: 1.5rem;
}

/* ---- 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.2rem;
  }
}

@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc(2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-2 {
    font-size: 4.8rem;
    font-size: calc(2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.3 * (2.75rem + (6 - 2.75) * ((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.44rem;
    font-size: calc(1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-7 {
    font-size: 0.96rem;
    font-size: calc(1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}

/* 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: #ffffff !important;
}

.bg-success {
  background-color: #263d5a !important;
}

.bg-info {
  background-color: #47b5ed !important;
}

.bg-warning {
  background-color: #ffffff !important;
}

.bg-danger {
  background-color: #ffe161 !important;
}

.btn-primary {
  background-color: #ffffff !important;
  background: linear-gradient(90deg, #ffffff 0%, #4b384c 100%);
  border: none;
  transition: all 0.3s;
}

.btn-primary,
.btn-primary:active {
  background-color: #ffffff;
  color: #808080 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #545454 !important;
  background-color: #d4d4d4;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: #4b384c !important;
  background: linear-gradient(90deg, #4b384c 0%, #4b384c 100%);
  border: none;
  transition: all 0.3s;
}

.btn-secondary,
.btn-secondary:active {
  background-color: #4b384c;
  color: #ffffff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #1a131a;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1a131a;
}

.btn-secondary:hover {
  transform: translateY(-3px);
}

.btn-info {
  background-color: #47b5ed !important;
  background: linear-gradient(90deg, #47b5ed 0%, #4b384c 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%, #4b384c 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: #ffffff !important;
  background: linear-gradient(90deg, #ffffff 0%, #4b384c 100%);
  border: none;
  transition: all 0.3s;
}

.btn-warning,
.btn-warning:active {
  background-color: #ffffff;
  color: #808080 !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #545454 !important;
  background-color: #d4d4d4;
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #808080 !important;
  background-color: #d4d4d4;
}

.btn-warning:hover {
  transform: translateY(-3px);
}

.btn-danger {
  background-color: #ffe161 !important;
  background: linear-gradient(90deg, #ffe161 0%, #4b384c 100%);
  border: none;
  transition: all 0.3s;
}

.btn-danger,
.btn-danger:active {
  background-color: #ffe161;
  color: #614f00 !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #0a0800 !important;
  background-color: #ffd10a;
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #614f00 !important;
  background-color: #ffd10a;
}

.btn-danger:hover {
  transform: translateY(-3px);
}

.btn-white {
  background-color: #fafafa !important;
  background: linear-gradient(90deg, #fafafa 0%, #4b384c 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%, #4b384c 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: #ffffff;
  color: #ffffff;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}

.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #4b384c;
  color: #4b384c;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1a131a !important;
  background-color: transparent !important;
  border-color: #1a131a !important;
  box-shadow: none !important;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #4b384c !important;
  border-color: #4b384c !important;
}

.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  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: #148cca !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: #263d5a;
  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: #0c141d !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: #ffffff;
  color: #ffffff;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}

.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}

.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}

.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #ffffff !important;
}

.text-secondary {
  color: #4b384c !important;
}

.text-success {
  color: #263d5a !important;
}

.text-info {
  color: #47b5ed !important;
}

.text-warning {
  color: #ffffff !important;
}

.text-danger {
  color: #ffe161 !important;
}

.text-white {
  color: #fafafa !important;
}

.text-black {
  color: #232323 !important;
}

a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}

a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #110d11 !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: #cccccc !important;
}

a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #facb00 !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: #ffffff;
}

.nav-tabs .nav-link:not(.active) {
  color: #232323;
}

.alert-success {
  background-color: #70c770;
}

.alert-info {
  background-color: #47b5ed;
}

.alert-warning {
  background-color: #ffffff;
}

.alert-danger {
  background-color: #ffe161;
}

.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: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}

.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}

.nav-tabs .nav-link {
  border-radius: 100px !important;
}

a,
a:hover {
  color: #ffffff;
}

.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 a {
  border-radius: 100px;
}

.form-control {
  font-family: 'Roboto', 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: #ffffff !important;
}

.form-control:-webkit-input-placeholder {
  font-family: 'Roboto', 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: #ffffff;
}

/* 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: #ffffff;
  color: #000000;
}

.jq-number__spin {
  transition: 0.25s ease;
}

.jq-number__spin:hover {
  border-color: #ffffff;
}

.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: #ffffff;
  border-bottom-color: #ffffff;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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: #4b384c !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='%23ffffff' %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-ullkiEsbw3 {
  z-index: 1000;
  width: 100%;
}

.cid-ullkiEsbw3 nav.navbar {
  position: fixed;
}

.cid-ullkiEsbw3 .navbar-nav {
  margin: auto;
}

.cid-ullkiEsbw3 .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}

.cid-ullkiEsbw3 .dropdown-item:hover,
.cid-ullkiEsbw3 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}

.cid-ullkiEsbw3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.cid-ullkiEsbw3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cid-ullkiEsbw3 .navbar-short,
.cid-ullkiEsbw3 .opened {
  background: #9b4878 !important;
  opacity: 0.8;
  transition: all 0.3s;
}

.cid-ullkiEsbw3 .navbar-short .nav-link,
.cid-ullkiEsbw3 .opened .nav-link,
.cid-ullkiEsbw3 .navbar-short .navbar-caption,
.cid-ullkiEsbw3 .opened .navbar-caption,
.cid-ullkiEsbw3 .navbar-short .mbr-iconfont,
.cid-ullkiEsbw3 .opened .mbr-iconfont {
  color: #ffffff !important;
}

.cid-ullkiEsbw3 .navbar-short .hamburger span,
.cid-ullkiEsbw3 .opened .hamburger span {
  background-color: #ffffff !important;
}

.cid-ullkiEsbw3 .nav-link {
  transition: all 0.3s;
  position: relative;
}

.cid-ullkiEsbw3 .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-ullkiEsbw3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-ullkiEsbw3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}

.cid-ullkiEsbw3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}

.cid-ullkiEsbw3 .container {
  display: flex;
  margin: auto;
}

.cid-ullkiEsbw3 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}

.cid-ullkiEsbw3 .dropdown-menu,
.cid-ullkiEsbw3 .navbar.opened {
  background: #9b4878 !important;
}

.cid-ullkiEsbw3 .nav-item:focus,
.cid-ullkiEsbw3 .nav-link:focus {
  outline: none;
}

.cid-ullkiEsbw3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}

.cid-ullkiEsbw3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-ullkiEsbw3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}

.cid-ullkiEsbw3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}

.cid-ullkiEsbw3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}

.cid-ullkiEsbw3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}

.cid-ullkiEsbw3 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(117, 38, 111, 0.938);
}

.cid-ullkiEsbw3 .navbar.opened {
  transition: all 0.3s;
}

.cid-ullkiEsbw3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}

.cid-ullkiEsbw3 .navbar .navbar-logo img {
  width: auto;
}

.cid-ullkiEsbw3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}

.cid-ullkiEsbw3 .navbar.collapsed {
  justify-content: center;
}

.cid-ullkiEsbw3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}

.cid-ullkiEsbw3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}

@media (min-width: 992px) {
  .cid-ullkiEsbw3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.5rem);
  }
}

.cid-ullkiEsbw3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}

.cid-ullkiEsbw3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}

.cid-ullkiEsbw3 .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-ullkiEsbw3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}

.cid-ullkiEsbw3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}

.cid-ullkiEsbw3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .cid-ullkiEsbw3 .navbar .nav-item .nav-link::before {
    display: none;
  }

  .cid-ullkiEsbw3 .navbar.opened .dropdown-menu {
    top: 0;
  }

  .cid-ullkiEsbw3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }

  .cid-ullkiEsbw3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }

  .cid-ullkiEsbw3 .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-ullkiEsbw3 .navbar .navbar-logo img {
    height: 3rem !important;
  }

  .cid-ullkiEsbw3 .navbar ul.navbar-nav li {
    margin: auto;
  }

  .cid-ullkiEsbw3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }

  .cid-ullkiEsbw3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }

  .cid-ullkiEsbw3 .navbar .navbar-toggler {
    flex-basis: auto;
  }

  .cid-ullkiEsbw3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.cid-ullkiEsbw3 .navbar.navbar-short {
  min-height: 60px;
}

.cid-ullkiEsbw3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}

.cid-ullkiEsbw3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}

.cid-ullkiEsbw3 .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-ullkiEsbw3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}

.cid-ullkiEsbw3 .navbar-brand .navbar-logo a {
  outline: none;
}

.cid-ullkiEsbw3 .dropdown-item.active,
.cid-ullkiEsbw3 .dropdown-item:active {
  background-color: transparent;
}

.cid-ullkiEsbw3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.cid-ullkiEsbw3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}

.cid-ullkiEsbw3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}

.cid-ullkiEsbw3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9b4878;
}

.cid-ullkiEsbw3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}

.cid-ullkiEsbw3 .navbar .dropdown.open>.dropdown-menu {
  display: block;
}

.cid-ullkiEsbw3 ul.navbar-nav {
  flex-wrap: wrap;
}

.cid-ullkiEsbw3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}

.cid-ullkiEsbw3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.cid-ullkiEsbw3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe161;
}

.cid-ullkiEsbw3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}

.cid-ullkiEsbw3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}

.cid-ullkiEsbw3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}

.cid-ullkiEsbw3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}

.cid-ullkiEsbw3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-ullkiEsbw3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}

.cid-ullkiEsbw3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}

.cid-ullkiEsbw3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-ullkiEsbw3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}

.cid-ullkiEsbw3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cid-ullkiEsbw3 .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-ullkiEsbw3 .navbar {
    height: 70px;
  }

  .cid-ullkiEsbw3 .navbar.opened {
    height: auto;
  }

  .cid-ullkiEsbw3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

.cid-uBbwnyKY9o .video1 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.cid-uBbwnyKY9o .video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.cid-uBbwnyKY9o .video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cid-uBbwnyKY9o .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cid-uBbwnyKY9o .align-center {
  position: absolute;
  bottom: 100px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.cid-uBbwnyKY9o .mbr-section-title {
  color: white;
  font-size: 4.2rem;
  margin: 0;
}

.cid-uBbwnyKY9o .mbr-section-subtitle {
  color: white;
  font-size: 1.5rem;
  margin-top: 10px;
}

.cid-ujyyNqXjkF {
  background-image: url("../../../assets/images/fss1993.jpg");
}

.cid-ujyyNqXjkF .mbr-fallback-image.disabled {
  display: none;
}

.cid-ujyyNqXjkF .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-ujyyNqXjkF .container {
    padding: 0 20px;
  }
}

.cid-ujyyNqXjkF .card {
  padding: 0;
}

.cid-ujyyNqXjkF .image-wrapper {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
}

.cid-ujyyNqXjkF .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-ujyyNqXjkF .image-wrapper .text-wrapper {
  position: relative;
  padding: 0 64px;
}

@media (max-width: 768px) {
  .cid-ujyyNqXjkF .image-wrapper .text-wrapper {
    padding: 50px 20px;
  }
}

.cid-ujyyNqXjkF .image-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}

.cid-ujyyNqXjkF .image-wrapper .text-wrapper .mbr-text {
  margin-bottom: 64px;
}

.cid-ujyyNqXjkF .image-wrapper .text-wrapper .mbr-section-btn .btn {
  color: #ffffff !important;
}

.cid-ujyyNqXjkF .image-wrap {
  position: relative;
  height: 100%;
}

.cid-ujyyNqXjkF .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-ujyyNqXjkF .mbr-section-title {
  color: #ffffff;
  text-shadow: 4px 4px 8px #000000;
}

.cid-ujyyNqXjkF .mbr-text {
  color: #ffffff;
  text-align: center;
  text-shadow: 8px 8px 8px #000000;
}

.cid-ujyyNqXjkF .mbr-section-title,
.cid-ujyyNqXjkF .mbr-section-btn {
  text-align: center;
}

.cid-ujzF2tG2h3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9b4878;
}

.cid-ujzF2tG2h3 .container {
  max-width: 1040px;
}

@media (max-width: 575px) {
  .cid-ujzF2tG2h3 .row {
    text-align: center !important;
  }
}

.cid-ujzF2tG2h3 .mbr-section-title {
  color: #000000;
}

@media (max-width: 575px) {
  .cid-ujzF2tG2h3 .mbr-section-title {
    text-align: center;
  }
}

.cid-ujzF2tG2h3 .mbr-text {
  color: #ffffff;
  margin-top: 20px;
}

.cid-ujzF2tG2h3 .mbr-text a:hover {
  text-decoration: underline;
}

.cid-ujzF2tG2h3 .mbr-section-btn {
  margin-top: 20px;
}

.cid-ujzF2tG2h3 .mbr-section-btn .btn {
  border-radius: 50px;
}

@media (max-width: 575px) {
  .cid-ujzF2tG2h3 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }

  .cid-ujzF2tG2h3 .mbr-section-btn .btn {
    width: 100%;
  }
}

.cid-uA3zGPreXh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #9b4878;
}

.cid-uA3zGPreXh .container {
  max-width: 1040px;
}

@media (max-width: 575px) {
  .cid-uA3zGPreXh .row {
    text-align: center !important;
  }
}

.cid-uA3zGPreXh .mbr-section-title {
  color: #000000;
}

@media (max-width: 575px) {
  .cid-uA3zGPreXh .mbr-section-title {
    text-align: center;
  }
}

.cid-uA3zGPreXh .mbr-text {
  color: #ffffff;
  margin-top: 20px;
}

.cid-uA3zGPreXh .mbr-text a:hover {
  text-decoration: underline;
}

.cid-uA3zGPreXh .mbr-section-btn {
  margin-top: 20px;
}

.cid-uA3zGPreXh .mbr-section-btn .btn {
  border-radius: 50px;
}

@media (max-width: 575px) {
  .cid-uA3zGPreXh .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }

  .cid-uA3zGPreXh .mbr-section-btn .btn {
    width: 100%;
  }
}

.cid-uA3zGPreXh .mbr-section-title,
.cid-uA3zGPreXh .mbr-section-btn {
  color: #ffffff;
}

.cid-uAICnxPjhQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fss3335.jpg");
}

@media (max-width: 767px) {
  .cid-uAICnxPjhQ {
    padding-bottom: 5rem;
  }
}

.cid-uAICnxPjhQ img,
.cid-uAICnxPjhQ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 1200px) {

  .cid-uAICnxPjhQ img,
  .cid-uAICnxPjhQ .item-img {
    height: 225px;
    object-fit: cover;
  }
}

.cid-uAICnxPjhQ .mbr-text {
  color: #000000;
}

.cid-uAICnxPjhQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
  text-shadow: 4px 4px 8px #000000;
}

.cid-uAICnxPjhQ .main-button {
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .cid-uAICnxPjhQ .main-button {
    margin-bottom: 2rem;
  }
}

.cid-uAICnxPjhQ .mbr-text UL {
  text-align: left;
}

.cid-uAICnxPjhQ .mbr-section-subtitle,
.cid-uAICnxPjhQ .main-button {
  color: #000000;
}

.cid-uAICnxPjhQ .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}

.cid-uAICnxPjhQ .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}

.cid-uAICnxPjhQ .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .cid-uAICnxPjhQ .item-wrapper {
    margin-bottom: 1rem;
  }
}

.cid-uAICnxPjhQ .item-title {
  text-align: center;
}

.cid-uAICnxPjhQ .item-wrapper {
  padding: 0;
  margin: 0;
}

.cid-uAICnxPjhQ .side-features .item {
  padding-left: 0px;
  padding-right: 0px;
}

.cid-uAICnxPjhQ .side-features {
  padding-left: 16px;
  padding-right: 16px;
}

.cid-uAICnxPjhQ .item-subtitle {
  text-align: center;
}

@media (min-width: 992px) {
  .cid-uAICnxPjhQ .main-text {
    padding-left: 0;
    padding-right: 32px;
  }
}

.cid-uAICnxPjhQ .mbr-section-title {
  color: #ffffff;
  text-shadow: 4px 4px 8px #000000;
}

.cid-uAICnxPjhQ .mbr-section-subtitle,
.cid-uAICnxPjhQ .mbr-section-btn {
  color: #ffffff;
}

.cid-uAJ2CcciVz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #9b4878;
}

@media (max-width: 767px) {
  .cid-uAJ2CcciVz {
    padding-bottom: 5rem;
  }
}

.cid-uAJ2CcciVz img,
.cid-uAJ2CcciVz .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 1200px) {

  .cid-uAJ2CcciVz img,
  .cid-uAJ2CcciVz .item-img {
    height: 225px;
    object-fit: cover;
  }
}

.cid-uAJ2CcciVz .row {
  flex-direction: row-reverse;
}

.cid-uAJ2CcciVz .mbr-text {
  color: #000000;
}

.cid-uAJ2CcciVz .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}

.cid-uAJ2CcciVz .main-button {
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .cid-uAJ2CcciVz .main-button {
    margin-bottom: 2rem;
  }
}

.cid-uAJ2CcciVz .mbr-text UL {
  text-align: left;
}

.cid-uAJ2CcciVz .mbr-section-subtitle,
.cid-uAJ2CcciVz .main-button {
  color: #000000;
}

.cid-uAJ2CcciVz .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}

.cid-uAJ2CcciVz .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}

.cid-uAJ2CcciVz .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .cid-uAJ2CcciVz .item-wrapper {
    margin-bottom: 1rem;
  }
}

.cid-uAJ2CcciVz .item-title {
  text-align: center;
}

.cid-uAJ2CcciVz .item-wrapper {
  padding: 0;
  margin: 0;
}

.cid-uAJ2CcciVz .side-features .item {
  padding-left: 0px;
  padding-right: 0px;
}

.cid-uAJ2CcciVz .side-features {
  padding-left: 16px;
  padding-right: 16px;
}

.cid-uAJ2CcciVz .item-subtitle {
  text-align: center;
}

@media (min-width: 992px) {
  .cid-uAJ2CcciVz .main-text {
    padding-left: 0;
    padding-right: 32px;
    padding-left: 32px;
    padding-right: 0;
  }
}

.cid-uAJ2CcciVz .mbr-section-title {
  color: #ffffff;
}

.cid-uAJ2CcciVz .mbr-section-subtitle,
.cid-uAJ2CcciVz .mbr-section-btn {
  color: #fafafa;
}

.cid-uAJ2CcciVz .mbr-section-subtitle,
.cid-uAJ2CcciVz .mbr-section-btn DIV {
  text-align: left;
}

.cid-uA4mmNbArs {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #9b4878;
}

.cid-uA4mmNbArs .container {
  max-width: 1040px;
}

@media (max-width: 575px) {
  .cid-uA4mmNbArs .row {
    text-align: center !important;
  }
}

.cid-uA4mmNbArs .mbr-section-title {
  color: #000000;
}

@media (max-width: 575px) {
  .cid-uA4mmNbArs .mbr-section-title {
    text-align: center;
  }
}

.cid-uA4mmNbArs .mbr-text {
  color: #ffffff;
  margin-top: 20px;
}

.cid-uA4mmNbArs .mbr-text a:hover {
  text-decoration: underline;
}

.cid-uA4mmNbArs .mbr-section-btn {
  margin-top: 20px;
}

.cid-uA4mmNbArs .mbr-section-btn .btn {
  border-radius: 50px;
}

@media (max-width: 575px) {
  .cid-uA4mmNbArs .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }

  .cid-uA4mmNbArs .mbr-section-btn .btn {
    width: 100%;
  }
}

.cid-uA4mmNbArs .mbr-section-title,
.cid-uA4mmNbArs .mbr-section-btn {
  color: #ffffff;
}

.cid-uA4nYHqoUf {
  background-color: #9b4878;
  text-shadow: 2px 2px 3px #000000, -2px -2px 8px #070707;
}

.cid-uA4nYHqoUf .mbr-fallback-image.disabled {
  display: none;
}

.cid-uA4nYHqoUf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-uA4nYHqoUf .container-fluid {
  padding: 0 16px;
}

@media (max-width: 992px) {
  .cid-uA4nYHqoUf .container-fluid {
    padding: 0 12px;
  }
}

.cid-uA4nYHqoUf .container-fluid .row {
  padding: 0;
}

@media (max-width: 992px) {
  .cid-uA4nYHqoUf .container {
    padding: 0 20px;
  }
}

.cid-uA4nYHqoUf .card {
  padding: 0;
}

.cid-uA4nYHqoUf .image-wrapper {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
}

.cid-uA4nYHqoUf .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-uA4nYHqoUf .image-wrapper .text-wrapper {
  position: relative;
  padding: 0 64px;
}

@media (max-width: 768px) {
  .cid-uA4nYHqoUf .image-wrapper .text-wrapper {
    padding: 50px 20px;
  }
}

.cid-uA4nYHqoUf .image-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}

.cid-uA4nYHqoUf .image-wrapper .text-wrapper .mbr-text {
  margin-bottom: 64px;
}

.cid-uA4nYHqoUf .image-wrapper .text-wrapper .mbr-section-btn .btn {
  color: #ffffff !important;
}

.cid-uA4nYHqoUf .image-wrap {
  position: relative;
  height: 100%;
}

.cid-uA4nYHqoUf .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-uA4nYHqoUf .mbr-section-title {
  color: #ffffff;
  text-shadow: 4px 4px 8px #000000;
}

.cid-uA4nYHqoUf .mbr-text {
  color: #ffffff;
  text-align: left;
  text-shadow: 4px 4px 8px #000000;
}

.cid-uBczZ477u9 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #9b4878;
}

.cid-uBczZ477u9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}

.cid-uBczZ477u9 .mbr-text,
.cid-uBczZ477u9 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}

.cid-uCDeknOB2X {
  padding-top: 0rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #9b4878;
}

.cid-uCDeknOB2X .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .cid-uCDeknOB2X .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}

.cid-uCDeknOB2X .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}

@media (max-width: 992px) {
  .cid-uCDeknOB2X .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  .cid-uCDeknOB2X .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}

.cid-uCDeknOB2X .embla__slide .slide-content {
  width: 100%;
}

.cid-uCDeknOB2X .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}

@media (max-width: 992px) {
  .cid-uCDeknOB2X .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}

.cid-uCDeknOB2X .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}

.cid-uCDeknOB2X .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cid-uCDeknOB2X .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .cid-uCDeknOB2X .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}

.cid-uCDeknOB2X .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}

@media (max-width: 992px) {
  .cid-uCDeknOB2X .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}

.cid-uCDeknOB2X .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}

.cid-uCDeknOB2X .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}

.cid-uCDeknOB2X .embla__button--next,
.cid-uCDeknOB2X .embla__button--prev {
  display: flex;
}

.cid-uCDeknOB2X .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}

@media (max-width: 768px) {
  .cid-uCDeknOB2X .embla__button {
    display: none;
  }
}

.cid-uCDeknOB2X .embla__button:hover {
  opacity: .7 !important;
}

.cid-uCDeknOB2X .embla__button.embla__button--prev {
  right: 48px;
}

.cid-uCDeknOB2X .embla__button.embla__button--next {
  right: 0;
}

.cid-uCDeknOB2X .embla {
  position: relative;
  width: 100%;
}

.cid-uCDeknOB2X .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}

.cid-uCDeknOB2X .embla__viewport.is-draggable {
  cursor: grab;
}

.cid-uCDeknOB2X .embla__viewport.is-dragging {
  cursor: grabbing;
}

.cid-uCDeknOB2X .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cid-uCDeknOB2X .item-menu-overlay {
  opacity: 0 !important;
}

.cid-uCDeknOB2X .mbr-section-title {
  color: #272b2e;
}

.cid-uCDeknOB2X .item-tag {
  color: #ffffff;
}

.cid-uCDeknOB2X .item-name {
  color: #ffffff;
}

.cid-uAaDEa3XkQ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #9b4878;
}

.cid-uAaDEa3XkQ H1 {
  color: #ebce04;
}

.cid-uAaDEa3XkQ h1 {
  background: linear-gradient(to left, #4b384c, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cid-uAaDEa3XkQ .mbr-text,
.cid-uAaDEa3XkQ .mbr-section-btn {
  color: #ffffff;
}

.cid-uhfYB5VXdY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1732a4;
}

.cid-uhfYB5VXdY .mbr-overlay {
  background: #5eeebb;
}

.cid-uhfYB5VXdY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}

.cid-uhfYB5VXdY .card-title {
  margin-bottom: 26px;
}

.cid-uhfYB5VXdY .mbr-text {
  margin-bottom: 30px;
}

.cid-uhfYB5VXdY .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cid-uhfYB5VXdY .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}

.cid-uhfYB5VXdY .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}

@media (min-width: 992px) {
  .cid-uhfYB5VXdY .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}

@media (max-width: 991px) {
  .cid-uhfYB5VXdY .text-wrapper {
    text-align: center;
  }

  .cid-uhfYB5VXdY .image-wrapper {
    margin-bottom: 40px;
  }

  .cid-uhfYB5VXdY .mbr-text {
    margin-bottom: 20px;
  }

  .cid-uhfYB5VXdY .iconfont-wrapper {
    margin-bottom: 20px;
  }
}

.cid-uhfYB5VXdY .mbr-text,
.cid-uhfYB5VXdY .mbr-section-btn {
  color: #ffffff;
}

.cid-uhgjPukuAr {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #edefeb;
}

.cid-uhgjPukuAr H1 {
  color: #ffffff;
}

.cid-uhgjPukuAr h1 {
  background: linear-gradient(to left, #4b384c, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cid-uhgjPukuAr .mbr-text,
.cid-uhgjPukuAr .mbr-section-btn {
  color: #232323;
}

.cid-uhgjPukuAr H2 {
  color: #232323;
}

.cid-uhgjCYjUub {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #edefeb;
}

@media (min-width: 992px) {
  .cid-uhgjCYjUub .text-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 1000px) {
  .cid-uhgjCYjUub .text-wrapper {
    padding: 2rem 0;
  }
}

.cid-uhgjCYjUub .image-wrapper img {
  width: 100%;
  object-fit: cover;
}

.cid-uhgjCYjUub .mbr-section-title {
  font-weight: 700;
}

.cid-uhgjCYjUub .mbr-section-subtitle {
  font-weight: 500;
  margin: 14px 0 4px;
  color: #4c4c4c;
}

.cid-uhgjCYjUub .pile {
  padding: 45px 40px 47px;
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0 20px 40px 0 rgba(216, 227, 235, 0.65);
}

.cid-uhgjCYjUub .pile1 {
  border-left: 4px solid #f7b560;
}

.cid-uhgjCYjUub .pile2 {
  border-left: 4px solid #5dabb0;
}

.cid-uhgjCYjUub .pile3 {
  border-left: 4px solid #f8d8cf;
}

.cid-uhgjCYjUub .pile:last-child {
  margin-bottom: 0;
}

.cid-uhglFMRRNZ {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #edefeb;
}

.cid-uhglFMRRNZ H1 {
  color: #ebce04;
}

.cid-uhglFMRRNZ h1 {
  background: linear-gradient(to left, #4b384c, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cid-uhglFMRRNZ .mbr-text,
.cid-uhglFMRRNZ .mbr-section-btn {
  color: #999999;
}

.cid-u3NDyrKzC7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #9b4878;
}

.cid-u3NDyrKzC7 .mbr-fallback-image.disabled {
  display: none;
}

.cid-u3NDyrKzC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-u3NDyrKzC7 .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}

.cid-u3NDyrKzC7 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}

.cid-u3NDyrKzC7 .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-u3NDyrKzC7 .google-map[data-state] {
  background: #e9e5dc;
}

.cid-u3NDyrKzC7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}

.cid-u3NDyrKzC7 .content-head {
  max-width: 800px;
}

.cid-u3NDyrKzC7 .mbr-section-title {
  color: #ffffff;
}

.cid-u3NDyrKzC7 .mbr-section-subtitle {
  color: #ffffff;
}

.cid-uEjKDKdlwj {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #9b4878;
}

.cid-uEjKDKdlwj .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #1732a4;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: visible;
}

.cid-uEjKDKdlwj .image-wrapper {
  height: 100%;
}

@media (max-width: 992px) {
  .cid-uEjKDKdlwj .image-wrapper {
    padding-bottom: 2rem;
  }
}

.cid-uEjKDKdlwj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.cid-uEjKDKdlwj .glass {
  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: 2rem 1rem;
  margin: 0;
  overflow: visible;
  position: relative;
}

@media (max-width: 767px) {
  .cid-uEjKDKdlwj .glass {
    padding: 1rem 0rem;
  }
}

.cid-uEjKDKdlwj .glass: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-uEjKDKdlwj .card-wrapper {
  overflow: visible;
  margin-bottom: 2rem;
}

.cid-uEjKDKdlwj .card-text {
  color: #ffffff;
}

.cid-uEjKDKdlwj .card-title,
.cid-uEjKDKdlwj .iconfont-wrapper {
  color: #ffffff;
  text-align: left;
}

.cid-uEjKDKdlwj .mbr-section-subtitle {
  color: #000000;
}

.cid-uEjKDKdlwj .mbr-section-title {
  color: #000000;
}

@media (max-width: 992px) {
  .cid-uEjKDKdlwj .card-wrapper {
    margin-bottom: 2rem;
  }
}

.cid-uCIsDkLhmu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #9b4878;
}

.cid-uCIsDkLhmu .mbr-fallback-image.disabled {
  display: none;
}

.cid-uCIsDkLhmu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-uCIsDkLhmu .row {
  justify-content: center;
}

.cid-uCIsDkLhmu .container-fluid {
  padding: 0 40px;
}

@media (max-width: 992px) {
  .cid-uCIsDkLhmu .container-fluid {
    padding: 0 15px;
  }
}

@media (max-width: 992px) {
  .cid-uCIsDkLhmu .container {
    padding: 0 15px;
  }
}

.cid-uCIsDkLhmu .title-wrapper {
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .cid-uCIsDkLhmu .title-wrapper {
    text-align: center;
  }
}

.cid-uCIsDkLhmu .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}

.cid-uCIsDkLhmu .title-wrapper img {
  width: 100px;
  height: 100px;
  border-radius: 100% !important;
  margin-right: 10px;
  object-fit: contain;
}

.cid-uCIsDkLhmu .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}

.cid-uCIsDkLhmu .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  height: 100%;
  color: #ffffff;
}

@media (max-width: 992px) {
  .cid-uCIsDkLhmu .list {
    justify-content: center;
  }
}

.cid-uCIsDkLhmu .list .item-wrap {
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}

.cid-uCIsDkLhmu .list .item-wrap:hover,
.cid-uCIsDkLhmu .list .item-wrap:focus {
  color: #000000;
  text-shadow: 2px 2px 4px #000000;
}

.cid-uCIsDkLhmu .list .item-wrap:last-child {
  margin-right: 0;
}

.cid-uCIsDkLhmu .border-wrap {
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, #284177 0, transparent 100%);
}

.cid-uCIsDkLhmu .copy-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

@media (max-width: 992px) {
  .cid-uCIsDkLhmu .copy-wrapper {
    height: auto;
  }
}

.cid-uCIsDkLhmu .copy-wrapper .mbr-copy {
  width: 100%;
  padding: 25px 0;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .cid-uCIsDkLhmu .copy-wrapper .mbr-copy {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .cid-uCIsDkLhmu .copy-wrapper .mbr-copy {
    padding: 25px 0 0;
  }
}

.cid-uCIsDkLhmu .social-wrapper {
  padding: 25px 0;
  height: 100%;
  text-align: right;
}

@media (max-width: 992px) {
  .cid-uCIsDkLhmu .social-wrapper {
    text-align: center;
  }
}

.cid-uCIsDkLhmu .social-wrapper .social-wrap {
  height: 100%;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.cid-uCIsDkLhmu .social-wrapper .social-wrap .social-item {
  display: block;
  margin-right: 20px;
  cursor: pointer;
}

.cid-uCIsDkLhmu .social-wrapper .social-wrap .social-item:last-child {
  margin-right: 0;
}

.cid-uCIsDkLhmu .social-wrapper .social-wrap .social-item:hover .mbr-iconfont,
.cid-uCIsDkLhmu .social-wrapper .social-wrap .social-item:focus .mbr-iconfont {
  color: #ffffff;
  background-color: #9b4878;
}

.cid-uCIsDkLhmu .social-wrapper .social-wrap .social-item .mbr-iconfont {
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: #9b4878;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cid-uCIsDkLhmu .mbr-section-title {
  color: #f2ac2b;
}

.cid-uCIsDkLhmu .mbr-copy {
  color: #d2d2df;
}

.cid-uCIsDkLhmu .mbr-section-title,
.cid-uCIsDkLhmu .title-wrapper {
  color: #fafafa;
  text-align: left;
}

.cid-uCIsDkLhmu .list,
.cid-uCIsDkLhmu .item-wrap {
  text-align: left;
  color: #fafafa;
}

.cid-uCIsDkLhmu .mbr-copy,
.cid-uCIsDkLhmu .social-wrapper {
  color: #ffffff;
  text-align: left;
}