body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tfYZpB9xSV .nav-item:focus,
.cid-tfYZpB9xSV .nav-link:focus {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .collapsed {
  flex-direction: row!important;
}
.cid-tfYZpB9xSV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZpB9xSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tfYZpB9xSV .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tfYZpB9xSV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tfYZpB9xSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tfYZpB9xSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZpB9xSV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZpB9xSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tfYZpB9xSV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tfYZpB9xSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfYZpB9xSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tfYZpB9xSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfYZpB9xSV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfYZpB9xSV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tfYZpB9xSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown-item.active,
.cid-tfYZpB9xSV .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZpB9xSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZpB9xSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZpB9xSV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfYZpB9xSV .navbar-buttons {
  text-align: center;
}
.cid-tfYZpB9xSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tfYZpB9xSV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfYZpB9xSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZpB9xSV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tfYZpB9xSV .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tfYZpB9xSV .nav-link:hover,
.cid-tfYZpB9xSV .dropdown-item:hover,
.cid-tfYZpB9xSV .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZpB9xSV .navbar {
    height: 77px;
  }
  .cid-tfYZpB9xSV .navbar.opened {
    height: auto;
  }
}
.cid-tak6vlmBP0 {
  background-image: url("../../../assets/images/front-image-1920x1282.jpg");
}
.cid-tajRG4w5sW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/hus-noodle-nook-header-1920x1080.jpg");
}
.cid-tajRG4w5sW .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-tajRG4w5sW .mbr-section-title {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}
.cid-tajRG4w5sW .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
}
.cid-tajRG4w5sW a {
  font-weight: 400;
  letter-spacing: 5.2px;
  transition: all .3s;
}
.cid-tajRG4w5sW .mbr-text {
  padding-bottom: 30px;
  max-width: 1100px;
  margin: auto;
}
.cid-tajRG4w5sW .mbr-text,
.cid-tajRG4w5sW .button-align {
  text-align: center;
  color: #ffffff;
}
.cid-tajRG4w5sW a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-tgDaaVMxrl {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background-color: #ffffff;
}
.cid-tgDaaVMxrl .item-image {
  margin-bottom: 5rem;
}
.cid-tgDaaVMxrl img,
.cid-tgDaaVMxrl .item-img {
  width: 100%;
}
.cid-tgDaaVMxrl .item:focus,
.cid-tgDaaVMxrl span:focus {
  outline: none;
}
.cid-tgDaaVMxrl .item {
  cursor: pointer;
  margin-bottom: 1rem;
  position: relative;
}
.cid-tgDaaVMxrl .item-wrapper {
  position: unset;
  height: auto;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tgDaaVMxrl .mbr-section-title {
  color: #232323;
}
@media (min-width: 768px) {
  .cid-tgDaaVMxrl .mbr-section-head {
    margin-bottom: 5rem;
  }
}
@media (max-width: 600px) {
  .cid-tgDaaVMxrl .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tgDaaVMxrl .mbr-section-title a {
  color: #9b9ba5 ;
}
.cid-tet3cJiouF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tet3cJiouF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tet3cJiouF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tet3cJiouF .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tet3cJiouF .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tet3cJiouF .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-tet3cJiouF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tet3cJiouF .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-tet3cJiouF .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-tet3cJiouF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tet3cJiouF .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-tet3cJiouF .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-tet3cJiouF .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-tet3cJiouF .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-tet3cJiouF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tet3cJiouF .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-tet3cJiouF .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-tet3cJiouF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tet3cJiouF .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-tet3cJiouF .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tet4CZoEcY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tet4CZoEcY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tet4CZoEcY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tet4CZoEcY .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tet4CZoEcY .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tet4CZoEcY .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-tet4CZoEcY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tet4CZoEcY .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-tet4CZoEcY .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-tet4CZoEcY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tet4CZoEcY .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-tet4CZoEcY .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-tet4CZoEcY .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-tet4CZoEcY .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-tet4CZoEcY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tet4CZoEcY .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-tet4CZoEcY .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-tet4CZoEcY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tet4CZoEcY .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-tet4CZoEcY .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tet5A9Wu9J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tet5A9Wu9J .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tet5A9Wu9J .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tet5A9Wu9J .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tet5A9Wu9J .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tet5A9Wu9J .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-tet5A9Wu9J .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tet5A9Wu9J .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-tet5A9Wu9J .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-tet5A9Wu9J .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tet5A9Wu9J .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-tet5A9Wu9J .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-tet5A9Wu9J .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-tet5A9Wu9J .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-tet5A9Wu9J .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tet5A9Wu9J .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-tet5A9Wu9J .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-tet5A9Wu9J .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tet5A9Wu9J .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-tet5A9Wu9J .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tguWc0uw3J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tguWc0uw3J .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tguWc0uw3J .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tguWc0uw3J .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tguWc0uw3J .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tguWc0uw3J .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-tguWc0uw3J .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tguWc0uw3J .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-tguWc0uw3J .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-tguWc0uw3J .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tguWc0uw3J .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-tguWc0uw3J .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-tguWc0uw3J .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-tguWc0uw3J .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-tguWc0uw3J .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tguWc0uw3J .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-tguWc0uw3J .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-tguWc0uw3J .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tguWc0uw3J .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-tguWc0uw3J .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tbOwvTI4gL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tbOwvTI4gL .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOwvTI4gL .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOwvTI4gL .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOwvTI4gL .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOwvTI4gL .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOwvTI4gL .special-label {
  color: #fff;
}
.cid-tbOwvTI4gL .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOwvTI4gL .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOwvTI4gL .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOwvTI4gL .menu-row {
  margin: 0;
}
.cid-tbOwvTI4gL .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #ed6436;
}
.cid-tbOwvTI4gL .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOwvTI4gL .group-title,
.cid-tbOwvTI4gL .align-wrap {
  text-align: left;
}
.cid-tbOyDLl088 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tbOyDLl088 .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOyDLl088 .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOyDLl088 .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOyDLl088 .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOyDLl088 .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOyDLl088 .special-label {
  color: #fff;
}
.cid-tbOyDLl088 .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOyDLl088 .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOyDLl088 .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOyDLl088 .menu-row {
  margin: 0;
}
.cid-tbOyDLl088 .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #ed6436;
}
.cid-tbOyDLl088 .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOyDLl088 .group-title,
.cid-tbOyDLl088 .align-wrap {
  text-align: left;
}
.cid-takcuxBo4k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/back-1-1920x888.jpg");
}
.cid-takcuxBo4k h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-takcuxBo4k p {
  color: #767676;
  text-align: left;
}
.cid-takcuxBo4k .card-wrapper {
  height: 100%;
}
.cid-takcuxBo4k .container-fluid {
  max-width: 1600px;
}
.cid-takcuxBo4k .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 0 !important;
}
.cid-takcuxBo4k img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-takcuxBo4k .card:hover .second-img {
  opacity: 0.15;
}
.cid-takcuxBo4k .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-takcuxBo4k .title {
  text-align: center;
  padding: 0 !important;
  margin-bottom: 0.70rem;
  color: #b8d94f;
}
@media (max-width: 767px) {
  .cid-takcuxBo4k .mbr-iconfont {
    opacity: 1;
  }
  .cid-takcuxBo4k .second-img {
    opacity: 0.5;
  }
}
.cid-takcuxBo4k .subtitle {
  text-align: center;
  margin-bottom: 0 !important;
  color: #47a15d;
  padding-bottom: 3rem !important;
}
.cid-takcuxBo4k .second-img {
  z-index: 1;
  cursor: pointer;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  top: 0%;
  opacity: 0;
  transition: .5s all;
  pointer-events: none;
}
.cid-takcuxBo4k .button {
  padding-top: 1rem;
}
.cid-tbOzFv1too {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tbOzFv1too .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOzFv1too .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOzFv1too .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOzFv1too .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOzFv1too .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOzFv1too .special-label {
  color: #fff;
}
.cid-tbOzFv1too .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOzFv1too .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOzFv1too .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOzFv1too .menu-row {
  margin: 0;
}
.cid-tbOzFv1too .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #ed6436;
}
.cid-tbOzFv1too .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOzFv1too .group-title,
.cid-tbOzFv1too .align-wrap {
  text-align: left;
}
.cid-tbOGgb6ZV4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbOGgb6ZV4 .container-fluid {
  padding: 0;
}
.cid-tbOGgb6ZV4 .row {
  align-items: stretch;
  width: 100%;
}
.cid-tbOGgb6ZV4 .col-tabs .tab-content .tabs-row {
  padding: 0 !important;
}
.cid-tbOGgb6ZV4 .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-tbOGgb6ZV4 .col-text {
    width: 50%;
  }
}
.cid-tbOGgb6ZV4 .text-container {
  padding: 30% 4% 15% 8%;
}
@media (min-width: 768px) {
  .cid-tbOGgb6ZV4 .text-container {
    padding: 18% 25% 16% 7%;
  }
}
@media (min-width: 881px) {
  .cid-tbOGgb6ZV4 .text-container {
    padding: 14% 25% 12% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-tbOGgb6ZV4 .text-container {
    padding: 16% 25% 13% 15%;
  }
}
@media (min-width: 1441px) {
  .cid-tbOGgb6ZV4 .text-container {
    padding: 12% 30% 10% 19%;
  }
}
.cid-tbOGgb6ZV4 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tbOGgb6ZV4 .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-tbOGgb6ZV4 .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 20px;
}
.cid-tbOGgb6ZV4 .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-tbOGgb6ZV4 .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-tbOGgb6ZV4 .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-tbOGgb6ZV4 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-tbOGgb6ZV4 .img-container img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tbOGgb6ZV4 .col-tabs {
  padding: 10px 0 0 0;
}
@media (min-width: 768px) {
  .cid-tbOGgb6ZV4 .col-tabs {
    padding: 3% 25% 0 0;
  }
}
@media (min-width: 1025px) {
  .cid-tbOGgb6ZV4 .col-tabs {
    padding: 17px 0 0 0;
  }
}
.cid-tbOGgb6ZV4 .nav-tabs .nav-item.open .nav-link:focus,
.cid-tbOGgb6ZV4 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tbOGgb6ZV4 .nav-tabs {
  flex-wrap: nowrap;
  padding-bottom: 8px;
  border-bottom: 1px solid #57b8e0;
}
@media (max-width: 680px) {
  .cid-tbOGgb6ZV4 .nav-tabs {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.cid-tbOGgb6ZV4 .nav-item {
  position: relative;
  color: #000000;
}
.cid-tbOGgb6ZV4 .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  color: #000000 !important;
}
.cid-tbOGgb6ZV4 .nav-tabs .nav-link:after {
  content: '';
  width: 0;
  left: 0;
  height: 1px;
  position: absolute;
  bottom: -9px;
  background-color: #000000;
  transition: width 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (max-width: 680px) {
  .cid-tbOGgb6ZV4 .nav-tabs .nav-link:after {
    bottom: -2px;
  }
}
.cid-tbOGgb6ZV4 .nav-tabs .nav-item:not(:first-child) {
  margin-left: 68px;
}
@media (max-width: 680px) {
  .cid-tbOGgb6ZV4 .nav-tabs .nav-item {
    margin: 0 0 12px 0 !important;
    width: max-content;
  }
}
@media (max-width: 680px) {
  .cid-tbOGgb6ZV4 .nav-tabs .nav-item:last-child {
    margin: 0 !important;
  }
}
.cid-tbOGgb6ZV4 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 25px;
}
.cid-tbOGgb6ZV4 .list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.cid-tbOGgb6ZV4 .list li {
  margin-bottom: 7px;
}
.cid-tbOGgb6ZV4 .list li:before {
  content: '';
  height: 4px;
  width: 4px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
  vertical-align: middle;
  margin-right: 5px;
}
.cid-tbOGgb6ZV4 .nav-link,
.cid-tbOGgb6ZV4 .nav-link.active {
  padding: 0;
  background-color: transparent;
}
.cid-tbOGgb6ZV4 .nav-tabs .nav-link.active {
  color: #000000;
}
.cid-tbOGgb6ZV4 .nav-tabs .nav-link.active:after {
  width: 100%;
}
.cid-tbOBJg9Zns {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tbOBJg9Zns .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOBJg9Zns .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOBJg9Zns .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOBJg9Zns .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOBJg9Zns .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOBJg9Zns .special-label {
  color: #fff;
}
.cid-tbOBJg9Zns .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOBJg9Zns .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOBJg9Zns .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOBJg9Zns .menu-row {
  margin: 0;
}
.cid-tbOBJg9Zns .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #ed6436;
}
.cid-tbOBJg9Zns .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOBJg9Zns .group-title,
.cid-tbOBJg9Zns .align-wrap {
  text-align: left;
}
.cid-tbOHGJL1ju {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tbOHGJL1ju .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOHGJL1ju .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOHGJL1ju .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOHGJL1ju .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOHGJL1ju .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOHGJL1ju .special-label {
  color: #fff;
}
.cid-tbOHGJL1ju .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOHGJL1ju .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOHGJL1ju .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOHGJL1ju .menu-row {
  margin: 0;
}
.cid-tbOHGJL1ju .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #ed6436;
}
.cid-tbOHGJL1ju .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOHGJL1ju .group-title,
.cid-tbOHGJL1ju .align-wrap {
  text-align: left;
}
.cid-tbOIcm4KVQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tbOIcm4KVQ .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOIcm4KVQ .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOIcm4KVQ .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOIcm4KVQ .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOIcm4KVQ .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOIcm4KVQ .special-label {
  color: #fff;
}
.cid-tbOIcm4KVQ .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOIcm4KVQ .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOIcm4KVQ .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOIcm4KVQ .menu-row {
  margin: 0;
}
.cid-tbOIcm4KVQ .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #ed6436;
}
.cid-tbOIcm4KVQ .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOIcm4KVQ .group-title,
.cid-tbOIcm4KVQ .align-wrap {
  text-align: left;
}
.cid-tbOItynkud {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tbOItynkud .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOItynkud .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOItynkud .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOItynkud .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOItynkud .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOItynkud .special-label {
  color: #fff;
}
.cid-tbOItynkud .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOItynkud .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOItynkud .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOItynkud .menu-row {
  margin: 0;
}
.cid-tbOItynkud .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #ed6436;
}
.cid-tbOItynkud .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOItynkud .group-title,
.cid-tbOItynkud .align-wrap {
  text-align: left;
}
.cid-tbOIXJU2z0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tbOIXJU2z0 .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOIXJU2z0 .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOIXJU2z0 .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOIXJU2z0 .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOIXJU2z0 .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOIXJU2z0 .special-label {
  color: #fff;
}
.cid-tbOIXJU2z0 .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOIXJU2z0 .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOIXJU2z0 .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOIXJU2z0 .menu-row {
  margin: 0;
}
.cid-tbOIXJU2z0 .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #ed6436;
}
.cid-tbOIXJU2z0 .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOIXJU2z0 .group-title,
.cid-tbOIXJU2z0 .align-wrap {
  text-align: left;
}
.cid-tbOJoko1SW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tbOJoko1SW .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOJoko1SW .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOJoko1SW .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOJoko1SW .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOJoko1SW .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOJoko1SW .special-label {
  color: #fff;
}
.cid-tbOJoko1SW .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOJoko1SW .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOJoko1SW .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOJoko1SW .menu-row {
  margin: 0;
}
.cid-tbOJoko1SW .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #ed6436;
}
.cid-tbOJoko1SW .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOJoko1SW .group-title,
.cid-tbOJoko1SW .align-wrap {
  text-align: left;
}
.cid-tbOL5i34rG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fff0b0;
}
.cid-tbOL5i34rG .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOL5i34rG .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOL5i34rG .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOL5i34rG .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOL5i34rG .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOL5i34rG .special-label {
  color: #fff;
}
.cid-tbOL5i34rG .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOL5i34rG .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOL5i34rG .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOL5i34rG .menu-row {
  margin: 0;
}
.cid-tbOL5i34rG .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #4479d9;
}
.cid-tbOL5i34rG .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOL5i34rG .group-title,
.cid-tbOL5i34rG .align-wrap {
  text-align: left;
}
.cid-tbOMwK1WgI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffe885;
}
.cid-tbOMwK1WgI .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOMwK1WgI .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOMwK1WgI .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOMwK1WgI .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOMwK1WgI .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOMwK1WgI .special-label {
  color: #fff;
}
.cid-tbOMwK1WgI .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOMwK1WgI .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOMwK1WgI .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOMwK1WgI .menu-row {
  margin: 0;
}
.cid-tbOMwK1WgI .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #4479d9;
}
.cid-tbOMwK1WgI .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOMwK1WgI .group-title,
.cid-tbOMwK1WgI .align-wrap {
  text-align: left;
}
.cid-tbONqIyhGw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffe161;
}
.cid-tbONqIyhGw .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbONqIyhGw .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbONqIyhGw .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbONqIyhGw .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbONqIyhGw .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbONqIyhGw .special-label {
  color: #fff;
}
.cid-tbONqIyhGw .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbONqIyhGw .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbONqIyhGw .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbONqIyhGw .menu-row {
  margin: 0;
}
.cid-tbONqIyhGw .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #4479d9;
}
.cid-tbONqIyhGw .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbONqIyhGw .group-title,
.cid-tbONqIyhGw .align-wrap {
  text-align: left;
}
.cid-tbOOhVSEeu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #e6c63b;
}
.cid-tbOOhVSEeu .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOOhVSEeu .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOOhVSEeu .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOOhVSEeu .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOOhVSEeu .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOOhVSEeu .special-label {
  color: #fff;
}
.cid-tbOOhVSEeu .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOOhVSEeu .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOOhVSEeu .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOOhVSEeu .menu-row {
  margin: 0;
}
.cid-tbOOhVSEeu .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #4479d9;
}
.cid-tbOOhVSEeu .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOOhVSEeu .group-title,
.cid-tbOOhVSEeu .align-wrap {
  text-align: left;
}
.cid-tbOOUsyi6p {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffe161;
}
.cid-tbOOUsyi6p .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOOUsyi6p .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOOUsyi6p .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOOUsyi6p .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOOUsyi6p .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOOUsyi6p .special-label {
  color: #fff;
}
.cid-tbOOUsyi6p .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOOUsyi6p .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOOUsyi6p .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOOUsyi6p .menu-row {
  margin: 0;
}
.cid-tbOOUsyi6p .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #4479d9;
}
.cid-tbOOUsyi6p .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOOUsyi6p .group-title,
.cid-tbOOUsyi6p .align-wrap {
  text-align: left;
}
.cid-tbOPQyEiUG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
.cid-tbOPQyEiUG .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tbOPQyEiUG .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tbOPQyEiUG .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tbOPQyEiUG .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tbOPQyEiUG .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tbOPQyEiUG .special-label {
  color: #fff;
}
.cid-tbOPQyEiUG .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tbOPQyEiUG .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tbOPQyEiUG .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tbOPQyEiUG .menu-row {
  margin: 0;
}
.cid-tbOPQyEiUG .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #2299aa;
}
.cid-tbOPQyEiUG .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tbOPQyEiUG .group-title,
.cid-tbOPQyEiUG .align-wrap {
  text-align: left;
}
.cid-tfZ0EVgTPi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tfZ0EVgTPi .row {
  flex-direction: row-reverse;
}
.cid-tfZ0EVgTPi p {
  margin: 0;
}
.cid-tfZ0EVgTPi .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-tfZ0EVgTPi .mbr-section-title {
  text-align: center;
}
.cid-tfZ0EVgTPi .mbr-section-subtitle {
  text-align: center;
}
.cid-tfZ0EVgTPi .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tfZ0EVgTPi .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tfZ0EVgTPi .card-wrapper {
  width: 50%;
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 1rem 2rem 0;
  align-items: baseline;
}
@media (max-width: 991px) {
  .cid-tfZ0EVgTPi .card-wrapper {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-tfZ0EVgTPi .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tfZ0EVgTPi .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #33d5ad;
}
.cid-tfZ0EVgTPi .google-map {
  height: 100%;
  position: relative;
}
.cid-tfZ0EVgTPi .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tfZ0EVgTPi .google-map [data-state-details] {
  color: #1f1437;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tfZ0EVgTPi .google-map[data-state] {
  background: #f3edf7;
}
.cid-tfZ0EVgTPi .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tfZ0EVgTPi .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tfZ0EVgTPi P {
  color: #6592e6;
}
.cid-tfYZQpzcCZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tfYZQpzcCZ .mbr-text {
  color: #FEF9EE;
}
.cid-tfYZpB9xSV .nav-item:focus,
.cid-tfYZpB9xSV .nav-link:focus {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .collapsed {
  flex-direction: row!important;
}
.cid-tfYZpB9xSV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZpB9xSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tfYZpB9xSV .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tfYZpB9xSV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tfYZpB9xSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tfYZpB9xSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZpB9xSV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZpB9xSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tfYZpB9xSV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tfYZpB9xSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfYZpB9xSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tfYZpB9xSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfYZpB9xSV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfYZpB9xSV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tfYZpB9xSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown-item.active,
.cid-tfYZpB9xSV .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZpB9xSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZpB9xSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZpB9xSV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfYZpB9xSV .navbar-buttons {
  text-align: center;
}
.cid-tfYZpB9xSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tfYZpB9xSV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfYZpB9xSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZpB9xSV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tfYZpB9xSV .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tfYZpB9xSV .nav-link:hover,
.cid-tfYZpB9xSV .dropdown-item:hover,
.cid-tfYZpB9xSV .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZpB9xSV .navbar {
    height: 77px;
  }
  .cid-tfYZpB9xSV .navbar.opened {
    height: auto;
  }
}
.cid-tfYTwqSKC0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff8a8a;
}
.cid-tfYTwqSKC0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfYTwqSKC0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfYTwqSKC0 .row {
  justify-content: space-between;
}
.cid-tfYTwqSKC0 .mbr-text,
.cid-tfYTwqSKC0 .mbr-section-btn {
  color: #ffffff;
}
.cid-tfYTwqSKC0 .mbr-section-title {
  color: #ffffff;
}
.cid-tfYTwqSKC0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tfYT7u8KNz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tfYT7u8KNz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfYT7u8KNz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfYT7u8KNz .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tfYT7u8KNz .mbr-section-title,
.cid-tfYT7u8KNz .mbr-section-subtitle {
  text-align: center;
}
.cid-tfYT7u8KNz .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tfYT7u8KNz .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tfYT7u8KNz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tfYT7u8KNz .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tfYT7u8KNz .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tfYT7u8KNz .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tfYWNd3CCq {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tfYWNd3CCq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfYWNd3CCq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfYWNd3CCq .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tfYWNd3CCq .mbr-section-title,
.cid-tfYWNd3CCq .mbr-section-subtitle {
  text-align: center;
}
.cid-tfYWNd3CCq .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tfYWNd3CCq .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tfYWNd3CCq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tfYWNd3CCq .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tfYWNd3CCq .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tfYWNd3CCq .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ueeXGvTo3y {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ueeXGvTo3y .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueeXGvTo3y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueeXGvTo3y .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-ueeXGvTo3y .mbr-section-title,
.cid-ueeXGvTo3y .mbr-section-subtitle {
  text-align: center;
}
.cid-ueeXGvTo3y .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ueeXGvTo3y .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-ueeXGvTo3y .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-ueeXGvTo3y .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ueeXGvTo3y .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ueeXGvTo3y .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tfYZQpzcCZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tfYZQpzcCZ .mbr-text {
  color: #FEF9EE;
}
.cid-tfYZpB9xSV .nav-item:focus,
.cid-tfYZpB9xSV .nav-link:focus {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .collapsed {
  flex-direction: row!important;
}
.cid-tfYZpB9xSV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZpB9xSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tfYZpB9xSV .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tfYZpB9xSV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tfYZpB9xSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tfYZpB9xSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZpB9xSV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZpB9xSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tfYZpB9xSV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tfYZpB9xSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfYZpB9xSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tfYZpB9xSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfYZpB9xSV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfYZpB9xSV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tfYZpB9xSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown-item.active,
.cid-tfYZpB9xSV .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZpB9xSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZpB9xSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZpB9xSV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfYZpB9xSV .navbar-buttons {
  text-align: center;
}
.cid-tfYZpB9xSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tfYZpB9xSV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfYZpB9xSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZpB9xSV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tfYZpB9xSV .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tfYZpB9xSV .nav-link:hover,
.cid-tfYZpB9xSV .dropdown-item:hover,
.cid-tfYZpB9xSV .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZpB9xSV .navbar {
    height: 77px;
  }
  .cid-tfYZpB9xSV .navbar.opened {
    height: auto;
  }
}
.cid-tfZ2wvPQ1s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tfZ2wvPQ1s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ2wvPQ1s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ2wvPQ1s .row {
  justify-content: space-between;
}
.cid-tfZ2wvPQ1s .mbr-text,
.cid-tfZ2wvPQ1s .mbr-section-btn {
  color: #ffffff;
}
.cid-tfZ2wvPQ1s .mbr-section-title {
  color: #ffffff;
}
.cid-tfZ2wvPQ1s .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tfZ2SZanLm {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tfZ2SZanLm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ2SZanLm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ2SZanLm .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tfZ2SZanLm .mbr-section-title,
.cid-tfZ2SZanLm .mbr-section-subtitle {
  text-align: center;
}
.cid-tfZ2SZanLm .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tfZ2SZanLm .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tfZ2SZanLm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tfZ2SZanLm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tfZ2SZanLm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tfZ2SZanLm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tguo9hJLZi {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tguo9hJLZi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tguo9hJLZi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tguo9hJLZi .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tguo9hJLZi .mbr-section-title,
.cid-tguo9hJLZi .mbr-section-subtitle {
  text-align: center;
}
.cid-tguo9hJLZi .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tguo9hJLZi .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tguo9hJLZi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tguo9hJLZi .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tguo9hJLZi .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tguo9hJLZi .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tguIurqdJq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tguIurqdJq .container-fluid {
  padding: 0;
}
.cid-tguIurqdJq .row {
  align-items: stretch;
  width: 100%;
}
.cid-tguIurqdJq .col-tabs .tab-content .tabs-row {
  padding: 0 !important;
}
.cid-tguIurqdJq .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-tguIurqdJq .col-text {
    width: 50%;
  }
}
.cid-tguIurqdJq .text-container {
  padding: 30% 4% 15% 8%;
}
@media (min-width: 768px) {
  .cid-tguIurqdJq .text-container {
    padding: 18% 25% 16% 7%;
  }
}
@media (min-width: 881px) {
  .cid-tguIurqdJq .text-container {
    padding: 14% 25% 12% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-tguIurqdJq .text-container {
    padding: 16% 25% 13% 15%;
  }
}
@media (min-width: 1441px) {
  .cid-tguIurqdJq .text-container {
    padding: 12% 30% 10% 19%;
  }
}
.cid-tguIurqdJq .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tguIurqdJq .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-tguIurqdJq .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 20px;
}
.cid-tguIurqdJq .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-tguIurqdJq .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-tguIurqdJq .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-tguIurqdJq .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-tguIurqdJq .img-container img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tguIurqdJq .col-tabs {
  padding: 10px 0 0 0;
}
@media (min-width: 768px) {
  .cid-tguIurqdJq .col-tabs {
    padding: 3% 25% 0 0;
  }
}
@media (min-width: 1025px) {
  .cid-tguIurqdJq .col-tabs {
    padding: 17px 0 0 0;
  }
}
.cid-tguIurqdJq .nav-tabs .nav-item.open .nav-link:focus,
.cid-tguIurqdJq .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tguIurqdJq .nav-tabs {
  flex-wrap: nowrap;
  padding-bottom: 8px;
  border-bottom: 1px solid #57b8e0;
}
@media (max-width: 680px) {
  .cid-tguIurqdJq .nav-tabs {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.cid-tguIurqdJq .nav-item {
  position: relative;
  color: #000000;
}
.cid-tguIurqdJq .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  color: #000000 !important;
}
.cid-tguIurqdJq .nav-tabs .nav-link:after {
  content: '';
  width: 0;
  left: 0;
  height: 1px;
  position: absolute;
  bottom: -9px;
  background-color: #000000;
  transition: width 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (max-width: 680px) {
  .cid-tguIurqdJq .nav-tabs .nav-link:after {
    bottom: -2px;
  }
}
.cid-tguIurqdJq .nav-tabs .nav-item:not(:first-child) {
  margin-left: 68px;
}
@media (max-width: 680px) {
  .cid-tguIurqdJq .nav-tabs .nav-item {
    margin: 0 0 12px 0 !important;
    width: max-content;
  }
}
@media (max-width: 680px) {
  .cid-tguIurqdJq .nav-tabs .nav-item:last-child {
    margin: 0 !important;
  }
}
.cid-tguIurqdJq .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 25px;
}
.cid-tguIurqdJq .list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.cid-tguIurqdJq .list li {
  margin-bottom: 7px;
}
.cid-tguIurqdJq .list li:before {
  content: '';
  height: 4px;
  width: 4px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
  vertical-align: middle;
  margin-right: 5px;
}
.cid-tguIurqdJq .nav-link,
.cid-tguIurqdJq .nav-link.active {
  padding: 0;
  background-color: transparent;
}
.cid-tguIurqdJq .nav-tabs .nav-link.active {
  color: #000000;
}
.cid-tguIurqdJq .nav-tabs .nav-link.active:after {
  width: 100%;
}
.cid-tfYZQpzcCZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tfYZQpzcCZ .mbr-text {
  color: #FEF9EE;
}
.cid-tfYZpB9xSV .nav-item:focus,
.cid-tfYZpB9xSV .nav-link:focus {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .collapsed {
  flex-direction: row!important;
}
.cid-tfYZpB9xSV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZpB9xSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tfYZpB9xSV .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tfYZpB9xSV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tfYZpB9xSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tfYZpB9xSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZpB9xSV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZpB9xSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tfYZpB9xSV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tfYZpB9xSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfYZpB9xSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tfYZpB9xSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfYZpB9xSV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfYZpB9xSV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tfYZpB9xSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown-item.active,
.cid-tfYZpB9xSV .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZpB9xSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZpB9xSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZpB9xSV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfYZpB9xSV .navbar-buttons {
  text-align: center;
}
.cid-tfYZpB9xSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tfYZpB9xSV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfYZpB9xSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZpB9xSV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tfYZpB9xSV .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tfYZpB9xSV .nav-link:hover,
.cid-tfYZpB9xSV .dropdown-item:hover,
.cid-tfYZpB9xSV .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZpB9xSV .navbar {
    height: 77px;
  }
  .cid-tfYZpB9xSV .navbar.opened {
    height: auto;
  }
}
.cid-tfZ3XGcLjq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-tfZ3XGcLjq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ3XGcLjq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ3XGcLjq .row {
  justify-content: space-between;
}
.cid-tfZ3XGcLjq .mbr-text,
.cid-tfZ3XGcLjq .mbr-section-btn {
  color: #ffffff;
}
.cid-tfZ3XGcLjq .mbr-section-title {
  color: #ffffff;
}
.cid-tfZ3XGcLjq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tfZ46ZqNTP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tfZ46ZqNTP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ46ZqNTP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ46ZqNTP .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tfZ46ZqNTP .mbr-section-title,
.cid-tfZ46ZqNTP .mbr-section-subtitle {
  text-align: center;
}
.cid-tfZ46ZqNTP .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tfZ46ZqNTP .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tfZ46ZqNTP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tfZ46ZqNTP .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tfZ46ZqNTP .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tfZ46ZqNTP .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tyxZMWOtI3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tyxZMWOtI3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyxZMWOtI3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyxZMWOtI3 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tyxZMWOtI3 .mbr-section-title,
.cid-tyxZMWOtI3 .mbr-section-subtitle {
  text-align: center;
}
.cid-tyxZMWOtI3 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tyxZMWOtI3 .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tyxZMWOtI3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tyxZMWOtI3 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tyxZMWOtI3 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tyxZMWOtI3 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tfYZQpzcCZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tfYZQpzcCZ .mbr-text {
  color: #FEF9EE;
}
.cid-tfYZpB9xSV .nav-item:focus,
.cid-tfYZpB9xSV .nav-link:focus {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .collapsed {
  flex-direction: row!important;
}
.cid-tfYZpB9xSV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZpB9xSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tfYZpB9xSV .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tfYZpB9xSV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tfYZpB9xSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tfYZpB9xSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZpB9xSV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZpB9xSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tfYZpB9xSV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tfYZpB9xSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfYZpB9xSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tfYZpB9xSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfYZpB9xSV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfYZpB9xSV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tfYZpB9xSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown-item.active,
.cid-tfYZpB9xSV .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZpB9xSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZpB9xSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZpB9xSV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfYZpB9xSV .navbar-buttons {
  text-align: center;
}
.cid-tfYZpB9xSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tfYZpB9xSV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfYZpB9xSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZpB9xSV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tfYZpB9xSV .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tfYZpB9xSV .nav-link:hover,
.cid-tfYZpB9xSV .dropdown-item:hover,
.cid-tfYZpB9xSV .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZpB9xSV .navbar {
    height: 77px;
  }
  .cid-tfYZpB9xSV .navbar.opened {
    height: auto;
  }
}
.cid-tfZ4bXVNZG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #40b0bf;
}
.cid-tfZ4bXVNZG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ4bXVNZG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ4bXVNZG .row {
  justify-content: space-between;
}
.cid-tfZ4bXVNZG .mbr-text,
.cid-tfZ4bXVNZG .mbr-section-btn {
  color: #ffffff;
}
.cid-tfZ4bXVNZG .mbr-section-title {
  color: #ffffff;
}
.cid-tfZ4bXVNZG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tfZ4kEeX5F {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tfZ4kEeX5F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ4kEeX5F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ4kEeX5F .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tfZ4kEeX5F .mbr-section-title,
.cid-tfZ4kEeX5F .mbr-section-subtitle {
  text-align: center;
}
.cid-tfZ4kEeX5F .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tfZ4kEeX5F .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tfZ4kEeX5F .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tfZ4kEeX5F .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tfZ4kEeX5F .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tfZ4kEeX5F .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tfYZQpzcCZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tfYZQpzcCZ .mbr-text {
  color: #FEF9EE;
}
.cid-tfYZpB9xSV .nav-item:focus,
.cid-tfYZpB9xSV .nav-link:focus {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .collapsed {
  flex-direction: row!important;
}
.cid-tfYZpB9xSV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZpB9xSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tfYZpB9xSV .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tfYZpB9xSV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tfYZpB9xSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tfYZpB9xSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZpB9xSV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZpB9xSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tfYZpB9xSV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tfYZpB9xSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfYZpB9xSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tfYZpB9xSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfYZpB9xSV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfYZpB9xSV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tfYZpB9xSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown-item.active,
.cid-tfYZpB9xSV .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZpB9xSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZpB9xSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZpB9xSV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfYZpB9xSV .navbar-buttons {
  text-align: center;
}
.cid-tfYZpB9xSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tfYZpB9xSV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfYZpB9xSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZpB9xSV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tfYZpB9xSV .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tfYZpB9xSV .nav-link:hover,
.cid-tfYZpB9xSV .dropdown-item:hover,
.cid-tfYZpB9xSV .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZpB9xSV .navbar {
    height: 77px;
  }
  .cid-tfYZpB9xSV .navbar.opened {
    height: auto;
  }
}
.cid-tfZ4q4H7wA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e43f3f;
}
.cid-tfZ4q4H7wA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ4q4H7wA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ4q4H7wA .row {
  justify-content: space-between;
}
.cid-tfZ4q4H7wA .mbr-text,
.cid-tfZ4q4H7wA .mbr-section-btn {
  color: #ffffff;
}
.cid-tfZ4q4H7wA .mbr-section-title {
  color: #ffffff;
}
.cid-tfZ4q4H7wA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tguC75kNT7 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tguC75kNT7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tguC75kNT7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tguC75kNT7 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tguC75kNT7 .mbr-section-title,
.cid-tguC75kNT7 .mbr-section-subtitle {
  text-align: center;
}
.cid-tguC75kNT7 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tguC75kNT7 .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tguC75kNT7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tguC75kNT7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tguC75kNT7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tguC75kNT7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tfYZQpzcCZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tfYZQpzcCZ .mbr-text {
  color: #FEF9EE;
}
.cid-tfYZpB9xSV .nav-item:focus,
.cid-tfYZpB9xSV .nav-link:focus {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .collapsed {
  flex-direction: row!important;
}
.cid-tfYZpB9xSV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZpB9xSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tfYZpB9xSV .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tfYZpB9xSV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tfYZpB9xSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tfYZpB9xSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZpB9xSV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZpB9xSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tfYZpB9xSV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tfYZpB9xSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfYZpB9xSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tfYZpB9xSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfYZpB9xSV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfYZpB9xSV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tfYZpB9xSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown-item.active,
.cid-tfYZpB9xSV .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZpB9xSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZpB9xSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZpB9xSV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfYZpB9xSV .navbar-buttons {
  text-align: center;
}
.cid-tfYZpB9xSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tfYZpB9xSV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfYZpB9xSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZpB9xSV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tfYZpB9xSV .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tfYZpB9xSV .nav-link:hover,
.cid-tfYZpB9xSV .dropdown-item:hover,
.cid-tfYZpB9xSV .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZpB9xSV .navbar {
    height: 77px;
  }
  .cid-tfYZpB9xSV .navbar.opened {
    height: auto;
  }
}
.cid-tfZ4xc7fi1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #4479d9;
}
.cid-tfZ4xc7fi1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ4xc7fi1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ4xc7fi1 .row {
  justify-content: space-between;
}
.cid-tfZ4xc7fi1 .mbr-text,
.cid-tfZ4xc7fi1 .mbr-section-btn {
  color: #ffffff;
}
.cid-tfZ4xc7fi1 .mbr-section-title {
  color: #ffffff;
}
.cid-tfZ4xc7fi1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tguDlgKeN7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tguDlgKeN7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tguDlgKeN7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tguDlgKeN7 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tguDlgKeN7 .mbr-section-title,
.cid-tguDlgKeN7 .mbr-section-subtitle {
  text-align: center;
}
.cid-tguDlgKeN7 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tguDlgKeN7 .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tguDlgKeN7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tguDlgKeN7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tguDlgKeN7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tguDlgKeN7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tfYZQpzcCZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tfYZQpzcCZ .mbr-text {
  color: #FEF9EE;
}
.cid-tfYZpB9xSV .nav-item:focus,
.cid-tfYZpB9xSV .nav-link:focus {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .collapsed {
  flex-direction: row!important;
}
.cid-tfYZpB9xSV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZpB9xSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tfYZpB9xSV .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tfYZpB9xSV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tfYZpB9xSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tfYZpB9xSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZpB9xSV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZpB9xSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tfYZpB9xSV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tfYZpB9xSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfYZpB9xSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tfYZpB9xSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfYZpB9xSV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfYZpB9xSV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tfYZpB9xSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown-item.active,
.cid-tfYZpB9xSV .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZpB9xSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZpB9xSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZpB9xSV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfYZpB9xSV .navbar-buttons {
  text-align: center;
}
.cid-tfYZpB9xSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tfYZpB9xSV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfYZpB9xSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZpB9xSV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tfYZpB9xSV .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tfYZpB9xSV .nav-link:hover,
.cid-tfYZpB9xSV .dropdown-item:hover,
.cid-tfYZpB9xSV .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZpB9xSV .navbar {
    height: 77px;
  }
  .cid-tfYZpB9xSV .navbar.opened {
    height: auto;
  }
}
.cid-tfZ4GHqEe4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff9966;
}
.cid-tfZ4GHqEe4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ4GHqEe4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ4GHqEe4 .row {
  justify-content: space-between;
}
.cid-tfZ4GHqEe4 .mbr-text,
.cid-tfZ4GHqEe4 .mbr-section-btn {
  color: #ffffff;
}
.cid-tfZ4GHqEe4 .mbr-section-title {
  color: #ffffff;
}
.cid-tfZ4GHqEe4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tguEJcfO8G {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tguEJcfO8G .mbr-fallback-image.disabled {
  display: none;
}
.cid-tguEJcfO8G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tguEJcfO8G .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tguEJcfO8G .mbr-section-title,
.cid-tguEJcfO8G .mbr-section-subtitle {
  text-align: center;
}
.cid-tguEJcfO8G .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tguEJcfO8G .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tguEJcfO8G .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tguEJcfO8G .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tguEJcfO8G .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tguEJcfO8G .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tfYZQpzcCZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tfYZQpzcCZ .mbr-text {
  color: #FEF9EE;
}
.cid-tfYZpB9xSV .nav-item:focus,
.cid-tfYZpB9xSV .nav-link:focus {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .collapsed {
  flex-direction: row!important;
}
.cid-tfYZpB9xSV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZpB9xSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tfYZpB9xSV .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tfYZpB9xSV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tfYZpB9xSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tfYZpB9xSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZpB9xSV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZpB9xSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tfYZpB9xSV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tfYZpB9xSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfYZpB9xSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tfYZpB9xSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfYZpB9xSV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfYZpB9xSV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tfYZpB9xSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown-item.active,
.cid-tfYZpB9xSV .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZpB9xSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZpB9xSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZpB9xSV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfYZpB9xSV .navbar-buttons {
  text-align: center;
}
.cid-tfYZpB9xSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tfYZpB9xSV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfYZpB9xSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZpB9xSV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tfYZpB9xSV .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tfYZpB9xSV .nav-link:hover,
.cid-tfYZpB9xSV .dropdown-item:hover,
.cid-tfYZpB9xSV .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZpB9xSV .navbar {
    height: 77px;
  }
  .cid-tfYZpB9xSV .navbar.opened {
    height: auto;
  }
}
.cid-tfZ4M0YL9D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6c63b;
}
.cid-tfZ4M0YL9D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ4M0YL9D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ4M0YL9D .row {
  justify-content: space-between;
}
.cid-tfZ4M0YL9D .mbr-text,
.cid-tfZ4M0YL9D .mbr-section-btn {
  color: #ffffff;
}
.cid-tfZ4M0YL9D .mbr-section-title {
  color: #ffffff;
}
.cid-tfZ4M0YL9D .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tguFTJm0dL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tguFTJm0dL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tguFTJm0dL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tguFTJm0dL .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tguFTJm0dL .mbr-section-title,
.cid-tguFTJm0dL .mbr-section-subtitle {
  text-align: center;
}
.cid-tguFTJm0dL .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tguFTJm0dL .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tguFTJm0dL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tguFTJm0dL .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tguFTJm0dL .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tguFTJm0dL .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tfYZQpzcCZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tfYZQpzcCZ .mbr-text {
  color: #FEF9EE;
}
.cid-tfYZpB9xSV .nav-item:focus,
.cid-tfYZpB9xSV .nav-link:focus {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .collapsed {
  flex-direction: row!important;
}
.cid-tfYZpB9xSV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZpB9xSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tfYZpB9xSV .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tfYZpB9xSV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tfYZpB9xSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tfYZpB9xSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZpB9xSV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZpB9xSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tfYZpB9xSV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tfYZpB9xSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfYZpB9xSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tfYZpB9xSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfYZpB9xSV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfYZpB9xSV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tfYZpB9xSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown-item.active,
.cid-tfYZpB9xSV .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZpB9xSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZpB9xSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZpB9xSV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfYZpB9xSV .navbar-buttons {
  text-align: center;
}
.cid-tfYZpB9xSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tfYZpB9xSV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfYZpB9xSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZpB9xSV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tfYZpB9xSV .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tfYZpB9xSV .nav-link:hover,
.cid-tfYZpB9xSV .dropdown-item:hover,
.cid-tfYZpB9xSV .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZpB9xSV .navbar {
    height: 77px;
  }
  .cid-tfYZpB9xSV .navbar.opened {
    height: auto;
  }
}
.cid-tfZ4TuEHlU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-tfZ4TuEHlU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ4TuEHlU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ4TuEHlU .row {
  justify-content: space-between;
}
.cid-tfZ4TuEHlU .mbr-text,
.cid-tfZ4TuEHlU .mbr-section-btn {
  color: #ffffff;
}
.cid-tfZ4TuEHlU .mbr-section-title {
  color: #ffffff;
}
.cid-tfZ4TuEHlU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tguHteBim2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tguHteBim2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tguHteBim2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tguHteBim2 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tguHteBim2 .mbr-section-title,
.cid-tguHteBim2 .mbr-section-subtitle {
  text-align: center;
}
.cid-tguHteBim2 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tguHteBim2 .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tguHteBim2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tguHteBim2 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tguHteBim2 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tguHteBim2 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tfYZQpzcCZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tfYZQpzcCZ .mbr-text {
  color: #FEF9EE;
}
.cid-tfYZpB9xSV .nav-item:focus,
.cid-tfYZpB9xSV .nav-link:focus {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tfYZpB9xSV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tfYZpB9xSV .collapsed {
  flex-direction: row!important;
}
.cid-tfYZpB9xSV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfYZpB9xSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tfYZpB9xSV .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tfYZpB9xSV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tfYZpB9xSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tfYZpB9xSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfYZpB9xSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfYZpB9xSV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfYZpB9xSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tfYZpB9xSV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tfYZpB9xSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfYZpB9xSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfYZpB9xSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tfYZpB9xSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfYZpB9xSV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfYZpB9xSV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tfYZpB9xSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tfYZpB9xSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfYZpB9xSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfYZpB9xSV .dropdown-item.active,
.cid-tfYZpB9xSV .dropdown-item:active {
  background-color: transparent;
}
.cid-tfYZpB9xSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfYZpB9xSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfYZpB9xSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfYZpB9xSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfYZpB9xSV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfYZpB9xSV .navbar-buttons {
  text-align: center;
}
.cid-tfYZpB9xSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfYZpB9xSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfYZpB9xSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfYZpB9xSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tfYZpB9xSV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfYZpB9xSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfYZpB9xSV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tfYZpB9xSV .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tfYZpB9xSV .nav-link:hover,
.cid-tfYZpB9xSV .dropdown-item:hover,
.cid-tfYZpB9xSV .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfYZpB9xSV .navbar {
    height: 77px;
  }
  .cid-tfYZpB9xSV .navbar.opened {
    height: auto;
  }
}
.cid-tfZ4ZoyZ5A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7b1270;
}
.cid-tfZ4ZoyZ5A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfZ4ZoyZ5A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfZ4ZoyZ5A .row {
  justify-content: space-between;
}
.cid-tfZ4ZoyZ5A .mbr-text,
.cid-tfZ4ZoyZ5A .mbr-section-btn {
  color: #ffffff;
}
.cid-tfZ4ZoyZ5A .mbr-section-title {
  color: #ffffff;
}
.cid-tfZ4ZoyZ5A .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tguJMQHJ6y {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fff0b0;
}
.cid-tguJMQHJ6y .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tguJMQHJ6y .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tguJMQHJ6y .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tguJMQHJ6y .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tguJMQHJ6y .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tguJMQHJ6y .special-label {
  color: #fff;
}
.cid-tguJMQHJ6y .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tguJMQHJ6y .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tguJMQHJ6y .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tguJMQHJ6y .menu-row {
  margin: 0;
}
.cid-tguJMQHJ6y .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #4479d9;
}
.cid-tguJMQHJ6y .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tguJMQHJ6y .group-title,
.cid-tguJMQHJ6y .align-wrap {
  text-align: left;
}
.cid-tguK78svMJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffe885;
}
.cid-tguK78svMJ .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tguK78svMJ .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tguK78svMJ .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tguK78svMJ .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tguK78svMJ .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tguK78svMJ .special-label {
  color: #fff;
}
.cid-tguK78svMJ .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tguK78svMJ .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tguK78svMJ .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tguK78svMJ .menu-row {
  margin: 0;
}
.cid-tguK78svMJ .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #4479d9;
}
.cid-tguK78svMJ .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tguK78svMJ .group-title,
.cid-tguK78svMJ .align-wrap {
  text-align: left;
}
.cid-tguK7N9Liy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffe161;
}
.cid-tguK7N9Liy .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tguK7N9Liy .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tguK7N9Liy .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tguK7N9Liy .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tguK7N9Liy .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tguK7N9Liy .special-label {
  color: #fff;
}
.cid-tguK7N9Liy .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tguK7N9Liy .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tguK7N9Liy .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tguK7N9Liy .menu-row {
  margin: 0;
}
.cid-tguK7N9Liy .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #4479d9;
}
.cid-tguK7N9Liy .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tguK7N9Liy .group-title,
.cid-tguK7N9Liy .align-wrap {
  text-align: left;
}
.cid-tguK8eBGvY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #e6c63b;
}
.cid-tguK8eBGvY .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tguK8eBGvY .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tguK8eBGvY .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tguK8eBGvY .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tguK8eBGvY .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tguK8eBGvY .special-label {
  color: #fff;
}
.cid-tguK8eBGvY .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tguK8eBGvY .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tguK8eBGvY .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tguK8eBGvY .menu-row {
  margin: 0;
}
.cid-tguK8eBGvY .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #4479d9;
}
.cid-tguK8eBGvY .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tguK8eBGvY .group-title,
.cid-tguK8eBGvY .align-wrap {
  text-align: left;
}
.cid-tguK8JqZN9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffe161;
}
.cid-tguK8JqZN9 .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tguK8JqZN9 .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tguK8JqZN9 .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tguK8JqZN9 .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tguK8JqZN9 .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tguK8JqZN9 .special-label {
  color: #fff;
}
.cid-tguK8JqZN9 .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tguK8JqZN9 .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tguK8JqZN9 .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tguK8JqZN9 .menu-row {
  margin: 0;
}
.cid-tguK8JqZN9 .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #4479d9;
}
.cid-tguK8JqZN9 .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tguK8JqZN9 .group-title,
.cid-tguK8JqZN9 .align-wrap {
  text-align: left;
}
.cid-tfYZQpzcCZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tfYZQpzcCZ .mbr-text {
  color: #FEF9EE;
}
.cid-tguKlAQtIn .nav-item:focus,
.cid-tguKlAQtIn .nav-link:focus {
  outline: none;
}
.cid-tguKlAQtIn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tguKlAQtIn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tguKlAQtIn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tguKlAQtIn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tguKlAQtIn .collapsed {
  flex-direction: row!important;
}
.cid-tguKlAQtIn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tguKlAQtIn .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tguKlAQtIn .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tguKlAQtIn .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tguKlAQtIn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tguKlAQtIn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tguKlAQtIn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tguKlAQtIn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tguKlAQtIn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tguKlAQtIn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tguKlAQtIn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tguKlAQtIn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tguKlAQtIn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tguKlAQtIn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tguKlAQtIn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tguKlAQtIn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tguKlAQtIn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tguKlAQtIn .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tguKlAQtIn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tguKlAQtIn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tguKlAQtIn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tguKlAQtIn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tguKlAQtIn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tguKlAQtIn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tguKlAQtIn .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tguKlAQtIn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tguKlAQtIn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tguKlAQtIn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tguKlAQtIn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tguKlAQtIn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tguKlAQtIn .dropdown-item.active,
.cid-tguKlAQtIn .dropdown-item:active {
  background-color: transparent;
}
.cid-tguKlAQtIn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tguKlAQtIn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tguKlAQtIn .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tguKlAQtIn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tguKlAQtIn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tguKlAQtIn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tguKlAQtIn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tguKlAQtIn .navbar-buttons {
  text-align: center;
}
.cid-tguKlAQtIn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tguKlAQtIn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tguKlAQtIn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tguKlAQtIn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tguKlAQtIn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tguKlAQtIn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tguKlAQtIn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tguKlAQtIn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tguKlAQtIn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tguKlAQtIn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tguKlAQtIn .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tguKlAQtIn a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tguKlAQtIn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tguKlAQtIn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tguKlAQtIn .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tguKlAQtIn .nav-link:hover,
.cid-tguKlAQtIn .dropdown-item:hover,
.cid-tguKlAQtIn .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tguKlAQtIn .navbar {
    height: 77px;
  }
  .cid-tguKlAQtIn .navbar.opened {
    height: auto;
  }
}
.cid-tguKlBgOY8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9a64a7;
}
.cid-tguKlBgOY8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tguKlBgOY8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tguKlBgOY8 .row {
  justify-content: space-between;
}
.cid-tguKlBgOY8 .mbr-text,
.cid-tguKlBgOY8 .mbr-section-btn {
  color: #ffffff;
}
.cid-tguKlBgOY8 .mbr-section-title {
  color: #ffffff;
}
.cid-tguKlBgOY8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tguKGoklrq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
.cid-tguKGoklrq .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-tguKGoklrq .mbr-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #7aba59;
}
.cid-tguKGoklrq .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tguKGoklrq .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-tguKGoklrq .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-tguKGoklrq .special-label {
  color: #fff;
}
.cid-tguKGoklrq .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-tguKGoklrq .menu-box .box-price {
  flex-shrink: 0;
}
.cid-tguKGoklrq .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-tguKGoklrq .menu-row {
  margin: 0;
}
.cid-tguKGoklrq .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #2299aa;
}
.cid-tguKGoklrq .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-tguKGoklrq .group-title,
.cid-tguKGoklrq .align-wrap {
  text-align: left;
}
.cid-tguKlDKjbi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f1d1a;
  overflow: hidden;
}
.cid-tguKlDKjbi .mbr-text {
  color: #FEF9EE;
}
