body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Roboto-Thin';
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.67px;
  font-weight: 400;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Roboto-Thin';
  font-size: 2.3rem;
  line-height: 1.05;
  letter-spacing: -0.58px;
  font-weight: 400;
}
.display-2 > .mbr-iconfont {
  font-size: 2.875rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.68;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Roboto-Thin';
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.38px;
  font-weight: 400;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  font-weight: 400;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.84rem;
    font-size: calc( 1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
@keyframes scale-in {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@keyframes scale-out {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  to {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.btn {
  padding: 1rem 2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.75rem 1rem;
  border-radius: 0;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #facfc2 !important;
}
.btn-secondary {
  background-color: #ee165c !important;
}
.bg-success {
  background-color: #7f7f7f !important;
}
.bg-info {
  background-color: #fac1c2 !important;
}
.bg-warning {
  background-color: #fac1c2 !important;
}
.bg-danger {
  background-color: #c79364 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #facfc2 !important;
  border-color: #facfc2 !important;
  color: #210a03 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background: #c79364 !important;
  color: #ffffff !important;
  border-color: #c79364 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #210a03 !important;
  background-color: #c79364 !important;
  border-color: #c79364 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ee165c !important;
  border-color: #ee165c !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background: #fac1c2 !important;
  color: #200303 !important;
  border-color: #fac1c2 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fac1c2 !important;
  border-color: #fac1c2 !important;
}
.btn-info,
.btn-info:active {
  background-color: #facfc2 !important;
  border-color: #facfc2 !important;
  color: #210a03 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background: #ee165c !important;
  color: #ffffff !important;
  border-color: #ee165c !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #210a03 !important;
  background-color: #ee165c !important;
  border-color: #ee165c !important;
}
.btn-success,
.btn-success:active {
  background-color: #7f7f7f !important;
  border-color: #7f7f7f !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background: #facfc2 !important;
  color: #210a03 !important;
  border-color: #facfc2 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #facfc2 !important;
  border-color: #facfc2 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fac1c2 !important;
  border-color: #fac1c2 !important;
  color: #200303 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background: #7f7f7f !important;
  color: #ffffff !important;
  border-color: #7f7f7f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #200303 !important;
  background-color: #7f7f7f !important;
  border-color: #7f7f7f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c79364 !important;
  border-color: #c79364 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background: #7f7f7f !important;
  color: #ffffff !important;
  border-color: #7f7f7f !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #7f7f7f !important;
  border-color: #7f7f7f !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background: #ffffff !important;
  color: #333333 !important;
  border-color: #ffffff !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #facfc2;
  color: #facfc2;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #af340e !important;
  background-color: #facfc2 !important;
  border-color: #facfc2 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #af340e !important;
  background-color: #facfc2 !important;
  border-color: #facfc2 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ee165c;
  color: #ee165c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #ee165c !important;
  border-color: #ee165c !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ee165c !important;
  border-color: #ee165c !important;
}
.btn-info-outline {
  color: #facfc2 !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-info-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #facfc2;
}
.btn-info-outline:hover {
  background-color: transparent !important;
  color: #fac1c2 !important;
}
.btn-info-outline:active {
  outline: none;
}
.btn-info-outline:hover:after {
  background-color: #fac1c2;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #7f7f7f;
  color: #7f7f7f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #7f7f7f !important;
  border-color: #7f7f7f !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7f7f7f !important;
  border-color: #7f7f7f !important;
}
.btn-warning-outline {
  color: #fac1c2 !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-warning-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #fac1c2;
}
.btn-warning-outline:hover {
  background-color: transparent !important;
  color: #c79364 !important;
}
.btn-warning-outline:active {
  outline: none;
}
.btn-warning-outline:hover:after {
  background-color: #c79364;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-danger-outline {
  color: #facfc2 !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-danger-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #facfc2;
}
.btn-danger-outline:hover {
  background-color: transparent !important;
  color: #ee165c !important;
}
.btn-danger-outline:active {
  outline: none;
}
.btn-danger-outline:hover:after {
  background-color: #ee165c;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #facfc2 !important;
}
.text-secondary {
  color: #ee165c !important;
}
.text-success {
  color: #7f7f7f !important;
}
.text-info {
  color: #fac1c2 !important;
}
.text-warning {
  color: #fac1c2 !important;
}
.text-danger {
  color: #c79364 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #facfc2 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ee165c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #7f7f7f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #fac1c2 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #fac1c2 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #c79364 !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: #232323 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  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]):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: #facfc2;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fac1c2;
}
.alert-warning {
  background-color: #fac1c2;
}
.alert-danger {
  background-color: #c79364;
}
.mbr-gallery-filter li.active .btn {
  background-color: #facfc2;
  border-color: #facfc2;
  color: #c63b10;
}
a,
a:hover {
  color: #facfc2;
}
.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: #bfbfbf;
}
.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: #e9d4c2;
}
/* Scroll to top button*/
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.68;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.68;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #facfc2;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #facfc2;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #facfc2;
}
.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: #facfc2;
  border-bottom-color: #facfc2;
}
.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: #facfc2 !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: #ee165c !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='%23facfc2' %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;
}
.cid-tP0vL9AmDe {
  z-index: 1000;
  width: 100%;
}
.cid-tP0vL9AmDe nav.navbar {
  position: fixed;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tP0vL9AmDe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tP0vL9AmDe .dropdown-item:hover,
.cid-tP0vL9AmDe .dropdown-item:focus {
  background: #facfc2 !important;
  color: white !important;
}
.cid-tP0vL9AmDe .dropdown-item:hover span {
  color: white;
}
.cid-tP0vL9AmDe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tP0vL9AmDe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tP0vL9AmDe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tP0vL9AmDe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tP0vL9AmDe .nav-link {
  position: relative;
}
.cid-tP0vL9AmDe .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tP0vL9AmDe .container {
    flex-wrap: nowrap;
  }
}
.cid-tP0vL9AmDe .iconfont-wrapper {
  color: #789682 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tP0vL9AmDe .dropdown-menu,
.cid-tP0vL9AmDe .navbar.opened {
  background: #ffffff !important;
}
.cid-tP0vL9AmDe .nav-item:focus,
.cid-tP0vL9AmDe .nav-link:focus {
  outline: none;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tP0vL9AmDe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tP0vL9AmDe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tP0vL9AmDe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}
.cid-tP0vL9AmDe .navbar.opened {
  transition: all 0.3s;
}
.cid-tP0vL9AmDe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tP0vL9AmDe .navbar .navbar-logo img {
  width: auto;
}
.cid-tP0vL9AmDe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tP0vL9AmDe .navbar.collapsed {
  justify-content: center;
}
.cid-tP0vL9AmDe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tP0vL9AmDe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tP0vL9AmDe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-tP0vL9AmDe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tP0vL9AmDe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tP0vL9AmDe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tP0vL9AmDe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tP0vL9AmDe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tP0vL9AmDe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tP0vL9AmDe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tP0vL9AmDe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tP0vL9AmDe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tP0vL9AmDe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tP0vL9AmDe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tP0vL9AmDe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tP0vL9AmDe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tP0vL9AmDe .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tP0vL9AmDe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tP0vL9AmDe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tP0vL9AmDe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tP0vL9AmDe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tP0vL9AmDe .dropdown-item.active,
.cid-tP0vL9AmDe .dropdown-item:active {
  background-color: transparent;
}
.cid-tP0vL9AmDe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tP0vL9AmDe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tP0vL9AmDe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tP0vL9AmDe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tP0vL9AmDe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tP0vL9AmDe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tP0vL9AmDe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tP0vL9AmDe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tP0vL9AmDe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tP0vL9AmDe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar {
    height: 70px;
  }
  .cid-tP0vL9AmDe .navbar.opened {
    height: auto;
  }
  .cid-tP0vL9AmDe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEZ7VGf456 {
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #eeeeee;
}
.cid-uEZ7VGf456 .row {
  flex-direction: row-reverse;
}
.cid-uEZ7VGf456 img {
  transition: all 0.3s;
  object-fit: cover;
}
.cid-uEZ7VGf456 .image-wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .cid-uEZ7VGf456 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uEZ7VGf456 .image-wrapper:hover img {
  transform: scale(1.15) rotate(0deg);
}
.cid-uEZ7VGf456 .image-wrapper:hover .img-link {
  background: #facfc2;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uEZ7VGf456 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uEZ7VGf456 .img-link {
  background: #000000;
  transition: all 0.3s;
  padding: 2rem;
  position: absolute;
  bottom: -1rem;
  cursor: pointer;
  left: 0;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uEZ7VGf456 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uEZ7VGf456 p {
    max-width: 700px;
  }
}
.cid-uEZ7VGf456 .mbr-text,
.cid-uEZ7VGf456 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uEZ7VGf456 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uFEjt3E9YM {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  background-image: url("../../../assets/images/shutterstock-1935737098-2000x1333.jpg");
  position: relative;
  overflow: hidden;
}
.cid-uFEjt3E9YM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFEjt3E9YM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFEjt3E9YM .bg-frame {
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  opacity: 0.7;
  width: 20vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #e1201d;
  box-shadow: 0 0 40px #e1201d;
  filter: blur(130px);
}
@media (max-width: 767px) {
  .cid-uFEjt3E9YM .bg-frame {
    width: 40vw;
  }
}
@media (min-width: 1600px) {
  .cid-uFEjt3E9YM.mbr-fullscreen {
    align-items: flex-end !important;
  }
}
.cid-uFEjt3E9YM .row {
  position: relative;
  z-index: 3;
}
.cid-uFEjt3E9YM .mbr-section-title {
  color: #ffffff;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .cid-uFEjt3E9YM .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFEjt3E9YM .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uFEjt3E9YM .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uFEjt3E9YM .mbr-text {
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-uFEjt3E9YM .mbr-section-btn {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .cid-uFEjt3E9YM .mbr-section-btn {
    margin-top: 90px;
  }
}
@media (max-width: 767px) {
  .cid-uFEjt3E9YM .mbr-section-btn {
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .cid-uFEjt3E9YM .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-uFBHzqlXQ4 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFBHzqlXQ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFBHzqlXQ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFBHzqlXQ4 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uFBHzqlXQ4 .mbr-section-subtitle {
  text-align: left;
  margin-bottom: 30px;
  border: 0px solid;
  padding: 20px;
}
.cid-uFDNlQRcAp {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uFDNlQRcAp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFDNlQRcAp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFDNlQRcAp .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uFDNlQRcAp .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uFDNlQRcAp .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFDNlQRcAp .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uFDNlQRcAp .container {
    padding: 0 24px;
  }
}
.cid-uFDNlQRcAp .row {
  justify-content: center;
}
.cid-uFDNlQRcAp .title-wrapper {
  padding-right: 48px;
}
@media (max-width: 1440px) {
  .cid-uFDNlQRcAp .title-wrapper {
    padding-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uFDNlQRcAp .title-wrapper {
    padding-right: 0;
  }
}
.cid-uFDNlQRcAp .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uFDNlQRcAp .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFDNlQRcAp .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFDNlQRcAp .text-wrapper {
  padding-left: 48px;
}
@media (max-width: 1440px) {
  .cid-uFDNlQRcAp .text-wrapper {
    padding-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uFDNlQRcAp .text-wrapper {
    padding-left: 0;
  }
}
.cid-uFDNlQRcAp .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFDNlQRcAp .text-wrapper .mbr-text:first-child {
  margin-bottom: 16px;
}
.cid-uFDNlQRcAp .text-wrapper .mbr-text:nth-child(2) {
  opacity: .5;
}
.cid-uFDNlQRcAp .mbr-section-title {
  color: #000000;
}
.cid-uFDNlQRcAp .mbr-desc {
  color: #18212d;
}
.cid-uFDNlQRcAp .mbr-text {
  color: #18212d;
}
.cid-uFDNlQRcAp .mbr-desc,
.cid-uFDNlQRcAp .desc-wrapper {
  color: #000000;
  text-align: left;
}
.cid-tP142RtvXj {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #eeeeee;
}
.cid-tP142RtvXj H1 {
  color: #000000;
}
.cid-tP142RtvXj .mbr-text,
.cid-tP142RtvXj .mbr-section-btn {
  color: #5c6873;
  text-align: center;
}
.cid-tP142RtvXj .mbr-subtitle {
  color: #000000;
}
.cid-tP142RtvXj .mbr-text {
  margin-top: 1.5rem;
}
.cid-tP142RtvXj .mbr-section-btn {
  margin-top: 2rem;
}
.cid-tP142RtvXj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP142RtvXj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP0YeDJ6Eo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-tP0YeDJ6Eo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP0YeDJ6Eo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP0YeDJ6Eo .container-fluid {
  padding: 0 110px;
}
@media (max-width: 768px) {
  .cid-tP0YeDJ6Eo .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tP0YeDJ6Eo .container {
    padding: 0 26px;
  }
}
.cid-tP0YeDJ6Eo .row {
  justify-content: center;
}
.cid-tP0YeDJ6Eo .item {
  padding: 0 25px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tP0YeDJ6Eo .item {
    padding: 0 12px;
  }
}
.cid-tP0YeDJ6Eo .item .item-wrapper .item-img img {
  height: 260px;
  object-fit: cover;
  margin-bottom: 30px;
  border: 1px solid #000000;
  padding: 20px;
}
.cid-tP0YeDJ6Eo .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-tP0YeDJ6Eo .item .item-wrapper .item-content .mbr-desc {
  margin-bottom: 16px;
}
.cid-tP0YeDJ6Eo .item-title {
  color: #000000;
  text-align: center;
}
.cid-tP0YeDJ6Eo .mbr-desc {
  color: #5c6873;
  text-align: center;
}
.cid-uFElpwOvA1 {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  background-image: url("../../../assets/images/shutterstock-2112326858-2000x1333.jpg");
  position: relative;
  overflow: hidden;
}
.cid-uFElpwOvA1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFElpwOvA1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFElpwOvA1 .bg-frame {
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  opacity: 0.7;
  width: 20vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #e1201d;
  box-shadow: 0 0 40px #e1201d;
  filter: blur(130px);
}
@media (max-width: 767px) {
  .cid-uFElpwOvA1 .bg-frame {
    width: 40vw;
  }
}
@media (min-width: 1600px) {
  .cid-uFElpwOvA1.mbr-fullscreen {
    align-items: flex-end !important;
  }
}
.cid-uFElpwOvA1 .row {
  position: relative;
  z-index: 3;
}
.cid-uFElpwOvA1 .mbr-section-title {
  color: #ffffff;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .cid-uFElpwOvA1 .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFElpwOvA1 .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uFElpwOvA1 .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uFElpwOvA1 .mbr-text {
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-uFElpwOvA1 .mbr-section-btn {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .cid-uFElpwOvA1 .mbr-section-btn {
    margin-top: 90px;
  }
}
@media (max-width: 767px) {
  .cid-uFElpwOvA1 .mbr-section-btn {
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .cid-uFElpwOvA1 .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-uEZ8xv16UI {
  background-color: #fafafa;
}
.cid-uEZ8xv16UI .row {
  flex-direction: row-reverse;
}
.cid-uEZ8xv16UI img {
  transition: all 0.3s;
  object-fit: cover;
}
.cid-uEZ8xv16UI .image-wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .cid-uEZ8xv16UI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uEZ8xv16UI .image-wrapper:hover img {
  transform: scale(1.15) rotate(0deg);
}
.cid-uEZ8xv16UI .image-wrapper:hover .img-link {
  background: #facfc2;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uEZ8xv16UI .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uEZ8xv16UI .img-link {
  background: #000000;
  transition: all 0.3s;
  padding: 2rem;
  position: absolute;
  bottom: -1rem;
  cursor: pointer;
  left: 0;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uEZ8xv16UI .text-wrapper {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uEZ8xv16UI p {
    max-width: 700px;
  }
}
.cid-uEZ8xv16UI .mbr-text,
.cid-uEZ8xv16UI .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uEZ8xv16UI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uFgFhEfYSn {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/shutterstock-1454392988-2000x630.jpg");
}
.cid-uFgFhEfYSn .mbr-section-title {
  color: #ffffff;
}
.cid-uFgFhEfYSn .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-uFgFhEfYSn .d-flex {
    justify-content: center;
  }
}
.cid-uFgFhEfYSn .col-lg-4 {
  display: flex;
  align-items: flex-end;
}
.cid-uFgFhEfYSn .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-uFgFhEfYSn .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-15deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-uFgFhEfYSn .link-wrapper {
    justify-content: center;
  }
}
.cid-uFgFhEfYSn .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-uFgFhEfYSn .link,
.cid-uFgFhEfYSn .link-icon {
  color: #ffffff;
}
.cid-uFgFhEfYSn .mbr-text,
.cid-uFgFhEfYSn .line {
  color: #ffffff;
  text-align: left;
}
.cid-uFgFhEfYSn .mbr-section-title,
.cid-uFgFhEfYSn .line {
  color: #ffffff;
}
.cid-uFgFhEfYSn .link,
.cid-uFgFhEfYSn .link-icon,
.cid-uFgFhEfYSn .line {
  color: #ffffff;
}
.cid-uVEILk8jtP {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-uVEILk8jtP H1 {
  color: #000000;
}
.cid-uVEILk8jtP .mbr-text,
.cid-uVEILk8jtP .mbr-section-btn {
  color: #000000;
}
.cid-uVEILk8jtP .mbr-subtitle {
  color: #000000;
}
.cid-uVEILk8jtP .mbr-text {
  margin-top: 1.5rem;
}
.cid-uVEILk8jtP .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uVEILk8jtP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVEILk8jtP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVLPxYpRCy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-uVLPxYpRCy .row {
  flex-directiion: row-reverse;
}
.cid-uVLPxYpRCy .card-wrapper {
  width: 100%;
  height: 100%;
}
.cid-uVLPxYpRCy .card-wrapper img {
  height: 600px;
  object-fit: cover;
}
.cid-uVLPxYpRCy .second-card-title {
  text-align: center;
  color: #000000;
}
.cid-uVLPxYpRCy .second-card-subtitle {
  text-align: center;
}
.cid-uVLPxYpRCy .second-card {
  background-color: #fafafa;
}
.cid-uVLPxYpRCy .second-card-wrap {
  margin: auto 0;
  padding: 3rem 1.5rem;
}
@media (min-width: 992px) {
  .cid-uVLPxYpRCy [class*="col"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-uVLPxYpRCy .second-card-subtitle,
.cid-uVLPxYpRCy .second-btn {
  text-align: center;
}
.cid-uVLPxYpRCy .card {
  border-radius: 0 !important;
}
.cid-uVLPxYpRCy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVLPxYpRCy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW2q5nJJ4Q {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #eeeeee;
}
.cid-uW2q5nJJ4Q H1 {
  color: #000000;
}
.cid-uW2q5nJJ4Q .mbr-text,
.cid-uW2q5nJJ4Q .mbr-section-btn {
  color: #000000;
}
.cid-uW2q5nJJ4Q .mbr-subtitle {
  color: #000000;
}
.cid-uW2q5nJJ4Q .mbr-text {
  margin-top: 1.5rem;
}
.cid-uW2q5nJJ4Q .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uW2q5nJJ4Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW2q5nJJ4Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVXKTFlTrJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #eeeeee;
}
.cid-uVXKTFlTrJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uVXKTFlTrJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVXKTFlTrJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uVXKTFlTrJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uVXKTFlTrJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uVXKTFlTrJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uVXKTFlTrJ .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-uVXKTFlTrJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uVXKTFlTrJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uW3fNmi9Ay {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #eeeeee;
}
.cid-uW3fNmi9Ay H1 {
  color: #000000;
}
.cid-uW3fNmi9Ay .mbr-text,
.cid-uW3fNmi9Ay .mbr-section-btn {
  color: #000000;
}
.cid-uW3fNmi9Ay .mbr-subtitle {
  color: #000000;
}
.cid-uW3fNmi9Ay .mbr-text {
  margin-top: 1.5rem;
}
.cid-uW3fNmi9Ay .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uW3fNmi9Ay .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW3fNmi9Ay .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFElEtnZzW {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  background-image: url("../../../assets/images/shutterstock-2426634471-2000x1333.jpg");
  position: relative;
  overflow: hidden;
}
.cid-uFElEtnZzW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFElEtnZzW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFElEtnZzW .bg-frame {
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  opacity: 0.7;
  width: 20vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #e1201d;
  box-shadow: 0 0 40px #e1201d;
  filter: blur(130px);
}
@media (max-width: 767px) {
  .cid-uFElEtnZzW .bg-frame {
    width: 40vw;
  }
}
@media (min-width: 1600px) {
  .cid-uFElEtnZzW.mbr-fullscreen {
    align-items: flex-end !important;
  }
}
.cid-uFElEtnZzW .row {
  position: relative;
  z-index: 3;
}
.cid-uFElEtnZzW .mbr-section-title {
  color: #ffffff;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .cid-uFElEtnZzW .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFElEtnZzW .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uFElEtnZzW .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uFElEtnZzW .mbr-text {
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-uFElEtnZzW .mbr-section-btn {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .cid-uFElEtnZzW .mbr-section-btn {
    margin-top: 90px;
  }
}
@media (max-width: 767px) {
  .cid-uFElEtnZzW .mbr-section-btn {
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .cid-uFElEtnZzW .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-v2F9B4oN5D {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-v2F9B4oN5D img {
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.cid-v2F9B4oN5D .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-v2F9B4oN5D .img-wrapper {
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  margin-bottom: 1.5rem;
}
.cid-v2F9B4oN5D .img-wrapper:before {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: #232323;
  opacity: 0;
  transition: all 0.3s;
  content: "";
  pointer-events: none;
  z-index: 1;
}
.cid-v2F9B4oN5D .card-box {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  opacity: 0;
  padding: 2rem;
  padding-bottom: 1.5rem;
  z-index: 2;
}
.cid-v2F9B4oN5D .card:hover img {
  transform: scale(1.06);
}
.cid-v2F9B4oN5D .card:hover .card-box {
  opacity: 1;
}
.cid-v2F9B4oN5D .card:hover .img-wrapper:before {
  opacity: 0.8;
}
.cid-v2F9B4oN5D .card:hover .text-wrap {
  opacity: 1;
}
.cid-v2F9B4oN5D .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin-left: 1.5rem;
}
.cid-v2F9B4oN5D .link-icon {
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s;
  font-size: 1.2rem;
  justify-content: center;
}
.cid-v2F9B4oN5D .text-wrap {
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
  right: 0;
  padding: 2rem;
  padding-top: 1.5rem;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.cid-v2F9B4oN5D .mbr-text,
.cid-v2F9B4oN5D .link-align {
  color: #ffffff;
}
.cid-v2F9B4oN5D .card-title {
  color: #ffffff;
}
.cid-v2F9B4oN5D .mbr-subtitle,
.cid-v2F9B4oN5D .link-align {
  color: #d58f76;
}
@media (max-width: 767px) {
  .cid-v2F9B4oN5D .card .text-wrap,
  .cid-v2F9B4oN5D .card .card-box {
    opacity: 1;
    padding: 1rem;
  }
  .cid-v2F9B4oN5D .card .img-wrapper:before {
    opacity: 0.8;
  }
}
.cid-v2F9B4oN5D .mbr-section-subtitle {
  color: #c79364;
}
.cid-v2F9B4oN5D .main-title {
  color: #cfd5e1;
}
.cid-v2F9B4oN5D .mbr-subtitle {
  color: #d4e7eb;
}
.cid-v2F9B4oN5D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2F9B4oN5D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2HUnqrpTI {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #232323;
}
.cid-v2HUnqrpTI img {
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.cid-v2HUnqrpTI .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-v2HUnqrpTI .img-wrapper {
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  margin-bottom: 1.5rem;
}
.cid-v2HUnqrpTI .img-wrapper:before {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: #232323;
  opacity: 0;
  transition: all 0.3s;
  content: "";
  pointer-events: none;
  z-index: 1;
}
.cid-v2HUnqrpTI .card-box {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  opacity: 0;
  padding: 2rem;
  padding-bottom: 1.5rem;
  z-index: 2;
}
.cid-v2HUnqrpTI .card:hover img {
  transform: scale(1.06);
}
.cid-v2HUnqrpTI .card:hover .card-box {
  opacity: 1;
}
.cid-v2HUnqrpTI .card:hover .img-wrapper:before {
  opacity: 0.8;
}
.cid-v2HUnqrpTI .card:hover .text-wrap {
  opacity: 1;
}
.cid-v2HUnqrpTI .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin-left: 1.5rem;
}
.cid-v2HUnqrpTI .link-icon {
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s;
  font-size: 1.2rem;
  justify-content: center;
}
.cid-v2HUnqrpTI .text-wrap {
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
  right: 0;
  padding: 2rem;
  padding-top: 1.5rem;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.cid-v2HUnqrpTI .mbr-text,
.cid-v2HUnqrpTI .link-align {
  color: #ffffff;
}
.cid-v2HUnqrpTI .card-title {
  color: #ffffff;
}
.cid-v2HUnqrpTI .mbr-subtitle,
.cid-v2HUnqrpTI .link-align {
  color: #d58f76;
}
@media (max-width: 767px) {
  .cid-v2HUnqrpTI .card .text-wrap,
  .cid-v2HUnqrpTI .card .card-box {
    opacity: 1;
    padding: 1rem;
  }
  .cid-v2HUnqrpTI .card .img-wrapper:before {
    opacity: 0.8;
  }
}
.cid-v2HUnqrpTI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2HUnqrpTI .main-title {
  color: #ffffff;
}
.cid-v2HUnqrpTI .mbr-subtitle {
  color: #999999;
}
.cid-v2HUnqrpTI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2HUnqrpTI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFBn3WgJTf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-uFBn3WgJTf .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uFBn3WgJTf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFBn3WgJTf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFBn3WgJTf .content-wrap {
  margin: 0;
}
.cid-uFBn3WgJTf .content-wrap .card {
  padding: 0;
}
.cid-uFBn3WgJTf .google-map {
  height: 100%;
}
.cid-uFBn3WgJTf .google-map iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFBn3WgJTf .google-map iframe {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uFBn3WgJTf .content-wrapper {
  padding: 100px 72px;
}
@media (max-width: 1640px) {
  .cid-uFBn3WgJTf .content-wrapper {
    padding: 100px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFBn3WgJTf .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uFBn3WgJTf .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFBn3WgJTf .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uFBn3WgJTf .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uFBn3WgJTf .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uFBn3WgJTf .content-wrapper .contacts-wrapper {
  margin-bottom: 40px;
}
.cid-uFBn3WgJTf .content-wrapper .contacts-wrapper .mbr-desc {
  margin-bottom: 12px;
}
.cid-uFBn3WgJTf .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uFBn3WgJTf .content-wrapper .contacts-wrapper:last-child {
  margin-bottom: 0;
}
.cid-uFBn3WgJTf .mbr-section-title {
  color: #150764;
}
.cid-uFBn3WgJTf .mbr-desc {
  color: #150764;
}
.cid-uFBn3WgJTf .item-desc {
  color: #000000;
}
.cid-uFBn3WgJTf .list {
  color: #150764;
}
.cid-uFBn3WgJTf .mbr-section-title,
.cid-uFBn3WgJTf .mbr-section-btn {
  color: #000000;
}
.cid-uFBn3WgJTf .mbr-desc,
.cid-uFBn3WgJTf .desc-wrapper {
  color: #000000;
}
.cid-uFBn3WgJTf .list,
.cid-uFBn3WgJTf .item-wrap {
  color: #000000;
}
.cid-uWZJ1Me5yd {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uWZJ1Me5yd H1 {
  color: #000000;
}
.cid-uWZJ1Me5yd .mbr-text,
.cid-uWZJ1Me5yd .mbr-section-btn {
  color: #5c6873;
  text-align: center;
}
.cid-uWZJ1Me5yd .mbr-subtitle {
  color: #000000;
}
.cid-uWZJ1Me5yd .mbr-text {
  margin-top: 1.5rem;
}
.cid-uWZJ1Me5yd .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uWZJ1Me5yd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWZJ1Me5yd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFgPwoIShq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uFgPwoIShq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFgPwoIShq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFgPwoIShq .row {
  justify-content: center;
}
.cid-uFgPwoIShq .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uFgPwoIShq .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uFgPwoIShq .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uFgPwoIShq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #ffffff, #fac1c2 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #facfc2;
}
.cid-uFgPwoIShq .content-wrapper .social {
  margin-top: 22px;
}
.cid-uFgPwoIShq .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #2f2e30, #fad1c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-uFgPwoIShq .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uFgPwoIShq .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uFgPwoIShq .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uFgPwoIShq .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #7f7f7f;
  text-align: center;
}
.cid-uFgPwoIShq .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #ffffff 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uFgPwoIShq .mbr-section-title {
  color: #c1bebe;
  text-align: left;
}
.cid-uFgPwoIShq .mbr-text {
  color: #ffffff;
}
.cid-uFgPwoIShq .mbr-desc {
  color: #ffffff;
}
.cid-uFgPwoIShq .list {
  color: #ffffff;
}
.cid-uFgPwoIShq .mbr-text,
.cid-uFgPwoIShq .text-wrapper {
  color: #c1bebe;
  text-align: left;
}
.cid-uFgPwoIShq .mbr-desc,
.cid-uFgPwoIShq .social-wrapper {
  color: #7f7f7f;
  text-align: left;
}
.cid-uFgPwoIShq .list,
.cid-uFgPwoIShq .item-wrap,
.cid-uFgPwoIShq .nav-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-tP0vL9AmDe {
  z-index: 1000;
  width: 100%;
}
.cid-tP0vL9AmDe nav.navbar {
  position: fixed;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tP0vL9AmDe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tP0vL9AmDe .dropdown-item:hover,
.cid-tP0vL9AmDe .dropdown-item:focus {
  background: #facfc2 !important;
  color: white !important;
}
.cid-tP0vL9AmDe .dropdown-item:hover span {
  color: white;
}
.cid-tP0vL9AmDe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tP0vL9AmDe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tP0vL9AmDe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tP0vL9AmDe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tP0vL9AmDe .nav-link {
  position: relative;
}
.cid-tP0vL9AmDe .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tP0vL9AmDe .container {
    flex-wrap: nowrap;
  }
}
.cid-tP0vL9AmDe .iconfont-wrapper {
  color: #789682 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tP0vL9AmDe .dropdown-menu,
.cid-tP0vL9AmDe .navbar.opened {
  background: #ffffff !important;
}
.cid-tP0vL9AmDe .nav-item:focus,
.cid-tP0vL9AmDe .nav-link:focus {
  outline: none;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tP0vL9AmDe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tP0vL9AmDe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tP0vL9AmDe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}
.cid-tP0vL9AmDe .navbar.opened {
  transition: all 0.3s;
}
.cid-tP0vL9AmDe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tP0vL9AmDe .navbar .navbar-logo img {
  width: auto;
}
.cid-tP0vL9AmDe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tP0vL9AmDe .navbar.collapsed {
  justify-content: center;
}
.cid-tP0vL9AmDe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tP0vL9AmDe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tP0vL9AmDe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-tP0vL9AmDe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tP0vL9AmDe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tP0vL9AmDe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tP0vL9AmDe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tP0vL9AmDe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tP0vL9AmDe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tP0vL9AmDe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tP0vL9AmDe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tP0vL9AmDe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tP0vL9AmDe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tP0vL9AmDe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tP0vL9AmDe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tP0vL9AmDe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tP0vL9AmDe .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tP0vL9AmDe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tP0vL9AmDe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tP0vL9AmDe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tP0vL9AmDe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tP0vL9AmDe .dropdown-item.active,
.cid-tP0vL9AmDe .dropdown-item:active {
  background-color: transparent;
}
.cid-tP0vL9AmDe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tP0vL9AmDe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tP0vL9AmDe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tP0vL9AmDe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tP0vL9AmDe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tP0vL9AmDe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tP0vL9AmDe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tP0vL9AmDe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tP0vL9AmDe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tP0vL9AmDe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar {
    height: 70px;
  }
  .cid-tP0vL9AmDe .navbar.opened {
    height: auto;
  }
  .cid-tP0vL9AmDe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t12vfQ7QZS {
  padding-top: 135px;
  padding-bottom: 60px;
  background-color: #eeeeee;
}
.cid-t12vfQ7QZS H1 {
  color: #000000;
}
.cid-t12vfQ7QZS .mbr-text,
.cid-t12vfQ7QZS .mbr-section-btn {
  color: #2f2e30;
  text-align: left;
}
.cid-t12vfQ7QZS .mbr-subtitle {
  color: #000000;
}
.cid-t12vfQ7QZS .mbr-text {
  margin-top: 1.5rem;
}
.cid-t12vfQ7QZS .mbr-section-btn {
  margin-top: 2rem;
}
.cid-t12vfQ7QZS .mbr-section-title,
.cid-t12vfQ7QZS .mbr-section-btn {
  color: #2f2e30;
}
.cid-uWZLngI1Eu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #eeeeee;
}
.cid-uWZLngI1Eu H1 {
  color: #000000;
}
.cid-uWZLngI1Eu .mbr-text,
.cid-uWZLngI1Eu .mbr-section-btn {
  color: #c1bebe;
  text-align: center;
}
.cid-uWZLngI1Eu .mbr-subtitle {
  color: #000000;
}
.cid-uWZLngI1Eu .mbr-text {
  margin-top: 1.5rem;
}
.cid-uWZLngI1Eu .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uWZLngI1Eu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWZLngI1Eu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFgPwoIShq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uFgPwoIShq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFgPwoIShq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFgPwoIShq .row {
  justify-content: center;
}
.cid-uFgPwoIShq .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uFgPwoIShq .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uFgPwoIShq .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uFgPwoIShq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #ffffff, #fac1c2 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #facfc2;
}
.cid-uFgPwoIShq .content-wrapper .social {
  margin-top: 22px;
}
.cid-uFgPwoIShq .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #2f2e30, #fad1c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-uFgPwoIShq .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uFgPwoIShq .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uFgPwoIShq .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uFgPwoIShq .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #7f7f7f;
  text-align: center;
}
.cid-uFgPwoIShq .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #ffffff 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uFgPwoIShq .mbr-section-title {
  color: #c1bebe;
  text-align: left;
}
.cid-uFgPwoIShq .mbr-text {
  color: #ffffff;
}
.cid-uFgPwoIShq .mbr-desc {
  color: #ffffff;
}
.cid-uFgPwoIShq .list {
  color: #ffffff;
}
.cid-uFgPwoIShq .mbr-text,
.cid-uFgPwoIShq .text-wrapper {
  color: #c1bebe;
  text-align: left;
}
.cid-uFgPwoIShq .mbr-desc,
.cid-uFgPwoIShq .social-wrapper {
  color: #7f7f7f;
  text-align: left;
}
.cid-uFgPwoIShq .list,
.cid-uFgPwoIShq .item-wrap,
.cid-uFgPwoIShq .nav-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-tP0vL9AmDe {
  z-index: 1000;
  width: 100%;
}
.cid-tP0vL9AmDe nav.navbar {
  position: fixed;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tP0vL9AmDe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tP0vL9AmDe .dropdown-item:hover,
.cid-tP0vL9AmDe .dropdown-item:focus {
  background: #facfc2 !important;
  color: white !important;
}
.cid-tP0vL9AmDe .dropdown-item:hover span {
  color: white;
}
.cid-tP0vL9AmDe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tP0vL9AmDe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tP0vL9AmDe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tP0vL9AmDe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tP0vL9AmDe .nav-link {
  position: relative;
}
.cid-tP0vL9AmDe .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tP0vL9AmDe .container {
    flex-wrap: nowrap;
  }
}
.cid-tP0vL9AmDe .iconfont-wrapper {
  color: #789682 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tP0vL9AmDe .dropdown-menu,
.cid-tP0vL9AmDe .navbar.opened {
  background: #ffffff !important;
}
.cid-tP0vL9AmDe .nav-item:focus,
.cid-tP0vL9AmDe .nav-link:focus {
  outline: none;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tP0vL9AmDe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tP0vL9AmDe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tP0vL9AmDe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tP0vL9AmDe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}
.cid-tP0vL9AmDe .navbar.opened {
  transition: all 0.3s;
}
.cid-tP0vL9AmDe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tP0vL9AmDe .navbar .navbar-logo img {
  width: auto;
}
.cid-tP0vL9AmDe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tP0vL9AmDe .navbar.collapsed {
  justify-content: center;
}
.cid-tP0vL9AmDe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tP0vL9AmDe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tP0vL9AmDe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-tP0vL9AmDe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tP0vL9AmDe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tP0vL9AmDe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tP0vL9AmDe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tP0vL9AmDe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tP0vL9AmDe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tP0vL9AmDe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tP0vL9AmDe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tP0vL9AmDe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tP0vL9AmDe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tP0vL9AmDe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tP0vL9AmDe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tP0vL9AmDe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tP0vL9AmDe .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tP0vL9AmDe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tP0vL9AmDe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tP0vL9AmDe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tP0vL9AmDe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tP0vL9AmDe .dropdown-item.active,
.cid-tP0vL9AmDe .dropdown-item:active {
  background-color: transparent;
}
.cid-tP0vL9AmDe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tP0vL9AmDe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tP0vL9AmDe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tP0vL9AmDe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tP0vL9AmDe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tP0vL9AmDe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tP0vL9AmDe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tP0vL9AmDe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tP0vL9AmDe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tP0vL9AmDe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tP0vL9AmDe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tP0vL9AmDe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tP0vL9AmDe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tP0vL9AmDe .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-tP0vL9AmDe .navbar {
    height: 70px;
  }
  .cid-tP0vL9AmDe .navbar.opened {
    height: auto;
  }
  .cid-tP0vL9AmDe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t12xzbKM4Y {
  padding-top: 135px;
  padding-bottom: 60px;
  background-color: #eeeeee;
}
.cid-t12xzbKM4Y H1 {
  color: #000000;
}
.cid-t12xzbKM4Y .mbr-text,
.cid-t12xzbKM4Y .mbr-section-btn {
  color: #2f2e30;
  text-align: left;
}
.cid-t12xzbKM4Y .mbr-subtitle {
  color: #000000;
}
.cid-t12xzbKM4Y .mbr-text {
  margin-top: 1.5rem;
}
.cid-t12xzbKM4Y .mbr-section-btn {
  margin-top: 2rem;
}
.cid-t12xzbKM4Y .mbr-section-title,
.cid-t12xzbKM4Y .mbr-section-btn {
  color: #2f2e30;
}
.cid-uWZLx3gbUQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #eeeeee;
}
.cid-uWZLx3gbUQ H1 {
  color: #000000;
}
.cid-uWZLx3gbUQ .mbr-text,
.cid-uWZLx3gbUQ .mbr-section-btn {
  color: #c1bebe;
  text-align: center;
}
.cid-uWZLx3gbUQ .mbr-subtitle {
  color: #000000;
}
.cid-uWZLx3gbUQ .mbr-text {
  margin-top: 1.5rem;
}
.cid-uWZLx3gbUQ .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uWZLx3gbUQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWZLx3gbUQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFgPwoIShq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uFgPwoIShq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFgPwoIShq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFgPwoIShq .row {
  justify-content: center;
}
.cid-uFgPwoIShq .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uFgPwoIShq .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uFgPwoIShq .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uFgPwoIShq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uFgPwoIShq .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #ffffff, #fac1c2 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #facfc2;
}
.cid-uFgPwoIShq .content-wrapper .social {
  margin-top: 22px;
}
.cid-uFgPwoIShq .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #2f2e30, #fad1c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uFgPwoIShq .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-uFgPwoIShq .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uFgPwoIShq .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uFgPwoIShq .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uFgPwoIShq .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #7f7f7f;
  text-align: center;
}
.cid-uFgPwoIShq .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #ffffff 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uFgPwoIShq .mbr-section-title {
  color: #c1bebe;
  text-align: left;
}
.cid-uFgPwoIShq .mbr-text {
  color: #ffffff;
}
.cid-uFgPwoIShq .mbr-desc {
  color: #ffffff;
}
.cid-uFgPwoIShq .list {
  color: #ffffff;
}
.cid-uFgPwoIShq .mbr-text,
.cid-uFgPwoIShq .text-wrapper {
  color: #c1bebe;
  text-align: left;
}
.cid-uFgPwoIShq .mbr-desc,
.cid-uFgPwoIShq .social-wrapper {
  color: #7f7f7f;
  text-align: left;
}
.cid-uFgPwoIShq .list,
.cid-uFgPwoIShq .item-wrap,
.cid-uFgPwoIShq .nav-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2IgGKg74I {
  z-index: 1000;
  width: 100%;
}
.cid-v2IgGKg74I nav.navbar {
  position: fixed;
}
.cid-v2IgGKg74I .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-v2IgGKg74I .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2IgGKg74I .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2IgGKg74I .dropdown-item:hover,
.cid-v2IgGKg74I .dropdown-item:focus {
  background: #facfc2 !important;
  color: white !important;
}
.cid-v2IgGKg74I .dropdown-item:hover span {
  color: white;
}
.cid-v2IgGKg74I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2IgGKg74I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2IgGKg74I .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2IgGKg74I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2IgGKg74I .nav-link {
  position: relative;
}
.cid-v2IgGKg74I .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v2IgGKg74I .container {
    flex-wrap: nowrap;
  }
}
.cid-v2IgGKg74I .iconfont-wrapper {
  color: #789682 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2IgGKg74I .dropdown-menu,
.cid-v2IgGKg74I .navbar.opened {
  background: #ffffff !important;
}
.cid-v2IgGKg74I .nav-item:focus,
.cid-v2IgGKg74I .nav-link:focus {
  outline: none;
}
.cid-v2IgGKg74I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2IgGKg74I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2IgGKg74I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2IgGKg74I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2IgGKg74I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2IgGKg74I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2IgGKg74I .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}
.cid-v2IgGKg74I .navbar.opened {
  transition: all 0.3s;
}
.cid-v2IgGKg74I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2IgGKg74I .navbar .navbar-logo img {
  width: auto;
}
.cid-v2IgGKg74I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2IgGKg74I .navbar.collapsed {
  justify-content: center;
}
.cid-v2IgGKg74I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2IgGKg74I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2IgGKg74I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-v2IgGKg74I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2IgGKg74I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2IgGKg74I .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-v2IgGKg74I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2IgGKg74I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2IgGKg74I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2IgGKg74I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2IgGKg74I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2IgGKg74I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2IgGKg74I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2IgGKg74I .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-v2IgGKg74I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2IgGKg74I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2IgGKg74I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2IgGKg74I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2IgGKg74I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2IgGKg74I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v2IgGKg74I .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v2IgGKg74I .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2IgGKg74I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2IgGKg74I .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2IgGKg74I .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-v2IgGKg74I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2IgGKg74I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2IgGKg74I .dropdown-item.active,
.cid-v2IgGKg74I .dropdown-item:active {
  background-color: transparent;
}
.cid-v2IgGKg74I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2IgGKg74I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2IgGKg74I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2IgGKg74I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v2IgGKg74I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2IgGKg74I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2IgGKg74I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2IgGKg74I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2IgGKg74I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2IgGKg74I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-v2IgGKg74I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2IgGKg74I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2IgGKg74I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2IgGKg74I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2IgGKg74I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2IgGKg74I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2IgGKg74I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2IgGKg74I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2IgGKg74I .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2IgGKg74I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2IgGKg74I .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-v2IgGKg74I .navbar {
    height: 70px;
  }
  .cid-v2IgGKg74I .navbar.opened {
    height: auto;
  }
  .cid-v2IgGKg74I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbf7UbBj81 {
  position: relative;
  padding: 4px 0;
  background-color: #f4f4f4;
}
.cid-vbf7UbBj81 .cont-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
.cid-vbf7UbBj81 .cont-wrapper .image-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-vbf7UbBj81 .cont-wrapper .image-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.5;
  pointer-events: none;
}
.cid-vbf7UbBj81 .cont-wrapper .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vbf7UbBj81 .cont-wrapper {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.cid-vbf7UbBj81 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbf7UbBj81 .card-wrapper {
  position: relative;
  z-index: 1;
  padding: 120px 32px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-vbf7UbBj81 .card-wrapper {
    padding: 80px 24px;
  }
}
.cid-vbf7UbBj81 .card-wrapper .mbr-label {
  margin-bottom: 24px;
  pointer-events: visible;
}
.cid-vbf7UbBj81 .card-wrapper .mbr-section-title {
  margin-bottom: 24px;
  pointer-events: visible;
}
.cid-vbf7UbBj81 .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 24px;
  pointer-events: visible;
}
@media (max-width: 1440px) {
  .cid-vbf7UbBj81 .card-wrapper .text-wrapper .mbr-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-vbf7UbBj81 .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vbf7UbBj81 .card-wrapper .mbr-section-btn {
  pointer-events: visible;
}
.cid-vbf7UbBj81 .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vbf7UbBj81 .mbr-label {
  color: #ffffff;
  text-align: center;
}
.cid-vbf7UbBj81 .mbr-section-title {
  color: #ffb3c1;
}
.cid-vbf7UbBj81 .mbr-text,
.cid-vbf7UbBj81 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vbf7UbBj81 .mbr-section-title,
.cid-vbf7UbBj81 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-vbfbhSnMWY {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vbfbhSnMWY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbfbhSnMWY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbfbhSnMWY .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-vbfbhSnMWY .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-vbfbhSnMWY .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-vbfbhSnMWY .col-title {
  width: 100%;
  max-width: 1140px;
  padding: 0 10px !important;
  margin: 0 auto 40px;
}
.cid-vbfbhSnMWY .mbr-section-title {
  color: #000000;
}
.cid-vbfbhSnMWY .mbr-section-subtitle {
  color: #112B6D;
  margin-top: 20px;
}
.cid-vbfbhSnMWY .cards-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-vbfbhSnMWY .cards-container {
    flex-wrap: wrap;
    padding: 0 10px !important;
  }
}
.cid-vbfbhSnMWY .card {
  width: 33.33333333%;
  padding: 2% 2% 1% 2%;
  border-radius: 0;
}
.cid-vbfbhSnMWY .card:not(:first-child) {
  border-left: 1px solid #cfd5e1;
}
@media (max-width: 767px) {
  .cid-vbfbhSnMWY .card:not(:first-child) {
    border-left: none;
    border-top: 1px solid #cfd5e1;
  }
}
@media (max-width: 767px) {
  .cid-vbfbhSnMWY .card {
    width: 100%;
    padding: 6% 6% 2% 6%;
  }
}
.cid-vbfbhSnMWY .card-box {
  width: 100%;
}
.cid-vbfbhSnMWY .card-container {
  width: 100%;
}
.cid-vbfbhSnMWY .card-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-vbfbhSnMWY .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-vbfbJskzzG {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbfbJskzzG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbfbJskzzG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbfbJskzzG .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-vbfbJskzzG .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-vbfbJskzzG .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-vbfbJskzzG .col-title {
  width: 100%;
  max-width: 1140px;
  padding: 0 10px !important;
  margin: 0 auto 40px;
}
.cid-vbfbJskzzG .mbr-section-title {
  color: #000000;
}
.cid-vbfbJskzzG .mbr-section-subtitle {
  color: #112B6D;
  margin-top: 20px;
}
.cid-vbfbJskzzG .cards-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-vbfbJskzzG .cards-container {
    flex-wrap: wrap;
    padding: 0 10px !important;
  }
}
.cid-vbfbJskzzG .card {
  width: 33.33333333%;
  padding: 2% 2% 1% 2%;
  border-radius: 0;
}
.cid-vbfbJskzzG .card:not(:first-child) {
  border-left: 1px solid #cfd5e1;
}
@media (max-width: 767px) {
  .cid-vbfbJskzzG .card:not(:first-child) {
    border-left: none;
    border-top: 1px solid #cfd5e1;
  }
}
@media (max-width: 767px) {
  .cid-vbfbJskzzG .card {
    width: 100%;
    padding: 6% 6% 2% 6%;
  }
}
.cid-vbfbJskzzG .card-box {
  width: 100%;
}
.cid-vbfbJskzzG .card-container {
  width: 100%;
}
.cid-vbfbJskzzG .card-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-vbfbJskzzG .card-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-vbZS5Zq0Oz {
  padding-top: 105px;
  padding-bottom: 45px;
  background: #f5f9fc;
}
.cid-vbZS5Zq0Oz .card {
  margin-bottom: .75rem;
  padding: 1rem 2.5rem;
  background-color: #fafafa;
  width: 100%;
  border-radius: 0 !important;
}
.cid-vbZS5Zq0Oz .card img {
  height: 59px;
  width: 100%;
  object-fit: contain;
}
.cid-vbZS5Zq0Oz .mbr-section-subtitle {
  margin-top: .75rem;
  color: #000000;
  text-align: center;
}
.cid-vbZS5Zq0Oz .logo-container {
  justify-content: space-around;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .cid-vbZS5Zq0Oz .col-lg-1 {
    flex: 0 0 19.7%;
    max-width: 19.7%;
  }
}
.cid-vbZS5Zq0Oz H2 {
  color: #000000;
  text-align: center;
}
.cid-vbZS5Zq0Oz .mbr-section-subtitle,
.cid-vbZS5Zq0Oz .mbr-section-btn {
  text-align: center;
}
.cid-vctjZkZFQT {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f5f9fc;
}
.cid-vctjZkZFQT H1 {
  color: #000000;
}
.cid-vctjZkZFQT .mbr-text,
.cid-vctjZkZFQT .mbr-section-btn {
  color: #000000;
  text-align: justify;
}
.cid-vctjZkZFQT .mbr-subtitle {
  color: #000000;
}
.cid-vctjZkZFQT .mbr-text {
  margin-top: 1.5rem;
}
.cid-vctjZkZFQT .mbr-section-btn {
  margin-top: 2rem;
}
.cid-vctjZkZFQT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vctjZkZFQT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2IgGKyEQl {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-v2IgGKyEQl H1 {
  color: #000000;
}
.cid-v2IgGKyEQl .mbr-text,
.cid-v2IgGKyEQl .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v2IgGKyEQl .mbr-subtitle {
  color: #000000;
}
.cid-v2IgGKyEQl .mbr-text {
  margin-top: 1.5rem;
}
.cid-v2IgGKyEQl .mbr-section-btn {
  margin-top: 2rem;
}
.cid-v2IgGKyEQl .mbr-section-title,
.cid-v2IgGKyEQl .mbr-section-btn {
  color: #ffffff;
}
.cid-v2IiGH6H4o {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2IiGH6H4o .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2IiGH6H4o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2IiGH6H4o .content-wrapper {
  padding: 10px;
  border-top: 2px solid #c1bebe;
  border-bottom: 2px solid #c1bebe;
  box-shadow: 0 19px 45px 0 #0000001a;
  background-color: #ffffff;
}
.cid-v2IiGH6H4o .content-wrapper .content-wrap {
  padding: 40px 40px 50px;
}
@media (max-width: 992px) {
  .cid-v2IiGH6H4o .content-wrapper .content-wrap {
    padding: 10px 10px 30px;
  }
}
.cid-v2IiGH6H4o .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v2IiGH6H4o .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2IiGH6H4o .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v2IiGH6H4o .image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 992px) {
  .cid-v2IiGH6H4o .image-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-v2IiGH6H4o .image-wrapper .image-wrap img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v2IiGH6H4o .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-v2IiGH6H4o .mbr-section-title {
  color: #000c3f;
}
.cid-v2IiGH6H4o .mbr-text {
  color: #000c3f;
}
.cid-v2IiGH6H4o .mbr-section-title,
.cid-v2IiGH6H4o .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-v2IiGH6H4o .mbr-text,
.cid-v2IiGH6H4o .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vbZNzXO1oK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f5f9fc;
}
.cid-vbZNzXO1oK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbZNzXO1oK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbZNzXO1oK .content-wrapper {
  padding: 10px;
  border-top: 2px solid #c1bebe;
  border-bottom: 2px solid #c1bebe;
  box-shadow: 0 19px 45px 0 #0000001a;
  background-color: #ffffff;
}
.cid-vbZNzXO1oK .content-wrapper .content-wrap {
  padding: 40px 40px 50px;
}
@media (max-width: 992px) {
  .cid-vbZNzXO1oK .content-wrapper .content-wrap {
    padding: 10px 10px 30px;
  }
}
.cid-vbZNzXO1oK .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vbZNzXO1oK .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vbZNzXO1oK .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vbZNzXO1oK .image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 992px) {
  .cid-vbZNzXO1oK .image-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-vbZNzXO1oK .image-wrapper .image-wrap img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbZNzXO1oK .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-vbZNzXO1oK .mbr-section-title {
  color: #000c3f;
}
.cid-vbZNzXO1oK .mbr-text {
  color: #000c3f;
}
.cid-vbZNzXO1oK .mbr-section-title,
.cid-vbZNzXO1oK .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-vbZNzXO1oK .mbr-text,
.cid-vbZNzXO1oK .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vbZPdvFXSo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbZPdvFXSo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbZPdvFXSo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbZPdvFXSo .content-wrapper {
  padding: 10px;
  border-top: 2px solid #c1bebe;
  border-bottom: 2px solid #c1bebe;
  box-shadow: 0 19px 45px 0 #0000001a;
  background-color: #ffffff;
}
.cid-vbZPdvFXSo .content-wrapper .content-wrap {
  padding: 40px 40px 50px;
}
@media (max-width: 992px) {
  .cid-vbZPdvFXSo .content-wrapper .content-wrap {
    padding: 10px 10px 30px;
  }
}
.cid-vbZPdvFXSo .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vbZPdvFXSo .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vbZPdvFXSo .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vbZPdvFXSo .image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 992px) {
  .cid-vbZPdvFXSo .image-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-vbZPdvFXSo .image-wrapper .image-wrap img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbZPdvFXSo .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-vbZPdvFXSo .mbr-section-title {
  color: #000c3f;
}
.cid-vbZPdvFXSo .mbr-text {
  color: #000c3f;
}
.cid-vbZPdvFXSo .mbr-section-title,
.cid-vbZPdvFXSo .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-vbZPdvFXSo .mbr-text,
.cid-vbZPdvFXSo .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vbZPPHY5vb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f5f9fc;
}
.cid-vbZPPHY5vb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbZPPHY5vb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbZPPHY5vb .content-wrapper {
  padding: 10px;
  border-top: 2px solid #c1bebe;
  border-bottom: 2px solid #c1bebe;
  box-shadow: 0 19px 45px 0 #0000001a;
  background-color: #ffffff;
}
.cid-vbZPPHY5vb .content-wrapper .content-wrap {
  padding: 40px 40px 50px;
}
@media (max-width: 992px) {
  .cid-vbZPPHY5vb .content-wrapper .content-wrap {
    padding: 10px 10px 30px;
  }
}
.cid-vbZPPHY5vb .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vbZPPHY5vb .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vbZPPHY5vb .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vbZPPHY5vb .image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 992px) {
  .cid-vbZPPHY5vb .image-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-vbZPPHY5vb .image-wrapper .image-wrap img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbZPPHY5vb .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-vbZPPHY5vb .mbr-section-title {
  color: #000c3f;
}
.cid-vbZPPHY5vb .mbr-text {
  color: #000c3f;
}
.cid-vbZPPHY5vb .mbr-section-title,
.cid-vbZPPHY5vb .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-vbZPPHY5vb .mbr-text,
.cid-vbZPPHY5vb .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vbZQzcGpY6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbZQzcGpY6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbZQzcGpY6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbZQzcGpY6 .content-wrapper {
  padding: 10px;
  border-top: 2px solid #c1bebe;
  border-bottom: 2px solid #c1bebe;
  box-shadow: 0 19px 45px 0 #0000001a;
  background-color: #ffffff;
}
.cid-vbZQzcGpY6 .content-wrapper .content-wrap {
  padding: 40px 40px 50px;
}
@media (max-width: 992px) {
  .cid-vbZQzcGpY6 .content-wrapper .content-wrap {
    padding: 10px 10px 30px;
  }
}
.cid-vbZQzcGpY6 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vbZQzcGpY6 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vbZQzcGpY6 .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vbZQzcGpY6 .image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 992px) {
  .cid-vbZQzcGpY6 .image-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-vbZQzcGpY6 .image-wrapper .image-wrap img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbZQzcGpY6 .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-vbZQzcGpY6 .mbr-section-title {
  color: #000c3f;
}
.cid-vbZQzcGpY6 .mbr-text {
  color: #000c3f;
}
.cid-vbZQzcGpY6 .mbr-section-title,
.cid-vbZQzcGpY6 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-vbZQzcGpY6 .mbr-text,
.cid-vbZQzcGpY6 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vbfjGmow98 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vbfjGmow98 H1 {
  color: #000000;
}
.cid-vbfjGmow98 .mbr-text,
.cid-vbfjGmow98 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vbfjGmow98 .mbr-subtitle {
  color: #000000;
}
.cid-vbfjGmow98 .mbr-text {
  margin-top: 1.5rem;
}
.cid-vbfjGmow98 .mbr-section-btn {
  margin-top: 2rem;
}
.cid-vbfjGmow98 .mbr-section-title,
.cid-vbfjGmow98 .mbr-section-btn {
  color: #ffffff;
}
.cid-vbfksldUwg {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #f5f9fc;
}
.cid-vbfksldUwg H1 {
  color: #000000;
}
.cid-vbfksldUwg .mbr-text,
.cid-vbfksldUwg .mbr-section-btn {
  color: #000000;
}
.cid-vbfksldUwg .mbr-subtitle {
  color: #000000;
}
.cid-vbfksldUwg .mbr-text {
  margin-top: 1.5rem;
}
.cid-vbfksldUwg .mbr-section-btn {
  margin-top: 2rem;
}
.cid-vbfksldUwg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbfksldUwg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbfksldUwg .mbr-section-title,
.cid-vbfksldUwg .mbr-section-btn {
  color: #000000;
}
.cid-v2IgGKVN9H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2IgGKVN9H .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2IgGKVN9H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2IgGKVN9H .row {
  justify-content: center;
}
.cid-v2IgGKVN9H .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v2IgGKVN9H .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-v2IgGKVN9H .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-v2IgGKVN9H .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2IgGKVN9H .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v2IgGKVN9H .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-v2IgGKVN9H .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-v2IgGKVN9H .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #ffffff, #fac1c2 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #facfc2;
}
.cid-v2IgGKVN9H .content-wrapper .social {
  margin-top: 22px;
}
.cid-v2IgGKVN9H .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-v2IgGKVN9H .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v2IgGKVN9H .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v2IgGKVN9H .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v2IgGKVN9H .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #2f2e30, #fad1c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v2IgGKVN9H .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-v2IgGKVN9H .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v2IgGKVN9H .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2IgGKVN9H .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-v2IgGKVN9H .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #7f7f7f;
  text-align: center;
}
.cid-v2IgGKVN9H .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #ffffff 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-v2IgGKVN9H .mbr-section-title {
  color: #c1bebe;
  text-align: left;
}
.cid-v2IgGKVN9H .mbr-text {
  color: #ffffff;
}
.cid-v2IgGKVN9H .mbr-desc {
  color: #ffffff;
}
.cid-v2IgGKVN9H .list {
  color: #ffffff;
}
.cid-v2IgGKVN9H .mbr-text,
.cid-v2IgGKVN9H .text-wrapper {
  color: #c1bebe;
  text-align: left;
}
.cid-v2IgGKVN9H .mbr-desc,
.cid-v2IgGKVN9H .social-wrapper {
  color: #7f7f7f;
  text-align: left;
}
.cid-v2IgGKVN9H .list,
.cid-v2IgGKVN9H .item-wrap,
.cid-v2IgGKVN9H .nav-wrapper {
  text-align: left;
  color: #ffffff;
}
