body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', 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.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: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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: #6592e6 !important;
}
.bg-success {
  background-color: #875f9b !important;
}
.bg-info {
  background-color: #e01ef2 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #560a6e !important;
  border-color: #560a6e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #18031f !important;
  border-color: #18031f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #18031f !important;
  border-color: #18031f !important;
}
.btn-info,
.btn-info:active {
  background-color: #e01ef2 !important;
  border-color: #e01ef2 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a10aaf !important;
  border-color: #a10aaf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a10aaf !important;
  border-color: #a10aaf !important;
}
.btn-success,
.btn-success:active {
  background-color: #875f9b !important;
  border-color: #875f9b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #583e65 !important;
  border-color: #583e65 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #583e65 !important;
  border-color: #583e65 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #560a6e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #18031f !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: #560a6e !important;
  border-color: #560a6e !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e01ef2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a10aaf !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: #e01ef2 !important;
  border-color: #e01ef2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #875f9b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #583e65 !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: #875f9b !important;
  border-color: #875f9b !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: #6592e6 !important;
}
.text-secondary {
  color: #560a6e !important;
}
.text-success {
  color: #875f9b !important;
}
.text-info {
  color: #e01ef2 !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: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0d0110 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #50385c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #9409a1 !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: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e01ef2;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.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: #c2adcd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fbdffd;
}
.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*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #560a6e !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sRdBi74HZK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRdBi74HZK nav.navbar {
  position: fixed;
}
.cid-sRdBi74HZK .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-sRdBi74HZK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRdBi74HZK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRdBi74HZK .dropdown-item:hover,
.cid-sRdBi74HZK .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRdBi74HZK .dropdown-item:hover span {
  color: white;
}
.cid-sRdBi74HZK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRdBi74HZK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRdBi74HZK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRdBi74HZK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRdBi74HZK .nav-link {
  position: relative;
}
.cid-sRdBi74HZK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sRdBi74HZK .container {
    flex-wrap: nowrap;
  }
}
.cid-sRdBi74HZK .iconfont-wrapper {
  color: #560a6e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRdBi74HZK .dropdown-menu,
.cid-sRdBi74HZK .navbar.opened {
  background: #eaeaea !important;
}
.cid-sRdBi74HZK .nav-item:focus,
.cid-sRdBi74HZK .nav-link:focus {
  outline: none;
}
.cid-sRdBi74HZK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRdBi74HZK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRdBi74HZK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRdBi74HZK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRdBi74HZK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRdBi74HZK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRdBi74HZK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eaeaea;
}
.cid-sRdBi74HZK .navbar.opened {
  transition: all 0.3s;
}
.cid-sRdBi74HZK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRdBi74HZK .navbar .navbar-logo img {
  width: auto;
}
.cid-sRdBi74HZK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRdBi74HZK .navbar.collapsed {
  justify-content: center;
}
.cid-sRdBi74HZK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRdBi74HZK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRdBi74HZK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-sRdBi74HZK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRdBi74HZK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRdBi74HZK .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-sRdBi74HZK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRdBi74HZK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRdBi74HZK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRdBi74HZK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRdBi74HZK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRdBi74HZK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRdBi74HZK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRdBi74HZK .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-sRdBi74HZK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRdBi74HZK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRdBi74HZK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRdBi74HZK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRdBi74HZK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRdBi74HZK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRdBi74HZK .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRdBi74HZK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRdBi74HZK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRdBi74HZK .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-sRdBi74HZK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRdBi74HZK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRdBi74HZK .dropdown-item.active,
.cid-sRdBi74HZK .dropdown-item:active {
  background-color: transparent;
}
.cid-sRdBi74HZK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRdBi74HZK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRdBi74HZK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRdBi74HZK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eaeaea;
}
.cid-sRdBi74HZK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRdBi74HZK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRdBi74HZK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRdBi74HZK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRdBi74HZK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRdBi74HZK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #560a6e;
}
.cid-sRdBi74HZK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRdBi74HZK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRdBi74HZK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRdBi74HZK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRdBi74HZK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRdBi74HZK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRdBi74HZK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRdBi74HZK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRdBi74HZK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRdBi74HZK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRdBi74HZK .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-sRdBi74HZK .navbar {
    height: 70px;
  }
  .cid-sRdBi74HZK .navbar.opened {
    height: auto;
  }
  .cid-sRdBi74HZK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRdChLNkZj {
  background-image: url("../../../assets/images/bg-1679x950.jpg");
}
.cid-sRdChLNkZj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sRdChLNkZj .mbr-section-title {
  color: #ffffff;
}
.cid-sRdChLNkZj .mbr-text,
.cid-sRdChLNkZj .mbr-section-btn {
  color: #fafafa;
}
.cid-sReitIFq6t {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #232323;
}
@media (min-width: 1500px) {
  .cid-sReitIFq6t .container {
    max-width: 1400px;
  }
}
.cid-sReitIFq6t .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e01ef2;
  margin-bottom: 2rem;
}
.cid-sReitIFq6t .card-wrapper {
  margin-top: 3rem;
}
.cid-sReitIFq6t .row {
  justify-content: center;
}
.cid-sReitIFq6t .mbr-section-title {
  color: #eaeaea;
}
.cid-sReitIFq6t .card-title,
.cid-sReitIFq6t .iconfont-wrapper {
  color: #eaeaea;
}
.cid-sReitIFq6t .card-text {
  color: #fafafa;
}
.cid-sReq2ngw72 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/img-920-1600x1200.jpg");
}
@media (max-width: 991px) {
  .cid-sReq2ngw72 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sReq2ngw72 .row {
  flex-direction: row-reverse;
}
.cid-sReq2ngw72 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sReq2ngw72 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sReq2ngw72 .mbr-text {
  color: #eaeaea;
}
.cid-sReq2ngw72 .mbr-section-title {
  color: #e01ef2;
}
.cid-te3QOqgho5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-te3QOqgho5 .row {
  flex-direction: row-reverse;
}
.cid-te3QOqgho5 .row {
  align-items: center;
}
.cid-te3QOqgho5 .img-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-image: url("../../../assets/images/features21-1140x1120.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .cid-te3QOqgho5 .img-item {
    padding: 0;
  }
}
.cid-te3QOqgho5 .img-item img {
  height: auto;
  width: 250px;
}
@media (max-width: 767px) {
  .cid-te3QOqgho5 .text-col {
    margin-top: 45px;
    order: 5;
  }
}
@media (min-width: 992px) {
  .cid-te3QOqgho5 .text-col {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-te3QOqgho5 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-te3QOqgho5 .text-wrapper {
    padding: 0 75px 0 100px;
    padding: 0 100px 0 75px;
  }
}
.cid-te3QOqgho5 .icon-wrap {
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  .cid-te3QOqgho5 .icon-wrap {
    justify-content: center;
  }
}
.cid-te3QOqgho5 .icon-box {
  background: #e01ef2;
  width: 50px;
  min-width: 50px;
  height: 50px;
  padding: 17px;
  border-radius: 50%;
  margin-bottom: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-te3QOqgho5 .icon-box .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-te3QOqgho5 .mbr-section-title {
  margin-bottom: 36px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-te3QOqgho5 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-te3QOqgho5 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-te3QOqgho5 .mbr-text {
    text-align: center !important;
  }
}
.cid-te3QOqgho5 .item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  width: 100%;
}
.cid-te3QOqgho5 .item-icon-box {
  margin-right: 16px;
}
.cid-te3QOqgho5 .item-icon-box .mbr-iconfont {
  font-size: 18px;
  color: #e01ef2;
}
.cid-te3QOqgho5 .text-box {
  flex-grow: 1;
}
.cid-te3QOqgho5 .btn-container {
  width: 100%;
}
.cid-te3QOqgho5 .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-te3QOqgho5 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-te3QOqgho5 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-te3QOqgho5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-te3QOqgho5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te3QOqgho5 .mbr-section-title,
.cid-te3QOqgho5 .mbr-section-btn {
  color: #ffffff;
}
.cid-te3QOqgho5 .name-text {
  color: #eaeaea;
}
.cid-te3QOqgho5 .icon-text {
  color: #ffffff;
}
.cid-sRUN1PF7cm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #eaeaea;
}
.cid-sRUN1PF7cm .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sRUN1PF7cm .team-card:hover {
  transform: translateY(-10px);
}
.cid-sRUN1PF7cm .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sRUN1PF7cm .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sRUN1PF7cm .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sRUN1PF7cm .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sRUN1PF7cm .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sRUN1PF7cm .social-row {
  text-align: center;
}
.cid-sRUN1PF7cm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sRUN1PF7cm .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sRUN1PF7cm .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sRUN1PF7cm .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sTvt6c8PUG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/img-920-1600x1200.jpg");
}
.cid-sTvt6c8PUG .mbr-section-title {
  color: #eaeaea;
}
.cid-sTvt6c8PUG .mbr-section-subtitle {
  color: #eaeaea;
}
#custom-html-1k {
  background: #560a6e;
}
.cid-sReyYCCUpl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-sRev33qLLr {
  background: #560a6e;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-sRev33qLLr .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-sRev33qLLr .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-sRev33qLLr .image-block:hover:before {
  opacity: 0.4;
}
.cid-sRev33qLLr .image-block:hover .wrap {
  opacity: 1;
}
.cid-sRev33qLLr .image-block:hover img {
  transform: scale(1.05);
}
.cid-sRev33qLLr .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-sRev33qLLr h4 {
  letter-spacing: 2px;
}
.cid-sRev33qLLr figcaption {
  position: relative;
}
.cid-sRev33qLLr figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sRev33qLLr img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-sRev33qLLr .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-sRev33qLLr .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-sRev33qLLr .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-sRev33qLLr .image-block:before {
    opacity: 0.4;
  }
  .cid-sRev33qLLr .image-block .wrap {
    opacity: 1;
  }
}
.cid-sRUG8MRhBU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eaeaea;
}
.cid-sRUG8MRhBU img {
  width: 120px;
  margin: auto;
}
.cid-sRUG8MRhBU .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sRUG8MRhBU .card {
    max-width: 12.5%;
  }
}
.cid-sRemr74bcV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #564f4f;
}
.cid-sRemr74bcV .google-map {
  height: 30rem;
  position: relative;
}
.cid-sRemr74bcV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sRemr74bcV .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-sRemr74bcV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sRemr74bcV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sRelR71Tqy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-sRelR71Tqy .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sRelR71Tqy .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sRelR71Tqy .row {
    text-align: center;
  }
  .cid-sRelR71Tqy .row > div {
    margin: auto;
  }
  .cid-sRelR71Tqy .social-row {
    justify-content: center;
  }
}
.cid-sRelR71Tqy .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sRelR71Tqy .list {
  list-style: none;
  padding-left: 0;
  color: #560a6e;
}
@media (max-width: 991px) {
  .cid-sRelR71Tqy .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sRelR71Tqy .list {
    margin-bottom: 0rem;
  }
}
.cid-sRelR71Tqy .mbr-text {
  color: #875f9b;
}
.cid-sRelR71Tqy .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sRelR71Tqy .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sRelR71Tqy div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sRelR71Tqy .mbr-section-subtitle {
  color: #eaeaea;
}
.cid-sRelR71Tqy H5 {
  color: #eaeaea;
}
.cid-sUGs8zLlWl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sUGs8zLlWl .mbr-text a {
  background-size: 100% 0%;
}
.cid-sUGs8zLlWl .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-sUGs8zLlWl .media-container-row .mbr-text {
  color: #eaeaea;
}
.cid-sRXSJrvHvt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #560a6e;
}
.cid-sRXSJrvHvt img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
  margin-right: 15px;
}
.cid-sRXSJrvHvt .title {
  display: inline;
  font-weight: 700;
  color: #ffffff;
  width: auto;
}
.cid-sRXSJrvHvt .margin {
  margin: 0px;
}
.cid-sRXSJrvHvt .row {
  align-items: center;
  margin-bottom: 39px;
}
.cid-sRXSJrvHvt .mbr-section-btn {
  padding-top: 53px;
  margin: 0px;
}
.cid-sRXSJrvHvt .desc {
  margin-top: 22px;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-sRXSJrvHvt .btn-primary {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.cid-sRXSJrvHvt .btn-primary:hover {
  color: #000000 !important;
  background-color: #e3e3e3 !important;
  border-color: #e3e3e3;
}
.cid-sRXSJrvHvt .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sRXSJrvHvt .mbr-section-title,
.cid-sRXSJrvHvt .margin {
  text-align: center;
  color: #eaeaea;
}
.cid-sUGoJHG7et {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-sUGoJHG7et .mbr-section-title,
.cid-sUGoJHG7et .mbr-section-subtitle {
  text-align: center;
}
.cid-sUGoJHG7et .card {
  border-radius: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e01ef2;
}
@media (min-width: 992px) {
  .cid-sUGoJHG7et .right {
    padding-right: 71px;
  }
  .cid-sUGoJHG7et .left {
    padding-left: 71px;
  }
}
.cid-sUGoJHG7et .card-title {
  font-family: 'Cormorant Garamond';
  letter-spacing: .035em;
  color: #eaeaea;
}
.cid-sUGoJHG7et .mbr-section-subtitle,
.cid-sUGoJHG7et .mbr-text {
  font-family: "EB Garamond";
  color: #9A948D;
}
.cid-sUGoJHG7et .cost {
  font-family: "Josefin Sans";
  text-align: right;
  color: #ffffff;
}
.cid-sUGoJHG7et .mbr-section-title {
  color: #eaeaea;
}
.cid-sUGoJHG7et .mbr-section-subtitle {
  color: #eaeaea;
}
.cid-sUGlcHmAw7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-sUGlcHmAw7 .mbr-section-title,
.cid-sUGlcHmAw7 .mbr-section-subtitle {
  text-align: center;
}
.cid-sUGlcHmAw7 .card {
  border-radius: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e01ef2;
}
@media (min-width: 992px) {
  .cid-sUGlcHmAw7 .right {
    padding-right: 71px;
  }
  .cid-sUGlcHmAw7 .left {
    padding-left: 71px;
  }
}
.cid-sUGlcHmAw7 .card-title {
  font-family: 'Cormorant Garamond';
  letter-spacing: .035em;
  color: #eaeaea;
}
.cid-sUGlcHmAw7 .mbr-section-subtitle,
.cid-sUGlcHmAw7 .mbr-text {
  font-family: "EB Garamond";
  color: #9A948D;
}
.cid-sUGlcHmAw7 .cost {
  font-family: "Josefin Sans";
  text-align: right;
  color: #ffffff;
}
.cid-sUGlcHmAw7 .mbr-section-title {
  color: #eaeaea;
}
.cid-sUGlcHmAw7 .mbr-section-subtitle {
  color: #eaeaea;
}
.cid-sT7KK5LgT6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-sT7KK5LgT6 .mbr-section-title,
.cid-sT7KK5LgT6 .mbr-section-subtitle {
  text-align: center;
}
.cid-sT7KK5LgT6 .card {
  border-radius: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e01ef2;
}
@media (min-width: 992px) {
  .cid-sT7KK5LgT6 .right {
    padding-right: 71px;
  }
  .cid-sT7KK5LgT6 .left {
    padding-left: 71px;
  }
}
.cid-sT7KK5LgT6 .card-title {
  font-family: 'Cormorant Garamond';
  letter-spacing: .035em;
  color: #eaeaea;
}
.cid-sT7KK5LgT6 .mbr-section-subtitle,
.cid-sT7KK5LgT6 .mbr-text {
  font-family: "EB Garamond";
  color: #9A948D;
}
.cid-sT7KK5LgT6 .cost {
  font-family: "Josefin Sans";
  text-align: right;
  color: #ffffff;
}
.cid-sT7KK5LgT6 .mbr-section-title {
  color: #eaeaea;
}
.cid-tdNUJNl7W8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-tdNUJNl7W8 .mbr-section-title,
.cid-tdNUJNl7W8 .mbr-section-subtitle {
  text-align: center;
}
.cid-tdNUJNl7W8 .card {
  border-radius: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e01ef2;
}
@media (min-width: 992px) {
  .cid-tdNUJNl7W8 .right {
    padding-right: 71px;
  }
  .cid-tdNUJNl7W8 .left {
    padding-left: 71px;
  }
}
.cid-tdNUJNl7W8 .card-title {
  font-family: 'Cormorant Garamond';
  letter-spacing: .035em;
  color: #eaeaea;
}
.cid-tdNUJNl7W8 .mbr-section-subtitle,
.cid-tdNUJNl7W8 .mbr-text {
  font-family: "EB Garamond";
  color: #9A948D;
}
.cid-tdNUJNl7W8 .cost {
  font-family: "Josefin Sans";
  text-align: right;
  color: #ffffff;
}
.cid-tdNUJNl7W8 .mbr-section-title {
  color: #eaeaea;
}
.cid-sRXSwmGFpM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRXSwmGFpM nav.navbar {
  position: fixed;
}
.cid-sRXSwmGFpM .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-sRXSwmGFpM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRXSwmGFpM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRXSwmGFpM .dropdown-item:hover,
.cid-sRXSwmGFpM .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRXSwmGFpM .dropdown-item:hover span {
  color: white;
}
.cid-sRXSwmGFpM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRXSwmGFpM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRXSwmGFpM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRXSwmGFpM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRXSwmGFpM .nav-link {
  position: relative;
}
.cid-sRXSwmGFpM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sRXSwmGFpM .container {
    flex-wrap: nowrap;
  }
}
.cid-sRXSwmGFpM .iconfont-wrapper {
  color: #560a6e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRXSwmGFpM .dropdown-menu,
.cid-sRXSwmGFpM .navbar.opened {
  background: #eaeaea !important;
}
.cid-sRXSwmGFpM .nav-item:focus,
.cid-sRXSwmGFpM .nav-link:focus {
  outline: none;
}
.cid-sRXSwmGFpM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRXSwmGFpM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRXSwmGFpM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRXSwmGFpM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRXSwmGFpM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRXSwmGFpM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRXSwmGFpM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eaeaea;
}
.cid-sRXSwmGFpM .navbar.opened {
  transition: all 0.3s;
}
.cid-sRXSwmGFpM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRXSwmGFpM .navbar .navbar-logo img {
  width: auto;
}
.cid-sRXSwmGFpM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRXSwmGFpM .navbar.collapsed {
  justify-content: center;
}
.cid-sRXSwmGFpM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRXSwmGFpM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRXSwmGFpM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-sRXSwmGFpM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRXSwmGFpM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRXSwmGFpM .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-sRXSwmGFpM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRXSwmGFpM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRXSwmGFpM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRXSwmGFpM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRXSwmGFpM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRXSwmGFpM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRXSwmGFpM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRXSwmGFpM .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-sRXSwmGFpM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRXSwmGFpM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRXSwmGFpM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRXSwmGFpM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRXSwmGFpM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRXSwmGFpM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRXSwmGFpM .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRXSwmGFpM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRXSwmGFpM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRXSwmGFpM .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-sRXSwmGFpM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRXSwmGFpM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRXSwmGFpM .dropdown-item.active,
.cid-sRXSwmGFpM .dropdown-item:active {
  background-color: transparent;
}
.cid-sRXSwmGFpM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRXSwmGFpM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRXSwmGFpM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRXSwmGFpM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eaeaea;
}
.cid-sRXSwmGFpM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRXSwmGFpM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRXSwmGFpM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRXSwmGFpM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRXSwmGFpM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRXSwmGFpM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #560a6e;
}
.cid-sRXSwmGFpM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRXSwmGFpM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRXSwmGFpM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRXSwmGFpM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRXSwmGFpM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRXSwmGFpM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRXSwmGFpM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRXSwmGFpM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRXSwmGFpM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRXSwmGFpM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRXSwmGFpM .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-sRXSwmGFpM .navbar {
    height: 70px;
  }
  .cid-sRXSwmGFpM .navbar.opened {
    height: auto;
  }
  .cid-sRXSwmGFpM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRXSwoML9m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #560a6e;
}
.cid-t6rC6olNYj {
  background: #560a6e;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-t6rC6olNYj .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-t6rC6olNYj .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-t6rC6olNYj .image-block:hover:before {
  opacity: 0.4;
}
.cid-t6rC6olNYj .image-block:hover .wrap {
  opacity: 1;
}
.cid-t6rC6olNYj .image-block:hover img {
  transform: scale(1.05);
}
.cid-t6rC6olNYj .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-t6rC6olNYj h4 {
  letter-spacing: 2px;
}
.cid-t6rC6olNYj figcaption {
  position: relative;
}
.cid-t6rC6olNYj figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6rC6olNYj img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-t6rC6olNYj .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-t6rC6olNYj .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-t6rC6olNYj .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-t6rC6olNYj .image-block:before {
    opacity: 0.4;
  }
  .cid-t6rC6olNYj .image-block .wrap {
    opacity: 1;
  }
}
.cid-sRXSwpmxyC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eaeaea;
}
.cid-sRXSwpmxyC img {
  width: 120px;
  margin: auto;
}
.cid-sRXSwpmxyC .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sRXSwpmxyC .card {
    max-width: 12.5%;
  }
}
.cid-sRXSwpEPGB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #564f4f;
}
.cid-sRXSwpEPGB .google-map {
  height: 30rem;
  position: relative;
}
.cid-sRXSwpEPGB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sRXSwpEPGB .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-sRXSwpEPGB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sRXSwpEPGB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sRXSwpYM5d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-sRXSwpYM5d .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sRXSwpYM5d .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sRXSwpYM5d .row {
    text-align: center;
  }
  .cid-sRXSwpYM5d .row > div {
    margin: auto;
  }
  .cid-sRXSwpYM5d .social-row {
    justify-content: center;
  }
}
.cid-sRXSwpYM5d .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sRXSwpYM5d .list {
  list-style: none;
  padding-left: 0;
  color: #560a6e;
}
@media (max-width: 991px) {
  .cid-sRXSwpYM5d .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sRXSwpYM5d .list {
    margin-bottom: 0rem;
  }
}
.cid-sRXSwpYM5d .mbr-text {
  color: #875f9b;
}
.cid-sRXSwpYM5d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sRXSwpYM5d .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sRXSwpYM5d div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sRXSwpYM5d .mbr-section-subtitle {
  color: #eaeaea;
}
.cid-sRXSwpYM5d H5 {
  color: #eaeaea;
}
.cid-sUGs8zLlWl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sUGs8zLlWl .mbr-text a {
  background-size: 100% 0%;
}
.cid-sUGs8zLlWl .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-sUGs8zLlWl .media-container-row .mbr-text {
  color: #eaeaea;
}
.cid-sRXYpDJccM {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #560a6e;
}
.cid-sRXYpDJccM img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
  margin-right: 15px;
}
.cid-sRXYpDJccM .title {
  display: inline;
  font-weight: 700;
  color: #ffffff;
  width: auto;
}
.cid-sRXYpDJccM .margin {
  margin: 0px;
}
.cid-sRXYpDJccM .row {
  align-items: center;
  margin-bottom: 39px;
}
.cid-sRXYpDJccM .mbr-section-btn {
  padding-top: 53px;
  margin: 0px;
}
.cid-sRXYpDJccM .desc {
  margin-top: 22px;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-sRXYpDJccM .btn-primary {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.cid-sRXYpDJccM .btn-primary:hover {
  color: #000000 !important;
  background-color: #e3e3e3 !important;
  border-color: #e3e3e3;
}
.cid-sRXYpDJccM .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sRXYpDJccM .mbr-section-title,
.cid-sRXYpDJccM .margin {
  text-align: center;
  color: #eaeaea;
}
.cid-sRXYpEHfM1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRXYpEHfM1 nav.navbar {
  position: fixed;
}
.cid-sRXYpEHfM1 .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-sRXYpEHfM1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRXYpEHfM1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRXYpEHfM1 .dropdown-item:hover,
.cid-sRXYpEHfM1 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRXYpEHfM1 .dropdown-item:hover span {
  color: white;
}
.cid-sRXYpEHfM1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRXYpEHfM1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRXYpEHfM1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRXYpEHfM1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRXYpEHfM1 .nav-link {
  position: relative;
}
.cid-sRXYpEHfM1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sRXYpEHfM1 .container {
    flex-wrap: nowrap;
  }
}
.cid-sRXYpEHfM1 .iconfont-wrapper {
  color: #560a6e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRXYpEHfM1 .dropdown-menu,
.cid-sRXYpEHfM1 .navbar.opened {
  background: #eaeaea !important;
}
.cid-sRXYpEHfM1 .nav-item:focus,
.cid-sRXYpEHfM1 .nav-link:focus {
  outline: none;
}
.cid-sRXYpEHfM1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRXYpEHfM1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRXYpEHfM1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRXYpEHfM1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRXYpEHfM1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRXYpEHfM1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRXYpEHfM1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eaeaea;
}
.cid-sRXYpEHfM1 .navbar.opened {
  transition: all 0.3s;
}
.cid-sRXYpEHfM1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRXYpEHfM1 .navbar .navbar-logo img {
  width: auto;
}
.cid-sRXYpEHfM1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRXYpEHfM1 .navbar.collapsed {
  justify-content: center;
}
.cid-sRXYpEHfM1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRXYpEHfM1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRXYpEHfM1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-sRXYpEHfM1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRXYpEHfM1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRXYpEHfM1 .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-sRXYpEHfM1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRXYpEHfM1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRXYpEHfM1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRXYpEHfM1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRXYpEHfM1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRXYpEHfM1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRXYpEHfM1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRXYpEHfM1 .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-sRXYpEHfM1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRXYpEHfM1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRXYpEHfM1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRXYpEHfM1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRXYpEHfM1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRXYpEHfM1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRXYpEHfM1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRXYpEHfM1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRXYpEHfM1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRXYpEHfM1 .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-sRXYpEHfM1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRXYpEHfM1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRXYpEHfM1 .dropdown-item.active,
.cid-sRXYpEHfM1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sRXYpEHfM1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRXYpEHfM1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRXYpEHfM1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRXYpEHfM1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eaeaea;
}
.cid-sRXYpEHfM1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRXYpEHfM1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRXYpEHfM1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRXYpEHfM1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRXYpEHfM1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRXYpEHfM1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #560a6e;
}
.cid-sRXYpEHfM1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRXYpEHfM1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRXYpEHfM1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRXYpEHfM1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRXYpEHfM1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRXYpEHfM1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRXYpEHfM1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRXYpEHfM1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRXYpEHfM1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRXYpEHfM1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRXYpEHfM1 .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-sRXYpEHfM1 .navbar {
    height: 70px;
  }
  .cid-sRXYpEHfM1 .navbar.opened {
    height: auto;
  }
  .cid-sRXYpEHfM1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRXYpF0HOn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-t6rCbQ0rhr {
  background: #560a6e;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-t6rCbQ0rhr .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-t6rCbQ0rhr .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-t6rCbQ0rhr .image-block:hover:before {
  opacity: 0.4;
}
.cid-t6rCbQ0rhr .image-block:hover .wrap {
  opacity: 1;
}
.cid-t6rCbQ0rhr .image-block:hover img {
  transform: scale(1.05);
}
.cid-t6rCbQ0rhr .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-t6rCbQ0rhr h4 {
  letter-spacing: 2px;
}
.cid-t6rCbQ0rhr figcaption {
  position: relative;
}
.cid-t6rCbQ0rhr figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6rCbQ0rhr img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-t6rCbQ0rhr .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-t6rCbQ0rhr .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-t6rCbQ0rhr .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-t6rCbQ0rhr .image-block:before {
    opacity: 0.4;
  }
  .cid-t6rCbQ0rhr .image-block .wrap {
    opacity: 1;
  }
}
.cid-sRXYpFxtsX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eaeaea;
}
.cid-sRXYpFxtsX img {
  width: 120px;
  margin: auto;
}
.cid-sRXYpFxtsX .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sRXYpFxtsX .card {
    max-width: 12.5%;
  }
}
.cid-sRXYpFNcaZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #564f4f;
}
.cid-sRXYpFNcaZ .google-map {
  height: 30rem;
  position: relative;
}
.cid-sRXYpFNcaZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sRXYpFNcaZ .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-sRXYpFNcaZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sRXYpFNcaZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sRXYpG7Tqn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-sRXYpG7Tqn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sRXYpG7Tqn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sRXYpG7Tqn .row {
    text-align: center;
  }
  .cid-sRXYpG7Tqn .row > div {
    margin: auto;
  }
  .cid-sRXYpG7Tqn .social-row {
    justify-content: center;
  }
}
.cid-sRXYpG7Tqn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sRXYpG7Tqn .list {
  list-style: none;
  padding-left: 0;
  color: #560a6e;
}
@media (max-width: 991px) {
  .cid-sRXYpG7Tqn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sRXYpG7Tqn .list {
    margin-bottom: 0rem;
  }
}
.cid-sRXYpG7Tqn .mbr-text {
  color: #875f9b;
}
.cid-sRXYpG7Tqn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sRXYpG7Tqn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sRXYpG7Tqn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sRXYpG7Tqn .mbr-section-subtitle {
  color: #eaeaea;
}
.cid-sRXYpG7Tqn H5 {
  color: #eaeaea;
}
.cid-sUGs8zLlWl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sUGs8zLlWl .mbr-text a {
  background-size: 100% 0%;
}
.cid-sUGs8zLlWl .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-sUGs8zLlWl .media-container-row .mbr-text {
  color: #eaeaea;
}
.cid-sRXYykoZg4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #560a6e;
}
.cid-sRXYykoZg4 img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
  margin-right: 15px;
}
.cid-sRXYykoZg4 .title {
  display: inline;
  font-weight: 700;
  color: #ffffff;
  width: auto;
}
.cid-sRXYykoZg4 .margin {
  margin: 0px;
}
.cid-sRXYykoZg4 .row {
  align-items: center;
  margin-bottom: 39px;
}
.cid-sRXYykoZg4 .mbr-section-btn {
  padding-top: 53px;
  margin: 0px;
}
.cid-sRXYykoZg4 .desc {
  margin-top: 22px;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-sRXYykoZg4 .btn-primary {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.cid-sRXYykoZg4 .btn-primary:hover {
  color: #000000 !important;
  background-color: #e3e3e3 !important;
  border-color: #e3e3e3;
}
.cid-sRXYykoZg4 .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sRXYykoZg4 .mbr-section-title,
.cid-sRXYykoZg4 .margin {
  text-align: center;
  color: #eaeaea;
}
#custom-html-1a {
  background: #eaeaea;
}
.cid-sRXYyll4bY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRXYyll4bY nav.navbar {
  position: fixed;
}
.cid-sRXYyll4bY .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-sRXYyll4bY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRXYyll4bY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRXYyll4bY .dropdown-item:hover,
.cid-sRXYyll4bY .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRXYyll4bY .dropdown-item:hover span {
  color: white;
}
.cid-sRXYyll4bY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRXYyll4bY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRXYyll4bY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRXYyll4bY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRXYyll4bY .nav-link {
  position: relative;
}
.cid-sRXYyll4bY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sRXYyll4bY .container {
    flex-wrap: nowrap;
  }
}
.cid-sRXYyll4bY .iconfont-wrapper {
  color: #560a6e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRXYyll4bY .dropdown-menu,
.cid-sRXYyll4bY .navbar.opened {
  background: #eaeaea !important;
}
.cid-sRXYyll4bY .nav-item:focus,
.cid-sRXYyll4bY .nav-link:focus {
  outline: none;
}
.cid-sRXYyll4bY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRXYyll4bY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRXYyll4bY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRXYyll4bY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRXYyll4bY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRXYyll4bY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRXYyll4bY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eaeaea;
}
.cid-sRXYyll4bY .navbar.opened {
  transition: all 0.3s;
}
.cid-sRXYyll4bY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRXYyll4bY .navbar .navbar-logo img {
  width: auto;
}
.cid-sRXYyll4bY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRXYyll4bY .navbar.collapsed {
  justify-content: center;
}
.cid-sRXYyll4bY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRXYyll4bY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRXYyll4bY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-sRXYyll4bY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRXYyll4bY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRXYyll4bY .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-sRXYyll4bY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRXYyll4bY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRXYyll4bY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRXYyll4bY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRXYyll4bY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRXYyll4bY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRXYyll4bY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRXYyll4bY .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-sRXYyll4bY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRXYyll4bY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRXYyll4bY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRXYyll4bY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRXYyll4bY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRXYyll4bY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRXYyll4bY .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRXYyll4bY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRXYyll4bY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRXYyll4bY .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-sRXYyll4bY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRXYyll4bY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRXYyll4bY .dropdown-item.active,
.cid-sRXYyll4bY .dropdown-item:active {
  background-color: transparent;
}
.cid-sRXYyll4bY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRXYyll4bY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRXYyll4bY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRXYyll4bY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eaeaea;
}
.cid-sRXYyll4bY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRXYyll4bY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRXYyll4bY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRXYyll4bY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRXYyll4bY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRXYyll4bY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #560a6e;
}
.cid-sRXYyll4bY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRXYyll4bY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRXYyll4bY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRXYyll4bY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRXYyll4bY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRXYyll4bY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRXYyll4bY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRXYyll4bY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRXYyll4bY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRXYyll4bY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRXYyll4bY .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-sRXYyll4bY .navbar {
    height: 70px;
  }
  .cid-sRXYyll4bY .navbar.opened {
    height: auto;
  }
  .cid-sRXYyll4bY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRXYylD5O0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-t6rCgltojm {
  background: #560a6e;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-t6rCgltojm .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-t6rCgltojm .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-t6rCgltojm .image-block:hover:before {
  opacity: 0.4;
}
.cid-t6rCgltojm .image-block:hover .wrap {
  opacity: 1;
}
.cid-t6rCgltojm .image-block:hover img {
  transform: scale(1.05);
}
.cid-t6rCgltojm .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-t6rCgltojm h4 {
  letter-spacing: 2px;
}
.cid-t6rCgltojm figcaption {
  position: relative;
}
.cid-t6rCgltojm figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6rCgltojm img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-t6rCgltojm .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-t6rCgltojm .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-t6rCgltojm .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-t6rCgltojm .image-block:before {
    opacity: 0.4;
  }
  .cid-t6rCgltojm .image-block .wrap {
    opacity: 1;
  }
}
.cid-sRXYym8HE4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eaeaea;
}
.cid-sRXYym8HE4 img {
  width: 120px;
  margin: auto;
}
.cid-sRXYym8HE4 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sRXYym8HE4 .card {
    max-width: 12.5%;
  }
}
.cid-sRXYyms2ZX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #564f4f;
}
.cid-sRXYyms2ZX .google-map {
  height: 30rem;
  position: relative;
}
.cid-sRXYyms2ZX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sRXYyms2ZX .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-sRXYyms2ZX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sRXYyms2ZX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sRXYymMZTk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-sRXYymMZTk .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sRXYymMZTk .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sRXYymMZTk .row {
    text-align: center;
  }
  .cid-sRXYymMZTk .row > div {
    margin: auto;
  }
  .cid-sRXYymMZTk .social-row {
    justify-content: center;
  }
}
.cid-sRXYymMZTk .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sRXYymMZTk .list {
  list-style: none;
  padding-left: 0;
  color: #560a6e;
}
@media (max-width: 991px) {
  .cid-sRXYymMZTk .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sRXYymMZTk .list {
    margin-bottom: 0rem;
  }
}
.cid-sRXYymMZTk .mbr-text {
  color: #875f9b;
}
.cid-sRXYymMZTk .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sRXYymMZTk .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sRXYymMZTk div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sRXYymMZTk .mbr-section-subtitle {
  color: #eaeaea;
}
.cid-sRXYymMZTk H5 {
  color: #eaeaea;
}
.cid-sUGs8zLlWl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sUGs8zLlWl .mbr-text a {
  background-size: 100% 0%;
}
.cid-sUGs8zLlWl .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-sUGs8zLlWl .media-container-row .mbr-text {
  color: #eaeaea;
}
