.btn {
  border-width: 2px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Reddit Sans;
}
.display-1 {
  font-family: 'Neuton', serif;
  font-size: 4rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Neuton', serif;
  font-size: 3.125rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Neuton', serif;
  font-size: 1.5rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Neuton', serif;
  font-size: 2.125rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.65625rem;
}
.display-7 {
  font-family: 'Neuton', serif;
  font-size: 1.2rem;
  line-height: 1.15;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.7rem;
    font-size: calc( 1.3937499999999998rem + (2.125 - 1.3937499999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.3937499999999998rem + (2.125 - 1.3937499999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #d42017 !important;
}
.bg-success {
  background-color: #fff1e2 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #45cb20 !important;
}
.bg-danger {
  background-color: #ff951b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #d42017 !important;
  border-color: #d42017 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #e93e35 !important;
  border-color: #e93e35 !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #e93e35 !important;
  border-color: #e93e35 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ed463f !important;
  border-color: #ed463f !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #f1736e !important;
  border-color: #f1736e !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #f1736e !important;
  border-color: #f1736e !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success,
.btn-success:active {
  background-color: #fff1e2 !important;
  border-color: #fff1e2 !important;
  color: #e27500 !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #e27500 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #45cb20 !important;
  border-color: #45cb20 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #61e03e !important;
  border-color: #61e03e !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #61e03e !important;
  border-color: #61e03e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff951b !important;
  border-color: #ff951b !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #ffad4e !important;
  border-color: #ffad4e !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ffad4e !important;
  border-color: #ffad4e !important;
}
.btn-white,
.btn-white:active {
  background-color: #f7f7f7 !important;
  border-color: #f7f7f7 !important;
  color: #787878 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #787878 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #d42017;
  color: #d42017;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #86140f !important;
  background-color: transparent !important;
  border-color: #86140f !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #d42017 !important;
  border-color: #d42017 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ed463f;
  color: #ed463f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c31912 !important;
  background-color: transparent !important;
  border-color: #c31912 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ed463f !important;
  border-color: #ed463f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #fff1e2;
  color: #fff1e2;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffc78b !important;
  background-color: transparent !important;
  border-color: #ffc78b !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #e27500 !important;
  background-color: #fff1e2 !important;
  border-color: #fff1e2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #45cb20;
  color: #45cb20;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #2c8014 !important;
  background-color: transparent !important;
  border-color: #2c8014 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #45cb20 !important;
  border-color: #45cb20 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff951b;
  color: #ff951b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c36900 !important;
  background-color: transparent !important;
  border-color: #c36900 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff951b !important;
  border-color: #ff951b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #d42017 !important;
}
.text-secondary {
  color: #ed463f !important;
}
.text-success {
  color: #fff1e2 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #45cb20 !important;
}
.text-danger {
  color: #ff951b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #78120d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b51811 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ffc07c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #277312 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b46000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #d42017;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #45cb20;
}
.alert-danger {
  background-color: #ff951b;
}
.mbr-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #d42017;
  border-color: #d42017;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #d42017;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f8c2bf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #cdf5c2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fff4e7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Neuton', serif;
  font-size: 1.2rem;
  line-height: 1.15;
  font-weight: 400;
  border-radius: 100px !important;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #d42017 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Neuton', serif;
  font-size: 1.2rem;
  line-height: 1.15;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #d42017;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn .btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #d42017;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #d42017;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #d42017;
  border-bottom-color: #d42017;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #d42017 !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: #ed463f !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='%23d42017' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn {
  width: 100%;
}
.mbr-section-btn .btn {
  justify-content: space-between;
  padding: 10px 10px 10px 30px;
  border-radius: 12px !important;
  font-weight: 400 !important;
  width: 100%;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn .btn:focus .mbr-iconfont {
  border-radius: 100% !important;
}
.mbr-section-btn .btn .mbr-iconfont {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border: 2px solid;
  border-radius: 8px !important;
  transition: all 0.3s ease-in-out;
}
.mbr-desc,
.item-desc,
.nav-item {
  border-radius: 100px;
}
.form-control {
  border-radius: 12px !important;
}
.mbr-iconfont {
  border-radius: 12px;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper,
.content-wrap,
.desc-wrap,
.slider-wrap,
.item-content,
.items-wrapper,
.embla__viewport {
  border-radius: 1rem !important;
}
.contacts-wrapper {
  border-radius: 8px !important;
}
.banner .mbr-section-btn .btn {
  width: auto !important;
  padding: 10px 15px;
  justify-content: center;
}
.cid-ukEuy6qvZh .navbar-dropdown {
  background-color: #ccc8e0 !important;
  padding: 0;
}
.cid-ukEuy6qvZh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ccc8e0 !important;
  background: #ccc8e0;
}
.cid-ukEuy6qvZh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .menu_box .navbar.opened,
  .cid-ukEuy6qvZh .menu_box .navbar-collapse {
    background-color: #ccc8e0 !important;
    transition: all 0s ease 0s;
  }
}
.cid-ukEuy6qvZh .navbar-dropdown {
  position: relative !important;
}
.cid-ukEuy6qvZh .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ukEuy6qvZh .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ukEuy6qvZh .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ukEuy6qvZh .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-ukEuy6qvZh .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ukEuy6qvZh .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ukEuy6qvZh .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ukEuy6qvZh .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ukEuy6qvZh .offcanvas-body .mbr-text,
  .cid-ukEuy6qvZh .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-ukEuy6qvZh .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ukEuy6qvZh ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ukEuy6qvZh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukEuy6qvZh .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-ukEuy6qvZh .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ukEuy6qvZh li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ukEuy6qvZh .lg_brand {
    margin: 0 1rem;
  }
}
.cid-ukEuy6qvZh .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ukEuy6qvZh .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .nav-item {
    margin: 0 !important;
  }
}
.cid-ukEuy6qvZh .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ukEuy6qvZh .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ukEuy6qvZh .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukEuy6qvZh .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ukEuy6qvZh .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ukEuy6qvZh .offcanvas_box {
    display: none;
  }
}
.cid-ukEuy6qvZh .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-ukEuy6qvZh .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ukEuy6qvZh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ukEuy6qvZh .container {
  display: flex;
  margin: auto;
}
.cid-ukEuy6qvZh .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ukEuy6qvZh .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ukEuy6qvZh .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ukEuy6qvZh .navbar-caption {
  color: #d2d2d2;
}
.cid-ukEuy6qvZh .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ukEuy6qvZh .navbar-nav {
    margin: 0;
  }
}
.cid-ukEuy6qvZh .dropdown-menu,
.cid-ukEuy6qvZh .navbar.opened {
  background-color: false !important;
}
.cid-ukEuy6qvZh .nav-item:focus,
.cid-ukEuy6qvZh .nav-link:focus {
  outline: none;
}
.cid-ukEuy6qvZh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukEuy6qvZh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukEuy6qvZh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukEuy6qvZh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukEuy6qvZh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukEuy6qvZh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukEuy6qvZh .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-ukEuy6qvZh .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-ukEuy6qvZh .navbar.opened {
  transition: all 0.3s;
}
.cid-ukEuy6qvZh .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ukEuy6qvZh .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-ukEuy6qvZh .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-ukEuy6qvZh .navbar.collapsed {
  justify-content: center;
}
.cid-ukEuy6qvZh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukEuy6qvZh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ukEuy6qvZh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukEuy6qvZh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukEuy6qvZh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukEuy6qvZh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ukEuy6qvZh .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ukEuy6qvZh .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-ukEuy6qvZh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukEuy6qvZh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukEuy6qvZh .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ukEuy6qvZh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukEuy6qvZh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ukEuy6qvZh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukEuy6qvZh .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ukEuy6qvZh .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ukEuy6qvZh .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ukEuy6qvZh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukEuy6qvZh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukEuy6qvZh .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ukEuy6qvZh .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukEuy6qvZh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukEuy6qvZh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukEuy6qvZh .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukEuy6qvZh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukEuy6qvZh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukEuy6qvZh .dropdown-item.active,
.cid-ukEuy6qvZh .dropdown-item:active {
  background-color: transparent;
}
.cid-ukEuy6qvZh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukEuy6qvZh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukEuy6qvZh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukEuy6qvZh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukEuy6qvZh ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-ukEuy6qvZh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukEuy6qvZh button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ccc8e0;
  background: #000000;
}
.cid-ukEuy6qvZh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-ukEuy6qvZh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukEuy6qvZh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukEuy6qvZh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukEuy6qvZh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukEuy6qvZh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukEuy6qvZh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukEuy6qvZh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukEuy6qvZh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukEuy6qvZh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ukEuy6qvZh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukEuy6qvZh .navbar {
    height: 70px;
  }
  .cid-ukEuy6qvZh .navbar.opened {
    height: auto;
  }
  .cid-ukEuy6qvZh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukEuy6qvZh .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-ukEuy6qvZh .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-ukEuy6qvZh .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-ukEuy6qvZh .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-ukEuy6qvZh .navbar-caption:hover {
  color: #d42017;
}
@media (min-width: 992px) {
  .cid-ukEuy6qvZh .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ukEuy6qvZh .mbr-section-subtitle {
  color: #000000;
}
.cid-ukEuy6qvZh .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ukEuy6qvZh .text_widget {
  color: #000000;
}
.cid-ukEuy6qvZh .mbr-section-subtitle,
.cid-ukEuy6qvZh .text_widget,
.cid-ukEuy6qvZh .mbr-section-btn {
  text-align: center;
}
.cid-ukEuy6qvZh a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ukGqAg4Mmr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8e7d2;
}
.cid-ukGqAg4Mmr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGqAg4Mmr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGqAg4Mmr .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-ukGqAg4Mmr .container-fluid {
    padding: 0 12px;
  }
}
.cid-ukGqAg4Mmr .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ukGqAg4Mmr .container {
    padding: 0 20px;
  }
}
.cid-ukGqAg4Mmr .row {
  margin-top: -2px;
}
.cid-ukGqAg4Mmr .card {
  padding: 0;
}
.cid-ukGqAg4Mmr .image-wrapper {
  border: 2px solid #706f6d;
}
.cid-ukGqAg4Mmr .image-wrapper img {
  height: 650px;
  width: 70%;
  object-fit: cover;
  border-bottom-right-radius: 45rem;
}
@media (max-width: 992px) {
  .cid-ukGqAg4Mmr .image-wrapper img {
    height: 450px;
    width: 100%;
  }
}
.cid-ukGqAg4Mmr .title-wrapper {
  border: 2px solid #706f6d;
  border-top: none;
  padding: 0 64px 64px;
  margin-top: -4rem;
}
@media (max-width: 992px) {
  .cid-ukGqAg4Mmr .title-wrapper {
    padding: 0 20px 50px;
  }
}
@media (max-width: 425px) {
  .cid-ukGqAg4Mmr .title-wrapper {
    margin-top: -2rem;
  }
}
.cid-ukGqAg4Mmr .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ukGqAg4Mmr .title-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ukGqAg4Mmr .title-wrapper .text-wrapper {
    display: block;
  }
}
.cid-ukGqAg4Mmr .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ukGqAg4Mmr .title-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-ukGqAg4Mmr .title-wrapper .text-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ukGqAg4Mmr .title-wrapper .text-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-ukGqAg4Mmr .mbr-section-title {
  color: #ffffff;
}
.cid-ukGqAg4Mmr .mbr-text {
  color: #ffffff;
}
.cid-ukGqAg4Mmr .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ukGqAg4Mmr .mbr-section-btn {
    text-align: left;
  }
}
.cid-ukGqAg4Mmr .mbr-section-title,
.cid-ukGqAg4Mmr .mbr-section-btn {
  color: #000000;
}
.cid-ukGqAg4Mmr .mbr-text,
.cid-ukGqAg4Mmr .mbr-section-btn {
  color: #000000;
}
.cid-ukEwYDPG5h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukEwYDPG5h .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEwYDPG5h .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-ukEwYDPG5h .container {
    padding: 0 15px;
  }
}
.cid-ukEwYDPG5h .row {
  justify-content: center;
}
.cid-ukEwYDPG5h .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukEwYDPG5h .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ukEwYDPG5h .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-ukEwYDPG5h .subtitle-wrapper {
    padding: 0;
  }
}
.cid-ukEwYDPG5h .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ukEwYDPG5h .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-ukEwYDPG5h .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-ukEwYDPG5h .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-ukEwYDPG5h .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-ukEwYDPG5h .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukEwYDPG5h .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #000000;
  color: #f1dd26;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-ukEwYDPG5h .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-ukEwYDPG5h .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ukEwYDPG5h .mbr-section-subtitle {
  color: #000000;
}
.cid-ukEwYDPG5h .list {
  color: #ffffff;
}
.cid-ukEwYDPG5h .list,
.cid-ukEwYDPG5h .item-wrap {
  color: #000000;
}
.cid-ukE99j5hB0 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f8e7d2;
}
.cid-ukE99j5hB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukE99j5hB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukE99j5hB0 .row {
  justify-content: space-between;
}
.cid-ukE99j5hB0 .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-ukE99j5hB0 .content-wrapper {
    padding: 0;
  }
}
.cid-ukE99j5hB0 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukE99j5hB0 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ukE99j5hB0 .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukE99j5hB0 .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-ukE99j5hB0 .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ukE99j5hB0 .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-ukE99j5hB0 .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-ukE99j5hB0 .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-ukE99j5hB0 .mbr-section-title {
  color: #000000;
}
.cid-ukE99j5hB0 .mbr-desc {
  color: #000000;
}
.cid-ukE99j5hB0 .mbr-text {
  color: #000000;
}
.cid-ukDRsPMzEV {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukDRsPMzEV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukDRsPMzEV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukDRsPMzEV .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-ukDRsPMzEV .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukDRsPMzEV .content-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-ukDRsPMzEV .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukDRsPMzEV .image-wrapper img {
    height: 350px;
  }
}
.cid-ukDRsPMzEV .mbr-section-title {
  color: #404349;
}
.cid-ukDRsPMzEV .mbr-desc {
  color: #b19a7c;
}
.cid-ukDRsPMzEV .mbr-text {
  color: #404349;
}
.cid-ukDRsPMzEV .mbr-desc,
.cid-ukDRsPMzEV .desc-wrapper {
  text-align: center;
  color: #000000;
}
.cid-ukDRsPMzEV .mbr-section-title,
.cid-ukDRsPMzEV .title-wrap {
  color: #000000;
}
.cid-ukGujpbyct {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGujpbyct .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGujpbyct .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGujpbyct .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
  border: 2px solid #ffb2ef;
}
@media (max-width: 1200px) {
  .cid-ukGujpbyct .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-ukGujpbyct .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-ukGujpbyct .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-ukGujpbyct .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ukGujpbyct .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-ukGujpbyct .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-ukGujpbyct .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #f7fff7;
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper:hover,
.cid-ukGujpbyct .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ukGujpbyct .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-ukGujpbyct .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGujpbyct .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ukGujpbyct .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-ukGujpbyct .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-ukGujpbyct .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGujpbyct .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-ukGujpbyct .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-ukGujpbyct .item-title {
  color: #050f0f;
}
.cid-ukGujpbyct .item-text {
  color: #050f0f;
}
.cid-ukGujpbyct .list {
  color: #050f0f;
}
.cid-ukEA2h4KOJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukEA2h4KOJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEA2h4KOJ .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-ukEA2h4KOJ .container {
    padding: 0 16px;
  }
}
.cid-ukEA2h4KOJ .card {
  justify-content: center;
}
.cid-ukEA2h4KOJ .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #fff1e2;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-ukEA2h4KOJ .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ukEA2h4KOJ .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-ukEA2h4KOJ .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-ukEA2h4KOJ .mbr-section-title {
  color: #000000;
}
.cid-ukEA2h4KOJ .mbr-text {
  color: #000000;
}
.cid-ukEA2h4KOJ .mbr-desc {
  color: #000000;
}
.cid-ueUUE7rstT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8e7d2;
}
.cid-ueUUE7rstT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueUUE7rstT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueUUE7rstT .content-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ueUUE7rstT .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ueUUE7rstT .content-wrapper .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-ueUUE7rstT .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ueUUE7rstT .content-wrapper .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-ueUUE7rstT .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ueUUE7rstT .content-wrapper .title-wrapper .mbr-section-title span {
  color: #ed463f;
}
.cid-ueUUE7rstT .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ueUUE7rstT .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ueUUE7rstT .image-wrapper img {
    height: 350px;
  }
}
.cid-ueUUE7rstT .mbr-section-title {
  color: #404349;
}
.cid-ueUUE7rstT .mbr-desc {
  color: #b19a7c;
}
.cid-ueUUE7rstT .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ueUUE7rstT .mbr-desc,
.cid-ueUUE7rstT .desc-wrapper {
  color: #000000;
  text-align: center;
}
.cid-ukDTyPCrpQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukDTyPCrpQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukDTyPCrpQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukDTyPCrpQ .content-wrapper {
  position: relative;
  padding: 100px 100px 105px;
  border-radius: 30px;
  background-color: #fff1e2;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-ukDTyPCrpQ .content-wrapper {
    padding: 46px 22px;
  }
}
.cid-ukDTyPCrpQ .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-ukDTyPCrpQ .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 10px;
}
.cid-ukDTyPCrpQ .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 56px;
}
.cid-ukDTyPCrpQ .content-wrapper .content-wrap .mbr-section-title span {
  color: #ff8576;
}
@media (max-width: 992px) {
  .cid-ukDTyPCrpQ .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-ukDTyPCrpQ .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-ukDTyPCrpQ .content-wrapper .image-wrapper {
  position: absolute;
  right: -50px;
  bottom: -150px;
  width: 400px;
  height: 400px;
}
@media (max-width: 992px) {
  .cid-ukDTyPCrpQ .content-wrapper .image-wrapper {
    right: -20px;
    bottom: -75px;
    width: 200px;
    height: 200px;
  }
}
.cid-ukDTyPCrpQ .content-wrapper .image-wrapper img {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukDTyPCrpQ .content-wrapper .image-wrapper img {
    width: 200px;
    height: 200px;
  }
}
.cid-ukDTyPCrpQ .mbr-section-title {
  color: #212529;
}
.cid-ukDTyPCrpQ .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-ukDTyPCrpQ .mbr-section-title,
.cid-ukDTyPCrpQ .mbr-section-btn {
  color: #000000;
}
.cid-ukDZgNhM7M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukDZgNhM7M .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukDZgNhM7M .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-ukDZgNhM7M .container {
    padding: 0 30px;
  }
}
.cid-ukDZgNhM7M .row {
  justify-content: center;
}
.cid-ukDZgNhM7M .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ukDZgNhM7M .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukDZgNhM7M .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-ukDZgNhM7M .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-ukDZgNhM7M .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukDZgNhM7M .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ukDZgNhM7M .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-ukGzTQU9ma {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGzTQU9ma .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGzTQU9ma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGzTQU9ma .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-ukGzTQU9ma .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-ukGzTQU9ma .container {
    padding: 0 26px;
  }
}
.cid-ukGzTQU9ma .row {
  justify-content: center;
}
.cid-ukGzTQU9ma .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #fff1e2;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-ukGzTQU9ma .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-ukGzTQU9ma .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-ukGzTQU9ma .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-ukGzTQU9ma .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-ukGzTQU9ma .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ukGzTQU9ma .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ukGzTQU9ma .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ukGzTQU9ma .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-ukGzTQU9ma .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGzTQU9ma .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ukGzTQU9ma .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-ukGzTQU9ma .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-ukGzTQU9ma .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ukGzTQU9ma .mbr-section-title {
  color: #000000;
}
.cid-ukGzTQU9ma .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ukGzTQU9ma .mbr-desc {
  color: #ffffff;
}
.cid-ukGzTQU9ma .mbr-text {
  color: #000000;
}
.cid-ukGzTQU9ma .mbr-link {
  color: #ffffff;
}
.cid-ukGRlKCcH5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/geeee-600x400.jpg");
}
.cid-ukGRlKCcH5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRlKCcH5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRlKCcH5 .image-wrapper {
  height: 600px;
}
@media (max-width: 992px) {
  .cid-ukGRlKCcH5 .image-wrapper {
    height: 400px;
  }
}
.cid-ukGB0GoTbe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGB0GoTbe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGB0GoTbe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGB0GoTbe .container,
.cid-ukGB0GoTbe .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukGB0GoTbe .container,
  .cid-ukGB0GoTbe .container-fluid {
    padding: 0 20px;
  }
}
.cid-ukGB0GoTbe .row {
  position: relative;
  padding: 100px 26px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #fff1e2;
}
@media (max-width: 992px) {
  .cid-ukGB0GoTbe .row {
    padding: 85px 8px;
    margin: 0;
  }
}
.cid-ukGB0GoTbe .title-wrapper {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-ukGB0GoTbe .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-ukGB0GoTbe .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGB0GoTbe .panel-group {
  padding: 0 20%;
}
@media (max-width: 992px) {
  .cid-ukGB0GoTbe .panel-group {
    padding: 0 12px;
  }
}
.cid-ukGB0GoTbe .panel-group .card {
  border-radius: 0;
}
.cid-ukGB0GoTbe .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-ukGB0GoTbe .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-ukGB0GoTbe .panel-group .card .card-header .panel-title {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #3d4045;
}
.cid-ukGB0GoTbe .panel-group .card .card-header .panel-title:not(.collapsed) {
  border-bottom: 1px solid #ed9b82;
}
.cid-ukGB0GoTbe .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ed9b82;
}
.cid-ukGB0GoTbe .panel-group .card .card-header .panel-title:hover,
.cid-ukGB0GoTbe .panel-group .card .card-header .panel-title:focus {
  border-bottom: 1px solid #ed9b82;
}
.cid-ukGB0GoTbe .panel-group .card .card-header .panel-title:hover .panel-title-edit,
.cid-ukGB0GoTbe .panel-group .card .card-header .panel-title:focus .panel-title-edit {
  color: #ed9b82;
}
.cid-ukGB0GoTbe .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
  transition: all 0.3s ease-out;
}
.cid-ukGB0GoTbe .panel-group .card .panel-collapse .panel-body .panel-text {
  margin: 32px 0;
}
.cid-ukGB0GoTbe .mbr-section-title {
  color: #3d4045;
}
.cid-ukGB0GoTbe .panel-title-edit {
  color: #3d4045;
}
.cid-ukGB0GoTbe .panel-text {
  color: #3d4045;
}
.cid-ukGAk8fhJ6 {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #fff1e2;
}
.cid-ukGAk8fhJ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGAk8fhJ6 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ukGAk8fhJ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGAk8fhJ6 h1 {
  max-width: 800px;
}
.cid-ukGAk8fhJ6 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-ukGAk8fhJ6 {
    align-items: center;
  }
  .cid-ukGAk8fhJ6 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ukGAk8fhJ6 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ukGAk8fhJ6 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ukGAk8fhJ6 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ukGAk8fhJ6 .content-wrap {
    width: 100%;
  }
}
.cid-ukGAk8fhJ6 .mbr-section-subtitle,
.cid-ukGAk8fhJ6 .line {
  color: #291f1e;
}
.cid-ukGAk8fhJ6 .mbr-text,
.cid-ukGAk8fhJ6 .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ukGAk8fhJ6 .mbr-section-title {
  color: #291f1e;
}
.cid-ukGCcprDpk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ccc8e0;
}
.cid-ukGCcprDpk .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #fff1e2;
}
.cid-ukGCcprDpk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGCcprDpk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGCcprDpk .items-wrapper {
  margin: 0;
}
.cid-ukGCcprDpk .items-wrapper .item {
  padding: 0;
}
.cid-ukGCcprDpk .items-wrapper .item:nth-child(3n) .item-wrapper {
  border-right: none !important;
}
@media (max-width: 992px) {
  .cid-ukGCcprDpk .items-wrapper .item:last-child {
    border-bottom: none !important;
  }
}
.cid-ukGCcprDpk .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px 32px;
  border-radius: 0 !important;
  border-right: 1px solid #fff1e2;
}
@media (max-width: 1640px) {
  .cid-ukGCcprDpk .items-wrapper .item .item-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGCcprDpk .items-wrapper .item .item-wrapper {
    border-right: none;
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-ukGCcprDpk .items-wrapper .item .item-wrapper {
    border-right: none;
    border-bottom: 1px solid #fff1e2;
  }
}
.cid-ukGCcprDpk .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGCcprDpk .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-ukGCcprDpk .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 80px;
  color: #e7271c;
  display: inline-flex;
}
.cid-ukGCcprDpk .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGCcprDpk .items-wrapper .item .item-wrapper .item-content .item-title {
    margin-bottom: 16px;
  }
}
.cid-ukGCcprDpk .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ukGCcprDpk .items-wrapper .item .item-wrapper .item-content .item-text {
    margin-bottom: 16px;
  }
}
.cid-ukGCcprDpk .item-title {
  color: #150764;
}
.cid-ukGCcprDpk .item-text,
.cid-ukGCcprDpk .desc-wrapper {
  color: #150764;
  text-align: center;
}
.cid-ukGCcprDpk .item-title,
.cid-ukGCcprDpk .mbr-section-btn,
.cid-ukGCcprDpk .icon-wrapper {
  text-align: center;
  color: #252525;
}
.cid-ukGCcprDpk .item-text {
  color: #150764;
}
.cid-ukGDBZhcnQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGDBZhcnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGDBZhcnQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGDBZhcnQ .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #150764;
}
@media (max-width: 992px) {
  .cid-ukGDBZhcnQ .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-ukGDBZhcnQ .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ukGDBZhcnQ .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-ukGDBZhcnQ .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-ukGDBZhcnQ .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-ukGDBZhcnQ .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGDBZhcnQ .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ukGDBZhcnQ .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukGDBZhcnQ .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-ukGDBZhcnQ .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-ukGDBZhcnQ .mbr-section-title,
.cid-ukGDBZhcnQ .mbr-section-btn {
  color: #000000;
}
.cid-ukENTv7dRX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ccc8e0;
}
.cid-ukENTv7dRX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukENTv7dRX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukENTv7dRX .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukENTv7dRX .content-wrapper {
    padding: 0;
  }
}
.cid-ukENTv7dRX .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ukENTv7dRX .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ukENTv7dRX .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-ukENTv7dRX .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ukENTv7dRX .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-ukENTv7dRX .mbr-section-title {
  color: #050f0f;
}
.cid-ueUUJotMbr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ueUUJotMbr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueUUJotMbr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueUUJotMbr .content-wrap {
  padding: 60px;
  background-color: #ccc8e0;
}
@media (max-width: 992px) {
  .cid-ueUUJotMbr .content-wrap {
    padding: 30px 20px;
  }
}
.cid-ueUUJotMbr .content-wrap .row {
  justify-content: center;
}
.cid-ueUUJotMbr .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ueUUJotMbr .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ueUUJotMbr .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ueUUJotMbr .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-ueUUJotMbr .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-ueUUJotMbr .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ueUUJotMbr .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ueUUJotMbr .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ueUUJotMbr .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ueUUJotMbr .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ueUUJotMbr .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ueUUJotMbr .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ueUUJotMbr .nav-wrapper .list .item-wrap:hover,
.cid-ueUUJotMbr .nav-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ueUUJotMbr .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ueUUJotMbr .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ueUUJotMbr .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ueUUJotMbr .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ueUUJotMbr .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ueUUJotMbr .contacts-wrapper .list .item-wrap:hover,
.cid-ueUUJotMbr .contacts-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ueUUJotMbr .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ueUUJotMbr .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ueUUJotMbr .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ueUUJotMbr .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ueUUJotMbr .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-ueUUJotMbr .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ueUUJotMbr .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ueUUJotMbr .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-ueUUJotMbr .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #000000;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-ueUUJotMbr .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-ueUUJotMbr .mbr-section-title {
  color: #ed463f;
}
.cid-ueUUJotMbr .mbr-section-subtitle {
  color: #404349;
}
.cid-ueUUJotMbr .list {
  color: #404349;
}
.cid-ueUUJotMbr .mbr-section-title,
.cid-ueUUJotMbr .title-wrapper {
  text-align: center;
}
.cid-ueUUJotMbr .list,
.cid-ueUUJotMbr .item-wrap {
  text-align: center;
}
.cid-ukEuy6qvZh .navbar-dropdown {
  background-color: #ccc8e0 !important;
  padding: 0;
}
.cid-ukEuy6qvZh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ccc8e0 !important;
  background: #ccc8e0;
}
.cid-ukEuy6qvZh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .menu_box .navbar.opened,
  .cid-ukEuy6qvZh .menu_box .navbar-collapse {
    background-color: #ccc8e0 !important;
    transition: all 0s ease 0s;
  }
}
.cid-ukEuy6qvZh .navbar-dropdown {
  position: relative !important;
}
.cid-ukEuy6qvZh .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ukEuy6qvZh .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ukEuy6qvZh .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ukEuy6qvZh .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-ukEuy6qvZh .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ukEuy6qvZh .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ukEuy6qvZh .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ukEuy6qvZh .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ukEuy6qvZh .offcanvas-body .mbr-text,
  .cid-ukEuy6qvZh .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-ukEuy6qvZh .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ukEuy6qvZh .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ukEuy6qvZh ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ukEuy6qvZh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukEuy6qvZh .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-ukEuy6qvZh .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ukEuy6qvZh li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ukEuy6qvZh .lg_brand {
    margin: 0 1rem;
  }
}
.cid-ukEuy6qvZh .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ukEuy6qvZh .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .nav-item {
    margin: 0 !important;
  }
}
.cid-ukEuy6qvZh .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ukEuy6qvZh .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ukEuy6qvZh .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukEuy6qvZh .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ukEuy6qvZh .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ukEuy6qvZh .offcanvas_box {
    display: none;
  }
}
.cid-ukEuy6qvZh .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-ukEuy6qvZh .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ukEuy6qvZh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ukEuy6qvZh .container {
  display: flex;
  margin: auto;
}
.cid-ukEuy6qvZh .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ukEuy6qvZh .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ukEuy6qvZh .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ukEuy6qvZh .navbar-caption {
  color: #d2d2d2;
}
.cid-ukEuy6qvZh .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ukEuy6qvZh .navbar-nav {
    margin: 0;
  }
}
.cid-ukEuy6qvZh .dropdown-menu,
.cid-ukEuy6qvZh .navbar.opened {
  background-color: false !important;
}
.cid-ukEuy6qvZh .nav-item:focus,
.cid-ukEuy6qvZh .nav-link:focus {
  outline: none;
}
.cid-ukEuy6qvZh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukEuy6qvZh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukEuy6qvZh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukEuy6qvZh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukEuy6qvZh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukEuy6qvZh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukEuy6qvZh .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-ukEuy6qvZh .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-ukEuy6qvZh .navbar.opened {
  transition: all 0.3s;
}
.cid-ukEuy6qvZh .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ukEuy6qvZh .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-ukEuy6qvZh .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-ukEuy6qvZh .navbar.collapsed {
  justify-content: center;
}
.cid-ukEuy6qvZh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukEuy6qvZh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ukEuy6qvZh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukEuy6qvZh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukEuy6qvZh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukEuy6qvZh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ukEuy6qvZh .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukEuy6qvZh .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ukEuy6qvZh .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-ukEuy6qvZh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukEuy6qvZh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukEuy6qvZh .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ukEuy6qvZh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukEuy6qvZh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ukEuy6qvZh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukEuy6qvZh .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ukEuy6qvZh .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ukEuy6qvZh .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ukEuy6qvZh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukEuy6qvZh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukEuy6qvZh .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ukEuy6qvZh .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukEuy6qvZh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukEuy6qvZh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukEuy6qvZh .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukEuy6qvZh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukEuy6qvZh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukEuy6qvZh .dropdown-item.active,
.cid-ukEuy6qvZh .dropdown-item:active {
  background-color: transparent;
}
.cid-ukEuy6qvZh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukEuy6qvZh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukEuy6qvZh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukEuy6qvZh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukEuy6qvZh ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-ukEuy6qvZh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukEuy6qvZh button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ccc8e0;
  background: #000000;
}
.cid-ukEuy6qvZh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-ukEuy6qvZh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukEuy6qvZh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukEuy6qvZh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukEuy6qvZh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukEuy6qvZh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukEuy6qvZh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukEuy6qvZh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukEuy6qvZh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukEuy6qvZh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ukEuy6qvZh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukEuy6qvZh .navbar {
    height: 70px;
  }
  .cid-ukEuy6qvZh .navbar.opened {
    height: auto;
  }
  .cid-ukEuy6qvZh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukEuy6qvZh .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-ukEuy6qvZh .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-ukEuy6qvZh .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-ukEuy6qvZh .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-ukEuy6qvZh .navbar-caption:hover {
  color: #d42017;
}
@media (min-width: 992px) {
  .cid-ukEuy6qvZh .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ukEuy6qvZh .mbr-section-subtitle {
  color: #000000;
}
.cid-ukEuy6qvZh .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ukEuy6qvZh .text_widget {
  color: #000000;
}
.cid-ukEuy6qvZh .mbr-section-subtitle,
.cid-ukEuy6qvZh .text_widget,
.cid-ukEuy6qvZh .mbr-section-btn {
  text-align: center;
}
.cid-ukEuy6qvZh a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ukEHFsiKoj {
  background-color: #fff1e2;
}
.cid-ukEHFsiKoj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEHFsiKoj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEHFsiKoj .card {
  justify-content: center;
}
.cid-ukEHFsiKoj .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ukEHFsiKoj .content-wrapper .mbr-section-title {
    text-align: center;
  }
}
.cid-ukEHFsiKoj .content-wrapper .text-wrapper {
  margin-bottom: 30px;
}
.cid-ukEHFsiKoj .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-ukEHFsiKoj .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-ukEHFsiKoj .content-wrapper .mbr-section-btn {
    text-align: center;
  }
}
.cid-ukEHFsiKoj .image-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ukEHFsiKoj .image-wrapper {
    margin-top: 30px;
    justify-content: center;
  }
}
.cid-ukEHFsiKoj .image-wrapper img {
  width: 640px;
  height: 640px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-ukEHFsiKoj .image-wrapper img {
    width: 440px;
    height: 440px;
  }
}
@media (max-width: 768px) {
  .cid-ukEHFsiKoj .image-wrapper img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }
}
.cid-ukEHFsiKoj .mbr-section-title {
  color: #f24d4a;
}
.cid-ukEHFsiKoj .mbr-text {
  color: #f24d4a;
}
.cid-ukEHFsiKoj .mbr-section-title,
.cid-ukEHFsiKoj .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-ukE6q0xqpv {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ccc8e0;
}
.cid-ukE6q0xqpv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukE6q0xqpv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukE6q0xqpv .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-ukE6q0xqpv .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukE6q0xqpv .content-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-ukE6q0xqpv .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukE6q0xqpv .image-wrapper img {
    height: 350px;
  }
}
.cid-ukE6q0xqpv .mbr-section-title {
  color: #404349;
}
.cid-ukE6q0xqpv .mbr-desc {
  color: #b19a7c;
}
.cid-ukE6q0xqpv .mbr-text {
  color: #404349;
}
.cid-ukE6q0xqpv .mbr-desc,
.cid-ukE6q0xqpv .desc-wrapper {
  text-align: center;
  color: #000000;
}
.cid-ukE6q0xqpv .mbr-section-title,
.cid-ukE6q0xqpv .title-wrap {
  color: #000000;
}
.cid-ukEIk0W2Es {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff1e2;
}
.cid-ukEIk0W2Es .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEIk0W2Es .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEIk0W2Es .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukEIk0W2Es .content-wrapper {
    padding: 0;
  }
}
.cid-ukEIk0W2Es .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ukEIk0W2Es .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ukEIk0W2Es .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-ukEIk0W2Es .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ukEIk0W2Es .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-ukEIk0W2Es .mbr-section-title {
  color: #050f0f;
}
.cid-ukE6qcGFU9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukE6qcGFU9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukE6qcGFU9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukE6qcGFU9 .content-wrap {
  padding: 60px;
  background-color: #ccc8e0;
}
@media (max-width: 992px) {
  .cid-ukE6qcGFU9 .content-wrap {
    padding: 30px 20px;
  }
}
.cid-ukE6qcGFU9 .content-wrap .row {
  justify-content: center;
}
.cid-ukE6qcGFU9 .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukE6qcGFU9 .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukE6qcGFU9 .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ukE6qcGFU9 .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-ukE6qcGFU9 .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-ukE6qcGFU9 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukE6qcGFU9 .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukE6qcGFU9 .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukE6qcGFU9 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukE6qcGFU9 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ukE6qcGFU9 .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ukE6qcGFU9 .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukE6qcGFU9 .nav-wrapper .list .item-wrap:hover,
.cid-ukE6qcGFU9 .nav-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ukE6qcGFU9 .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukE6qcGFU9 .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukE6qcGFU9 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukE6qcGFU9 .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ukE6qcGFU9 .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ukE6qcGFU9 .contacts-wrapper .list .item-wrap:hover,
.cid-ukE6qcGFU9 .contacts-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ukE6qcGFU9 .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukE6qcGFU9 .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukE6qcGFU9 .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukE6qcGFU9 .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukE6qcGFU9 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-ukE6qcGFU9 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ukE6qcGFU9 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ukE6qcGFU9 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-ukE6qcGFU9 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #000000;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-ukE6qcGFU9 .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-ukE6qcGFU9 .mbr-section-title {
  color: #ed463f;
}
.cid-ukE6qcGFU9 .mbr-section-subtitle {
  color: #404349;
}
.cid-ukE6qcGFU9 .list {
  color: #404349;
}
.cid-ukE6qcGFU9 .mbr-section-title,
.cid-ukE6qcGFU9 .title-wrapper {
  text-align: center;
}
.cid-ukE6qcGFU9 .list,
.cid-ukE6qcGFU9 .item-wrap {
  text-align: center;
}
.cid-ukEJ1NXTaR .navbar-dropdown {
  background-color: #ccc8e0 !important;
  padding: 0;
}
.cid-ukEJ1NXTaR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ccc8e0 !important;
  background: #ccc8e0;
}
.cid-ukEJ1NXTaR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-ukEJ1NXTaR .menu_box .navbar.opened,
  .cid-ukEJ1NXTaR .menu_box .navbar-collapse {
    background-color: #ccc8e0 !important;
    transition: all 0s ease 0s;
  }
}
.cid-ukEJ1NXTaR .navbar-dropdown {
  position: relative !important;
}
.cid-ukEJ1NXTaR .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-ukEJ1NXTaR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ukEJ1NXTaR .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ukEJ1NXTaR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ukEJ1NXTaR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ukEJ1NXTaR .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-ukEJ1NXTaR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ukEJ1NXTaR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ukEJ1NXTaR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ukEJ1NXTaR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ukEJ1NXTaR .offcanvas-body .mbr-text,
  .cid-ukEJ1NXTaR .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-ukEJ1NXTaR .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-ukEJ1NXTaR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ukEJ1NXTaR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-ukEJ1NXTaR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ukEJ1NXTaR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ukEJ1NXTaR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ukEJ1NXTaR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ukEJ1NXTaR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ukEJ1NXTaR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukEJ1NXTaR .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-ukEJ1NXTaR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ukEJ1NXTaR li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ukEJ1NXTaR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-ukEJ1NXTaR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ukEJ1NXTaR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ukEJ1NXTaR .nav-item {
    margin: 0 !important;
  }
}
.cid-ukEJ1NXTaR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ukEJ1NXTaR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ukEJ1NXTaR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ukEJ1NXTaR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukEJ1NXTaR .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ukEJ1NXTaR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ukEJ1NXTaR .offcanvas_box {
    display: none;
  }
}
.cid-ukEJ1NXTaR .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-ukEJ1NXTaR .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ukEJ1NXTaR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ukEJ1NXTaR .container {
  display: flex;
  margin: auto;
}
.cid-ukEJ1NXTaR .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ukEJ1NXTaR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ukEJ1NXTaR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ukEJ1NXTaR .navbar-caption {
  color: #d2d2d2;
}
.cid-ukEJ1NXTaR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ukEJ1NXTaR .navbar-nav {
    margin: 0;
  }
}
.cid-ukEJ1NXTaR .dropdown-menu,
.cid-ukEJ1NXTaR .navbar.opened {
  background-color: false !important;
}
.cid-ukEJ1NXTaR .nav-item:focus,
.cid-ukEJ1NXTaR .nav-link:focus {
  outline: none;
}
.cid-ukEJ1NXTaR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukEJ1NXTaR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukEJ1NXTaR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukEJ1NXTaR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukEJ1NXTaR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukEJ1NXTaR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukEJ1NXTaR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-ukEJ1NXTaR .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-ukEJ1NXTaR .navbar.opened {
  transition: all 0.3s;
}
.cid-ukEJ1NXTaR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ukEJ1NXTaR .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-ukEJ1NXTaR .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-ukEJ1NXTaR .navbar.collapsed {
  justify-content: center;
}
.cid-ukEJ1NXTaR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukEJ1NXTaR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ukEJ1NXTaR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukEJ1NXTaR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukEJ1NXTaR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukEJ1NXTaR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ukEJ1NXTaR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukEJ1NXTaR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ukEJ1NXTaR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-ukEJ1NXTaR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukEJ1NXTaR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukEJ1NXTaR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ukEJ1NXTaR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukEJ1NXTaR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ukEJ1NXTaR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukEJ1NXTaR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ukEJ1NXTaR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ukEJ1NXTaR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ukEJ1NXTaR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukEJ1NXTaR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukEJ1NXTaR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ukEJ1NXTaR .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukEJ1NXTaR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukEJ1NXTaR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukEJ1NXTaR .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukEJ1NXTaR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukEJ1NXTaR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukEJ1NXTaR .dropdown-item.active,
.cid-ukEJ1NXTaR .dropdown-item:active {
  background-color: transparent;
}
.cid-ukEJ1NXTaR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukEJ1NXTaR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukEJ1NXTaR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukEJ1NXTaR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukEJ1NXTaR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-ukEJ1NXTaR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukEJ1NXTaR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ccc8e0;
  background: #000000;
}
.cid-ukEJ1NXTaR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-ukEJ1NXTaR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukEJ1NXTaR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukEJ1NXTaR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukEJ1NXTaR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukEJ1NXTaR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukEJ1NXTaR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukEJ1NXTaR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukEJ1NXTaR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukEJ1NXTaR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ukEJ1NXTaR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukEJ1NXTaR .navbar {
    height: 70px;
  }
  .cid-ukEJ1NXTaR .navbar.opened {
    height: auto;
  }
  .cid-ukEJ1NXTaR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukEJ1NXTaR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-ukEJ1NXTaR .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-ukEJ1NXTaR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-ukEJ1NXTaR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-ukEJ1NXTaR .navbar-caption:hover {
  color: #d42017;
}
@media (min-width: 992px) {
  .cid-ukEJ1NXTaR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ukEJ1NXTaR .mbr-section-subtitle {
  color: #000000;
}
.cid-ukEJ1NXTaR .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ukEJ1NXTaR .text_widget {
  color: #000000;
}
.cid-ukEJ1NXTaR .mbr-section-subtitle,
.cid-ukEJ1NXTaR .text_widget,
.cid-ukEJ1NXTaR .mbr-section-btn {
  text-align: center;
}
.cid-ukEJ1NXTaR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ukEJ1KWQGD {
  background-color: #fff1e2;
}
.cid-ukEJ1KWQGD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEJ1KWQGD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEJ1KWQGD .card {
  justify-content: center;
}
.cid-ukEJ1KWQGD .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ukEJ1KWQGD .content-wrapper .mbr-section-title {
    text-align: center;
  }
}
.cid-ukEJ1KWQGD .content-wrapper .text-wrapper {
  margin-bottom: 30px;
}
.cid-ukEJ1KWQGD .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-ukEJ1KWQGD .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-ukEJ1KWQGD .content-wrapper .mbr-section-btn {
    text-align: center;
  }
}
.cid-ukEJ1KWQGD .image-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ukEJ1KWQGD .image-wrapper {
    margin-top: 30px;
    justify-content: center;
  }
}
.cid-ukEJ1KWQGD .image-wrapper img {
  width: 640px;
  height: 640px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-ukEJ1KWQGD .image-wrapper img {
    width: 440px;
    height: 440px;
  }
}
@media (max-width: 768px) {
  .cid-ukEJ1KWQGD .image-wrapper img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }
}
.cid-ukEJ1KWQGD .mbr-section-title {
  color: #f24d4a;
}
.cid-ukEJ1KWQGD .mbr-text {
  color: #f24d4a;
}
.cid-ukEJ1KWQGD .mbr-section-title,
.cid-ukEJ1KWQGD .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-ukEJ1M8yUs {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ccc8e0;
}
.cid-ukEJ1M8yUs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEJ1M8yUs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEJ1M8yUs .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-ukEJ1M8yUs .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukEJ1M8yUs .content-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-ukEJ1M8yUs .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukEJ1M8yUs .image-wrapper img {
    height: 350px;
  }
}
.cid-ukEJ1M8yUs .mbr-section-title {
  color: #404349;
}
.cid-ukEJ1M8yUs .mbr-desc {
  color: #b19a7c;
}
.cid-ukEJ1M8yUs .mbr-text {
  color: #404349;
}
.cid-ukEJ1M8yUs .mbr-desc,
.cid-ukEJ1M8yUs .desc-wrapper {
  text-align: center;
  color: #000000;
}
.cid-ukEJ1M8yUs .mbr-section-title,
.cid-ukEJ1M8yUs .title-wrap {
  color: #000000;
}
.cid-ukEJ1MDwyk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ukEJ1MDwyk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEJ1MDwyk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEJ1MDwyk .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukEJ1MDwyk .content-wrapper {
    padding: 0;
  }
}
.cid-ukEJ1MDwyk .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ukEJ1MDwyk .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ukEJ1MDwyk .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-ukEJ1MDwyk .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ukEJ1MDwyk .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-ukEJ1MDwyk .mbr-section-title {
  color: #050f0f;
}
.cid-ukEJ1Ndz6Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukEJ1Ndz6Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEJ1Ndz6Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEJ1Ndz6Y .content-wrap {
  padding: 60px;
  background-color: #ccc8e0;
}
@media (max-width: 992px) {
  .cid-ukEJ1Ndz6Y .content-wrap {
    padding: 30px 20px;
  }
}
.cid-ukEJ1Ndz6Y .content-wrap .row {
  justify-content: center;
}
.cid-ukEJ1Ndz6Y .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukEJ1Ndz6Y .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukEJ1Ndz6Y .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ukEJ1Ndz6Y .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-ukEJ1Ndz6Y .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-ukEJ1Ndz6Y .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukEJ1Ndz6Y .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukEJ1Ndz6Y .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukEJ1Ndz6Y .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukEJ1Ndz6Y .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ukEJ1Ndz6Y .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ukEJ1Ndz6Y .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukEJ1Ndz6Y .nav-wrapper .list .item-wrap:hover,
.cid-ukEJ1Ndz6Y .nav-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ukEJ1Ndz6Y .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukEJ1Ndz6Y .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukEJ1Ndz6Y .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukEJ1Ndz6Y .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ukEJ1Ndz6Y .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ukEJ1Ndz6Y .contacts-wrapper .list .item-wrap:hover,
.cid-ukEJ1Ndz6Y .contacts-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ukEJ1Ndz6Y .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukEJ1Ndz6Y .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukEJ1Ndz6Y .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukEJ1Ndz6Y .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukEJ1Ndz6Y .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-ukEJ1Ndz6Y .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ukEJ1Ndz6Y .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ukEJ1Ndz6Y .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-ukEJ1Ndz6Y .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #000000;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-ukEJ1Ndz6Y .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-ukEJ1Ndz6Y .mbr-section-title {
  color: #ed463f;
}
.cid-ukEJ1Ndz6Y .mbr-section-subtitle {
  color: #404349;
}
.cid-ukEJ1Ndz6Y .list {
  color: #404349;
}
.cid-ukEJ1Ndz6Y .mbr-section-title,
.cid-ukEJ1Ndz6Y .title-wrapper {
  text-align: center;
}
.cid-ukEJ1Ndz6Y .list,
.cid-ukEJ1Ndz6Y .item-wrap {
  text-align: center;
}
.cid-ukGRMnGsVh .navbar-dropdown {
  background-color: #ccc8e0 !important;
  padding: 0;
}
.cid-ukGRMnGsVh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ccc8e0 !important;
  background: #ccc8e0;
}
.cid-ukGRMnGsVh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-ukGRMnGsVh .menu_box .navbar.opened,
  .cid-ukGRMnGsVh .menu_box .navbar-collapse {
    background-color: #ccc8e0 !important;
    transition: all 0s ease 0s;
  }
}
.cid-ukGRMnGsVh .navbar-dropdown {
  position: relative !important;
}
.cid-ukGRMnGsVh .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-ukGRMnGsVh .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ukGRMnGsVh .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ukGRMnGsVh .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ukGRMnGsVh .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ukGRMnGsVh .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-ukGRMnGsVh .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ukGRMnGsVh .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ukGRMnGsVh .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ukGRMnGsVh .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ukGRMnGsVh .offcanvas-body .mbr-text,
  .cid-ukGRMnGsVh .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-ukGRMnGsVh .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-ukGRMnGsVh .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ukGRMnGsVh .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-ukGRMnGsVh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ukGRMnGsVh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ukGRMnGsVh .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ukGRMnGsVh .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ukGRMnGsVh ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ukGRMnGsVh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukGRMnGsVh .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-ukGRMnGsVh .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ukGRMnGsVh li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ukGRMnGsVh .lg_brand {
    margin: 0 1rem;
  }
}
.cid-ukGRMnGsVh .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ukGRMnGsVh .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ukGRMnGsVh .nav-item {
    margin: 0 !important;
  }
}
.cid-ukGRMnGsVh .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ukGRMnGsVh .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ukGRMnGsVh .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ukGRMnGsVh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukGRMnGsVh .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ukGRMnGsVh .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ukGRMnGsVh .offcanvas_box {
    display: none;
  }
}
.cid-ukGRMnGsVh .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-ukGRMnGsVh .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ukGRMnGsVh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ukGRMnGsVh .container {
  display: flex;
  margin: auto;
}
.cid-ukGRMnGsVh .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ukGRMnGsVh .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ukGRMnGsVh .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ukGRMnGsVh .navbar-caption {
  color: #d2d2d2;
}
.cid-ukGRMnGsVh .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ukGRMnGsVh .navbar-nav {
    margin: 0;
  }
}
.cid-ukGRMnGsVh .dropdown-menu,
.cid-ukGRMnGsVh .navbar.opened {
  background-color: false !important;
}
.cid-ukGRMnGsVh .nav-item:focus,
.cid-ukGRMnGsVh .nav-link:focus {
  outline: none;
}
.cid-ukGRMnGsVh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukGRMnGsVh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukGRMnGsVh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukGRMnGsVh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukGRMnGsVh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukGRMnGsVh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukGRMnGsVh .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-ukGRMnGsVh .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-ukGRMnGsVh .navbar.opened {
  transition: all 0.3s;
}
.cid-ukGRMnGsVh .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ukGRMnGsVh .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-ukGRMnGsVh .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-ukGRMnGsVh .navbar.collapsed {
  justify-content: center;
}
.cid-ukGRMnGsVh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukGRMnGsVh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ukGRMnGsVh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukGRMnGsVh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukGRMnGsVh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukGRMnGsVh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ukGRMnGsVh .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukGRMnGsVh .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ukGRMnGsVh .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-ukGRMnGsVh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukGRMnGsVh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukGRMnGsVh .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ukGRMnGsVh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukGRMnGsVh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ukGRMnGsVh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukGRMnGsVh .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ukGRMnGsVh .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ukGRMnGsVh .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ukGRMnGsVh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukGRMnGsVh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukGRMnGsVh .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ukGRMnGsVh .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukGRMnGsVh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukGRMnGsVh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukGRMnGsVh .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukGRMnGsVh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukGRMnGsVh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukGRMnGsVh .dropdown-item.active,
.cid-ukGRMnGsVh .dropdown-item:active {
  background-color: transparent;
}
.cid-ukGRMnGsVh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukGRMnGsVh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukGRMnGsVh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukGRMnGsVh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukGRMnGsVh ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-ukGRMnGsVh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukGRMnGsVh button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ccc8e0;
  background: #000000;
}
.cid-ukGRMnGsVh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-ukGRMnGsVh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukGRMnGsVh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukGRMnGsVh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukGRMnGsVh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukGRMnGsVh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukGRMnGsVh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukGRMnGsVh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukGRMnGsVh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukGRMnGsVh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ukGRMnGsVh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukGRMnGsVh .navbar {
    height: 70px;
  }
  .cid-ukGRMnGsVh .navbar.opened {
    height: auto;
  }
  .cid-ukGRMnGsVh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukGRMnGsVh .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-ukGRMnGsVh .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-ukGRMnGsVh .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-ukGRMnGsVh .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-ukGRMnGsVh .navbar-caption:hover {
  color: #d42017;
}
@media (min-width: 992px) {
  .cid-ukGRMnGsVh .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ukGRMnGsVh .mbr-section-subtitle {
  color: #000000;
}
.cid-ukGRMnGsVh .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ukGRMnGsVh .text_widget {
  color: #000000;
}
.cid-ukGRMnGsVh .mbr-section-subtitle,
.cid-ukGRMnGsVh .text_widget,
.cid-ukGRMnGsVh .mbr-section-btn {
  text-align: center;
}
.cid-ukGRMnGsVh a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ukGRMpdtS0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8e7d2;
}
.cid-ukGRMpdtS0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMpdtS0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMpdtS0 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-ukGRMpdtS0 .container-fluid {
    padding: 0 12px;
  }
}
.cid-ukGRMpdtS0 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ukGRMpdtS0 .container {
    padding: 0 20px;
  }
}
.cid-ukGRMpdtS0 .row {
  margin-top: -2px;
}
.cid-ukGRMpdtS0 .card {
  padding: 0;
}
.cid-ukGRMpdtS0 .image-wrapper {
  border: 2px solid #706f6d;
}
.cid-ukGRMpdtS0 .image-wrapper img {
  height: 650px;
  width: 70%;
  object-fit: cover;
  border-bottom-right-radius: 45rem;
}
@media (max-width: 992px) {
  .cid-ukGRMpdtS0 .image-wrapper img {
    height: 450px;
    width: 100%;
  }
}
.cid-ukGRMpdtS0 .title-wrapper {
  border: 2px solid #706f6d;
  border-top: none;
  padding: 0 64px 64px;
  margin-top: -4rem;
}
@media (max-width: 992px) {
  .cid-ukGRMpdtS0 .title-wrapper {
    padding: 0 20px 50px;
  }
}
@media (max-width: 425px) {
  .cid-ukGRMpdtS0 .title-wrapper {
    margin-top: -2rem;
  }
}
.cid-ukGRMpdtS0 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ukGRMpdtS0 .title-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ukGRMpdtS0 .title-wrapper .text-wrapper {
    display: block;
  }
}
.cid-ukGRMpdtS0 .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ukGRMpdtS0 .title-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-ukGRMpdtS0 .title-wrapper .text-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ukGRMpdtS0 .title-wrapper .text-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-ukGRMpdtS0 .mbr-section-title {
  color: #ffffff;
}
.cid-ukGRMpdtS0 .mbr-text {
  color: #ffffff;
}
.cid-ukGRMpdtS0 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ukGRMpdtS0 .mbr-section-btn {
    text-align: left;
  }
}
.cid-ukGRMpdtS0 .mbr-section-title,
.cid-ukGRMpdtS0 .mbr-section-btn {
  color: #000000;
}
.cid-ukGRMpdtS0 .mbr-text,
.cid-ukGRMpdtS0 .mbr-section-btn {
  color: #000000;
}
.cid-ukGRMq5nmB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRMq5nmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMq5nmB .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-ukGRMq5nmB .container {
    padding: 0 15px;
  }
}
.cid-ukGRMq5nmB .row {
  justify-content: center;
}
.cid-ukGRMq5nmB .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRMq5nmB .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ukGRMq5nmB .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-ukGRMq5nmB .subtitle-wrapper {
    padding: 0;
  }
}
.cid-ukGRMq5nmB .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ukGRMq5nmB .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-ukGRMq5nmB .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRMq5nmB .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-ukGRMq5nmB .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-ukGRMq5nmB .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukGRMq5nmB .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #000000;
  color: #f1dd26;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-ukGRMq5nmB .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-ukGRMq5nmB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ukGRMq5nmB .mbr-section-subtitle {
  color: #000000;
}
.cid-ukGRMq5nmB .list {
  color: #ffffff;
}
.cid-ukGRMq5nmB .list,
.cid-ukGRMq5nmB .item-wrap {
  color: #000000;
}
.cid-ukGRMr0oDJ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f8e7d2;
}
.cid-ukGRMr0oDJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMr0oDJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMr0oDJ .row {
  justify-content: space-between;
}
.cid-ukGRMr0oDJ .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-ukGRMr0oDJ .content-wrapper {
    padding: 0;
  }
}
.cid-ukGRMr0oDJ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRMr0oDJ .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ukGRMr0oDJ .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRMr0oDJ .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-ukGRMr0oDJ .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ukGRMr0oDJ .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-ukGRMr0oDJ .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-ukGRMr0oDJ .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-ukGRMr0oDJ .mbr-section-title {
  color: #000000;
}
.cid-ukGRMr0oDJ .mbr-desc {
  color: #000000;
}
.cid-ukGRMr0oDJ .mbr-text {
  color: #000000;
}
.cid-ukGRMrQmUF {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRMrQmUF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMrQmUF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMrQmUF .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-ukGRMrQmUF .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGRMrQmUF .content-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-ukGRMrQmUF .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRMrQmUF .image-wrapper img {
    height: 350px;
  }
}
.cid-ukGRMrQmUF .mbr-section-title {
  color: #404349;
}
.cid-ukGRMrQmUF .mbr-desc {
  color: #b19a7c;
}
.cid-ukGRMrQmUF .mbr-text {
  color: #404349;
}
.cid-ukGRMrQmUF .mbr-desc,
.cid-ukGRMrQmUF .desc-wrapper {
  text-align: center;
  color: #000000;
}
.cid-ukGRMrQmUF .mbr-section-title,
.cid-ukGRMrQmUF .title-wrap {
  color: #000000;
}
.cid-ukGRMsJt4e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGRMsJt4e .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMsJt4e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMsJt4e .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
  border: 2px solid #ffb2ef;
}
@media (max-width: 1200px) {
  .cid-ukGRMsJt4e .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-ukGRMsJt4e .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-ukGRMsJt4e .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-ukGRMsJt4e .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ukGRMsJt4e .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-ukGRMsJt4e .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-ukGRMsJt4e .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #f7fff7;
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper:hover,
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-ukGRMsJt4e .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-ukGRMsJt4e .item-title {
  color: #050f0f;
}
.cid-ukGRMsJt4e .item-text {
  color: #050f0f;
}
.cid-ukGRMsJt4e .list {
  color: #050f0f;
}
.cid-ukGRMu3jOq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRMu3jOq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMu3jOq .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-ukGRMu3jOq .container {
    padding: 0 16px;
  }
}
.cid-ukGRMu3jOq .card {
  justify-content: center;
}
.cid-ukGRMu3jOq .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #fff1e2;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-ukGRMu3jOq .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ukGRMu3jOq .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-ukGRMu3jOq .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-ukGRMu3jOq .mbr-section-title {
  color: #000000;
}
.cid-ukGRMu3jOq .mbr-text {
  color: #000000;
}
.cid-ukGRMu3jOq .mbr-desc {
  color: #000000;
}
.cid-ukGRMvcyHS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8e7d2;
}
.cid-ukGRMvcyHS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMvcyHS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMvcyHS .content-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ukGRMvcyHS .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRMvcyHS .content-wrapper .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-ukGRMvcyHS .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRMvcyHS .content-wrapper .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-ukGRMvcyHS .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGRMvcyHS .content-wrapper .title-wrapper .mbr-section-title span {
  color: #ed463f;
}
.cid-ukGRMvcyHS .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukGRMvcyHS .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRMvcyHS .image-wrapper img {
    height: 350px;
  }
}
.cid-ukGRMvcyHS .mbr-section-title {
  color: #404349;
}
.cid-ukGRMvcyHS .mbr-desc {
  color: #b19a7c;
}
.cid-ukGRMvcyHS .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ukGRMvcyHS .mbr-desc,
.cid-ukGRMvcyHS .desc-wrapper {
  color: #000000;
  text-align: center;
}
.cid-ukGRMwAlR6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRMwAlR6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMwAlR6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMwAlR6 .content-wrapper {
  position: relative;
  padding: 100px 100px 105px;
  border-radius: 30px;
  background-color: #fff1e2;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-ukGRMwAlR6 .content-wrapper {
    padding: 46px 22px;
  }
}
.cid-ukGRMwAlR6 .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-ukGRMwAlR6 .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 10px;
}
.cid-ukGRMwAlR6 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 56px;
}
.cid-ukGRMwAlR6 .content-wrapper .content-wrap .mbr-section-title span {
  color: #ff8576;
}
@media (max-width: 992px) {
  .cid-ukGRMwAlR6 .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-ukGRMwAlR6 .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-ukGRMwAlR6 .content-wrapper .image-wrapper {
  position: absolute;
  right: -50px;
  bottom: -150px;
  width: 400px;
  height: 400px;
}
@media (max-width: 992px) {
  .cid-ukGRMwAlR6 .content-wrapper .image-wrapper {
    right: -20px;
    bottom: -75px;
    width: 200px;
    height: 200px;
  }
}
.cid-ukGRMwAlR6 .content-wrapper .image-wrapper img {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRMwAlR6 .content-wrapper .image-wrapper img {
    width: 200px;
    height: 200px;
  }
}
.cid-ukGRMwAlR6 .mbr-section-title {
  color: #212529;
}
.cid-ukGRMwAlR6 .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-ukGRMwAlR6 .mbr-section-title,
.cid-ukGRMwAlR6 .mbr-section-btn {
  color: #000000;
}
.cid-ukGRMxsWCi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGRMxsWCi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMxsWCi .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-ukGRMxsWCi .container {
    padding: 0 30px;
  }
}
.cid-ukGRMxsWCi .row {
  justify-content: center;
}
.cid-ukGRMxsWCi .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ukGRMxsWCi .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRMxsWCi .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-ukGRMxsWCi .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-ukGRMxsWCi .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRMxsWCi .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ukGRMxsWCi .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-ukGRMyodyW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRMyodyW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMyodyW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMyodyW .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-ukGRMyodyW .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRMyodyW .container {
    padding: 0 26px;
  }
}
.cid-ukGRMyodyW .row {
  justify-content: center;
}
.cid-ukGRMyodyW .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #fff1e2;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-ukGRMyodyW .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRMyodyW .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-ukGRMyodyW .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-ukGRMyodyW .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-ukGRMyodyW .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ukGRMyodyW .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ukGRMyodyW .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ukGRMyodyW .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-ukGRMyodyW .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGRMyodyW .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ukGRMyodyW .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-ukGRMyodyW .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-ukGRMyodyW .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ukGRMyodyW .mbr-section-title {
  color: #000000;
}
.cid-ukGRMyodyW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ukGRMyodyW .mbr-desc {
  color: #ffffff;
}
.cid-ukGRMyodyW .mbr-text {
  color: #000000;
}
.cid-ukGRMyodyW .mbr-link {
  color: #ffffff;
}
.cid-ukGRMzuF0O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/retractable-fly-screens4.webp");
}
.cid-ukGRMzuF0O .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMzuF0O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMzuF0O .image-wrapper {
  height: 600px;
}
@media (max-width: 992px) {
  .cid-ukGRMzuF0O .image-wrapper {
    height: 400px;
  }
}
.cid-ukGRMAFpuQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRMAFpuQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMAFpuQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMAFpuQ .container,
.cid-ukGRMAFpuQ .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukGRMAFpuQ .container,
  .cid-ukGRMAFpuQ .container-fluid {
    padding: 0 20px;
  }
}
.cid-ukGRMAFpuQ .row {
  position: relative;
  padding: 100px 26px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #fff1e2;
}
@media (max-width: 992px) {
  .cid-ukGRMAFpuQ .row {
    padding: 85px 8px;
    margin: 0;
  }
}
.cid-ukGRMAFpuQ .title-wrapper {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-ukGRMAFpuQ .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-ukGRMAFpuQ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGRMAFpuQ .panel-group {
  padding: 0 20%;
}
@media (max-width: 992px) {
  .cid-ukGRMAFpuQ .panel-group {
    padding: 0 12px;
  }
}
.cid-ukGRMAFpuQ .panel-group .card {
  border-radius: 0;
}
.cid-ukGRMAFpuQ .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-ukGRMAFpuQ .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-ukGRMAFpuQ .panel-group .card .card-header .panel-title {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #3d4045;
}
.cid-ukGRMAFpuQ .panel-group .card .card-header .panel-title:not(.collapsed) {
  border-bottom: 1px solid #ed9b82;
}
.cid-ukGRMAFpuQ .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ed9b82;
}
.cid-ukGRMAFpuQ .panel-group .card .card-header .panel-title:hover,
.cid-ukGRMAFpuQ .panel-group .card .card-header .panel-title:focus {
  border-bottom: 1px solid #ed9b82;
}
.cid-ukGRMAFpuQ .panel-group .card .card-header .panel-title:hover .panel-title-edit,
.cid-ukGRMAFpuQ .panel-group .card .card-header .panel-title:focus .panel-title-edit {
  color: #ed9b82;
}
.cid-ukGRMAFpuQ .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
  transition: all 0.3s ease-out;
}
.cid-ukGRMAFpuQ .panel-group .card .panel-collapse .panel-body .panel-text {
  margin: 32px 0;
}
.cid-ukGRMAFpuQ .mbr-section-title {
  color: #3d4045;
}
.cid-ukGRMAFpuQ .panel-title-edit {
  color: #3d4045;
}
.cid-ukGRMAFpuQ .panel-text {
  color: #3d4045;
}
.cid-ukGRMBQbUY {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #fff1e2;
}
.cid-ukGRMBQbUY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMBQbUY .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ukGRMBQbUY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMBQbUY h1 {
  max-width: 800px;
}
.cid-ukGRMBQbUY p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-ukGRMBQbUY {
    align-items: center;
  }
  .cid-ukGRMBQbUY .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ukGRMBQbUY .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ukGRMBQbUY {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ukGRMBQbUY .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ukGRMBQbUY .content-wrap {
    width: 100%;
  }
}
.cid-ukGRMBQbUY .mbr-section-subtitle,
.cid-ukGRMBQbUY .line {
  color: #291f1e;
}
.cid-ukGRMBQbUY .mbr-text,
.cid-ukGRMBQbUY .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ukGRMBQbUY .mbr-section-title {
  color: #291f1e;
}
.cid-ukGRMDw3dC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ccc8e0;
}
.cid-ukGRMDw3dC .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #fff1e2;
}
.cid-ukGRMDw3dC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMDw3dC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMDw3dC .items-wrapper {
  margin: 0;
}
.cid-ukGRMDw3dC .items-wrapper .item {
  padding: 0;
}
.cid-ukGRMDw3dC .items-wrapper .item:nth-child(3n) .item-wrapper {
  border-right: none !important;
}
@media (max-width: 992px) {
  .cid-ukGRMDw3dC .items-wrapper .item:last-child {
    border-bottom: none !important;
  }
}
.cid-ukGRMDw3dC .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px 32px;
  border-radius: 0 !important;
  border-right: 1px solid #fff1e2;
}
@media (max-width: 1640px) {
  .cid-ukGRMDw3dC .items-wrapper .item .item-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRMDw3dC .items-wrapper .item .item-wrapper {
    border-right: none;
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-ukGRMDw3dC .items-wrapper .item .item-wrapper {
    border-right: none;
    border-bottom: 1px solid #fff1e2;
  }
}
.cid-ukGRMDw3dC .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGRMDw3dC .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-ukGRMDw3dC .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 80px;
  color: #e7271c;
  display: inline-flex;
}
.cid-ukGRMDw3dC .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGRMDw3dC .items-wrapper .item .item-wrapper .item-content .item-title {
    margin-bottom: 16px;
  }
}
.cid-ukGRMDw3dC .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ukGRMDw3dC .items-wrapper .item .item-wrapper .item-content .item-text {
    margin-bottom: 16px;
  }
}
.cid-ukGRMDw3dC .item-title {
  color: #150764;
}
.cid-ukGRMDw3dC .item-text,
.cid-ukGRMDw3dC .desc-wrapper {
  color: #150764;
  text-align: center;
}
.cid-ukGRMDw3dC .item-title,
.cid-ukGRMDw3dC .mbr-section-btn,
.cid-ukGRMDw3dC .icon-wrapper {
  text-align: center;
  color: #252525;
}
.cid-ukGRMDw3dC .item-text {
  color: #150764;
}
.cid-ukGRMEDKE5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGRMEDKE5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMEDKE5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMEDKE5 .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #150764;
}
@media (max-width: 992px) {
  .cid-ukGRMEDKE5 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-ukGRMEDKE5 .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ukGRMEDKE5 .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-ukGRMEDKE5 .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-ukGRMEDKE5 .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-ukGRMEDKE5 .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGRMEDKE5 .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ukGRMEDKE5 .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukGRMEDKE5 .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-ukGRMEDKE5 .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-ukGRMEDKE5 .mbr-section-title,
.cid-ukGRMEDKE5 .mbr-section-btn {
  color: #000000;
}
.cid-ukHdYIhADb {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #ccc8e0;
}
.cid-ukHdYIhADb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukHdYIhADb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukHdYIhADb .accordion .mbr-iconfont {
  font-size: 1rem !important;
  font-family: 'Moririse2' !important;
  color: #00004c;
  transform: rotate(0deg) !important;
  margin-left: 1rem;
  padding: 8px;
  border-radius: 50%;
}
.cid-ukHdYIhADb .accordion .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg) !important;
}
.cid-ukHdYIhADb .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .cid-ukHdYIhADb .col-title {
    margin-bottom: 40px;
  }
}
.cid-ukHdYIhADb .mbr-section-title {
  color: #00004c;
}
@media (max-width: 991px) {
  .cid-ukHdYIhADb .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ukHdYIhADb .mbr-section-subtitle {
  color: #00004c;
  margin-top: 14px;
}
@media (max-width: 991px) {
  .cid-ukHdYIhADb .mbr-section-subtitle {
    margin-top: 16px;
    text-align: center !important;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ukHdYIhADb .accordion-row {
    margin: 0 -10px !important;
  }
}
.cid-ukHdYIhADb .accordion-title-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ukHdYIhADb .accordion-title-container {
    display: none;
  }
}
.cid-ukHdYIhADb .accordion-title {
  padding: 0 20px;
  width: 50%;
  color: #00004c;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ukHdYIhADb .accordion-title {
    padding: 0 10px;
  }
}
.cid-ukHdYIhADb .panel-group {
  display: flex;
  flex-wrap: wrap;
  border: none;
  padding: 0 !important;
}
.cid-ukHdYIhADb .card {
  width: 50%;
  padding: 0 20px !important;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ukHdYIhADb .card {
    padding: 0 10px !important;
  }
}
@media (max-width: 991px) {
  .cid-ukHdYIhADb .card {
    width: 100%;
  }
}
.cid-ukHdYIhADb .card-border-top {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-ukHdYIhADb .card-border-top2 {
    display: none;
  }
}
.cid-ukHdYIhADb .card-header {
  border-bottom: none !important;
  padding: 10px 0 !important;
}
.cid-ukHdYIhADb .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-ukHdYIhADb .panel-body {
  padding-bottom: 20px;
}
.cid-ukHdYIhADb .panel-text {
  margin-bottom: 20px !important;
  color: #00004c;
}
.cid-ukHdYIhADb .panel-title {
  display: flex;
  align-items: center;
}
.cid-ukHdYIhADb .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ukHdYIhADb .panel-title-edit {
  color: #00004c;
  text-align: center;
}
.cid-ukGRMFWslo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ccc8e0;
}
.cid-ukGRMFWslo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMFWslo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMFWslo .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukGRMFWslo .content-wrapper {
    padding: 0;
  }
}
.cid-ukGRMFWslo .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ukGRMFWslo .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ukGRMFWslo .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-ukGRMFWslo .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ukGRMFWslo .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-ukGRMFWslo .mbr-section-title {
  color: #050f0f;
}
.cid-ukGRMH1dk1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGRMH1dk1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRMH1dk1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRMH1dk1 .content-wrap {
  padding: 60px;
  background-color: #ccc8e0;
}
@media (max-width: 992px) {
  .cid-ukGRMH1dk1 .content-wrap {
    padding: 30px 20px;
  }
}
.cid-ukGRMH1dk1 .content-wrap .row {
  justify-content: center;
}
.cid-ukGRMH1dk1 .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGRMH1dk1 .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRMH1dk1 .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ukGRMH1dk1 .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-ukGRMH1dk1 .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-ukGRMH1dk1 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGRMH1dk1 .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGRMH1dk1 .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRMH1dk1 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGRMH1dk1 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ukGRMH1dk1 .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ukGRMH1dk1 .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukGRMH1dk1 .nav-wrapper .list .item-wrap:hover,
.cid-ukGRMH1dk1 .nav-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ukGRMH1dk1 .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGRMH1dk1 .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRMH1dk1 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGRMH1dk1 .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ukGRMH1dk1 .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ukGRMH1dk1 .contacts-wrapper .list .item-wrap:hover,
.cid-ukGRMH1dk1 .contacts-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ukGRMH1dk1 .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukGRMH1dk1 .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGRMH1dk1 .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRMH1dk1 .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGRMH1dk1 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-ukGRMH1dk1 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ukGRMH1dk1 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ukGRMH1dk1 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-ukGRMH1dk1 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #000000;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-ukGRMH1dk1 .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-ukGRMH1dk1 .mbr-section-title {
  color: #ed463f;
}
.cid-ukGRMH1dk1 .mbr-section-subtitle {
  color: #404349;
}
.cid-ukGRMH1dk1 .list {
  color: #404349;
}
.cid-ukGRMH1dk1 .mbr-section-title,
.cid-ukGRMH1dk1 .title-wrapper {
  text-align: center;
}
.cid-ukGRMH1dk1 .list,
.cid-ukGRMH1dk1 .item-wrap {
  text-align: center;
}
.cid-ukGRNu1ACN .navbar-dropdown {
  background-color: #ccc8e0 !important;
  padding: 0;
}
.cid-ukGRNu1ACN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ccc8e0 !important;
  background: #ccc8e0;
}
.cid-ukGRNu1ACN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-ukGRNu1ACN .menu_box .navbar.opened,
  .cid-ukGRNu1ACN .menu_box .navbar-collapse {
    background-color: #ccc8e0 !important;
    transition: all 0s ease 0s;
  }
}
.cid-ukGRNu1ACN .navbar-dropdown {
  position: relative !important;
}
.cid-ukGRNu1ACN .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-ukGRNu1ACN .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ukGRNu1ACN .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ukGRNu1ACN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ukGRNu1ACN .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ukGRNu1ACN .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-ukGRNu1ACN .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ukGRNu1ACN .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ukGRNu1ACN .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ukGRNu1ACN .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ukGRNu1ACN .offcanvas-body .mbr-text,
  .cid-ukGRNu1ACN .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-ukGRNu1ACN .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-ukGRNu1ACN .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ukGRNu1ACN .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-ukGRNu1ACN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ukGRNu1ACN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ukGRNu1ACN .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ukGRNu1ACN .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ukGRNu1ACN ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ukGRNu1ACN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukGRNu1ACN .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-ukGRNu1ACN .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ukGRNu1ACN li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ukGRNu1ACN .lg_brand {
    margin: 0 1rem;
  }
}
.cid-ukGRNu1ACN .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ukGRNu1ACN .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ukGRNu1ACN .nav-item {
    margin: 0 !important;
  }
}
.cid-ukGRNu1ACN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ukGRNu1ACN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ukGRNu1ACN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ukGRNu1ACN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukGRNu1ACN .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ukGRNu1ACN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ukGRNu1ACN .offcanvas_box {
    display: none;
  }
}
.cid-ukGRNu1ACN .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-ukGRNu1ACN .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ukGRNu1ACN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ukGRNu1ACN .container {
  display: flex;
  margin: auto;
}
.cid-ukGRNu1ACN .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ukGRNu1ACN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ukGRNu1ACN .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ukGRNu1ACN .navbar-caption {
  color: #d2d2d2;
}
.cid-ukGRNu1ACN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ukGRNu1ACN .navbar-nav {
    margin: 0;
  }
}
.cid-ukGRNu1ACN .dropdown-menu,
.cid-ukGRNu1ACN .navbar.opened {
  background-color: false !important;
}
.cid-ukGRNu1ACN .nav-item:focus,
.cid-ukGRNu1ACN .nav-link:focus {
  outline: none;
}
.cid-ukGRNu1ACN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukGRNu1ACN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukGRNu1ACN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukGRNu1ACN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukGRNu1ACN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukGRNu1ACN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukGRNu1ACN .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-ukGRNu1ACN .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-ukGRNu1ACN .navbar.opened {
  transition: all 0.3s;
}
.cid-ukGRNu1ACN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ukGRNu1ACN .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-ukGRNu1ACN .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-ukGRNu1ACN .navbar.collapsed {
  justify-content: center;
}
.cid-ukGRNu1ACN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukGRNu1ACN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ukGRNu1ACN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukGRNu1ACN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukGRNu1ACN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukGRNu1ACN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ukGRNu1ACN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukGRNu1ACN .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ukGRNu1ACN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-ukGRNu1ACN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukGRNu1ACN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukGRNu1ACN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ukGRNu1ACN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukGRNu1ACN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ukGRNu1ACN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukGRNu1ACN .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ukGRNu1ACN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ukGRNu1ACN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ukGRNu1ACN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukGRNu1ACN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukGRNu1ACN .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ukGRNu1ACN .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukGRNu1ACN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukGRNu1ACN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukGRNu1ACN .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukGRNu1ACN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukGRNu1ACN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukGRNu1ACN .dropdown-item.active,
.cid-ukGRNu1ACN .dropdown-item:active {
  background-color: transparent;
}
.cid-ukGRNu1ACN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukGRNu1ACN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukGRNu1ACN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukGRNu1ACN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukGRNu1ACN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-ukGRNu1ACN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukGRNu1ACN button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ccc8e0;
  background: #000000;
}
.cid-ukGRNu1ACN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-ukGRNu1ACN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukGRNu1ACN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukGRNu1ACN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukGRNu1ACN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukGRNu1ACN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukGRNu1ACN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukGRNu1ACN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukGRNu1ACN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukGRNu1ACN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ukGRNu1ACN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukGRNu1ACN .navbar {
    height: 70px;
  }
  .cid-ukGRNu1ACN .navbar.opened {
    height: auto;
  }
  .cid-ukGRNu1ACN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukGRNu1ACN .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-ukGRNu1ACN .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-ukGRNu1ACN .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-ukGRNu1ACN .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-ukGRNu1ACN .navbar-caption:hover {
  color: #d42017;
}
@media (min-width: 992px) {
  .cid-ukGRNu1ACN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ukGRNu1ACN .mbr-section-subtitle {
  color: #000000;
}
.cid-ukGRNu1ACN .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ukGRNu1ACN .text_widget {
  color: #000000;
}
.cid-ukGRNu1ACN .mbr-section-subtitle,
.cid-ukGRNu1ACN .text_widget,
.cid-ukGRNu1ACN .mbr-section-btn {
  text-align: center;
}
.cid-ukGRNu1ACN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ukGRNvg42v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8e7d2;
}
.cid-ukGRNvg42v .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNvg42v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNvg42v .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-ukGRNvg42v .container-fluid {
    padding: 0 12px;
  }
}
.cid-ukGRNvg42v .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ukGRNvg42v .container {
    padding: 0 20px;
  }
}
.cid-ukGRNvg42v .row {
  margin-top: -2px;
}
.cid-ukGRNvg42v .card {
  padding: 0;
}
.cid-ukGRNvg42v .image-wrapper {
  border: 2px solid #706f6d;
}
.cid-ukGRNvg42v .image-wrapper img {
  height: 650px;
  width: 70%;
  object-fit: cover;
  border-bottom-right-radius: 45rem;
}
@media (max-width: 992px) {
  .cid-ukGRNvg42v .image-wrapper img {
    height: 450px;
    width: 100%;
  }
}
.cid-ukGRNvg42v .title-wrapper {
  border: 2px solid #706f6d;
  border-top: none;
  padding: 0 64px 64px;
  margin-top: -4rem;
}
@media (max-width: 992px) {
  .cid-ukGRNvg42v .title-wrapper {
    padding: 0 20px 50px;
  }
}
@media (max-width: 425px) {
  .cid-ukGRNvg42v .title-wrapper {
    margin-top: -2rem;
  }
}
.cid-ukGRNvg42v .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ukGRNvg42v .title-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ukGRNvg42v .title-wrapper .text-wrapper {
    display: block;
  }
}
.cid-ukGRNvg42v .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ukGRNvg42v .title-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-ukGRNvg42v .title-wrapper .text-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ukGRNvg42v .title-wrapper .text-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-ukGRNvg42v .mbr-section-title {
  color: #ffffff;
}
.cid-ukGRNvg42v .mbr-text {
  color: #ffffff;
}
.cid-ukGRNvg42v .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ukGRNvg42v .mbr-section-btn {
    text-align: left;
  }
}
.cid-ukGRNvg42v .mbr-section-title,
.cid-ukGRNvg42v .mbr-section-btn {
  color: #000000;
}
.cid-ukGRNvg42v .mbr-text,
.cid-ukGRNvg42v .mbr-section-btn {
  color: #000000;
}
.cid-ukGRNwa7DG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRNwa7DG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNwa7DG .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-ukGRNwa7DG .container {
    padding: 0 15px;
  }
}
.cid-ukGRNwa7DG .row {
  justify-content: center;
}
.cid-ukGRNwa7DG .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRNwa7DG .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ukGRNwa7DG .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-ukGRNwa7DG .subtitle-wrapper {
    padding: 0;
  }
}
.cid-ukGRNwa7DG .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ukGRNwa7DG .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-ukGRNwa7DG .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRNwa7DG .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-ukGRNwa7DG .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-ukGRNwa7DG .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukGRNwa7DG .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #000000;
  color: #f1dd26;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-ukGRNwa7DG .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-ukGRNwa7DG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ukGRNwa7DG .mbr-section-subtitle {
  color: #000000;
}
.cid-ukGRNwa7DG .list {
  color: #ffffff;
}
.cid-ukGRNwa7DG .list,
.cid-ukGRNwa7DG .item-wrap {
  color: #000000;
}
.cid-ukGRNxgbiT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f8e7d2;
}
.cid-ukGRNxgbiT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNxgbiT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNxgbiT .row {
  justify-content: space-between;
}
.cid-ukGRNxgbiT .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-ukGRNxgbiT .content-wrapper {
    padding: 0;
  }
}
.cid-ukGRNxgbiT .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRNxgbiT .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ukGRNxgbiT .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRNxgbiT .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-ukGRNxgbiT .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ukGRNxgbiT .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-ukGRNxgbiT .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-ukGRNxgbiT .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-ukGRNxgbiT .mbr-section-title {
  color: #000000;
}
.cid-ukGRNxgbiT .mbr-desc {
  color: #000000;
}
.cid-ukGRNxgbiT .mbr-text {
  color: #000000;
}
.cid-ukGRNyeiAv {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRNyeiAv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNyeiAv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNyeiAv .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-ukGRNyeiAv .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGRNyeiAv .content-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-ukGRNyeiAv .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRNyeiAv .image-wrapper img {
    height: 350px;
  }
}
.cid-ukGRNyeiAv .mbr-section-title {
  color: #404349;
}
.cid-ukGRNyeiAv .mbr-desc {
  color: #b19a7c;
}
.cid-ukGRNyeiAv .mbr-text {
  color: #404349;
}
.cid-ukGRNyeiAv .mbr-desc,
.cid-ukGRNyeiAv .desc-wrapper {
  text-align: center;
  color: #000000;
}
.cid-ukGRNyeiAv .mbr-section-title,
.cid-ukGRNyeiAv .title-wrap {
  color: #000000;
}
.cid-ukGRNzioxa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGRNzioxa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNzioxa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNzioxa .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
  border: 2px solid #ffb2ef;
}
@media (max-width: 1200px) {
  .cid-ukGRNzioxa .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-ukGRNzioxa .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-ukGRNzioxa .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-ukGRNzioxa .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ukGRNzioxa .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-ukGRNzioxa .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-ukGRNzioxa .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #f7fff7;
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper:hover,
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ukGRNzioxa .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-ukGRNzioxa .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRNzioxa .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ukGRNzioxa .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-ukGRNzioxa .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-ukGRNzioxa .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRNzioxa .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-ukGRNzioxa .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-ukGRNzioxa .item-title {
  color: #050f0f;
}
.cid-ukGRNzioxa .item-text {
  color: #050f0f;
}
.cid-ukGRNzioxa .list {
  color: #050f0f;
}
.cid-ukGRNAV57B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRNAV57B .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNAV57B .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-ukGRNAV57B .container {
    padding: 0 16px;
  }
}
.cid-ukGRNAV57B .card {
  justify-content: center;
}
.cid-ukGRNAV57B .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #fff1e2;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-ukGRNAV57B .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ukGRNAV57B .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-ukGRNAV57B .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-ukGRNAV57B .mbr-section-title {
  color: #000000;
}
.cid-ukGRNAV57B .mbr-text {
  color: #000000;
}
.cid-ukGRNAV57B .mbr-desc {
  color: #000000;
}
.cid-ukGRNC4I8B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8e7d2;
}
.cid-ukGRNC4I8B .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNC4I8B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNC4I8B .content-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ukGRNC4I8B .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRNC4I8B .content-wrapper .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-ukGRNC4I8B .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRNC4I8B .content-wrapper .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-ukGRNC4I8B .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGRNC4I8B .content-wrapper .title-wrapper .mbr-section-title span {
  color: #ed463f;
}
.cid-ukGRNC4I8B .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukGRNC4I8B .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRNC4I8B .image-wrapper img {
    height: 350px;
  }
}
.cid-ukGRNC4I8B .mbr-section-title {
  color: #404349;
}
.cid-ukGRNC4I8B .mbr-desc {
  color: #b19a7c;
}
.cid-ukGRNC4I8B .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ukGRNC4I8B .mbr-desc,
.cid-ukGRNC4I8B .desc-wrapper {
  color: #000000;
  text-align: center;
}
.cid-ukGRNDlemh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRNDlemh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNDlemh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNDlemh .content-wrapper {
  position: relative;
  padding: 100px 100px 105px;
  border-radius: 30px;
  background-color: #fff1e2;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-ukGRNDlemh .content-wrapper {
    padding: 46px 22px;
  }
}
.cid-ukGRNDlemh .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-ukGRNDlemh .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 10px;
}
.cid-ukGRNDlemh .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 56px;
}
.cid-ukGRNDlemh .content-wrapper .content-wrap .mbr-section-title span {
  color: #ff8576;
}
@media (max-width: 992px) {
  .cid-ukGRNDlemh .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-ukGRNDlemh .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-ukGRNDlemh .content-wrapper .image-wrapper {
  position: absolute;
  right: -50px;
  bottom: -150px;
  width: 400px;
  height: 400px;
}
@media (max-width: 992px) {
  .cid-ukGRNDlemh .content-wrapper .image-wrapper {
    right: -20px;
    bottom: -75px;
    width: 200px;
    height: 200px;
  }
}
.cid-ukGRNDlemh .content-wrapper .image-wrapper img {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRNDlemh .content-wrapper .image-wrapper img {
    width: 200px;
    height: 200px;
  }
}
.cid-ukGRNDlemh .mbr-section-title {
  color: #212529;
}
.cid-ukGRNDlemh .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-ukGRNDlemh .mbr-section-title,
.cid-ukGRNDlemh .mbr-section-btn {
  color: #000000;
}
.cid-ukGRNEAdvA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGRNEAdvA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNEAdvA .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-ukGRNEAdvA .container {
    padding: 0 30px;
  }
}
.cid-ukGRNEAdvA .row {
  justify-content: center;
}
.cid-ukGRNEAdvA .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ukGRNEAdvA .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRNEAdvA .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-ukGRNEAdvA .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-ukGRNEAdvA .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRNEAdvA .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ukGRNEAdvA .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-ukGRNFrLdx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRNFrLdx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNFrLdx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNFrLdx .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-ukGRNFrLdx .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRNFrLdx .container {
    padding: 0 26px;
  }
}
.cid-ukGRNFrLdx .row {
  justify-content: center;
}
.cid-ukGRNFrLdx .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #fff1e2;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-ukGRNFrLdx .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRNFrLdx .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-ukGRNFrLdx .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-ukGRNFrLdx .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-ukGRNFrLdx .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ukGRNFrLdx .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ukGRNFrLdx .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ukGRNFrLdx .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-ukGRNFrLdx .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGRNFrLdx .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ukGRNFrLdx .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-ukGRNFrLdx .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-ukGRNFrLdx .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ukGRNFrLdx .mbr-section-title {
  color: #000000;
}
.cid-ukGRNFrLdx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ukGRNFrLdx .mbr-desc {
  color: #ffffff;
}
.cid-ukGRNFrLdx .mbr-text {
  color: #000000;
}
.cid-ukGRNFrLdx .mbr-link {
  color: #ffffff;
}
.cid-ukGRNGnN4d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/gggggee-1024x600.jpg");
}
.cid-ukGRNGnN4d .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNGnN4d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNGnN4d .image-wrapper {
  height: 600px;
}
@media (max-width: 992px) {
  .cid-ukGRNGnN4d .image-wrapper {
    height: 400px;
  }
}
.cid-ukGRNHgYCc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRNHgYCc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNHgYCc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNHgYCc .container,
.cid-ukGRNHgYCc .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukGRNHgYCc .container,
  .cid-ukGRNHgYCc .container-fluid {
    padding: 0 20px;
  }
}
.cid-ukGRNHgYCc .row {
  position: relative;
  padding: 100px 26px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #fff1e2;
}
@media (max-width: 992px) {
  .cid-ukGRNHgYCc .row {
    padding: 85px 8px;
    margin: 0;
  }
}
.cid-ukGRNHgYCc .title-wrapper {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-ukGRNHgYCc .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-ukGRNHgYCc .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGRNHgYCc .panel-group {
  padding: 0 20%;
}
@media (max-width: 992px) {
  .cid-ukGRNHgYCc .panel-group {
    padding: 0 12px;
  }
}
.cid-ukGRNHgYCc .panel-group .card {
  border-radius: 0;
}
.cid-ukGRNHgYCc .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-ukGRNHgYCc .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-ukGRNHgYCc .panel-group .card .card-header .panel-title {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #3d4045;
}
.cid-ukGRNHgYCc .panel-group .card .card-header .panel-title:not(.collapsed) {
  border-bottom: 1px solid #ed9b82;
}
.cid-ukGRNHgYCc .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ed9b82;
}
.cid-ukGRNHgYCc .panel-group .card .card-header .panel-title:hover,
.cid-ukGRNHgYCc .panel-group .card .card-header .panel-title:focus {
  border-bottom: 1px solid #ed9b82;
}
.cid-ukGRNHgYCc .panel-group .card .card-header .panel-title:hover .panel-title-edit,
.cid-ukGRNHgYCc .panel-group .card .card-header .panel-title:focus .panel-title-edit {
  color: #ed9b82;
}
.cid-ukGRNHgYCc .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
  transition: all 0.3s ease-out;
}
.cid-ukGRNHgYCc .panel-group .card .panel-collapse .panel-body .panel-text {
  margin: 32px 0;
}
.cid-ukGRNHgYCc .mbr-section-title {
  color: #3d4045;
}
.cid-ukGRNHgYCc .panel-title-edit {
  color: #3d4045;
}
.cid-ukGRNHgYCc .panel-text {
  color: #3d4045;
}
.cid-ukGRNIoW1V {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #fff1e2;
}
.cid-ukGRNIoW1V .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNIoW1V .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ukGRNIoW1V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNIoW1V h1 {
  max-width: 800px;
}
.cid-ukGRNIoW1V p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-ukGRNIoW1V {
    align-items: center;
  }
  .cid-ukGRNIoW1V .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ukGRNIoW1V .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ukGRNIoW1V {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ukGRNIoW1V .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ukGRNIoW1V .content-wrap {
    width: 100%;
  }
}
.cid-ukGRNIoW1V .mbr-section-subtitle,
.cid-ukGRNIoW1V .line {
  color: #291f1e;
}
.cid-ukGRNIoW1V .mbr-text,
.cid-ukGRNIoW1V .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ukGRNIoW1V .mbr-section-title {
  color: #291f1e;
}
.cid-ukGRNJrW21 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ccc8e0;
}
.cid-ukGRNJrW21 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #fff1e2;
}
.cid-ukGRNJrW21 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNJrW21 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNJrW21 .items-wrapper {
  margin: 0;
}
.cid-ukGRNJrW21 .items-wrapper .item {
  padding: 0;
}
.cid-ukGRNJrW21 .items-wrapper .item:nth-child(3n) .item-wrapper {
  border-right: none !important;
}
@media (max-width: 992px) {
  .cid-ukGRNJrW21 .items-wrapper .item:last-child {
    border-bottom: none !important;
  }
}
.cid-ukGRNJrW21 .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px 32px;
  border-radius: 0 !important;
  border-right: 1px solid #fff1e2;
}
@media (max-width: 1640px) {
  .cid-ukGRNJrW21 .items-wrapper .item .item-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRNJrW21 .items-wrapper .item .item-wrapper {
    border-right: none;
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-ukGRNJrW21 .items-wrapper .item .item-wrapper {
    border-right: none;
    border-bottom: 1px solid #fff1e2;
  }
}
.cid-ukGRNJrW21 .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGRNJrW21 .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-ukGRNJrW21 .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 80px;
  color: #e7271c;
  display: inline-flex;
}
.cid-ukGRNJrW21 .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGRNJrW21 .items-wrapper .item .item-wrapper .item-content .item-title {
    margin-bottom: 16px;
  }
}
.cid-ukGRNJrW21 .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ukGRNJrW21 .items-wrapper .item .item-wrapper .item-content .item-text {
    margin-bottom: 16px;
  }
}
.cid-ukGRNJrW21 .item-title {
  color: #150764;
}
.cid-ukGRNJrW21 .item-text,
.cid-ukGRNJrW21 .desc-wrapper {
  color: #150764;
  text-align: center;
}
.cid-ukGRNJrW21 .item-title,
.cid-ukGRNJrW21 .mbr-section-btn,
.cid-ukGRNJrW21 .icon-wrapper {
  text-align: center;
  color: #252525;
}
.cid-ukGRNJrW21 .item-text {
  color: #150764;
}
.cid-ukGRNKw7QL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGRNKw7QL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNKw7QL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNKw7QL .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #150764;
}
@media (max-width: 992px) {
  .cid-ukGRNKw7QL .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-ukGRNKw7QL .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ukGRNKw7QL .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-ukGRNKw7QL .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-ukGRNKw7QL .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-ukGRNKw7QL .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGRNKw7QL .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ukGRNKw7QL .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukGRNKw7QL .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-ukGRNKw7QL .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-ukGRNKw7QL .mbr-section-title,
.cid-ukGRNKw7QL .mbr-section-btn {
  color: #000000;
}
.cid-ukHf666nfN {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #ccc8e0;
}
.cid-ukHf666nfN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukHf666nfN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukHf666nfN .accordion .mbr-iconfont {
  font-size: 1rem !important;
  font-family: 'Moririse2' !important;
  color: #00004c;
  transform: rotate(0deg) !important;
  margin-left: 1rem;
  padding: 8px;
  border-radius: 50%;
}
.cid-ukHf666nfN .accordion .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg) !important;
}
.cid-ukHf666nfN .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .cid-ukHf666nfN .col-title {
    margin-bottom: 40px;
  }
}
.cid-ukHf666nfN .mbr-section-title {
  color: #00004c;
}
@media (max-width: 991px) {
  .cid-ukHf666nfN .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ukHf666nfN .mbr-section-subtitle {
  color: #00004c;
  margin-top: 14px;
}
@media (max-width: 991px) {
  .cid-ukHf666nfN .mbr-section-subtitle {
    margin-top: 16px;
    text-align: center !important;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ukHf666nfN .accordion-row {
    margin: 0 -10px !important;
  }
}
.cid-ukHf666nfN .accordion-title-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ukHf666nfN .accordion-title-container {
    display: none;
  }
}
.cid-ukHf666nfN .accordion-title {
  padding: 0 20px;
  width: 50%;
  color: #00004c;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ukHf666nfN .accordion-title {
    padding: 0 10px;
  }
}
.cid-ukHf666nfN .panel-group {
  display: flex;
  flex-wrap: wrap;
  border: none;
  padding: 0 !important;
}
.cid-ukHf666nfN .card {
  width: 50%;
  padding: 0 20px !important;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ukHf666nfN .card {
    padding: 0 10px !important;
  }
}
@media (max-width: 991px) {
  .cid-ukHf666nfN .card {
    width: 100%;
  }
}
.cid-ukHf666nfN .card-border-top {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-ukHf666nfN .card-border-top2 {
    display: none;
  }
}
.cid-ukHf666nfN .card-header {
  border-bottom: none !important;
  padding: 10px 0 !important;
}
.cid-ukHf666nfN .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-ukHf666nfN .panel-body {
  padding-bottom: 20px;
}
.cid-ukHf666nfN .panel-text {
  margin-bottom: 20px !important;
  color: #00004c;
}
.cid-ukHf666nfN .panel-title {
  display: flex;
  align-items: center;
}
.cid-ukHf666nfN .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ukHf666nfN .panel-title-edit {
  color: #00004c;
  text-align: center;
}
.cid-ukGRNLy7EA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebebeb;
}
.cid-ukGRNLy7EA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNLy7EA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNLy7EA .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukGRNLy7EA .content-wrapper {
    padding: 0;
  }
}
.cid-ukGRNLy7EA .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ukGRNLy7EA .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ukGRNLy7EA .content-wrapper .google-map {
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
}
.cid-ukGRNLy7EA .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ukGRNLy7EA .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-ukGRNLy7EA .mbr-section-title {
  color: #050f0f;
}
.cid-ukGRNMx4lJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGRNMx4lJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRNMx4lJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRNMx4lJ .content-wrap {
  padding: 60px;
  background-color: #ccc8e0;
}
@media (max-width: 992px) {
  .cid-ukGRNMx4lJ .content-wrap {
    padding: 30px 20px;
  }
}
.cid-ukGRNMx4lJ .content-wrap .row {
  justify-content: center;
}
.cid-ukGRNMx4lJ .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGRNMx4lJ .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRNMx4lJ .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ukGRNMx4lJ .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-ukGRNMx4lJ .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-ukGRNMx4lJ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGRNMx4lJ .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGRNMx4lJ .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRNMx4lJ .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGRNMx4lJ .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ukGRNMx4lJ .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ukGRNMx4lJ .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukGRNMx4lJ .nav-wrapper .list .item-wrap:hover,
.cid-ukGRNMx4lJ .nav-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ukGRNMx4lJ .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGRNMx4lJ .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRNMx4lJ .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGRNMx4lJ .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ukGRNMx4lJ .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ukGRNMx4lJ .contacts-wrapper .list .item-wrap:hover,
.cid-ukGRNMx4lJ .contacts-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ukGRNMx4lJ .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukGRNMx4lJ .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGRNMx4lJ .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRNMx4lJ .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGRNMx4lJ .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-ukGRNMx4lJ .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ukGRNMx4lJ .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ukGRNMx4lJ .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-ukGRNMx4lJ .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #000000;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-ukGRNMx4lJ .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-ukGRNMx4lJ .mbr-section-title {
  color: #ed463f;
}
.cid-ukGRNMx4lJ .mbr-section-subtitle {
  color: #404349;
}
.cid-ukGRNMx4lJ .list {
  color: #404349;
}
.cid-ukGRNMx4lJ .mbr-section-title,
.cid-ukGRNMx4lJ .title-wrapper {
  text-align: center;
}
.cid-ukGRNMx4lJ .list,
.cid-ukGRNMx4lJ .item-wrap {
  text-align: center;
}
.cid-ukGRO1EBsj .navbar-dropdown {
  background-color: #ccc8e0 !important;
  padding: 0;
}
.cid-ukGRO1EBsj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ccc8e0 !important;
  background: #ccc8e0;
}
.cid-ukGRO1EBsj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-ukGRO1EBsj .menu_box .navbar.opened,
  .cid-ukGRO1EBsj .menu_box .navbar-collapse {
    background-color: #ccc8e0 !important;
    transition: all 0s ease 0s;
  }
}
.cid-ukGRO1EBsj .navbar-dropdown {
  position: relative !important;
}
.cid-ukGRO1EBsj .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-ukGRO1EBsj .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ukGRO1EBsj .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-ukGRO1EBsj .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-ukGRO1EBsj .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-ukGRO1EBsj .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-ukGRO1EBsj .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-ukGRO1EBsj .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-ukGRO1EBsj .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-ukGRO1EBsj .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-ukGRO1EBsj .offcanvas-body .mbr-text,
  .cid-ukGRO1EBsj .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-ukGRO1EBsj .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-ukGRO1EBsj .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-ukGRO1EBsj .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-ukGRO1EBsj .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-ukGRO1EBsj .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-ukGRO1EBsj .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-ukGRO1EBsj .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-ukGRO1EBsj ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-ukGRO1EBsj .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukGRO1EBsj .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-ukGRO1EBsj .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-ukGRO1EBsj li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-ukGRO1EBsj .lg_brand {
    margin: 0 1rem;
  }
}
.cid-ukGRO1EBsj .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-ukGRO1EBsj .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-ukGRO1EBsj .nav-item {
    margin: 0 !important;
  }
}
.cid-ukGRO1EBsj .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-ukGRO1EBsj .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-ukGRO1EBsj .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-ukGRO1EBsj .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-ukGRO1EBsj .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-ukGRO1EBsj .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-ukGRO1EBsj .offcanvas_box {
    display: none;
  }
}
.cid-ukGRO1EBsj .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-ukGRO1EBsj .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-ukGRO1EBsj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-ukGRO1EBsj .container {
  display: flex;
  margin: auto;
}
.cid-ukGRO1EBsj .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ukGRO1EBsj .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ukGRO1EBsj .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-ukGRO1EBsj .navbar-caption {
  color: #d2d2d2;
}
.cid-ukGRO1EBsj .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-ukGRO1EBsj .navbar-nav {
    margin: 0;
  }
}
.cid-ukGRO1EBsj .dropdown-menu,
.cid-ukGRO1EBsj .navbar.opened {
  background-color: false !important;
}
.cid-ukGRO1EBsj .nav-item:focus,
.cid-ukGRO1EBsj .nav-link:focus {
  outline: none;
}
.cid-ukGRO1EBsj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukGRO1EBsj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukGRO1EBsj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukGRO1EBsj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukGRO1EBsj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukGRO1EBsj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukGRO1EBsj .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-ukGRO1EBsj .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-ukGRO1EBsj .navbar.opened {
  transition: all 0.3s;
}
.cid-ukGRO1EBsj .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-ukGRO1EBsj .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-ukGRO1EBsj .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-ukGRO1EBsj .navbar.collapsed {
  justify-content: center;
}
.cid-ukGRO1EBsj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukGRO1EBsj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ukGRO1EBsj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukGRO1EBsj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukGRO1EBsj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukGRO1EBsj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-ukGRO1EBsj .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukGRO1EBsj .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-ukGRO1EBsj .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-ukGRO1EBsj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukGRO1EBsj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukGRO1EBsj .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-ukGRO1EBsj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukGRO1EBsj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-ukGRO1EBsj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukGRO1EBsj .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-ukGRO1EBsj .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-ukGRO1EBsj .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-ukGRO1EBsj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukGRO1EBsj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukGRO1EBsj .navbar .icons-menu {
    padding: 0;
  }
}
.cid-ukGRO1EBsj .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukGRO1EBsj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukGRO1EBsj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukGRO1EBsj .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukGRO1EBsj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukGRO1EBsj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukGRO1EBsj .dropdown-item.active,
.cid-ukGRO1EBsj .dropdown-item:active {
  background-color: transparent;
}
.cid-ukGRO1EBsj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukGRO1EBsj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukGRO1EBsj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukGRO1EBsj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukGRO1EBsj ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-ukGRO1EBsj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukGRO1EBsj button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ccc8e0;
  background: #000000;
}
.cid-ukGRO1EBsj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-ukGRO1EBsj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukGRO1EBsj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukGRO1EBsj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukGRO1EBsj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukGRO1EBsj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukGRO1EBsj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukGRO1EBsj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukGRO1EBsj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukGRO1EBsj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-ukGRO1EBsj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukGRO1EBsj .navbar {
    height: 70px;
  }
  .cid-ukGRO1EBsj .navbar.opened {
    height: auto;
  }
  .cid-ukGRO1EBsj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukGRO1EBsj .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-ukGRO1EBsj .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-ukGRO1EBsj .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-ukGRO1EBsj .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-ukGRO1EBsj .navbar-caption:hover {
  color: #d42017;
}
@media (min-width: 992px) {
  .cid-ukGRO1EBsj .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-ukGRO1EBsj .mbr-section-subtitle {
  color: #000000;
}
.cid-ukGRO1EBsj .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ukGRO1EBsj .text_widget {
  color: #000000;
}
.cid-ukGRO1EBsj .mbr-section-subtitle,
.cid-ukGRO1EBsj .text_widget,
.cid-ukGRO1EBsj .mbr-section-btn {
  text-align: center;
}
.cid-ukGRO1EBsj a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ukGRO2KsxH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8e7d2;
}
.cid-ukGRO2KsxH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRO2KsxH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRO2KsxH .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-ukGRO2KsxH .container-fluid {
    padding: 0 12px;
  }
}
.cid-ukGRO2KsxH .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ukGRO2KsxH .container {
    padding: 0 20px;
  }
}
.cid-ukGRO2KsxH .row {
  margin-top: -2px;
}
.cid-ukGRO2KsxH .card {
  padding: 0;
}
.cid-ukGRO2KsxH .image-wrapper {
  border: 2px solid #706f6d;
}
.cid-ukGRO2KsxH .image-wrapper img {
  height: 650px;
  width: 70%;
  object-fit: cover;
  border-bottom-right-radius: 45rem;
}
@media (max-width: 992px) {
  .cid-ukGRO2KsxH .image-wrapper img {
    height: 450px;
    width: 100%;
  }
}
.cid-ukGRO2KsxH .title-wrapper {
  border: 2px solid #706f6d;
  border-top: none;
  padding: 0 64px 64px;
  margin-top: -4rem;
}
@media (max-width: 992px) {
  .cid-ukGRO2KsxH .title-wrapper {
    padding: 0 20px 50px;
  }
}
@media (max-width: 425px) {
  .cid-ukGRO2KsxH .title-wrapper {
    margin-top: -2rem;
  }
}
.cid-ukGRO2KsxH .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ukGRO2KsxH .title-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ukGRO2KsxH .title-wrapper .text-wrapper {
    display: block;
  }
}
.cid-ukGRO2KsxH .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
  width: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ukGRO2KsxH .title-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-ukGRO2KsxH .title-wrapper .text-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ukGRO2KsxH .title-wrapper .text-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-ukGRO2KsxH .mbr-section-title {
  color: #ffffff;
}
.cid-ukGRO2KsxH .mbr-text {
  color: #ffffff;
}
.cid-ukGRO2KsxH .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ukGRO2KsxH .mbr-section-btn {
    text-align: left;
  }
}
.cid-ukGRO2KsxH .mbr-section-title,
.cid-ukGRO2KsxH .mbr-section-btn {
  color: #000000;
}
.cid-ukGRO2KsxH .mbr-text,
.cid-ukGRO2KsxH .mbr-section-btn {
  color: #000000;
}
.cid-ukGRO3JBCj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRO3JBCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRO3JBCj .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-ukGRO3JBCj .container {
    padding: 0 15px;
  }
}
.cid-ukGRO3JBCj .row {
  justify-content: center;
}
.cid-ukGRO3JBCj .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRO3JBCj .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ukGRO3JBCj .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-ukGRO3JBCj .subtitle-wrapper {
    padding: 0;
  }
}
.cid-ukGRO3JBCj .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ukGRO3JBCj .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-ukGRO3JBCj .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRO3JBCj .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-ukGRO3JBCj .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-ukGRO3JBCj .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukGRO3JBCj .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #000000;
  color: #f1dd26;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-ukGRO3JBCj .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-ukGRO3JBCj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ukGRO3JBCj .mbr-section-subtitle {
  color: #000000;
}
.cid-ukGRO3JBCj .list {
  color: #ffffff;
}
.cid-ukGRO3JBCj .list,
.cid-ukGRO3JBCj .item-wrap {
  color: #000000;
}
.cid-ukGRO4RpHh {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f8e7d2;
}
.cid-ukGRO4RpHh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRO4RpHh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRO4RpHh .row {
  justify-content: space-between;
}
.cid-ukGRO4RpHh .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-ukGRO4RpHh .content-wrapper {
    padding: 0;
  }
}
.cid-ukGRO4RpHh .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRO4RpHh .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ukGRO4RpHh .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukGRO4RpHh .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-ukGRO4RpHh .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ukGRO4RpHh .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-ukGRO4RpHh .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-ukGRO4RpHh .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-ukGRO4RpHh .mbr-section-title {
  color: #000000;
}
.cid-ukGRO4RpHh .mbr-desc {
  color: #000000;
}
.cid-ukGRO4RpHh .mbr-text {
  color: #000000;
}
.cid-ukGRO5Htnf {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRO5Htnf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRO5Htnf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRO5Htnf .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-ukGRO5Htnf .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGRO5Htnf .content-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-ukGRO5Htnf .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRO5Htnf .image-wrapper img {
    height: 350px;
  }
}
.cid-ukGRO5Htnf .mbr-section-title {
  color: #404349;
}
.cid-ukGRO5Htnf .mbr-desc {
  color: #b19a7c;
}
.cid-ukGRO5Htnf .mbr-text {
  color: #404349;
}
.cid-ukGRO5Htnf .mbr-desc,
.cid-ukGRO5Htnf .desc-wrapper {
  text-align: center;
  color: #000000;
}
.cid-ukGRO5Htnf .mbr-section-title,
.cid-ukGRO5Htnf .title-wrap {
  color: #000000;
}
.cid-ukGRO6waIe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGRO6waIe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRO6waIe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRO6waIe .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
  border: 2px solid #ffb2ef;
}
@media (max-width: 1200px) {
  .cid-ukGRO6waIe .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-ukGRO6waIe .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-ukGRO6waIe .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-ukGRO6waIe .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ukGRO6waIe .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-ukGRO6waIe .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-ukGRO6waIe .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #f7fff7;
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper:hover,
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ukGRO6waIe .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-ukGRO6waIe .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRO6waIe .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ukGRO6waIe .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-ukGRO6waIe .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-ukGRO6waIe .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRO6waIe .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-ukGRO6waIe .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-ukGRO6waIe .item-title {
  color: #050f0f;
}
.cid-ukGRO6waIe .item-text {
  color: #050f0f;
}
.cid-ukGRO6waIe .list {
  color: #050f0f;
}
.cid-ukGRO7wjpv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRO7wjpv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRO7wjpv .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-ukGRO7wjpv .container {
    padding: 0 16px;
  }
}
.cid-ukGRO7wjpv .card {
  justify-content: center;
}
.cid-ukGRO7wjpv .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #fff1e2;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-ukGRO7wjpv .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ukGRO7wjpv .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-ukGRO7wjpv .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-ukGRO7wjpv .mbr-section-title {
  color: #000000;
}
.cid-ukGRO7wjpv .mbr-text {
  color: #000000;
}
.cid-ukGRO7wjpv .mbr-desc {
  color: #000000;
}
.cid-ukGRO8PIB5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8e7d2;
}
.cid-ukGRO8PIB5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRO8PIB5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRO8PIB5 .content-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ukGRO8PIB5 .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRO8PIB5 .content-wrapper .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-ukGRO8PIB5 .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGRO8PIB5 .content-wrapper .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-ukGRO8PIB5 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGRO8PIB5 .content-wrapper .title-wrapper .mbr-section-title span {
  color: #ed463f;
}
.cid-ukGRO8PIB5 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukGRO8PIB5 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRO8PIB5 .image-wrapper img {
    height: 350px;
  }
}
.cid-ukGRO8PIB5 .mbr-section-title {
  color: #404349;
}
.cid-ukGRO8PIB5 .mbr-desc {
  color: #b19a7c;
}
.cid-ukGRO8PIB5 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ukGRO8PIB5 .mbr-desc,
.cid-ukGRO8PIB5 .desc-wrapper {
  color: #000000;
  text-align: center;
}
.cid-ukGRO9Oy2B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRO9Oy2B .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRO9Oy2B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRO9Oy2B .content-wrapper {
  position: relative;
  padding: 100px 100px 105px;
  border-radius: 30px;
  background-color: #fff1e2;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-ukGRO9Oy2B .content-wrapper {
    padding: 46px 22px;
  }
}
.cid-ukGRO9Oy2B .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-ukGRO9Oy2B .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 10px;
}
.cid-ukGRO9Oy2B .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 56px;
}
.cid-ukGRO9Oy2B .content-wrapper .content-wrap .mbr-section-title span {
  color: #ff8576;
}
@media (max-width: 992px) {
  .cid-ukGRO9Oy2B .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-ukGRO9Oy2B .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-ukGRO9Oy2B .content-wrapper .image-wrapper {
  position: absolute;
  right: -50px;
  bottom: -150px;
  width: 400px;
  height: 400px;
}
@media (max-width: 992px) {
  .cid-ukGRO9Oy2B .content-wrapper .image-wrapper {
    right: -20px;
    bottom: -75px;
    width: 200px;
    height: 200px;
  }
}
.cid-ukGRO9Oy2B .content-wrapper .image-wrapper img {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGRO9Oy2B .content-wrapper .image-wrapper img {
    width: 200px;
    height: 200px;
  }
}
.cid-ukGRO9Oy2B .mbr-section-title {
  color: #212529;
}
.cid-ukGRO9Oy2B .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-ukGRO9Oy2B .mbr-section-title,
.cid-ukGRO9Oy2B .mbr-section-btn {
  color: #000000;
}
.cid-ukGROaI969 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGROaI969 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGROaI969 .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-ukGROaI969 .container {
    padding: 0 30px;
  }
}
.cid-ukGROaI969 .row {
  justify-content: center;
}
.cid-ukGROaI969 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ukGROaI969 .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGROaI969 .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-ukGROaI969 .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-ukGROaI969 .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukGROaI969 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ukGROaI969 .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-ukGRObujX9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGRObujX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGRObujX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGRObujX9 .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-ukGRObujX9 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRObujX9 .container {
    padding: 0 26px;
  }
}
.cid-ukGRObujX9 .row {
  justify-content: center;
}
.cid-ukGRObujX9 .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #fff1e2;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-ukGRObujX9 .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-ukGRObujX9 .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-ukGRObujX9 .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-ukGRObujX9 .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-ukGRObujX9 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ukGRObujX9 .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ukGRObujX9 .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ukGRObujX9 .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-ukGRObujX9 .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGRObujX9 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ukGRObujX9 .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-ukGRObujX9 .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-ukGRObujX9 .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ukGRObujX9 .mbr-section-title {
  color: #000000;
}
.cid-ukGRObujX9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ukGRObujX9 .mbr-desc {
  color: #ffffff;
}
.cid-ukGRObujX9 .mbr-text {
  color: #000000;
}
.cid-ukGRObujX9 .mbr-link {
  color: #ffffff;
}
.cid-ukGROcoUVJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/petav1-2000x1500.jpg");
}
.cid-ukGROcoUVJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGROcoUVJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGROcoUVJ .image-wrapper {
  height: 600px;
}
@media (max-width: 992px) {
  .cid-ukGROcoUVJ .image-wrapper {
    height: 400px;
  }
}
.cid-ukGROdktxM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ccc8e0;
}
.cid-ukGROdktxM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGROdktxM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGROdktxM .container,
.cid-ukGROdktxM .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukGROdktxM .container,
  .cid-ukGROdktxM .container-fluid {
    padding: 0 20px;
  }
}
.cid-ukGROdktxM .row {
  position: relative;
  padding: 100px 26px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #fff1e2;
}
@media (max-width: 992px) {
  .cid-ukGROdktxM .row {
    padding: 85px 8px;
    margin: 0;
  }
}
.cid-ukGROdktxM .title-wrapper {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-ukGROdktxM .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-ukGROdktxM .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGROdktxM .panel-group {
  padding: 0 20%;
}
@media (max-width: 992px) {
  .cid-ukGROdktxM .panel-group {
    padding: 0 12px;
  }
}
.cid-ukGROdktxM .panel-group .card {
  border-radius: 0;
}
.cid-ukGROdktxM .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-ukGROdktxM .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-ukGROdktxM .panel-group .card .card-header .panel-title {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #3d4045;
}
.cid-ukGROdktxM .panel-group .card .card-header .panel-title:not(.collapsed) {
  border-bottom: 1px solid #ed9b82;
}
.cid-ukGROdktxM .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ed9b82;
}
.cid-ukGROdktxM .panel-group .card .card-header .panel-title:hover,
.cid-ukGROdktxM .panel-group .card .card-header .panel-title:focus {
  border-bottom: 1px solid #ed9b82;
}
.cid-ukGROdktxM .panel-group .card .card-header .panel-title:hover .panel-title-edit,
.cid-ukGROdktxM .panel-group .card .card-header .panel-title:focus .panel-title-edit {
  color: #ed9b82;
}
.cid-ukGROdktxM .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
  transition: all 0.3s ease-out;
}
.cid-ukGROdktxM .panel-group .card .panel-collapse .panel-body .panel-text {
  margin: 32px 0;
}
.cid-ukGROdktxM .mbr-section-title {
  color: #3d4045;
}
.cid-ukGROdktxM .panel-title-edit {
  color: #3d4045;
}
.cid-ukGROdktxM .panel-text {
  color: #3d4045;
}
.cid-ukGROeoxIa {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #fff1e2;
}
.cid-ukGROeoxIa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGROeoxIa .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ukGROeoxIa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGROeoxIa h1 {
  max-width: 800px;
}
.cid-ukGROeoxIa p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-ukGROeoxIa {
    align-items: center;
  }
  .cid-ukGROeoxIa .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ukGROeoxIa .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ukGROeoxIa {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ukGROeoxIa .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ukGROeoxIa .content-wrap {
    width: 100%;
  }
}
.cid-ukGROeoxIa .mbr-section-subtitle,
.cid-ukGROeoxIa .line {
  color: #291f1e;
}
.cid-ukGROeoxIa .mbr-text,
.cid-ukGROeoxIa .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ukGROeoxIa .mbr-section-title {
  color: #291f1e;
}
.cid-ukGROfhXzg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ccc8e0;
}
.cid-ukGROfhXzg .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #fff1e2;
}
.cid-ukGROfhXzg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGROfhXzg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGROfhXzg .items-wrapper {
  margin: 0;
}
.cid-ukGROfhXzg .items-wrapper .item {
  padding: 0;
}
.cid-ukGROfhXzg .items-wrapper .item:nth-child(3n) .item-wrapper {
  border-right: none !important;
}
@media (max-width: 992px) {
  .cid-ukGROfhXzg .items-wrapper .item:last-child {
    border-bottom: none !important;
  }
}
.cid-ukGROfhXzg .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px 32px;
  border-radius: 0 !important;
  border-right: 1px solid #fff1e2;
}
@media (max-width: 1640px) {
  .cid-ukGROfhXzg .items-wrapper .item .item-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukGROfhXzg .items-wrapper .item .item-wrapper {
    border-right: none;
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-ukGROfhXzg .items-wrapper .item .item-wrapper {
    border-right: none;
    border-bottom: 1px solid #fff1e2;
  }
}
.cid-ukGROfhXzg .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGROfhXzg .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-ukGROfhXzg .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 80px;
  color: #e7271c;
  display: inline-flex;
}
.cid-ukGROfhXzg .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGROfhXzg .items-wrapper .item .item-wrapper .item-content .item-title {
    margin-bottom: 16px;
  }
}
.cid-ukGROfhXzg .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ukGROfhXzg .items-wrapper .item .item-wrapper .item-content .item-text {
    margin-bottom: 16px;
  }
}
.cid-ukGROfhXzg .item-title {
  color: #150764;
}
.cid-ukGROfhXzg .item-text,
.cid-ukGROfhXzg .desc-wrapper {
  color: #150764;
  text-align: center;
}
.cid-ukGROfhXzg .item-title,
.cid-ukGROfhXzg .mbr-section-btn,
.cid-ukGROfhXzg .icon-wrapper {
  text-align: center;
  color: #252525;
}
.cid-ukGROfhXzg .item-text {
  color: #150764;
}
.cid-ukGROglxkH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGROglxkH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGROglxkH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGROglxkH .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #150764;
}
@media (max-width: 992px) {
  .cid-ukGROglxkH .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-ukGROglxkH .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ukGROglxkH .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-ukGROglxkH .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-ukGROglxkH .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-ukGROglxkH .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ukGROglxkH .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ukGROglxkH .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukGROglxkH .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-ukGROglxkH .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-ukGROglxkH .mbr-section-title,
.cid-ukGROglxkH .mbr-section-btn {
  color: #000000;
}
.cid-ukHgc7lYe0 {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #ccc8e0;
}
.cid-ukHgc7lYe0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukHgc7lYe0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukHgc7lYe0 .accordion .mbr-iconfont {
  font-size: 1rem !important;
  font-family: 'Moririse2' !important;
  color: #00004c;
  transform: rotate(0deg) !important;
  margin-left: 1rem;
  padding: 8px;
  border-radius: 50%;
}
.cid-ukHgc7lYe0 .accordion .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg) !important;
}
.cid-ukHgc7lYe0 .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .cid-ukHgc7lYe0 .col-title {
    margin-bottom: 40px;
  }
}
.cid-ukHgc7lYe0 .mbr-section-title {
  color: #00004c;
}
@media (max-width: 991px) {
  .cid-ukHgc7lYe0 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ukHgc7lYe0 .mbr-section-subtitle {
  color: #00004c;
  margin-top: 14px;
}
@media (max-width: 991px) {
  .cid-ukHgc7lYe0 .mbr-section-subtitle {
    margin-top: 16px;
    text-align: center !important;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ukHgc7lYe0 .accordion-row {
    margin: 0 -10px !important;
  }
}
.cid-ukHgc7lYe0 .accordion-title-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ukHgc7lYe0 .accordion-title-container {
    display: none;
  }
}
.cid-ukHgc7lYe0 .accordion-title {
  padding: 0 20px;
  width: 50%;
  color: #00004c;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ukHgc7lYe0 .accordion-title {
    padding: 0 10px;
  }
}
.cid-ukHgc7lYe0 .panel-group {
  display: flex;
  flex-wrap: wrap;
  border: none;
  padding: 0 !important;
}
.cid-ukHgc7lYe0 .card {
  width: 50%;
  padding: 0 20px !important;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ukHgc7lYe0 .card {
    padding: 0 10px !important;
  }
}
@media (max-width: 991px) {
  .cid-ukHgc7lYe0 .card {
    width: 100%;
  }
}
.cid-ukHgc7lYe0 .card-border-top {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-ukHgc7lYe0 .card-border-top2 {
    display: none;
  }
}
.cid-ukHgc7lYe0 .card-header {
  border-bottom: none !important;
  padding: 10px 0 !important;
}
.cid-ukHgc7lYe0 .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-ukHgc7lYe0 .panel-body {
  padding-bottom: 20px;
}
.cid-ukHgc7lYe0 .panel-text {
  margin-bottom: 20px !important;
  color: #00004c;
}
.cid-ukHgc7lYe0 .panel-title {
  display: flex;
  align-items: center;
}
.cid-ukHgc7lYe0 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ukHgc7lYe0 .panel-title-edit {
  color: #00004c;
  text-align: center;
}
.cid-ukGROhhal8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukGROhhal8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGROhhal8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGROhhal8 .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukGROhhal8 .content-wrapper {
    padding: 0;
  }
}
.cid-ukGROhhal8 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ukGROhhal8 .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ukGROhhal8 .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-ukGROhhal8 .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ukGROhhal8 .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-ukGROhhal8 .mbr-section-title {
  color: #050f0f;
}
.cid-ukGROiHMj7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-ukGROiHMj7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukGROiHMj7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukGROiHMj7 .content-wrap {
  padding: 60px;
  background-color: #ccc8e0;
}
@media (max-width: 992px) {
  .cid-ukGROiHMj7 .content-wrap {
    padding: 30px 20px;
  }
}
.cid-ukGROiHMj7 .content-wrap .row {
  justify-content: center;
}
.cid-ukGROiHMj7 .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGROiHMj7 .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGROiHMj7 .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ukGROiHMj7 .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-ukGROiHMj7 .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-ukGROiHMj7 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukGROiHMj7 .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGROiHMj7 .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGROiHMj7 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGROiHMj7 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ukGROiHMj7 .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ukGROiHMj7 .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukGROiHMj7 .nav-wrapper .list .item-wrap:hover,
.cid-ukGROiHMj7 .nav-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ukGROiHMj7 .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGROiHMj7 .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGROiHMj7 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGROiHMj7 .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ukGROiHMj7 .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ukGROiHMj7 .contacts-wrapper .list .item-wrap:hover,
.cid-ukGROiHMj7 .contacts-wrapper .list .item-wrap:focus {
  color: #fff1e2;
}
.cid-ukGROiHMj7 .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukGROiHMj7 .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukGROiHMj7 .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukGROiHMj7 .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukGROiHMj7 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-ukGROiHMj7 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ukGROiHMj7 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ukGROiHMj7 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-ukGROiHMj7 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #000000;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-ukGROiHMj7 .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-ukGROiHMj7 .mbr-section-title {
  color: #ed463f;
}
.cid-ukGROiHMj7 .mbr-section-subtitle {
  color: #404349;
}
.cid-ukGROiHMj7 .list {
  color: #404349;
}
.cid-ukGROiHMj7 .mbr-section-title,
.cid-ukGROiHMj7 .title-wrapper {
  text-align: center;
}
.cid-ukGROiHMj7 .list,
.cid-ukGROiHMj7 .item-wrap {
  text-align: center;
}
