body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Heebo', sans-serif;
  font-size: 6.875rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-1 > .mbr-iconfont {
  font-size: 8.59375rem;
}
.display-2 {
  font-family: 'Heebo', sans-serif;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-2 > .mbr-iconfont {
  font-size: 4.6875rem;
}
.display-4 {
  font-family: 'Heebo', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Heebo', sans-serif;
  font-size: 1.75rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'Heebo', sans-serif;
  font-size: 1.18rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.475rem;
}
/* ---- 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: 5.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.8125rem;
    font-size: calc( 3.05625rem + (6.875 - 3.05625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.05625rem + (6.875 - 3.05625) * ((100vw - 20rem) / (48 - 20))));
    letter-spacing: -0.038em;
  }
  .display-2 {
    font-size: 3rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.944rem;
    font-size: calc( 1.063rem + (1.18 - 1.063) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.063rem + (1.18 - 1.063) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffa38a !important;
}
.bg-success {
  background-color: #4fb380 !important;
}
.bg-info {
  background-color: #4c82a2 !important;
}
.bg-warning {
  background-color: #e3d688 !important;
}
.bg-danger {
  background-color: #c04822 !important;
}
.btn-primary:after {
  background: linear-gradient(to right, #ffa38a 0 25%, transparent 25% 75%, #ffa38a 75% 100%);
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #ffa38a !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #ffa38a !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffa38a !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary:after {
  background: linear-gradient(to right, #9b8db7 0 25%, transparent 25% 75%, #9b8db7 75% 100%);
}
.btn-secondary,
.btn-secondary:active {
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
  color: #9b8db7 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
  color: #9b8db7 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #9b8db7 !important;
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
}
.btn-info:after {
  background: linear-gradient(to right, #4c82a2 0 25%, transparent 25% 75%, #4c82a2 75% 100%);
}
.btn-info,
.btn-info:active {
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
  color: #4c82a2 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
  color: #4c82a2 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #4c82a2 !important;
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
}
.btn-success:after {
  background: linear-gradient(to right, #4fb380 0 25%, transparent 25% 75%, #4fb380 75% 100%);
}
.btn-success,
.btn-success:active {
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
  color: #4fb380 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
  color: #4fb380 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #4fb380 !important;
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
}
.btn-warning:after {
  background: linear-gradient(to right, #e3d688 0 25%, transparent 25% 75%, #e3d688 75% 100%);
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #e3d688 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #e3d688 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #e3d688 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger:after {
  background: linear-gradient(to right, #c04822 0 25%, transparent 25% 75%, #c04822 75% 100%);
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
  color: #c04822 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
  color: #c04822 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #c04822 !important;
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
}
.btn-white:after {
  background: linear-gradient(to right, #f6f6f6 0 25%, transparent 25% 75%, #f6f6f6 75% 100%);
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #f6f6f6 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #f6f6f6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #f6f6f6 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black:after {
  background: linear-gradient(to right, #303030 0 25%, transparent 25% 75%, #303030 75% 100%);
}
.btn-black,
.btn-black:active {
  background-color: #a26457 !important;
  border-color: #a26457 !important;
  color: #303030 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background-color: #a26457 !important;
  border-color: #a26457 !important;
  color: #303030 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #303030 !important;
  background-color: #a26457 !important;
  border-color: #a26457 !important;
}
.btn-primary-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #ffa38a 0 25%, transparent 25% 75%, #ffa38a 75% 100%);
}
.btn-primary-outline,
.btn-primary-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #ffa38a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffa38a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #9b8db7 0 25%, transparent 25% 75%, #9b8db7 75% 100%);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #9b8db7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9b8db7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
}
.btn-info-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #4c82a2 0 25%, transparent 25% 75%, #4c82a2 75% 100%);
}
.btn-info-outline,
.btn-info-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #4c82a2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #4c82a2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
}
.btn-success-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #4fb380 0 25%, transparent 25% 75%, #4fb380 75% 100%);
}
.btn-success-outline,
.btn-success-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #4fb380;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #4fb380 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
}
.btn-warning-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #e3d688 0 25%, transparent 25% 75%, #e3d688 75% 100%);
}
.btn-warning-outline,
.btn-warning-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #e3d688;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #e3d688 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #574e15 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #c04822 0 25%, transparent 25% 75%, #c04822 75% 100%);
}
.btn-danger-outline,
.btn-danger-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #c04822;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c04822 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
}
.btn-black-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #303030 0 25%, transparent 25% 75%, #303030 75% 100%);
}
.btn-black-outline,
.btn-black-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #303030;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #303030 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #a26457 !important;
  border-color: #a26457 !important;
}
.btn-white-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #f6f6f6 0 25%, transparent 25% 75%, #f6f6f6 75% 100%);
}
.btn-white-outline,
.btn-white-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #f6f6f6;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #f6f6f6 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #777777 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #ffa38a !important;
}
.text-secondary {
  color: #9b8db7 !important;
}
.text-success {
  color: #4fb380 !important;
}
.text-info {
  color: #4c82a2 !important;
}
.text-warning {
  color: #e3d688 !important;
}
.text-danger {
  color: #c04822 !important;
}
.text-white {
  color: #f6f6f6 !important;
}
.text-black {
  color: #303030 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ff5324 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #675688 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #2f6d4d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2b4a5d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #d0ba35 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #692813 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c3c3c3 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffa38a;
}
.nav-tabs .nav-link:not(.active) {
  color: #303030;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4c82a2;
}
.alert-warning {
  background-color: #e3d688;
}
.alert-danger {
  background-color: #c04822;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffa38a;
  border-color: #ffa38a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffa38a;
}
.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: #a8d9c0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9dbdd1;
}
.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: #e7947a;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Heebo', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffa38a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Heebo', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ffa38a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffa38a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffa38a;
}
.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: #ffa38a;
  border-bottom-color: #ffa38a;
}
.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: #ffa38a !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: #9b8db7 !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='%23ffa38a' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.mbr-fonts-style a:not(.mbr-fonts-style) {
  position: relative;
}
.mbr-fonts-style a:not(.mbr-fonts-style):before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 1px;
  width: 100%;
  transition: all 0.7s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  background: linear-gradient(to right, currentColor 0 25%, transparent 25% 75%, currentColor 75% 100%);
  background-position: right;
  background-size: 400% 100%;
  overflow: hidden;
}
.mbr-fonts-style a:not(.mbr-fonts-style):hover:before {
  background-position: left;
}
.container {
  max-width: 1300px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1439px) {
  .container {
    max-width: 1100px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 86%;
  }
}
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .container-fluid {
    max-width: 86%;
  }
}
.row {
  margin-left: -20px;
  margin-right: -20px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 54px;
  padding: 10px 34px 15px;
  font-weight: 700 !important;
  transition: all 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  box-shadow: none !important;
  border-radius: 0 !important;
  letter-spacing: -0.025em;
}
.mbr-section-btn .btn:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  height: 2px;
  width: calc(100% - 34px * 2);
  transition: all 0.7s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  background-position: right;
  background-size: 400% 100%;
  overflow: hidden;
}
.mbr-section-btn .btn.btn-primary {
  background-color: #fff7f5 !important;
  border-color: #fff7f5 !important;
}
.mbr-section-btn .btn.btn-black {
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}
.mbr-section-btn .btn.btn-white {
  background-color: #303030 !important;
  border-color: #303030 !important;
}
.mbr-section-btn .btn:hover:after {
  background-position: left;
}
.cid-ttjgGSzu1K .navbar-dropdown {
  position: relative !important;
}
.cid-ttjgGSzu1K .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-ttjgGSzu1K .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #eaeaea !important;
}
.cid-ttjgGSzu1K .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjgGSzu1K .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjgGSzu1K .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjgGSzu1K .dropdown-item:hover:before,
.cid-ttjgGSzu1K .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjgGSzu1K .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjgGSzu1K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjgGSzu1K .nav-link {
  position: relative;
}
.cid-ttjgGSzu1K .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjgGSzu1K .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjgGSzu1K .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ttjgGSzu1K .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjgGSzu1K .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjgGSzu1K .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjgGSzu1K .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjgGSzu1K .dropdown-menu,
.cid-ttjgGSzu1K .navbar.opened {
  background: #ffffff !important;
}
.cid-ttjgGSzu1K .nav-item:focus,
.cid-ttjgGSzu1K .nav-link:focus {
  outline: none;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjgGSzu1K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjgGSzu1K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjgGSzu1K .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-bottom: 2px solid #eaeaea !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjgGSzu1K .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjgGSzu1K .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjgGSzu1K .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjgGSzu1K .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjgGSzu1K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjgGSzu1K .navbar.collapsed {
  justify-content: center;
}
.cid-ttjgGSzu1K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjgGSzu1K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjgGSzu1K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ttjgGSzu1K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjgGSzu1K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjgGSzu1K .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-ttjgGSzu1K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjgGSzu1K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjgGSzu1K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjgGSzu1K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjgGSzu1K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjgGSzu1K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjgGSzu1K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjgGSzu1K .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-ttjgGSzu1K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjgGSzu1K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjgGSzu1K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjgGSzu1K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjgGSzu1K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjgGSzu1K .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjgGSzu1K .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjgGSzu1K .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjgGSzu1K .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjgGSzu1K .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ttjgGSzu1K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjgGSzu1K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjgGSzu1K .dropdown-item.active,
.cid-ttjgGSzu1K .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjgGSzu1K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjgGSzu1K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjgGSzu1K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjgGSzu1K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ttjgGSzu1K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjgGSzu1K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjgGSzu1K ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjgGSzu1K .navbar-buttons {
  text-align: center;
}
.cid-ttjgGSzu1K button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjgGSzu1K .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjgGSzu1K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjgGSzu1K .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-ttjgGSzu1K .navbar {
    height: 70px;
  }
  .cid-ttjgGSzu1K .navbar.opened {
    height: auto;
  }
  .cid-ttjgGSzu1K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjgGSzu1K .container,
.cid-ttjgGSzu1K .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjgGSzu1K .container,
  .cid-ttjgGSzu1K .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjgGSzu1K .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjgGSzu1K .navbar-collapse {
  min-height: 98px;
}
.cid-ttjgGSzu1K .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjgGSzu1K .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjgGSzu1K {
    min-height: 70px !important;
  }
  .cid-ttjgGSzu1K .navbar {
    min-height: 70px !important;
  }
  .cid-ttjgGSzu1K .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjgGSzu1K .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ttjgGSzu1K .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjgGSzu1K .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjgGSzu1K .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjgGSzu1K .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjgGSzu1K .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ttjgHy7mtK {
  background-image: url("../../../assets/images/22014-2000x1333.jpg");
}
.cid-ttjgHy7mtK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttjgHy7mtK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttjgHy7mtK .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-ttjgHy7mtK .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
  text-align: center;
}
.cid-ttjgHy7mtK .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-ttjgHy7mtK .mbr-section-btn {
  margin-top: 18px;
}
.cid-ttjgHy7mtK .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-ttjgHy7mtK .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-ttjgHy7mtK .mbr-text,
.cid-ttjgHy7mtK .mbr-section-btn {
  text-align: center;
}
.cid-ukG1SX1rnL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #927d6f;
  overflow: hidden;
}
.cid-ukG1SX1rnL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukG1SX1rnL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukG1SX1rnL .mbr-section-title {
  color: #ffffff;
}
.cid-ukG1SX1rnL .mbr-section-subtitle {
  color: #303030;
}
.cid-ukEQ1f5OIq {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukEQ1f5OIq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEQ1f5OIq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEQ1f5OIq .mbr-section-title {
  color: #303030;
  margin-bottom: 20px;
}
.cid-ukEQ1f5OIq .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-ukEQ1f5OIq .mbr-text {
  color: #FFFFFF;
}
.cid-ukEQ1f5OIq .mbr-section-btn {
  margin-top: 18px;
}
.cid-ukEPVonlmQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ukEPVonlmQ .container {
  max-width: 100% !important;
}
.cid-ukEPVonlmQ .mbr-section-head {
  max-width: 1300px;
  width: 100%;
  padding: 40px 0 50px;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .cid-ukEPVonlmQ .mbr-section-head {
    max-width: 1100px;
  }
}
@media (max-width: 1199px) {
  .cid-ukEPVonlmQ .mbr-section-head {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-ukEPVonlmQ .mbr-section-head {
    max-width: 86%;
  }
}
@media (max-width: 767px) {
  .cid-ukEPVonlmQ .mbr-section-head {
    padding: 30px 0 40px;
  }
}
.cid-ukEPVonlmQ .mbr-section-title {
  color: #303030;
}
.cid-ukEPVonlmQ .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-ukEPVonlmQ .items-row {
  position: relative;
  margin-top: -1px;
  margin-left: -3px !important;
  margin-right: -3px !important;
  border-top: 1px solid #e2e2e2;
}
.cid-ukEPVonlmQ .items-row:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 101vw;
  background-color: #e2e2e2;
}
.cid-ukEPVonlmQ .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 10% 10% 8% 10%;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-ukEPVonlmQ .item-wrapper {
    padding: 13% 7% 12%;
  }
}
.cid-ukEPVonlmQ .item {
  padding: 0 !important;
  margin: -1px -1px 0;
  overflow: hidden;
  border: 1px solid #e2e2e2;
}
.cid-ukEPVonlmQ .item:nth-child(1n) .item-wrapper {
  background: linear-gradient(to left, #ffffff 0 50%, #f6f6f6 50% 100%);
  background-size: 200% 100%;
  background-position: right;
}
.cid-ukEPVonlmQ .item:nth-child(1n) .item-wrapper:hover {
  background-position: left;
}
.cid-ukEPVonlmQ .item:nth-child(2n) .item-wrapper {
  background: linear-gradient(to right, #ffffff 0 50%, #f6f6f6 50% 100%);
  background-size: 200% 100%;
  background-position: left;
}
.cid-ukEPVonlmQ .item:nth-child(2n) .item-wrapper:hover {
  background-position: right;
}
.cid-ukEPVonlmQ .item-img {
  width: 100%;
  border: 1px solid #e2e2e2;
}
.cid-ukEPVonlmQ .item-img img {
  width: 100%;
  aspect-ratio: calc(53 / (10 * 3));
  object-fit: cover;
}
.cid-ukEPVonlmQ .item-content {
  margin-top: 15px;
}
.cid-ukEPVonlmQ .mbr-text {
  margin-top: 15px;
  color: #303030;
}
.cid-ukEPVonlmQ .item-title {
  margin-top: 15px;
  color: #303030;
  text-align: center;
}
.cid-ukEPVonlmQ .mbr-section-btn {
  padding-top: 10px;
  margin-top: auto !important;
}
.cid-ukEPU3UBEv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ukEPU3UBEv .container {
  max-width: 100% !important;
}
.cid-ukEPU3UBEv .mbr-section-head {
  max-width: 1300px;
  width: 100%;
  padding: 40px 0 50px;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .cid-ukEPU3UBEv .mbr-section-head {
    max-width: 1100px;
  }
}
@media (max-width: 1199px) {
  .cid-ukEPU3UBEv .mbr-section-head {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-ukEPU3UBEv .mbr-section-head {
    max-width: 86%;
  }
}
@media (max-width: 767px) {
  .cid-ukEPU3UBEv .mbr-section-head {
    padding: 30px 0 40px;
  }
}
.cid-ukEPU3UBEv .mbr-section-title {
  color: #303030;
}
.cid-ukEPU3UBEv .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-ukEPU3UBEv .items-row {
  position: relative;
  margin-top: -1px;
  margin-left: -3px !important;
  margin-right: -3px !important;
  border-top: 1px solid #e2e2e2;
}
.cid-ukEPU3UBEv .items-row:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 101vw;
  background-color: #e2e2e2;
}
.cid-ukEPU3UBEv .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 10% 10% 8% 10%;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-ukEPU3UBEv .item-wrapper {
    padding: 13% 7% 12%;
  }
}
.cid-ukEPU3UBEv .item {
  padding: 0 !important;
  margin: -1px -1px 0;
  overflow: hidden;
  border: 1px solid #e2e2e2;
}
.cid-ukEPU3UBEv .item:nth-child(1n) .item-wrapper {
  background: linear-gradient(to left, #ffffff 0 50%, #f6f6f6 50% 100%);
  background-size: 200% 100%;
  background-position: right;
}
.cid-ukEPU3UBEv .item:nth-child(1n) .item-wrapper:hover {
  background-position: left;
}
.cid-ukEPU3UBEv .item:nth-child(2n) .item-wrapper {
  background: linear-gradient(to right, #ffffff 0 50%, #f6f6f6 50% 100%);
  background-size: 200% 100%;
  background-position: left;
}
.cid-ukEPU3UBEv .item:nth-child(2n) .item-wrapper:hover {
  background-position: right;
}
.cid-ukEPU3UBEv .item-img {
  width: 100%;
  border: 1px solid #e2e2e2;
}
.cid-ukEPU3UBEv .item-img img {
  width: 100%;
  aspect-ratio: calc(53 / (10 * 3));
  object-fit: cover;
}
.cid-ukEPU3UBEv .item-content {
  margin-top: 15px;
}
.cid-ukEPU3UBEv .mbr-text {
  margin-top: 15px;
  color: #303030;
}
.cid-ukEPU3UBEv .item-title {
  margin-top: 15px;
  color: #303030;
  text-align: center;
}
.cid-ukEPU3UBEv .mbr-section-btn {
  padding-top: 10px;
  margin-top: auto !important;
}
.cid-ttji8t0rQL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/-891x591.png");
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
}
.cid-ttji8t0rQL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttji8t0rQL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1024px) {
  .cid-ttji8t0rQL {
    min-height: 750px;
  }
}
.cid-ttji8t0rQL .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-ttji8t0rQL .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ttji8t0rQL .mbr-text {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ttji8t0rQL .mbr-section-btn {
  margin-top: 18px;
}
.cid-ttji8t0rQL .mbr-text,
.cid-ttji8t0rQL .mbr-section-btn {
  text-align: center;
}
.cid-ttjj1ZiOa6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ttjj1ZiOa6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttjj1ZiOa6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttjj1ZiOa6 .mbr-section-head {
  width: 100%;
  margin-bottom: 30px;
}
.cid-ttjj1ZiOa6 .mbr-section-title {
  color: #303030;
  margin-bottom: 0;
  text-align: right;
}
.cid-ttjj1ZiOa6 .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-ttjj1ZiOa6 .mbr-iconfont {
  position: relative;
  font-size: 13px !important;
  font-family: 'Moririse2' !important;
  color: #ff9370;
  margin-left: 1rem;
  padding: 7px;
  transition: .2s all;
}
.cid-ttjj1ZiOa6 .mbr-iconfont:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 1;
  transition: .2s all;
}
.cid-ttjj1ZiOa6 .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-ttjj1ZiOa6 .panel-group {
  border: none;
}
.cid-ttjj1ZiOa6 .card {
  border-radius: 0;
}
.cid-ttjj1ZiOa6 .card:not(:first-child) {
  margin-top: 12px;
  border-top: 2px solid #eaeaea;
}
.cid-ttjj1ZiOa6 .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ttjj1ZiOa6 .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ttjj1ZiOa6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px 20px 0;
  color: #303030;
  transition: .2s all;
}
.cid-ttjj1ZiOa6 .panel-title[aria-expanded="true"] {
  padding: 12px 10px 13px 0;
}
.cid-ttjj1ZiOa6 .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ttjj1ZiOa6 .panel-title-edit {
  color: #303030;
  text-align: right;
}
.cid-ttjj1ZiOa6 .panel-body {
  padding: 0 0 30px;
}
.cid-ttjj1ZiOa6 .panel-text {
  color: #303030;
  margin: 0;
}
.cid-ukFsEqIoZx {
  background-image: url("../../../assets/images/vvv-888x590.png");
}
.cid-ukFsEqIoZx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukFsEqIoZx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukFsEqIoZx .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-ukFsEqIoZx .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-ukFsEqIoZx .mbr-text {
  color: #FFFFFF;
}
.cid-ukFsEqIoZx .mbr-section-btn {
  margin-top: 18px;
}
.cid-ttjjzAuTL1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ttjjzAuTL1 .mbr-section-head {
  margin-bottom: 50px;
}
.cid-ttjjzAuTL1 .mbr-section-title {
  color: #9b8db7;
}
.cid-ttjjzAuTL1 .mbr-section-subtitle {
  color: #303030;
  margin-top: 10px;
}
.cid-ttjjzAuTL1 .embla {
  position: relative;
  width: 100%;
}
.cid-ttjjzAuTL1 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ttjjzAuTL1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ttjjzAuTL1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ttjjzAuTL1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ttjjzAuTL1 .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: calc(100vw / 3 - 60px);
  width: calc(100vw / 3 - 60px);
  margin: 0 30px;
  border: 1px solid #eaeaea;
}
@media (max-width: 991px) {
  .cid-ttjjzAuTL1 .embla__slide {
    min-width: 50%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-ttjjzAuTL1 .embla__slide {
    min-width: 100%;
    width: 100%;
  }
}
.cid-ttjjzAuTL1 .item:focus,
.cid-ttjjzAuTL1 span:focus {
  outline: none;
}
.cid-ttjjzAuTL1 .slide-content {
  position: relative;
  border-radius: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-ttjjzAuTL1 .item-img {
  width: 100%;
}
.cid-ttjjzAuTL1 .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: calc(408 / (114 * 3));
}
.cid-ttjjzAuTL1 .embla__button--next,
.cid-ttjjzAuTL1 .embla__button--prev {
  display: flex;
}
.cid-ttjjzAuTL1 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(155, 141, 183, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-ttjjzAuTL1 .embla__button {
    display: none;
  }
}
.cid-ttjjzAuTL1 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ttjjzAuTL1 .embla__button:hover {
  background: #9b8db7;
  color: #FFFFFF;
}
.cid-ttjjzAuTL1 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttjjzAuTL1 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttjjzAuTL1 .embla__button {
    top: auto;
  }
}
.cid-ukFpihQKUj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ukFpihQKUj .row {
  justify-content: center;
}
.cid-ukFpihQKUj .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-ukFpihQKUj .mbr-section-title {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-ukFpihQKUj .content-card {
  margin-top: 40px;
}
.cid-ukFpihQKUj .content-card .content-card-icon {
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  margin: 0 auto 38px;
}
.cid-ukFpihQKUj .content-card .content-card-icon span {
  width: 42px;
  height: 42px;
  color: #ff4712;
  font-size: 42px;
}
.cid-ukFpihQKUj .content-card .content-card-text .mbr-card-title {
  margin-bottom: 15px;
}
.cid-ukFpihQKUj .content-card .content-card-text .mbr-card-text {
  margin-bottom: 0;
}
.cid-ukFpihQKUj .mbr-card-title {
  color: #080808;
  text-align: center;
}
.cid-ukFpihQKUj .mbr-card-text {
  color: #65676c;
  text-align: center;
}
.cid-ukFpihQKUj .mbr-section-title,
.cid-ukFpihQKUj .mbr-section-btn {
  color: #ffa38a;
}
.cid-ukEZ8bSqsy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ukEZ8bSqsy .content_box {
  position: relative;
  z-index: 5;
}
.cid-ukEZ8bSqsy .carousel-item {
  justify-content: center;
}
.cid-ukEZ8bSqsy .carousel-item.active,
.cid-ukEZ8bSqsy .carousel-item-next,
.cid-ukEZ8bSqsy .carousel-item-prev {
  display: flex;
}
.cid-ukEZ8bSqsy .carousel-controls a {
  transition: opacity .5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  font-size: 22px;
  height: 22px;
  width: 22px;
  padding: 10px;
  color: #ffa38a;
  opacity: 1;
}
.cid-ukEZ8bSqsy .carousel-control-next span {
  padding-left: 5px;
}
.cid-ukEZ8bSqsy .carousel-control-prev span {
  padding-right: 5px;
}
.cid-ukEZ8bSqsy .user_image {
  width: 100px;
  margin-bottom: 35px;
  overflow: hidden;
  margin: 0 auto 2rem auto;
}
.cid-ukEZ8bSqsy .user_image img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-ukEZ8bSqsy .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-ukEZ8bSqsy .user_text {
  line-height: 1.272em;
  font-weight: 500;
  color: #202020;
}
.cid-ukF1LCl2S3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-ukF1LCl2S3 .decor-wrap_1 {
  position: absolute;
  top: 2rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #ffffff 43%, #ffffff 100%);
}
.cid-ukF1LCl2S3 .decor-wrap_2 {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: 245px;
  height: 245px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #ffffff 43%, #ffffff 100%);
}
.cid-ukF1LCl2S3 .decor-wrap_3 {
  position: absolute;
  bottom: -35%;
  left: -10rem;
  width: 539px;
  height: 539px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #ffffff 43%, #ffffff 100%);
}
.cid-ukF1LCl2S3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukF1LCl2S3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ukF1LCl2S3 .container {
    padding: 0 30px;
  }
}
.cid-ukF1LCl2S3 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ukF1LCl2S3 .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ukF1LCl2S3 .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukF1LCl2S3 .title-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-ukF1LCl2S3 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row {
  margin: 0 -30px;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .mbr-section-title {
  margin-bottom: 40px !important;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .mbr-text {
  margin-bottom: 40px !important;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group {
  position: relative;
  margin-bottom: 30px !important;
  padding: 0 30px;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 10px;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 30px 30px 10px;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
  border-bottom: 2px solid #000000 !important;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group .form-control {
    padding: 16px;
  }
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group .form-control:focus {
  background-color: #ffffff;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group .form-control:hover::placeholder,
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group .form-control:focus::placeholder {
  opacity: .5;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group .form-control textarea {
  min-height: 150px;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group .form-control .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .form-group .form-control .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
  border-radius: 0;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
  padding: 0;
  margin: 0;
}
.cid-ukF1LCl2S3 .form-wrapper .dragArea.row .mbr-section-btn .btn {
  margin-top: 10px;
}
.cid-ukF1LCl2S3 .mbr-desc {
  color: #ff9370;
  text-align: center;
}
.cid-ukF1LCl2S3 .mbr-section-title {
  color: #ffffff;
}
.cid-ukF1LCl2S3 .mbr-section-title,
.cid-ukF1LCl2S3 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-ttjjAmuO65 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-ttjjAmuO65 .mbr-text {
  color: #303030;
}
.cid-ttjgGSzu1K .navbar-dropdown {
  position: relative !important;
}
.cid-ttjgGSzu1K .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-ttjgGSzu1K .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #eaeaea !important;
}
.cid-ttjgGSzu1K .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjgGSzu1K .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjgGSzu1K .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjgGSzu1K .dropdown-item:hover:before,
.cid-ttjgGSzu1K .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjgGSzu1K .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjgGSzu1K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjgGSzu1K .nav-link {
  position: relative;
}
.cid-ttjgGSzu1K .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjgGSzu1K .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjgGSzu1K .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ttjgGSzu1K .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjgGSzu1K .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjgGSzu1K .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjgGSzu1K .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjgGSzu1K .dropdown-menu,
.cid-ttjgGSzu1K .navbar.opened {
  background: #ffffff !important;
}
.cid-ttjgGSzu1K .nav-item:focus,
.cid-ttjgGSzu1K .nav-link:focus {
  outline: none;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjgGSzu1K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjgGSzu1K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjgGSzu1K .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-bottom: 2px solid #eaeaea !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjgGSzu1K .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjgGSzu1K .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjgGSzu1K .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjgGSzu1K .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjgGSzu1K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjgGSzu1K .navbar.collapsed {
  justify-content: center;
}
.cid-ttjgGSzu1K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjgGSzu1K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjgGSzu1K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ttjgGSzu1K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjgGSzu1K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjgGSzu1K .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-ttjgGSzu1K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjgGSzu1K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjgGSzu1K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjgGSzu1K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjgGSzu1K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjgGSzu1K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjgGSzu1K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjgGSzu1K .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-ttjgGSzu1K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjgGSzu1K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjgGSzu1K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjgGSzu1K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjgGSzu1K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjgGSzu1K .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjgGSzu1K .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjgGSzu1K .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjgGSzu1K .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjgGSzu1K .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ttjgGSzu1K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjgGSzu1K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjgGSzu1K .dropdown-item.active,
.cid-ttjgGSzu1K .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjgGSzu1K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjgGSzu1K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjgGSzu1K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjgGSzu1K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ttjgGSzu1K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjgGSzu1K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjgGSzu1K ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjgGSzu1K .navbar-buttons {
  text-align: center;
}
.cid-ttjgGSzu1K button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjgGSzu1K .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjgGSzu1K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjgGSzu1K .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-ttjgGSzu1K .navbar {
    height: 70px;
  }
  .cid-ttjgGSzu1K .navbar.opened {
    height: auto;
  }
  .cid-ttjgGSzu1K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjgGSzu1K .container,
.cid-ttjgGSzu1K .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjgGSzu1K .container,
  .cid-ttjgGSzu1K .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjgGSzu1K .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjgGSzu1K .navbar-collapse {
  min-height: 98px;
}
.cid-ttjgGSzu1K .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjgGSzu1K .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjgGSzu1K {
    min-height: 70px !important;
  }
  .cid-ttjgGSzu1K .navbar {
    min-height: 70px !important;
  }
  .cid-ttjgGSzu1K .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjgGSzu1K .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ttjgGSzu1K .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjgGSzu1K .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjgGSzu1K .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjgGSzu1K .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjgGSzu1K .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ukG5AKuZ9P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-barbara-olsen-7883101-2000x1333.jpg");
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
}
.cid-ukG5AKuZ9P .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukG5AKuZ9P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1024px) {
  .cid-ukG5AKuZ9P {
    min-height: 750px;
  }
}
.cid-ukG5AKuZ9P .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-ukG5AKuZ9P .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ukG5AKuZ9P .mbr-text {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ukG5AKuZ9P .mbr-section-btn {
  margin-top: 18px;
}
.cid-ukG7qlMa0N {
  padding-top: 12rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ukG7qlMa0N .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukG7qlMa0N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ukG7qlMa0N .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ukG7qlMa0N .container {
    padding: 0 12px;
  }
}
.cid-ukG7qlMa0N .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-ukG7qlMa0N .title-wrapper {
    margin-bottom: 56px;
  }
}
.cid-ukG7qlMa0N .title-wrapper .title-wrap .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-ukG7qlMa0N .title-wrapper .title-wrap .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px;
  width: 100%;
  opacity: .85;
  background-color: #ffa38a;
  border-radius: 10rem;
}
.cid-ukG7qlMa0N .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukG7qlMa0N .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 992px) {
  .cid-ukG7qlMa0N .items-wrapper {
    display: block;
  }
}
.cid-ukG7qlMa0N .items-wrapper .item {
  background-color: #f5f5f7;
  border-radius: 32px !important;
  padding: 48px;
}
@media (max-width: 1200px) {
  .cid-ukG7qlMa0N .items-wrapper .item {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-ukG7qlMa0N .items-wrapper .item {
    padding: 24px;
    margin-bottom: 1rem;
  }
}
.cid-ukG7qlMa0N .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-ukG7qlMa0N .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 22px;
}
.cid-ukG7qlMa0N .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .5em;
  width: 64px;
  height: 64px;
  position: relative;
  overflow: hidden;
}
.cid-ukG7qlMa0N .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fbcdc0;
  opacity: .85;
}
.cid-ukG7qlMa0N .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .mbr-iconfont {
  color: #1d1d1f;
  font-size: 32px;
  position: relative;
  z-index: 1;
}
.cid-ukG7qlMa0N .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-ukG7qlMa0N .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
  opacity: .8;
}
.cid-ukG7qlMa0N .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.cid-ukG7qlMa0N .mbr-section-title {
  color: #1D1D1F;
}
.cid-ukG7qlMa0N .mbr-text {
  color: #1D1D1F;
}
.cid-ukG7qlMa0N .item-title {
  color: #1D1D1F;
}
.cid-ukG7qlMa0N .item-text {
  color: #1D1D1F;
}
.cid-ukG6HGCP6Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ukG6HGCP6Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukG6HGCP6Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ukG6HGCP6Y .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ukG6HGCP6Y .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ukG6HGCP6Y .row {
  justify-content: space-between;
}
.cid-ukG6HGCP6Y .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .cid-ukG6HGCP6Y .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-ukG6HGCP6Y .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ukG6HGCP6Y .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-ukG6HGCP6Y .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-ukG6HGCP6Y .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-ukG6HGCP6Y .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-ukG6HGCP6Y .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-ukG6HGCP6Y .mbr-section-title {
  color: #000000;
}
.cid-ukG6HGCP6Y .card-title {
  color: #000000;
}
.cid-ttjjAmuO65 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-ttjjAmuO65 .mbr-text {
  color: #303030;
}
.cid-ukG8IXL2pC .navbar-dropdown {
  position: relative !important;
}
.cid-ukG8IXL2pC .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-ukG8IXL2pC .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #eaeaea !important;
}
.cid-ukG8IXL2pC .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ukG8IXL2pC .dropdown-item:after {
  right: 1rem !important;
}
.cid-ukG8IXL2pC .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ukG8IXL2pC .dropdown-item:hover:before,
.cid-ukG8IXL2pC .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ukG8IXL2pC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukG8IXL2pC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukG8IXL2pC .nav-link {
  position: relative;
}
.cid-ukG8IXL2pC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ukG8IXL2pC .container {
    flex-wrap: nowrap;
  }
}
.cid-ukG8IXL2pC .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ukG8IXL2pC .navbar-nav .nav-item {
  margin: 0;
}
.cid-ukG8IXL2pC .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ukG8IXL2pC .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ukG8IXL2pC .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ukG8IXL2pC .dropdown-menu,
.cid-ukG8IXL2pC .navbar.opened {
  background: #ffffff !important;
}
.cid-ukG8IXL2pC .nav-item:focus,
.cid-ukG8IXL2pC .nav-link:focus {
  outline: none;
}
.cid-ukG8IXL2pC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukG8IXL2pC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukG8IXL2pC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukG8IXL2pC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukG8IXL2pC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukG8IXL2pC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukG8IXL2pC .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-bottom: 2px solid #eaeaea !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ukG8IXL2pC .navbar.opened {
  transition: all 0.3s;
}
.cid-ukG8IXL2pC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukG8IXL2pC .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ukG8IXL2pC .navbar .navbar-logo img {
  width: auto;
}
.cid-ukG8IXL2pC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukG8IXL2pC .navbar.collapsed {
  justify-content: center;
}
.cid-ukG8IXL2pC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukG8IXL2pC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukG8IXL2pC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ukG8IXL2pC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukG8IXL2pC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukG8IXL2pC .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-ukG8IXL2pC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukG8IXL2pC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukG8IXL2pC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukG8IXL2pC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukG8IXL2pC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukG8IXL2pC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukG8IXL2pC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukG8IXL2pC .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-ukG8IXL2pC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukG8IXL2pC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukG8IXL2pC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukG8IXL2pC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukG8IXL2pC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukG8IXL2pC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukG8IXL2pC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukG8IXL2pC .navbar.navbar-short {
  min-height: 100px;
}
.cid-ukG8IXL2pC .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ukG8IXL2pC .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ukG8IXL2pC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukG8IXL2pC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukG8IXL2pC .dropdown-item.active,
.cid-ukG8IXL2pC .dropdown-item:active {
  background-color: transparent;
}
.cid-ukG8IXL2pC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukG8IXL2pC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukG8IXL2pC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukG8IXL2pC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukG8IXL2pC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukG8IXL2pC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukG8IXL2pC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukG8IXL2pC .navbar-buttons {
  text-align: center;
}
.cid-ukG8IXL2pC button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ukG8IXL2pC button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ukG8IXL2pC button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ukG8IXL2pC button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ukG8IXL2pC button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ukG8IXL2pC button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ukG8IXL2pC button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-ukG8IXL2pC button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ukG8IXL2pC button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ukG8IXL2pC button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ukG8IXL2pC button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ukG8IXL2pC nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ukG8IXL2pC nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-ukG8IXL2pC nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-ukG8IXL2pC nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ukG8IXL2pC nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ukG8IXL2pC .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ukG8IXL2pC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukG8IXL2pC .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-ukG8IXL2pC .navbar {
    height: 70px;
  }
  .cid-ukG8IXL2pC .navbar.opened {
    height: auto;
  }
  .cid-ukG8IXL2pC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukG8IXL2pC .container,
.cid-ukG8IXL2pC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukG8IXL2pC .container,
  .cid-ukG8IXL2pC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukG8IXL2pC .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ukG8IXL2pC .navbar-collapse {
  min-height: 98px;
}
.cid-ukG8IXL2pC .mbr-section-btn {
  max-width: 35%;
}
.cid-ukG8IXL2pC .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ukG8IXL2pC {
    min-height: 70px !important;
  }
  .cid-ukG8IXL2pC .navbar {
    min-height: 70px !important;
  }
  .cid-ukG8IXL2pC .container-fluid {
    padding: 0 7%;
  }
  .cid-ukG8IXL2pC .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ukG8IXL2pC .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ukG8IXL2pC .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ukG8IXL2pC .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ukG8IXL2pC .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ukG8IXL2pC .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ukG8IXL2pC .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ukG8IXL2pC .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ukG8IXL2pC .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ukG8IXL2pC .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ukG8IYwf3U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-barbara-olsen-7882845-1920x1280.jpg");
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
}
.cid-ukG8IYwf3U .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukG8IYwf3U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1024px) {
  .cid-ukG8IYwf3U {
    min-height: 750px;
  }
}
.cid-ukG8IYwf3U .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-ukG8IYwf3U .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ukG8IYwf3U .mbr-text {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ukG8IYwf3U .mbr-section-btn {
  margin-top: 18px;
}
.cid-ukG8IZeChf {
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ukG8IZeChf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukG8IZeChf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ukG8IZeChf .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ukG8IZeChf .container {
    padding: 0 12px;
  }
}
.cid-ukG8IZeChf .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-ukG8IZeChf .title-wrapper {
    margin-bottom: 56px;
  }
}
.cid-ukG8IZeChf .title-wrapper .title-wrap .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-ukG8IZeChf .title-wrapper .title-wrap .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px;
  width: 100%;
  opacity: .85;
  background-color: #ffa38a;
  border-radius: 10rem;
}
.cid-ukG8IZeChf .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukG8IZeChf .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 992px) {
  .cid-ukG8IZeChf .items-wrapper {
    display: block;
  }
}
.cid-ukG8IZeChf .items-wrapper .item {
  background-color: #f5f5f7;
  border-radius: 32px !important;
  padding: 48px;
}
@media (max-width: 1200px) {
  .cid-ukG8IZeChf .items-wrapper .item {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-ukG8IZeChf .items-wrapper .item {
    padding: 24px;
    margin-bottom: 1rem;
  }
}
.cid-ukG8IZeChf .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-ukG8IZeChf .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 22px;
}
.cid-ukG8IZeChf .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .5em;
  width: 64px;
  height: 64px;
  position: relative;
  overflow: hidden;
}
.cid-ukG8IZeChf .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fbcdc0;
  opacity: .85;
}
.cid-ukG8IZeChf .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .mbr-iconfont {
  color: #1d1d1f;
  font-size: 32px;
  position: relative;
  z-index: 1;
}
.cid-ukG8IZeChf .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-ukG8IZeChf .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
  opacity: .8;
}
.cid-ukG8IZeChf .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.cid-ukG8IZeChf .mbr-section-title {
  color: #1D1D1F;
}
.cid-ukG8IZeChf .mbr-text {
  color: #1D1D1F;
}
.cid-ukG8IZeChf .item-title {
  color: #1D1D1F;
}
.cid-ukG8IZeChf .item-text {
  color: #1D1D1F;
}
.cid-ukG8IZYXqO {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ukG8IZYXqO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukG8IZYXqO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ukG8IZYXqO .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ukG8IZYXqO .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ukG8IZYXqO .row {
  justify-content: space-between;
}
.cid-ukG8IZYXqO .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .cid-ukG8IZYXqO .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-ukG8IZYXqO .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ukG8IZYXqO .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-ukG8IZYXqO .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-ukG8IZYXqO .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-ukG8IZYXqO .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-ukG8IZYXqO .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-ukG8IZYXqO .mbr-section-title {
  color: #000000;
}
.cid-ukG8IZYXqO .card-title {
  color: #000000;
}
.cid-ukG8J0IqBr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-ukG8J0IqBr .mbr-text {
  color: #303030;
}
.cid-ukGaiExDE8 .navbar-dropdown {
  position: relative !important;
}
.cid-ukGaiExDE8 .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-ukGaiExDE8 .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #eaeaea !important;
}
.cid-ukGaiExDE8 .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ukGaiExDE8 .dropdown-item:after {
  right: 1rem !important;
}
.cid-ukGaiExDE8 .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ukGaiExDE8 .dropdown-item:hover:before,
.cid-ukGaiExDE8 .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ukGaiExDE8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukGaiExDE8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukGaiExDE8 .nav-link {
  position: relative;
}
.cid-ukGaiExDE8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ukGaiExDE8 .container {
    flex-wrap: nowrap;
  }
}
.cid-ukGaiExDE8 .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ukGaiExDE8 .navbar-nav .nav-item {
  margin: 0;
}
.cid-ukGaiExDE8 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ukGaiExDE8 .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ukGaiExDE8 .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ukGaiExDE8 .dropdown-menu,
.cid-ukGaiExDE8 .navbar.opened {
  background: #ffffff !important;
}
.cid-ukGaiExDE8 .nav-item:focus,
.cid-ukGaiExDE8 .nav-link:focus {
  outline: none;
}
.cid-ukGaiExDE8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukGaiExDE8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukGaiExDE8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukGaiExDE8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukGaiExDE8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukGaiExDE8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukGaiExDE8 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-bottom: 2px solid #eaeaea !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ukGaiExDE8 .navbar.opened {
  transition: all 0.3s;
}
.cid-ukGaiExDE8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukGaiExDE8 .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ukGaiExDE8 .navbar .navbar-logo img {
  width: auto;
}
.cid-ukGaiExDE8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukGaiExDE8 .navbar.collapsed {
  justify-content: center;
}
.cid-ukGaiExDE8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukGaiExDE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukGaiExDE8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ukGaiExDE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukGaiExDE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukGaiExDE8 .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-ukGaiExDE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukGaiExDE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukGaiExDE8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukGaiExDE8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukGaiExDE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukGaiExDE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukGaiExDE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukGaiExDE8 .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-ukGaiExDE8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukGaiExDE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukGaiExDE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukGaiExDE8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukGaiExDE8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukGaiExDE8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukGaiExDE8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukGaiExDE8 .navbar.navbar-short {
  min-height: 100px;
}
.cid-ukGaiExDE8 .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ukGaiExDE8 .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ukGaiExDE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukGaiExDE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukGaiExDE8 .dropdown-item.active,
.cid-ukGaiExDE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-ukGaiExDE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukGaiExDE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukGaiExDE8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukGaiExDE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukGaiExDE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukGaiExDE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukGaiExDE8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukGaiExDE8 .navbar-buttons {
  text-align: center;
}
.cid-ukGaiExDE8 button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ukGaiExDE8 button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ukGaiExDE8 button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ukGaiExDE8 button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ukGaiExDE8 button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ukGaiExDE8 button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ukGaiExDE8 button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-ukGaiExDE8 button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ukGaiExDE8 button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ukGaiExDE8 button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ukGaiExDE8 button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ukGaiExDE8 nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ukGaiExDE8 nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-ukGaiExDE8 nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-ukGaiExDE8 nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ukGaiExDE8 nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ukGaiExDE8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ukGaiExDE8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukGaiExDE8 .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-ukGaiExDE8 .navbar {
    height: 70px;
  }
  .cid-ukGaiExDE8 .navbar.opened {
    height: auto;
  }
  .cid-ukGaiExDE8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukGaiExDE8 .container,
.cid-ukGaiExDE8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukGaiExDE8 .container,
  .cid-ukGaiExDE8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukGaiExDE8 .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ukGaiExDE8 .navbar-collapse {
  min-height: 98px;
}
.cid-ukGaiExDE8 .mbr-section-btn {
  max-width: 35%;
}
.cid-ukGaiExDE8 .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ukGaiExDE8 {
    min-height: 70px !important;
  }
  .cid-ukGaiExDE8 .navbar {
    min-height: 70px !important;
  }
  .cid-ukGaiExDE8 .container-fluid {
    padding: 0 7%;
  }
  .cid-ukGaiExDE8 .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ukGaiExDE8 .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ukGaiExDE8 .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ukGaiExDE8 .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ukGaiExDE8 .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ukGaiExDE8 .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ukGaiExDE8 .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ukGaiExDE8 .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ukGaiExDE8 .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ukGaiExDE8 .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ukGaiFhOto {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-barbara-olsen-7882393-1920x2880.jpg");
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
}
.cid-ukGaiFhOto .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGaiFhOto .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1024px) {
  .cid-ukGaiFhOto {
    min-height: 750px;
  }
}
.cid-ukGaiFhOto .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-ukGaiFhOto .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ukGaiFhOto .mbr-text {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ukGaiFhOto .mbr-section-btn {
  margin-top: 18px;
}
.cid-ukGaiFX2Yh {
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ukGaiFX2Yh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGaiFX2Yh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ukGaiFX2Yh .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ukGaiFX2Yh .container {
    padding: 0 12px;
  }
}
.cid-ukGaiFX2Yh .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-ukGaiFX2Yh .title-wrapper {
    margin-bottom: 56px;
  }
}
.cid-ukGaiFX2Yh .title-wrapper .title-wrap .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-ukGaiFX2Yh .title-wrapper .title-wrap .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px;
  width: 100%;
  opacity: .85;
  background-color: #ffa38a;
  border-radius: 10rem;
}
.cid-ukGaiFX2Yh .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukGaiFX2Yh .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 992px) {
  .cid-ukGaiFX2Yh .items-wrapper {
    display: block;
  }
}
.cid-ukGaiFX2Yh .items-wrapper .item {
  background-color: #f5f5f7;
  border-radius: 32px !important;
  padding: 48px;
}
@media (max-width: 1200px) {
  .cid-ukGaiFX2Yh .items-wrapper .item {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-ukGaiFX2Yh .items-wrapper .item {
    padding: 24px;
    margin-bottom: 1rem;
  }
}
.cid-ukGaiFX2Yh .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-ukGaiFX2Yh .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 22px;
}
.cid-ukGaiFX2Yh .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .5em;
  width: 64px;
  height: 64px;
  position: relative;
  overflow: hidden;
}
.cid-ukGaiFX2Yh .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fbcdc0;
  opacity: .85;
}
.cid-ukGaiFX2Yh .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .mbr-iconfont {
  color: #1d1d1f;
  font-size: 32px;
  position: relative;
  z-index: 1;
}
.cid-ukGaiFX2Yh .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-ukGaiFX2Yh .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
  opacity: .8;
}
.cid-ukGaiFX2Yh .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.cid-ukGaiFX2Yh .mbr-section-title {
  color: #1D1D1F;
}
.cid-ukGaiFX2Yh .mbr-text {
  color: #1D1D1F;
}
.cid-ukGaiFX2Yh .item-title {
  color: #1D1D1F;
}
.cid-ukGaiFX2Yh .item-text {
  color: #1D1D1F;
}
.cid-ukGaiGHGVa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ukGaiGHGVa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGaiGHGVa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ukGaiGHGVa .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ukGaiGHGVa .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ukGaiGHGVa .row {
  justify-content: space-between;
}
.cid-ukGaiGHGVa .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .cid-ukGaiGHGVa .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-ukGaiGHGVa .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ukGaiGHGVa .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-ukGaiGHGVa .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-ukGaiGHGVa .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-ukGaiGHGVa .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-ukGaiGHGVa .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-ukGaiGHGVa .mbr-section-title {
  color: #000000;
}
.cid-ukGaiGHGVa .card-title {
  color: #000000;
}
.cid-ukGaiHogWf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-ukGaiHogWf .mbr-text {
  color: #303030;
}
.cid-ukGbpALIgg .navbar-dropdown {
  position: relative !important;
}
.cid-ukGbpALIgg .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-ukGbpALIgg .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #eaeaea !important;
}
.cid-ukGbpALIgg .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ukGbpALIgg .dropdown-item:after {
  right: 1rem !important;
}
.cid-ukGbpALIgg .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ukGbpALIgg .dropdown-item:hover:before,
.cid-ukGbpALIgg .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ukGbpALIgg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukGbpALIgg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukGbpALIgg .nav-link {
  position: relative;
}
.cid-ukGbpALIgg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ukGbpALIgg .container {
    flex-wrap: nowrap;
  }
}
.cid-ukGbpALIgg .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ukGbpALIgg .navbar-nav .nav-item {
  margin: 0;
}
.cid-ukGbpALIgg .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ukGbpALIgg .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ukGbpALIgg .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ukGbpALIgg .dropdown-menu,
.cid-ukGbpALIgg .navbar.opened {
  background: #ffffff !important;
}
.cid-ukGbpALIgg .nav-item:focus,
.cid-ukGbpALIgg .nav-link:focus {
  outline: none;
}
.cid-ukGbpALIgg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukGbpALIgg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukGbpALIgg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukGbpALIgg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukGbpALIgg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukGbpALIgg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukGbpALIgg .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-bottom: 2px solid #eaeaea !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ukGbpALIgg .navbar.opened {
  transition: all 0.3s;
}
.cid-ukGbpALIgg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukGbpALIgg .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ukGbpALIgg .navbar .navbar-logo img {
  width: auto;
}
.cid-ukGbpALIgg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukGbpALIgg .navbar.collapsed {
  justify-content: center;
}
.cid-ukGbpALIgg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukGbpALIgg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukGbpALIgg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ukGbpALIgg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukGbpALIgg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukGbpALIgg .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-ukGbpALIgg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukGbpALIgg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukGbpALIgg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukGbpALIgg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukGbpALIgg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukGbpALIgg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukGbpALIgg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukGbpALIgg .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-ukGbpALIgg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukGbpALIgg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukGbpALIgg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukGbpALIgg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukGbpALIgg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukGbpALIgg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukGbpALIgg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukGbpALIgg .navbar.navbar-short {
  min-height: 100px;
}
.cid-ukGbpALIgg .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ukGbpALIgg .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ukGbpALIgg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukGbpALIgg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukGbpALIgg .dropdown-item.active,
.cid-ukGbpALIgg .dropdown-item:active {
  background-color: transparent;
}
.cid-ukGbpALIgg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukGbpALIgg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukGbpALIgg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukGbpALIgg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukGbpALIgg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukGbpALIgg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukGbpALIgg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukGbpALIgg .navbar-buttons {
  text-align: center;
}
.cid-ukGbpALIgg button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ukGbpALIgg button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ukGbpALIgg button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ukGbpALIgg button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ukGbpALIgg button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ukGbpALIgg button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ukGbpALIgg button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-ukGbpALIgg button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ukGbpALIgg button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ukGbpALIgg button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ukGbpALIgg button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ukGbpALIgg nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ukGbpALIgg nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-ukGbpALIgg nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-ukGbpALIgg nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ukGbpALIgg nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ukGbpALIgg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ukGbpALIgg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukGbpALIgg .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-ukGbpALIgg .navbar {
    height: 70px;
  }
  .cid-ukGbpALIgg .navbar.opened {
    height: auto;
  }
  .cid-ukGbpALIgg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukGbpALIgg .container,
.cid-ukGbpALIgg .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukGbpALIgg .container,
  .cid-ukGbpALIgg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukGbpALIgg .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ukGbpALIgg .navbar-collapse {
  min-height: 98px;
}
.cid-ukGbpALIgg .mbr-section-btn {
  max-width: 35%;
}
.cid-ukGbpALIgg .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ukGbpALIgg {
    min-height: 70px !important;
  }
  .cid-ukGbpALIgg .navbar {
    min-height: 70px !important;
  }
  .cid-ukGbpALIgg .container-fluid {
    padding: 0 7%;
  }
  .cid-ukGbpALIgg .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ukGbpALIgg .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ukGbpALIgg .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ukGbpALIgg .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ukGbpALIgg .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ukGbpALIgg .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ukGbpALIgg .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ukGbpALIgg .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ukGbpALIgg .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ukGbpALIgg .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ukGbpBweIh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-sami-aksu-48867324-13211747-2000x3000.jpeg");
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
}
.cid-ukGbpBweIh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGbpBweIh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1024px) {
  .cid-ukGbpBweIh {
    min-height: 750px;
  }
}
.cid-ukGbpBweIh .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-ukGbpBweIh .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ukGbpBweIh .mbr-text {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-ukGbpBweIh .mbr-section-btn {
  margin-top: 18px;
}
.cid-ukGbpCb5fF {
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ukGbpCb5fF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGbpCb5fF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ukGbpCb5fF .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ukGbpCb5fF .container {
    padding: 0 12px;
  }
}
.cid-ukGbpCb5fF .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-ukGbpCb5fF .title-wrapper {
    margin-bottom: 56px;
  }
}
.cid-ukGbpCb5fF .title-wrapper .title-wrap .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-ukGbpCb5fF .title-wrapper .title-wrap .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px;
  width: 100%;
  opacity: .85;
  background-color: #ffa38a;
  border-radius: 10rem;
}
.cid-ukGbpCb5fF .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukGbpCb5fF .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 992px) {
  .cid-ukGbpCb5fF .items-wrapper {
    display: block;
  }
}
.cid-ukGbpCb5fF .items-wrapper .item {
  background-color: #f5f5f7;
  border-radius: 32px !important;
  padding: 48px;
}
@media (max-width: 1200px) {
  .cid-ukGbpCb5fF .items-wrapper .item {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-ukGbpCb5fF .items-wrapper .item {
    padding: 24px;
    margin-bottom: 1rem;
  }
}
.cid-ukGbpCb5fF .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-ukGbpCb5fF .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 22px;
}
.cid-ukGbpCb5fF .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .5em;
  width: 64px;
  height: 64px;
  position: relative;
  overflow: hidden;
}
.cid-ukGbpCb5fF .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fbcdc0;
  opacity: .85;
}
.cid-ukGbpCb5fF .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .mbr-iconfont {
  color: #1d1d1f;
  font-size: 32px;
  position: relative;
  z-index: 1;
}
.cid-ukGbpCb5fF .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-ukGbpCb5fF .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
  opacity: .8;
}
.cid-ukGbpCb5fF .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.cid-ukGbpCb5fF .mbr-section-title {
  color: #1D1D1F;
}
.cid-ukGbpCb5fF .mbr-text {
  color: #1D1D1F;
}
.cid-ukGbpCb5fF .item-title {
  color: #1D1D1F;
}
.cid-ukGbpCb5fF .item-text {
  color: #1D1D1F;
}
.cid-ukGbpCWtac {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ukGbpCWtac .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGbpCWtac .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ukGbpCWtac .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ukGbpCWtac .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ukGbpCWtac .row {
  justify-content: space-between;
}
.cid-ukGbpCWtac .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .cid-ukGbpCWtac .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-ukGbpCWtac .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ukGbpCWtac .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-ukGbpCWtac .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-ukGbpCWtac .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-ukGbpCWtac .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-ukGbpCWtac .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-ukGbpCWtac .mbr-section-title {
  color: #000000;
}
.cid-ukGbpCWtac .card-title {
  color: #000000;
}
.cid-ukGbpDGYhO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-ukGbpDGYhO .mbr-text {
  color: #303030;
}
