.btn {
  border-width: 2px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .menu-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  line-height: 1.125;
}
.display-2 > .menu-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-4 > .menu-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.35rem;
  line-height: 1.14;
}
.display-5 > .menu-iconfont {
  font-size: 2.9375rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}
.display-7 > .menu-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.88rem;
    font-size: calc( 1.4725000000000001rem + (2.35 - 1.4725000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.4725000000000001rem + (2.35 - 1.4725000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #272b2e !important;
}
.bg-success {
  background-color: #7dabab !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ff9e08 !important;
}
.bg-danger {
  background-color: #bc5e4d !important;
}
.btn-primary {
  background: linear-gradient(140deg, #272b2e, #1b1e20 50%, #565f65) !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #272b2e !important;
  border-color: #272b2e !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #3e454a !important;
  border-color: #3e454a !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #3e454a !important;
  border-color: #3e454a !important;
}
.btn-secondary {
  background: linear-gradient(140deg, #f96e47, #f85b2e 50%, #fcbcaa) !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f96e47 !important;
  border-color: #f96e47 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #fb9578 !important;
  border-color: #fb9578 !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fb9578 !important;
  border-color: #fb9578 !important;
}
.btn-info {
  background: linear-gradient(140deg, #ffffff, #f2f2f2 50%, #ffffff) !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success {
  background: linear-gradient(140deg, #7dabab, #6ea1a1 50%, #bbd3d3) !important;
}
.btn-success,
.btn-success:active {
  background-color: #7dabab !important;
  border-color: #7dabab !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #9cbfbf !important;
  border-color: #9cbfbf !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #9cbfbf !important;
  border-color: #9cbfbf !important;
}
.btn-warning {
  background: linear-gradient(140deg, #ff9e08, #ed9000 50%, #ffc66e) !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff9e08 !important;
  border-color: #ff9e08 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #ffb23b !important;
  border-color: #ffb23b !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ffb23b !important;
  border-color: #ffb23b !important;
}
.btn-danger {
  background: linear-gradient(140deg, #bc5e4d, #ae5241 50%, #d8a197) !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #bc5e4d !important;
  border-color: #bc5e4d !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #ca8072 !important;
  border-color: #ca8072 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ca8072 !important;
  border-color: #ca8072 !important;
}
.btn-white {
  background: linear-gradient(140deg, #ffffff, #f2f2f2 50%, #ffffff) !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black {
  background: linear-gradient(140deg, #232323, #161616 50%, #565656) !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #272b2e;
  color: #272b2e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #272b2e !important;
  border-color: #272b2e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #f96e47;
  color: #f96e47;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e23707 !important;
  background-color: transparent !important;
  border-color: #e23707 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f96e47 !important;
  border-color: #f96e47 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #7dabab;
  color: #7dabab;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #527f7f !important;
  background-color: transparent !important;
  border-color: #527f7f !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7dabab !important;
  border-color: #7dabab !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff9e08;
  color: #ff9e08;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b06b00 !important;
  background-color: transparent !important;
  border-color: #b06b00 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9e08 !important;
  border-color: #ff9e08 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #bc5e4d;
  color: #bc5e4d;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #823d31 !important;
  background-color: transparent !important;
  border-color: #823d31 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #bc5e4d !important;
  border-color: #bc5e4d !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #272b2e !important;
}
.text-secondary {
  color: #f96e47 !important;
}
.text-success {
  color: #7dabab !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ff9e08 !important;
}
.text-danger {
  color: #bc5e4d !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d33407 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #4c7676 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a16200 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #76382d !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: #272b2e;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ff9e08;
}
.alert-danger {
  background-color: #bc5e4d;
}
.menu-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.menu-gallery-filter li a {
  border-radius: 100px !important;
}
.menu-gallery-filter li.active .btn {
  background-color: #272b2e;
  border-color: #272b2e;
  color: #ffffff;
}
.menu-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #272b2e;
}
.menu-plan-header.bg-primary .menu-plan-subtitle,
.menu-plan-header.bg-primary .menu-plan-price-desc {
  color: #dadde0;
}
.menu-plan-header.bg-success .menu-plan-subtitle,
.menu-plan-header.bg-success .menu-plan-price-desc {
  color: #cadddd;
}
.menu-plan-header.bg-info .menu-plan-subtitle,
.menu-plan-header.bg-info .menu-plan-price-desc {
  color: #ffffff;
}
.menu-plan-header.bg-warning .menu-plan-subtitle,
.menu-plan-header.bg-warning .menu-plan-price-desc {
  color: #ffeed4;
}
.menu-plan-header.bg-danger .menu-plan-subtitle,
.menu-plan-header.bg-danger .menu-plan-price-desc {
  color: #dfb2aa;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 400;
  border-radius: 100px !important;
}
.form-control > .menu-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #272b2e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .menu-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #272b2e;
}
/* Forms */
.menu-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.menu-form .input-group-btn .btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.menu-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.menu-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #272b2e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #272b2e;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #272b2e;
  border-bottom-color: #272b2e;
}
.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: #272b2e !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: #f96e47 !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='%23272b2e' %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;
}
.menu-section-btn .btn {
  padding: 14px 64px;
  border-radius: 3.5rem;
}
@media (max-width: 992px) {
  .menu-section-btn .btn {
    padding: 14px;
  }
}
.menu-section-btn .btn-primary,
.menu-section-btn .btn-secondary,
.menu-section-btn .btn-success,
.menu-section-btn .btn-info,
.menu-section-btn .btn-warning,
.menu-section-btn .btn-danger,
.menu-section-btn .btn-black,
.menu-section-btn .btn-white {
  border: none !important;
}
.menu-section-btn .btn-primary:hover,
.menu-section-btn .btn-secondary:hover,
.menu-section-btn .btn-success:hover,
.menu-section-btn .btn-info:hover,
.menu-section-btn .btn-warning:hover,
.menu-section-btn .btn-danger:hover,
.menu-section-btn .btn-black:hover,
.menu-section-btn .btn-white:hover,
.menu-section-btn .btn-primary:focus,
.menu-section-btn .btn-secondary:focus,
.menu-section-btn .btn-success:focus,
.menu-section-btn .btn-info:focus,
.menu-section-btn .btn-warning:focus,
.menu-section-btn .btn-danger:focus,
.menu-section-btn .btn-black:focus,
.menu-section-btn .btn-white:focus {
  opacity: .75 !important;
}
.menu-section-btn .btn-primary-outline:hover,
.menu-section-btn .btn-secondary-outline:hover,
.menu-section-btn .btn-success-outline:hover,
.menu-section-btn .btn-info-outline:hover,
.menu-section-btn .btn-warning-outline:hover,
.menu-section-btn .btn-danger-outline:hover,
.menu-section-btn .btn-black-outline:hover,
.menu-section-btn .btn-white-outline:hover,
.menu-section-btn .btn-primary-outline:focus,
.menu-section-btn .btn-secondary-outline:focus,
.menu-section-btn .btn-success-outline:focus,
.menu-section-btn .btn-info-outline:focus,
.menu-section-btn .btn-warning-outline:focus,
.menu-section-btn .btn-danger-outline:focus,
.menu-section-btn .btn-black-outline:focus,
.menu-section-btn .btn-white-outline:focus {
  opacity: .6 !important;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.menu-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper,
.item-wrap,
.item-content,
.form-wrapper,
.embla {
  border-radius: 1rem !important;
}
.item-tag {
  border-radius: 12.5rem;
}
.nav.nav-tabs .nav-link {
  border-radius: .5rem !important;
}
.form-control {
  border-radius: .5rem !important;
}
.t8Hca-uPHXuRIY8q .navbar-dropdown {
  position: relative !important;
}
.t8Hca-uPHXuRIY8q .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.t8Hca-uPHXuRIY8q .dropdown-item:before {
  font-family: button2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.t8Hca-uPHXuRIY8q .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item:hover,
.t8Hca-uPHXuRIY8q .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item:hover span {
  color: white;
}
.t8Hca-uPHXuRIY8q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.t8Hca-uPHXuRIY8q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.t8Hca-uPHXuRIY8q .nav-link {
  position: relative;
}
.t8Hca-uPHXuRIY8q .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .container {
    flex-wrap: nowrap;
  }
}
.t8Hca-uPHXuRIY8q .iconfont-wrapper {
  color: #000c3f !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.t8Hca-uPHXuRIY8q .iconfont-wrapper:hover {
  opacity: .5;
}
.t8Hca-uPHXuRIY8q .dropdown-menu,
.t8Hca-uPHXuRIY8q .navbar.opened {
  background: #ffffff !important;
}
.t8Hca-uPHXuRIY8q .nav-item:focus,
.t8Hca-uPHXuRIY8q .nav-link:focus {
  outline: none;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item .menu-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item .menu-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.t8Hca-uPHXuRIY8q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.t8Hca-uPHXuRIY8q .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPHXuRIY8q .navbar.opened {
  transition: all 0.3s;
}
.t8Hca-uPHXuRIY8q .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.t8Hca-uPHXuRIY8q .navbar .navbar-logo img {
  width: auto;
}
.t8Hca-uPHXuRIY8q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed {
  justify-content: center;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .t8Hca-uPHXuRIY8q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .t8Hca-uPHXuRIY8q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.t8Hca-uPHXuRIY8q .navbar.navbar-short {
  min-height: 96px;
}
.t8Hca-uPHXuRIY8q .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.t8Hca-uPHXuRIY8q .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 2;
  word-wrap: break-word !important;
  white-space: normal;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar-brand {
    position: absolute;
    left: 45%;
  }
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption:hover,
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-logo a {
  outline: none;
}
.t8Hca-uPHXuRIY8q .navbar.opened .navbar-brand .navbar-caption:hover,
.t8Hca-uPHXuRIY8q .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item.active,
.t8Hca-uPHXuRIY8q .dropdown-item:active {
  background-color: transparent;
}
.t8Hca-uPHXuRIY8q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.t8Hca-uPHXuRIY8q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.t8Hca-uPHXuRIY8q ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .t8Hca-uPHXuRIY8q ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.t8Hca-uPHXuRIY8q .navbar-buttons {
  text-align: center;
  width: auto;
}
.t8Hca-uPHXuRIY8q .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 12px 24px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar-buttons .btn {
    padding: 12px 16px;
  }
}
.t8Hca-uPHXuRIY8q .navbar-buttons .btn .menu-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .t8Hca-uPHXuRIY8q .navbar-buttons .btn {
    width: auto !important;
  }
}
.t8Hca-uPHXuRIY8q button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q .navbar-dropdown {
  padding: 0 1rem;
}
.t8Hca-uPHXuRIY8q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.t8Hca-uPHXuRIY8q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .t8Hca-uPHXuRIY8q .navbar {
    height: 70px;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened {
    height: auto;
  }
  .t8Hca-uPHXuRIY8q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.t8Hca-uPHXuRIY8q .navbar-nav {
  margin: 0 auto;
}
.t8Hca-uPHXuRIY8q .nav-item {
  padding: 0;
  margin: 0;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link {
  padding: 8px 25px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link:hover,
.t8Hca-uPHXuRIY8q .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link:hover::after,
.t8Hca-uPHXuRIY8q .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.t8Hca-uPHXuRIY8q .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.t8Hca-uPHXuRIY8q .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .t8Hca-uPHXuRIY8q .navbar {
    justify-content: flex-start !important;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
@media (min-width: 1440px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    padding-right: 30% !important;
  }
}
@media (min-width: 1200px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    padding-right: 20% !important;
  }
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    width: 100%;
    padding-right: 40% !important;
    margin: 0;
  }
}
.t8Hca-uPHXuRIY8q .content-wrap {
  min-height: 110px;
}
.t8Hca-uPHXGPJ62p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffd390;
}
.t8Hca-uPHXGPJ62p .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHXGPJ62p .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPHXGPJ62p .content-wrapper {
  padding: 75px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 800px;
}
@media (max-width: 1440px) {
  .t8Hca-uPHXGPJ62p .content-wrapper {
    padding: 50px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPHXGPJ62p .content-wrapper {
    padding: 36px 24px;
    min-height: auto;
  }
}
.t8Hca-uPHXGPJ62p .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t8Hca-uPHXGPJ62p .content-wrapper .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #de8700;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
.t8Hca-uPHXGPJ62p .content-wrapper .menu-section-title {
  position: relative;
  z-index: 2;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXGPJ62p .content-wrapper .menu-section-title {
    margin-bottom: 32px;
  }
}
.t8Hca-uPHXGPJ62p .content-wrapper .text-wrapper {
  position: relative;
  z-index: 2;
}
.t8Hca-uPHXGPJ62p .content-wrapper .text-wrapper .menu-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXGPJ62p .content-wrapper .text-wrapper .menu-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.t8Hca-uPHXGPJ62p .content-wrapper .menu-section-btn {
  position: relative;
  z-index: 2;
}
.t8Hca-uPHXGPJ62p .menu-section-title {
  color: #000000;
}
.t8Hca-uPHXGPJ62p .menu-text {
  color: #000000;
}
.t8Hca-uPHXGPJ62p .menu-section-title,
.t8Hca-uPHXGPJ62p .menu-section-btn {
  color: #ffffff;
}
.t8Hca-uPHXGPJ62p .menu-text,
.t8Hca-uPHXGPJ62p .text-wrapper {
  color: #ffffff;
}
.t8Hca-uPHXZQ1465 {
  display: flex;
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #de8700;
}
@media (min-width: 768px) {
  .t8Hca-uPHXZQ1465 {
    align-items: center;
  }
  .t8Hca-uPHXZQ1465 .row {
    justify-content: center;
  }
}
.t8Hca-uPHXZQ1465 p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .t8Hca-uPHXZQ1465 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .t8Hca-uPHXZQ1465 {
    -webkit-align-items: center;
    align-items: center;
  }
  .t8Hca-uPHXZQ1465 .menu-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .t8Hca-uPHXZQ1465 .content-wrap {
    width: 100%;
  }
}
.t8Hca-uPHXZQ1465 .menu-section-title {
  text-align: center;
  color: #000000;
}
.t8Hca-uPHXZQ1465 .menu-text,
.t8Hca-uPHXZQ1465 .menu-section-btn {
  text-align: center;
  color: #ffffff;
}
.t8Hca-uPHXZQ1465 .menu-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.t8Hca-uPHXSdMBbh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffd390;
}
.t8Hca-uPHXSdMBbh .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHXSdMBbh .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPHXSdMBbh .container-fluid {
  padding: 0 45px 0 0;
}
@media (max-width: 992px) {
  .t8Hca-uPHXSdMBbh .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPHXSdMBbh .container {
    padding: 0 25px;
  }
}
.t8Hca-uPHXSdMBbh .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .t8Hca-uPHXSdMBbh .image-wrapper {
    margin-bottom: 20px;
  }
}
.t8Hca-uPHXSdMBbh .image-wrapper img {
  height: 310px;
  object-fit: cover;
  border-radius: 0 20rem 0 20rem !important;
}
@media (max-width: 992px) {
  .t8Hca-uPHXSdMBbh .image-wrapper img {
    height: 210px;
  }
}
@media (max-width: 425px) {
  .t8Hca-uPHXSdMBbh .image-wrapper img {
    border-radius: 0 10rem 0 10rem !important;
  }
}
.t8Hca-uPHXSdMBbh .title-wrapper {
  padding-left: 80px;
}
@media (max-width: 1440px) {
  .t8Hca-uPHXSdMBbh .title-wrapper {
    padding: 0;
  }
}
.t8Hca-uPHXSdMBbh .title-wrapper .menu-section-title {
  margin-bottom: 20px;
}
.t8Hca-uPHXSdMBbh .title-wrapper .menu-text {
  margin-bottom: 25px;
}
.t8Hca-uPHXSdMBbh .menu-section-title {
  color: #000000;
}
.t8Hca-uPHXSdMBbh .menu-text {
  color: #000000;
}
.t8Hca-uPHXVYltkl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #de8700;
}
@media (max-width: 992px) and (max-width: 992px) {
  .t8Hca-uPHXVYltkl .container {
    padding: 0 24px;
  }
}
.t8Hca-uPHXVYltkl .card {
  justify-content: center;
}
.t8Hca-uPHXVYltkl .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXVYltkl .title-wrapper {
    padding: 0 24px 24px;
  }
}
.t8Hca-uPHXVYltkl .title-wrapper .menu-section-title {
  margin-bottom: 16px;
}
.t8Hca-uPHXVYltkl .title-wrapper .menu-desc {
  margin-bottom: 0;
}
.t8Hca-uPHXVYltkl .text-wrapper {
  border-top: 1px solid #ffc263;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXVYltkl .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.t8Hca-uPHXVYltkl .text-wrapper .menu-text {
  width: 45%;
}
@media (max-width: 992px) {
  .t8Hca-uPHXVYltkl .text-wrapper .menu-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .t8Hca-uPHXVYltkl .text-wrapper .menu-text:last-child {
    margin-bottom: 0;
  }
}
.t8Hca-uPHXVYltkl .menu-section-title {
  color: #F9F6E0;
}
.t8Hca-uPHXVYltkl .menu-desc {
  color: #F9F6E0;
  text-align: center;
}
.t8Hca-uPHXVYltkl .menu-text {
  color: #F9F6E0;
}
.t8Hca-uPHXVYltkl .menu-section-btn {
  text-align: right;
}
.t8Hca-uPHXVYltkl .menu-section-title,
.t8Hca-uPHXVYltkl .menu-section-btn {
  text-align: center;
}
.t8Hca-uPHYwUHqvb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffc263;
}
.t8Hca-uPHYwUHqvb .row {
  flex-directiion: row-reverse;
}
.t8Hca-uPHYwUHqvb .card-wrapper {
  width: 100%;
  height: 100%;
}
.t8Hca-uPHYwUHqvb .card-wrapper img {
  height: 600px;
  object-fit: cover;
}
.t8Hca-uPHYwUHqvb .second-card-title {
  text-align: center;
  color: #000000;
}
.t8Hca-uPHYwUHqvb .second-card-subtitle {
  text-align: center;
}
.t8Hca-uPHYwUHqvb .second-card {
  background-color: #ffd390;
}
.t8Hca-uPHYwUHqvb .second-card-wrap {
  margin: auto 0;
  padding: 3rem 1.5rem;
}
@media (min-width: 992px) {
  .t8Hca-uPHYwUHqvb [class*="col"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.t8Hca-uPHYwUHqvb .second-card-subtitle,
.t8Hca-uPHYwUHqvb .second-btn {
  text-align: center;
}
.t8Hca-uPHYwUHqvb .card {
  border-radius: 0 !important;
}
.t8Hca-uPHYwUHqvb .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHYwUHqvb .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPHYDKcCt9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #de8700;
  overflow: hidden;
}
.t8Hca-uPHYDKcCt9 .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHYDKcCt9 .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .t8Hca-uPHYDKcCt9 .container {
    padding: 0 16px;
  }
}
.t8Hca-uPHYDKcCt9 .row {
  justify-content: center;
}
.t8Hca-uPHYDKcCt9 .content-wrapper {
  position: relative;
}
.t8Hca-uPHYDKcCt9 .content-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
.t8Hca-uPHYDKcCt9 .content-wrapper .icon-wrapper .menu-iconfont {
  font-size: 42px;
  color: #ffd390;
  display: inline-flex;
}
.t8Hca-uPHYDKcCt9 .content-wrapper .menu-section-title {
  margin-bottom: 40px;
}
.t8Hca-uPHYDKcCt9 .content-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.t8Hca-uPHYDKcCt9 .content-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all .3s ease;
}
.t8Hca-uPHYDKcCt9 .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.t8Hca-uPHYDKcCt9 .content-wrapper .list .item-wrap:hover,
.t8Hca-uPHYDKcCt9 .content-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.t8Hca-uPHYDKcCt9 .content-wrapper .decor-wrapper {
  position: absolute;
  top: -10%;
  left: -12rem;
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #ffd390 -10%, transparent 70%);
}
.t8Hca-uPHYDKcCt9 .menu-section-title {
  color: #000000;
}
.t8Hca-uPHYDKcCt9 .list {
  color: #000000;
  text-align: center;
}
.t8Hca-uPHYDKcCt9 .menu-section-title,
.t8Hca-uPHYDKcCt9 .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.t8Hca-uPHYDKcCt9 .list,
.t8Hca-uPHYDKcCt9 .item-wrap {
  color: #ffffff;
}
.t8Hca-uPIkyuPyRo {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPIkyuPyRo .row {
  justify-content: center;
}
.t8Hca-uPIkyuPyRo .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
    width: 100%;
  }
}
.t8Hca-uPIkyuPyRo .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:last-child {
  margin-bottom: 0;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:hover,
.t8Hca-uPIkyuPyRo .list .item-wrap:focus {
  transform: translateX(14px);
}
.t8Hca-uPIkyuPyRo .menu-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.t8Hca-uPIkyuPyRo .menu-section-title {
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .menu-text {
  color: #151e11;
}
.t8Hca-uPHXuRIY8q .navbar-dropdown {
  position: relative !important;
}
.t8Hca-uPHXuRIY8q .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.t8Hca-uPHXuRIY8q .dropdown-item:before {
  font-family: button2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.t8Hca-uPHXuRIY8q .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item:hover,
.t8Hca-uPHXuRIY8q .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item:hover span {
  color: white;
}
.t8Hca-uPHXuRIY8q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.t8Hca-uPHXuRIY8q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.t8Hca-uPHXuRIY8q .nav-link {
  position: relative;
}
.t8Hca-uPHXuRIY8q .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .container {
    flex-wrap: nowrap;
  }
}
.t8Hca-uPHXuRIY8q .iconfont-wrapper {
  color: #000c3f !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.t8Hca-uPHXuRIY8q .iconfont-wrapper:hover {
  opacity: .5;
}
.t8Hca-uPHXuRIY8q .dropdown-menu,
.t8Hca-uPHXuRIY8q .navbar.opened {
  background: #ffffff !important;
}
.t8Hca-uPHXuRIY8q .nav-item:focus,
.t8Hca-uPHXuRIY8q .nav-link:focus {
  outline: none;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item .menu-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item .menu-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.t8Hca-uPHXuRIY8q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.t8Hca-uPHXuRIY8q .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPHXuRIY8q .navbar.opened {
  transition: all 0.3s;
}
.t8Hca-uPHXuRIY8q .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.t8Hca-uPHXuRIY8q .navbar .navbar-logo img {
  width: auto;
}
.t8Hca-uPHXuRIY8q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed {
  justify-content: center;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .t8Hca-uPHXuRIY8q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .t8Hca-uPHXuRIY8q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.t8Hca-uPHXuRIY8q .navbar.navbar-short {
  min-height: 96px;
}
.t8Hca-uPHXuRIY8q .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.t8Hca-uPHXuRIY8q .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 2;
  word-wrap: break-word !important;
  white-space: normal;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar-brand {
    position: absolute;
    left: 45%;
  }
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption:hover,
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-logo a {
  outline: none;
}
.t8Hca-uPHXuRIY8q .navbar.opened .navbar-brand .navbar-caption:hover,
.t8Hca-uPHXuRIY8q .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item.active,
.t8Hca-uPHXuRIY8q .dropdown-item:active {
  background-color: transparent;
}
.t8Hca-uPHXuRIY8q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.t8Hca-uPHXuRIY8q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.t8Hca-uPHXuRIY8q ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .t8Hca-uPHXuRIY8q ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.t8Hca-uPHXuRIY8q .navbar-buttons {
  text-align: center;
  width: auto;
}
.t8Hca-uPHXuRIY8q .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 12px 24px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar-buttons .btn {
    padding: 12px 16px;
  }
}
.t8Hca-uPHXuRIY8q .navbar-buttons .btn .menu-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .t8Hca-uPHXuRIY8q .navbar-buttons .btn {
    width: auto !important;
  }
}
.t8Hca-uPHXuRIY8q button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q .navbar-dropdown {
  padding: 0 1rem;
}
.t8Hca-uPHXuRIY8q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.t8Hca-uPHXuRIY8q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .t8Hca-uPHXuRIY8q .navbar {
    height: 70px;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened {
    height: auto;
  }
  .t8Hca-uPHXuRIY8q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.t8Hca-uPHXuRIY8q .navbar-nav {
  margin: 0 auto;
}
.t8Hca-uPHXuRIY8q .nav-item {
  padding: 0;
  margin: 0;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link {
  padding: 8px 25px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link:hover,
.t8Hca-uPHXuRIY8q .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link:hover::after,
.t8Hca-uPHXuRIY8q .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.t8Hca-uPHXuRIY8q .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.t8Hca-uPHXuRIY8q .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .t8Hca-uPHXuRIY8q .navbar {
    justify-content: flex-start !important;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
@media (min-width: 1440px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    padding-right: 30% !important;
  }
}
@media (min-width: 1200px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    padding-right: 20% !important;
  }
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    width: 100%;
    padding-right: 40% !important;
    margin: 0;
  }
}
.t8Hca-uPHXuRIY8q .content-wrap {
  min-height: 110px;
}
.t8Hca-uPHYPHbMou {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffd390;
}
.t8Hca-uPHYPHbMou .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHYPHbMou .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPHYPHbMou .row {
  margin: 0 -8px;
}
.t8Hca-uPHYPHbMou .row .card {
  padding: 0 8px;
}
.t8Hca-uPHYPHbMou .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #de8700;
}
@media (max-width: 1440px) {
  .t8Hca-uPHYPHbMou .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPHYPHbMou .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.t8Hca-uPHYPHbMou .card-wrapper .menu-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .t8Hca-uPHYPHbMou .card-wrapper .menu-section-title {
    margin-bottom: 24px;
  }
}
.t8Hca-uPHYPHbMou .card-wrapper .card-wrap .text-wrapper .menu-text {
  margin-bottom: 24px;
}
.t8Hca-uPHYPHbMou .card-wrapper .card-wrap .menu-section-btn .btn {
  margin-bottom: 0;
}
.t8Hca-uPHYPHbMou .image-wrapper {
  height: 100%;
}
.t8Hca-uPHYPHbMou .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .t8Hca-uPHYPHbMou .image-wrapper img {
    height: 300px;
  }
}
.t8Hca-uPHYPHbMou .menu-section-title {
  color: #2c2c26;
}
.t8Hca-uPHYPHbMou .menu-text,
.t8Hca-uPHYPHbMou .text-wrapper {
  color: #ffffff;
}
.t8Hca-uPHYPHbMou .menu-section-title,
.t8Hca-uPHYPHbMou .menu-section-btn {
  color: #ffffff;
}
.t8Hca-uPHYSRWL2m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #de8700;
}
.t8Hca-uPHYSRWL2m .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHYSRWL2m .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPHYSRWL2m .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #ffd390;
}
@media (max-width: 992px) {
  .t8Hca-uPHYSRWL2m .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.t8Hca-uPHYSRWL2m .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.t8Hca-uPHYSRWL2m .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.t8Hca-uPHYSRWL2m .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #ffc263;
  border: 3px solid #ffd390;
  box-shadow: 4px 4px 0 0 #ffd390;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .t8Hca-uPHYSRWL2m .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.t8Hca-uPHYSRWL2m .content-wrapper .card-wrapper .menu-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .t8Hca-uPHYSRWL2m .content-wrapper .card-wrapper .menu-section-title {
    margin-bottom: 24px;
  }
}
.t8Hca-uPHYSRWL2m .content-wrapper .card-wrapper .menu-text {
  margin-bottom: 0;
}
.t8Hca-uPHYSRWL2m .menu-section-title {
  color: #ff9063;
  text-align: center;
}
.t8Hca-uPHYSRWL2m .menu-text {
  color: #050f0f;
  text-align: center;
}
.t8Hca-uPHYSRWL2m .menu-section-title,
.t8Hca-uPHYSRWL2m .menu-section-btn {
  color: #000000;
}
.t8Hca-uPHYV1fb43 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffd390;
}
.t8Hca-uPHYV1fb43 .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHYV1fb43 .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPHYV1fb43 .row {
  position: relative;
  z-index: 2;
}
.t8Hca-uPHYV1fb43 .image-wrapper {
  padding-right: 76px;
  padding-top: 46px;
}
@media (max-width: 992px) {
  .t8Hca-uPHYV1fb43 .image-wrapper {
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 46px;
  }
}
.t8Hca-uPHYV1fb43 .image-wrapper .image-wrap {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .t8Hca-uPHYV1fb43 .image-wrapper .image-wrap {
    padding-right: 0;
  }
}
.t8Hca-uPHYV1fb43 .image-wrapper .image-wrap img {
  height: 650px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .t8Hca-uPHYV1fb43 .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.t8Hca-uPHYV1fb43 .image-wrapper .desc-wrap {
  position: relative;
  padding: 46px 32px;
  background-color: #de8700;
  margin-left: 16px;
  margin-top: -7rem;
}
@media (max-width: 992px) {
  .t8Hca-uPHYV1fb43 .image-wrapper .desc-wrap {
    margin-left: 0;
    padding: 32px 22px;
  }
}
.t8Hca-uPHYV1fb43 .image-wrapper .desc-wrap .menu-desc {
  margin-bottom: 0;
}
.t8Hca-uPHYV1fb43 .content-wrapper .menu-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .t8Hca-uPHYV1fb43 .content-wrapper .menu-section-title {
    margin-bottom: 46px;
  }
}
.t8Hca-uPHYV1fb43 .content-wrapper .text-wrapper .menu-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .t8Hca-uPHYV1fb43 .content-wrapper .text-wrapper .menu-text {
    width: 100%;
  }
}
.t8Hca-uPHYV1fb43 .menu-section-title {
  color: #212529;
}
.t8Hca-uPHYV1fb43 .menu-text {
  color: #51565c;
}
.t8Hca-uPHYV1fb43 .menu-desc {
  color: #ffffff;
  text-align: center;
}
.t8Hca-uPHYV1fb43 .menu-text,
.t8Hca-uPHYV1fb43 .text-wrapper {
  color: #000000;
}
.t8Hca-uPHYW01MAh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #de8700;
  overflow: hidden;
}
.t8Hca-uPHYW01MAh .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHYW01MAh .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .t8Hca-uPHYW01MAh .container {
    padding: 0 30px;
  }
}
.t8Hca-uPHYW01MAh .card {
  justify-content: center;
}
.t8Hca-uPHYW01MAh .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .t8Hca-uPHYW01MAh .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPHYW01MAh .content-wrapper {
    padding: 0;
  }
}
.t8Hca-uPHYW01MAh .content-wrapper .desc-wrapper .menu-desc {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-bottom: 60px;
  padding-left: 120px;
}
@media (max-width: 992px) {
  .t8Hca-uPHYW01MAh .content-wrapper .desc-wrapper .menu-desc {
    margin-bottom: 40px;
    padding-left: 60px;
  }
}
.t8Hca-uPHYW01MAh .content-wrapper .desc-wrapper .menu-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 90px;
  height: 1px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .t8Hca-uPHYW01MAh .content-wrapper .desc-wrapper .menu-desc::before {
    width: 40px;
  }
}
.t8Hca-uPHYW01MAh .content-wrapper .menu-section-title {
  margin-bottom: 40px;
}
.t8Hca-uPHYW01MAh .content-wrapper .menu-text {
  margin-bottom: 30px;
}
.t8Hca-uPHYW01MAh .menu-desc {
  color: #254b45;
}
.t8Hca-uPHYW01MAh .menu-section-title {
  color: #254b45;
}
.t8Hca-uPHYW01MAh .menu-text {
  color: #254b45;
}
.t8Hca-uPHYW01MAh .menu-desc,
.t8Hca-uPHYW01MAh .desc-wrapper {
  text-align: center;
  color: #ffffff;
}
.t8Hca-uPHYW01MAh .menu-section-title,
.t8Hca-uPHYW01MAh .menu-section-btn {
  color: #ffffff;
}
.t8Hca-uPIkyuPyRo {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPIkyuPyRo .row {
  justify-content: center;
}
.t8Hca-uPIkyuPyRo .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
    width: 100%;
  }
}
.t8Hca-uPIkyuPyRo .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:last-child {
  margin-bottom: 0;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:hover,
.t8Hca-uPIkyuPyRo .list .item-wrap:focus {
  transform: translateX(14px);
}
.t8Hca-uPIkyuPyRo .menu-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.t8Hca-uPIkyuPyRo .menu-section-title {
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .menu-text {
  color: #151e11;
}
.t8Hca-uPHXuRIY8q .navbar-dropdown {
  position: relative !important;
}
.t8Hca-uPHXuRIY8q .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.t8Hca-uPHXuRIY8q .dropdown-item:before {
  font-family: button2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.t8Hca-uPHXuRIY8q .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item:hover,
.t8Hca-uPHXuRIY8q .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item:hover span {
  color: white;
}
.t8Hca-uPHXuRIY8q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.t8Hca-uPHXuRIY8q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.t8Hca-uPHXuRIY8q .nav-link {
  position: relative;
}
.t8Hca-uPHXuRIY8q .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .container {
    flex-wrap: nowrap;
  }
}
.t8Hca-uPHXuRIY8q .iconfont-wrapper {
  color: #000c3f !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.t8Hca-uPHXuRIY8q .iconfont-wrapper:hover {
  opacity: .5;
}
.t8Hca-uPHXuRIY8q .dropdown-menu,
.t8Hca-uPHXuRIY8q .navbar.opened {
  background: #ffffff !important;
}
.t8Hca-uPHXuRIY8q .nav-item:focus,
.t8Hca-uPHXuRIY8q .nav-link:focus {
  outline: none;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item .menu-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item .menu-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.t8Hca-uPHXuRIY8q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.t8Hca-uPHXuRIY8q .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPHXuRIY8q .navbar.opened {
  transition: all 0.3s;
}
.t8Hca-uPHXuRIY8q .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.t8Hca-uPHXuRIY8q .navbar .navbar-logo img {
  width: auto;
}
.t8Hca-uPHXuRIY8q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed {
  justify-content: center;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .t8Hca-uPHXuRIY8q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .t8Hca-uPHXuRIY8q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.t8Hca-uPHXuRIY8q .navbar.navbar-short {
  min-height: 96px;
}
.t8Hca-uPHXuRIY8q .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.t8Hca-uPHXuRIY8q .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 2;
  word-wrap: break-word !important;
  white-space: normal;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar-brand {
    position: absolute;
    left: 45%;
  }
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption:hover,
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-logo a {
  outline: none;
}
.t8Hca-uPHXuRIY8q .navbar.opened .navbar-brand .navbar-caption:hover,
.t8Hca-uPHXuRIY8q .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item.active,
.t8Hca-uPHXuRIY8q .dropdown-item:active {
  background-color: transparent;
}
.t8Hca-uPHXuRIY8q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.t8Hca-uPHXuRIY8q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.t8Hca-uPHXuRIY8q ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .t8Hca-uPHXuRIY8q ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.t8Hca-uPHXuRIY8q .navbar-buttons {
  text-align: center;
  width: auto;
}
.t8Hca-uPHXuRIY8q .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 12px 24px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar-buttons .btn {
    padding: 12px 16px;
  }
}
.t8Hca-uPHXuRIY8q .navbar-buttons .btn .menu-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .t8Hca-uPHXuRIY8q .navbar-buttons .btn {
    width: auto !important;
  }
}
.t8Hca-uPHXuRIY8q button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q .navbar-dropdown {
  padding: 0 1rem;
}
.t8Hca-uPHXuRIY8q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.t8Hca-uPHXuRIY8q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .t8Hca-uPHXuRIY8q .navbar {
    height: 70px;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened {
    height: auto;
  }
  .t8Hca-uPHXuRIY8q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.t8Hca-uPHXuRIY8q .navbar-nav {
  margin: 0 auto;
}
.t8Hca-uPHXuRIY8q .nav-item {
  padding: 0;
  margin: 0;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link {
  padding: 8px 25px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link:hover,
.t8Hca-uPHXuRIY8q .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link:hover::after,
.t8Hca-uPHXuRIY8q .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.t8Hca-uPHXuRIY8q .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.t8Hca-uPHXuRIY8q .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .t8Hca-uPHXuRIY8q .navbar {
    justify-content: flex-start !important;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
@media (min-width: 1440px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    padding-right: 30% !important;
  }
}
@media (min-width: 1200px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    padding-right: 20% !important;
  }
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    width: 100%;
    padding-right: 40% !important;
    margin: 0;
  }
}
.t8Hca-uPHXuRIY8q .content-wrap {
  min-height: 110px;
}
.t8Hca-uPHZ6h4f17 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffd390;
}
.t8Hca-uPHZ6h4f17 .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHZ6h4f17 .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPHZ6h4f17 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .t8Hca-uPHZ6h4f17 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPHZ6h4f17 .container {
    padding: 0 20px;
  }
}
.t8Hca-uPHZ6h4f17 .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .t8Hca-uPHZ6h4f17 .content-wrapper {
    padding: 46px 0;
  }
}
.t8Hca-uPHZ6h4f17 .content-wrapper .menu-desc {
  margin-bottom: 32px;
}
.t8Hca-uPHZ6h4f17 .content-wrapper .menu-section-title {
  margin-bottom: 32px;
}
.t8Hca-uPHZ6h4f17 .content-wrapper .text-wrapper .menu-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .t8Hca-uPHZ6h4f17 .content-wrapper .text-wrapper .menu-text {
    margin-bottom: 20px;
    width: 100%;
  }
}
.t8Hca-uPHZ6h4f17 .content-wrapper .image-wrapper img {
  display: inline-flex;
  width: 50%;
  border-radius: 20px !important;
  object-fit: cover;
  height: 280px;
}
@media (max-width: 992px) {
  .t8Hca-uPHZ6h4f17 .content-wrapper .image-wrapper img {
    width: 100%;
  }
}
.t8Hca-uPHZ6h4f17 .content-wrapper .menu-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPHZ6h4f17 .content-wrapper .menu-section-btn {
    margin-top: 20px;
  }
}
.t8Hca-uPHZ6h4f17 .menu-section-title {
  color: #000000;
}
.t8Hca-uPHZ6h4f17 .menu-desc {
  color: #000000;
  text-align: center;
}
.t8Hca-uPHZ6h4f17 .menu-text,
.t8Hca-uPHZ6h4f17 .text-wrapper {
  color: #000000;
  text-align: center;
}
.t8Hca-uPHZ6h4f17 .menu-section-title,
.t8Hca-uPHZ6h4f17 .menu-section-btn,
.t8Hca-uPHZ6h4f17 .image-wrapper {
  text-align: center;
}
.t8Hca-uPHZenXSyj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #de8700;
}
.t8Hca-uPHZenXSyj .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHZenXSyj .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPHZenXSyj .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .t8Hca-uPHZenXSyj .title-wrapper {
    margin-bottom: 32px;
  }
}
.t8Hca-uPHZenXSyj .title-wrapper .menu-label {
  margin-bottom: 22px;
}
.t8Hca-uPHZenXSyj .title-wrapper .title-wrap .menu-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .t8Hca-uPHZenXSyj .title-wrapper .title-wrap .menu-section-title {
    width: 100%;
  }
}
.t8Hca-uPHZenXSyj .items-wrapper {
  justify-content: center;
  margin: 0 -24px;
}
.t8Hca-uPHZenXSyj .items-wrapper .item {
  padding: 0 24px;
  margin-bottom: 122px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .t8Hca-uPHZenXSyj .items-wrapper .item {
    margin-bottom: 32px;
  }
}
.t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding-right: 122px;
}
@media (max-width: 1440px) {
  .t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper {
    padding-right: 64px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper {
    padding-right: 0;
    display: block;
  }
}
.t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper .item-number {
  margin-bottom: 0;
  padding-right: 48px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper .item-number {
    padding-right: 0;
    margin-bottom: 16px;
  }
}
.t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper .item-content {
  width: 77%;
}
@media (max-width: 992px) {
  .t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
  }
}
.t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper .item-content .item-title {
    margin-bottom: 22px;
  }
}
.t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper .item-content .menu-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .t8Hca-uPHZenXSyj .items-wrapper .item .item-wrapper .item-content .menu-section-btn {
    margin-top: 22px;
  }
}
.t8Hca-uPHZenXSyj .image-wrapper {
  padding: 16px;
  border: 3px dashed #ffffff;
  transform: rotate(9deg);
}
@media (max-width: 992px) {
  .t8Hca-uPHZenXSyj .image-wrapper {
    transform: none;
  }
}
.t8Hca-uPHZenXSyj .image-wrapper img {
  height: 330px;
  object-fit: cover;
}
.t8Hca-uPHZenXSyj .menu-label {
  color: #ffd390;
}
.t8Hca-uPHZenXSyj .menu-section-title {
  color: #c10b02;
}
.t8Hca-uPHZenXSyj .item-number {
  color: #ffffff;
}
.t8Hca-uPHZenXSyj .item-title {
  color: #c10b02;
}
.t8Hca-uPHZenXSyj .item-text {
  color: #ffffff;
}
.t8Hca-uPHZenXSyj .menu-section-title,
.t8Hca-uPHZenXSyj .title-wrap {
  color: #ffffff;
}
.t8Hca-uPHZenXSyj .item-title,
.t8Hca-uPHZenXSyj .menu-section-btn {
  color: #ffffff;
}
.t8Hca-uPHZhVrAIy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffd390;
}
.t8Hca-uPHZhVrAIy .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHZhVrAIy .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .t8Hca-uPHZhVrAIy .container {
    padding: 0 16px;
  }
}
.t8Hca-uPHZhVrAIy .card {
  justify-content: center;
}
.t8Hca-uPHZhVrAIy .title-wrapper .menu-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #de8700;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .t8Hca-uPHZhVrAIy .title-wrapper .menu-section-title {
    margin-bottom: 32px;
  }
}
.t8Hca-uPHZhVrAIy .text-wrapper .menu-text {
  margin-bottom: 24px;
}
.t8Hca-uPHZhVrAIy .text-wrapper .menu-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.t8Hca-uPHZhVrAIy .menu-section-title {
  color: #000000;
}
.t8Hca-uPHZhVrAIy .menu-text {
  color: #000000;
}
.t8Hca-uPHZhVrAIy .menu-desc {
  color: #000000;
}
.t8Hca-uPHZhVrAIy .menu-section-title,
.t8Hca-uPHZhVrAIy .title-wrapper {
  color: #ffffff;
}
.t8Hca-uPHZkwH5V9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #de8700;
}
.t8Hca-uPHZkwH5V9 .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHZkwH5V9 .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPHZkwH5V9 .container-fluid {
  padding: 0;
}
@media (max-width: 1440px) {
  .t8Hca-uPHZkwH5V9 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPHZkwH5V9 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPHZkwH5V9 .container {
    padding: 0 16px;
  }
}
.t8Hca-uPHZkwH5V9 .image-wrapper {
  height: 100%;
}
.t8Hca-uPHZkwH5V9 .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .t8Hca-uPHZkwH5V9 .image-wrapper img {
    height: 400px;
    margin: 32px 0;
    border-radius: .3rem !important;
  }
}
.t8Hca-uPHZkwH5V9 .content-wrapper {
  padding: 150px 150px 150px 32px ;
}
@media (max-width: 1440px) {
  .t8Hca-uPHZkwH5V9 .content-wrapper {
    padding: 150px 96px 150px 32px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPHZkwH5V9 .content-wrapper {
    padding: 0 0 48px 0;
  }
}
.t8Hca-uPHZkwH5V9 .content-wrapper .menu-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .t8Hca-uPHZkwH5V9 .content-wrapper .menu-section-title {
    margin-bottom: 16px;
  }
}
.t8Hca-uPHZkwH5V9 .content-wrapper .menu-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .t8Hca-uPHZkwH5V9 .content-wrapper .menu-text {
    margin-bottom: 16px;
  }
}
.t8Hca-uPHZkwH5V9 .menu-section-title {
  color: #1c1c1c;
}
.t8Hca-uPHZkwH5V9 .menu-text {
  color: #ffffff;
  text-align: left;
}
.t8Hca-uPHZkwH5V9 .menu-section-title,
.t8Hca-uPHZkwH5V9 .menu-section-btn {
  color: #f9f8f8;
}
.t8Hca-uPIkyuPyRo {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPIkyuPyRo .row {
  justify-content: center;
}
.t8Hca-uPIkyuPyRo .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
    width: 100%;
  }
}
.t8Hca-uPIkyuPyRo .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:last-child {
  margin-bottom: 0;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:hover,
.t8Hca-uPIkyuPyRo .list .item-wrap:focus {
  transform: translateX(14px);
}
.t8Hca-uPIkyuPyRo .menu-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.t8Hca-uPIkyuPyRo .menu-section-title {
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .menu-text {
  color: #151e11;
}
.t8Hca-uPHXuRIY8q .navbar-dropdown {
  position: relative !important;
}
.t8Hca-uPHXuRIY8q .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.t8Hca-uPHXuRIY8q .dropdown-item:before {
  font-family: button2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.t8Hca-uPHXuRIY8q .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item:hover,
.t8Hca-uPHXuRIY8q .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item:hover span {
  color: white;
}
.t8Hca-uPHXuRIY8q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.t8Hca-uPHXuRIY8q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.t8Hca-uPHXuRIY8q .nav-link {
  position: relative;
}
.t8Hca-uPHXuRIY8q .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .container {
    flex-wrap: nowrap;
  }
}
.t8Hca-uPHXuRIY8q .iconfont-wrapper {
  color: #000c3f !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.t8Hca-uPHXuRIY8q .iconfont-wrapper:hover {
  opacity: .5;
}
.t8Hca-uPHXuRIY8q .dropdown-menu,
.t8Hca-uPHXuRIY8q .navbar.opened {
  background: #ffffff !important;
}
.t8Hca-uPHXuRIY8q .nav-item:focus,
.t8Hca-uPHXuRIY8q .nav-link:focus {
  outline: none;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item .menu-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item .menu-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.t8Hca-uPHXuRIY8q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.t8Hca-uPHXuRIY8q .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPHXuRIY8q .navbar.opened {
  transition: all 0.3s;
}
.t8Hca-uPHXuRIY8q .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.t8Hca-uPHXuRIY8q .navbar .navbar-logo img {
  width: auto;
}
.t8Hca-uPHXuRIY8q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed {
  justify-content: center;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .t8Hca-uPHXuRIY8q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .t8Hca-uPHXuRIY8q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.t8Hca-uPHXuRIY8q .navbar.navbar-short {
  min-height: 96px;
}
.t8Hca-uPHXuRIY8q .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.t8Hca-uPHXuRIY8q .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 2;
  word-wrap: break-word !important;
  white-space: normal;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar-brand {
    position: absolute;
    left: 45%;
  }
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption:hover,
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-logo a {
  outline: none;
}
.t8Hca-uPHXuRIY8q .navbar.opened .navbar-brand .navbar-caption:hover,
.t8Hca-uPHXuRIY8q .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item.active,
.t8Hca-uPHXuRIY8q .dropdown-item:active {
  background-color: transparent;
}
.t8Hca-uPHXuRIY8q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.t8Hca-uPHXuRIY8q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.t8Hca-uPHXuRIY8q ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .t8Hca-uPHXuRIY8q ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.t8Hca-uPHXuRIY8q .navbar-buttons {
  text-align: center;
  width: auto;
}
.t8Hca-uPHXuRIY8q .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 12px 24px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar-buttons .btn {
    padding: 12px 16px;
  }
}
.t8Hca-uPHXuRIY8q .navbar-buttons .btn .menu-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .t8Hca-uPHXuRIY8q .navbar-buttons .btn {
    width: auto !important;
  }
}
.t8Hca-uPHXuRIY8q button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q .navbar-dropdown {
  padding: 0 1rem;
}
.t8Hca-uPHXuRIY8q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.t8Hca-uPHXuRIY8q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .t8Hca-uPHXuRIY8q .navbar {
    height: 70px;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened {
    height: auto;
  }
  .t8Hca-uPHXuRIY8q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.t8Hca-uPHXuRIY8q .navbar-nav {
  margin: 0 auto;
}
.t8Hca-uPHXuRIY8q .nav-item {
  padding: 0;
  margin: 0;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link {
  padding: 8px 25px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link:hover,
.t8Hca-uPHXuRIY8q .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link:hover::after,
.t8Hca-uPHXuRIY8q .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.t8Hca-uPHXuRIY8q .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.t8Hca-uPHXuRIY8q .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .t8Hca-uPHXuRIY8q .navbar {
    justify-content: flex-start !important;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
@media (min-width: 1440px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    padding-right: 30% !important;
  }
}
@media (min-width: 1200px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    padding-right: 20% !important;
  }
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    width: 100%;
    padding-right: 40% !important;
    margin: 0;
  }
}
.t8Hca-uPHXuRIY8q .content-wrap {
  min-height: 110px;
}
.t8Hca-uPHZBVTTV1 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffd390;
}
.t8Hca-uPHZBVTTV1 .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPHZBVTTV1 .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPHZBVTTV1 form .btn {
  border-radius: 2rem;
  padding: 1rem 2rem;
}
.t8Hca-uPHZBVTTV1 h1 {
  font-weight: 500;
  line-height: 1;
}
.t8Hca-uPHZBVTTV1 .menu-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.t8Hca-uPHZBVTTV1 .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #272b2e;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.t8Hca-uPHZBVTTV1 .subtitle-wrap .menu-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #f96e47;
  font-size: 1.5rem;
}
.t8Hca-uPHZBVTTV1 .menu-section-title {
  color: #000000;
  text-align: left;
}
.t8Hca-uPHZBVTTV1 .menu-text,
.t8Hca-uPHZBVTTV1 .menu-section-btn {
  color: #000000;
}
.t8Hca-uPHZBVTTV1 .menu-section-subtitle,
.t8Hca-uPHZBVTTV1 .align-wrapper {
  color: #04492e;
}
.t8Hca-uPHZBVTTV1 .form-control,
.t8Hca-uPHZBVTTV1 .field-input {
  padding: 1rem;
  background-color: #ffffff;
  border: none !important;
  border-radius: 0;
  border-left: 2px solid #de8700 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.t8Hca-uPHZBVTTV1 .form-control::-webkit-input-placeholder,
.t8Hca-uPHZBVTTV1 .field-input::-webkit-input-placeholder,
.t8Hca-uPHZBVTTV1 .form-control::-webkit-input-placeholder,
.t8Hca-uPHZBVTTV1 .field-input::-webkit-input-placeholder {
  color: #000000;
}
.t8Hca-uPHZBVTTV1 .form-control:-moz-placeholder,
.t8Hca-uPHZBVTTV1 .field-input:-moz-placeholder,
.t8Hca-uPHZBVTTV1 .form-control:-moz-placeholder,
.t8Hca-uPHZBVTTV1 .field-input:-moz-placeholder {
  color: #000000;
}
.t8Hca-uPHZBVTTV1 .form-control:hover,
.t8Hca-uPHZBVTTV1 .field-input:hover,
.t8Hca-uPHZBVTTV1 .form-control:focus,
.t8Hca-uPHZBVTTV1 .field-input:focus {
  background-color: #ffffff;
  border-color: #ffd390 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.t8Hca-uPHZBVTTV1 .form-control:hover::-webkit-input-placeholder,
.t8Hca-uPHZBVTTV1 .field-input:hover::-webkit-input-placeholder,
.t8Hca-uPHZBVTTV1 .form-control:focus::-webkit-input-placeholder,
.t8Hca-uPHZBVTTV1 .field-input:focus::-webkit-input-placeholder,
.t8Hca-uPHZBVTTV1 .form-control:hover::-webkit-input-placeholder,
.t8Hca-uPHZBVTTV1 .field-input:hover::-webkit-input-placeholder,
.t8Hca-uPHZBVTTV1 .form-control:focus::-webkit-input-placeholder,
.t8Hca-uPHZBVTTV1 .field-input:focus::-webkit-input-placeholder {
  color: #6e6e6e;
}
.t8Hca-uPHZBVTTV1 .form-control:hover:-moz-placeholder,
.t8Hca-uPHZBVTTV1 .field-input:hover:-moz-placeholder,
.t8Hca-uPHZBVTTV1 .form-control:focus:-moz-placeholder,
.t8Hca-uPHZBVTTV1 .field-input:focus:-moz-placeholder,
.t8Hca-uPHZBVTTV1 .form-control:hover:-moz-placeholder,
.t8Hca-uPHZBVTTV1 .field-input:hover:-moz-placeholder,
.t8Hca-uPHZBVTTV1 .form-control:focus:-moz-placeholder,
.t8Hca-uPHZBVTTV1 .field-input:focus:-moz-placeholder {
  color: #6e6e6e;
}
.t8Hca-uPHZBVTTV1 .jq-number__spin:hover,
.t8Hca-uPHZBVTTV1 .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffd390 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.t8Hca-uPHZBVTTV1 .jq-number__spin {
  background-color: #ffffff;
  border-color: #de8700;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.t8Hca-uPHZBVTTV1 .jq-selectbox li,
.t8Hca-uPHZBVTTV1 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.t8Hca-uPHZBVTTV1 .jq-selectbox li:hover,
.t8Hca-uPHZBVTTV1 .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.t8Hca-uPHZBVTTV1 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.t8Hca-uPHZBVTTV1 .jq-number__spin.minus:hover:after,
.t8Hca-uPHZBVTTV1 .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.t8Hca-uPHZBVTTV1 .jq-selectbox .jq-selectbox__trigger-arrow,
.t8Hca-uPHZBVTTV1 .jq-number__spin.minus:after,
.t8Hca-uPHZBVTTV1 .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.t8Hca-uPHZBVTTV1 textarea {
  min-height: 150px;
}
.t8Hca-uPHZBVTTV1 input::-webkit-clear-button {
  display: none;
}
.t8Hca-uPHZBVTTV1 input::-webkit-inner-spin-button {
  display: none;
}
.t8Hca-uPHZBVTTV1 input::-webkit-outer-spin-button {
  display: none;
}
.t8Hca-uPHZBVTTV1 input::-webkit-calendar-picker-indicator {
  display: none;
}
.t8Hca-uPHZBVTTV1 LABEL {
  color: #000000;
}
@media (max-width: 767px) {
  .t8Hca-uPHZBVTTV1 .col-auto {
    margin: auto;
  }
}
.t8Hca-uPIkyuPyRo {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPIkyuPyRo .row {
  justify-content: center;
}
.t8Hca-uPIkyuPyRo .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
    width: 100%;
  }
}
.t8Hca-uPIkyuPyRo .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:last-child {
  margin-bottom: 0;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:hover,
.t8Hca-uPIkyuPyRo .list .item-wrap:focus {
  transform: translateX(14px);
}
.t8Hca-uPIkyuPyRo .menu-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.t8Hca-uPIkyuPyRo .menu-section-title {
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .menu-text {
  color: #151e11;
}
.t8Hca-uPHXuRIY8q .navbar-dropdown {
  position: relative !important;
}
.t8Hca-uPHXuRIY8q .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.t8Hca-uPHXuRIY8q .dropdown-item:before {
  font-family: button2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.t8Hca-uPHXuRIY8q .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item:hover,
.t8Hca-uPHXuRIY8q .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item:hover span {
  color: white;
}
.t8Hca-uPHXuRIY8q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.t8Hca-uPHXuRIY8q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.t8Hca-uPHXuRIY8q .nav-link {
  position: relative;
}
.t8Hca-uPHXuRIY8q .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .container {
    flex-wrap: nowrap;
  }
}
.t8Hca-uPHXuRIY8q .iconfont-wrapper {
  color: #000c3f !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.t8Hca-uPHXuRIY8q .iconfont-wrapper:hover {
  opacity: .5;
}
.t8Hca-uPHXuRIY8q .dropdown-menu,
.t8Hca-uPHXuRIY8q .navbar.opened {
  background: #ffffff !important;
}
.t8Hca-uPHXuRIY8q .nav-item:focus,
.t8Hca-uPHXuRIY8q .nav-link:focus {
  outline: none;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item .menu-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.t8Hca-uPHXuRIY8q .dropdown .dropdown-menu .dropdown-item .menu-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPHXuRIY8q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.t8Hca-uPHXuRIY8q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.t8Hca-uPHXuRIY8q .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPHXuRIY8q .navbar.opened {
  transition: all 0.3s;
}
.t8Hca-uPHXuRIY8q .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.t8Hca-uPHXuRIY8q .navbar .navbar-logo img {
  width: auto;
}
.t8Hca-uPHXuRIY8q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed {
  justify-content: center;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.t8Hca-uPHXuRIY8q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .t8Hca-uPHXuRIY8q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .t8Hca-uPHXuRIY8q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .t8Hca-uPHXuRIY8q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .t8Hca-uPHXuRIY8q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.t8Hca-uPHXuRIY8q .navbar.navbar-short {
  min-height: 96px;
}
.t8Hca-uPHXuRIY8q .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.t8Hca-uPHXuRIY8q .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 2;
  word-wrap: break-word !important;
  white-space: normal;
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar-brand {
    position: absolute;
    left: 45%;
  }
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption:hover,
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .navbar-brand .navbar-logo a {
  outline: none;
}
.t8Hca-uPHXuRIY8q .navbar.opened .navbar-brand .navbar-caption:hover,
.t8Hca-uPHXuRIY8q .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .dropdown-item.active,
.t8Hca-uPHXuRIY8q .dropdown-item:active {
  background-color: transparent;
}
.t8Hca-uPHXuRIY8q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.t8Hca-uPHXuRIY8q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.t8Hca-uPHXuRIY8q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.t8Hca-uPHXuRIY8q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.t8Hca-uPHXuRIY8q ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .t8Hca-uPHXuRIY8q ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.t8Hca-uPHXuRIY8q .navbar-buttons {
  text-align: center;
  width: auto;
}
.t8Hca-uPHXuRIY8q .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 12px 24px;
}
@media (max-width: 992px) {
  .t8Hca-uPHXuRIY8q .navbar-buttons .btn {
    padding: 12px 16px;
  }
}
.t8Hca-uPHXuRIY8q .navbar-buttons .btn .menu-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .t8Hca-uPHXuRIY8q .navbar-buttons .btn {
    width: auto !important;
  }
}
.t8Hca-uPHXuRIY8q button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPHXuRIY8q button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.t8Hca-uPHXuRIY8q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPHXuRIY8q .navbar-dropdown {
  padding: 0 1rem;
}
.t8Hca-uPHXuRIY8q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.t8Hca-uPHXuRIY8q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .t8Hca-uPHXuRIY8q .navbar {
    height: 70px;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened {
    height: auto;
  }
  .t8Hca-uPHXuRIY8q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.t8Hca-uPHXuRIY8q .navbar-nav {
  margin: 0 auto;
}
.t8Hca-uPHXuRIY8q .nav-item {
  padding: 0;
  margin: 0;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link {
  padding: 8px 25px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link:hover,
.t8Hca-uPHXuRIY8q .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link:hover::after,
.t8Hca-uPHXuRIY8q .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.t8Hca-uPHXuRIY8q .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.t8Hca-uPHXuRIY8q .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.t8Hca-uPHXuRIY8q .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .t8Hca-uPHXuRIY8q .navbar {
    justify-content: flex-start !important;
  }
  .t8Hca-uPHXuRIY8q .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .t8Hca-uPHXuRIY8q .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
@media (min-width: 1440px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    padding-right: 30% !important;
  }
}
@media (min-width: 1200px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    padding-right: 20% !important;
  }
}
@media (min-width: 992px) {
  .t8Hca-uPHXuRIY8q .nav-dropdown {
    width: 100%;
    padding-right: 40% !important;
    margin: 0;
  }
}
.t8Hca-uPHXuRIY8q .content-wrap {
  min-height: 110px;
}
.t8Hca-uPHZYCXmsA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #de8700;
}
.t8Hca-uPHZYCXmsA .menu-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.t8Hca-uPHZYCXmsA section {
  position: relative;
}
.t8Hca-uPHZYCXmsA .menu-section-title {
  color: #ffffff;
  text-align: center;
}
.t8Hca-uPHZYCXmsA .svg1 {
  width: 220px;
  position: absolute;
  z-index: 10;
  right: 10%;
  bottom: -45%;
}
@media (max-width: 600px) {
  .t8Hca-uPHZYCXmsA .svg1 {
    width: 150px;
  }
}
.t8Hca-uPHZYCXmsA .st1 {
  fill: #b5310b;
}
.t8Hca-uPHZYCXmsA .st0 {
  fill: #ffc263;
}
.t8Hca-uPI0ezhrS8 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffd390;
}
.t8Hca-uPIkyuPyRo {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPIkyuPyRo .row {
  justify-content: center;
}
.t8Hca-uPIkyuPyRo .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
    width: 100%;
  }
}
.t8Hca-uPIkyuPyRo .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:last-child {
  margin-bottom: 0;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:hover,
.t8Hca-uPIkyuPyRo .list .item-wrap:focus {
  transform: translateX(14px);
}
.t8Hca-uPIkyuPyRo .menu-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.t8Hca-uPIkyuPyRo .menu-section-title {
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .menu-text {
  color: #151e11;
}
.t8Hca-uPI0EQqyDE .navbar-dropdown {
  position: relative !important;
}
.t8Hca-uPI0EQqyDE .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .t8Hca-uPI0EQqyDE .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.t8Hca-uPI0EQqyDE .dropdown-item:before {
  font-family: button2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPI0EQqyDE .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.t8Hca-uPI0EQqyDE .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.t8Hca-uPI0EQqyDE .dropdown-item:hover,
.t8Hca-uPI0EQqyDE .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.t8Hca-uPI0EQqyDE .dropdown-item:hover span {
  color: white;
}
.t8Hca-uPI0EQqyDE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.t8Hca-uPI0EQqyDE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.t8Hca-uPI0EQqyDE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.t8Hca-uPI0EQqyDE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.t8Hca-uPI0EQqyDE .nav-link {
  position: relative;
}
.t8Hca-uPI0EQqyDE .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .t8Hca-uPI0EQqyDE .container {
    flex-wrap: nowrap;
  }
}
.t8Hca-uPI0EQqyDE .iconfont-wrapper {
  color: #000c3f !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.t8Hca-uPI0EQqyDE .iconfont-wrapper:hover {
  opacity: .5;
}
.t8Hca-uPI0EQqyDE .dropdown-menu,
.t8Hca-uPI0EQqyDE .navbar.opened {
  background: #ffffff !important;
}
.t8Hca-uPI0EQqyDE .nav-item:focus,
.t8Hca-uPI0EQqyDE .nav-link:focus {
  outline: none;
}
.t8Hca-uPI0EQqyDE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPI0EQqyDE .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.t8Hca-uPI0EQqyDE .dropdown .dropdown-menu .dropdown-item .menu-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.t8Hca-uPI0EQqyDE .dropdown .dropdown-menu .dropdown-item .menu-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPI0EQqyDE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.t8Hca-uPI0EQqyDE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.t8Hca-uPI0EQqyDE .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPI0EQqyDE .navbar.opened {
  transition: all 0.3s;
}
.t8Hca-uPI0EQqyDE .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.t8Hca-uPI0EQqyDE .navbar .navbar-logo img {
  width: auto;
}
.t8Hca-uPI0EQqyDE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.t8Hca-uPI0EQqyDE .navbar.collapsed {
  justify-content: center;
}
.t8Hca-uPI0EQqyDE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.t8Hca-uPI0EQqyDE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .t8Hca-uPI0EQqyDE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.t8Hca-uPI0EQqyDE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.t8Hca-uPI0EQqyDE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.t8Hca-uPI0EQqyDE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.t8Hca-uPI0EQqyDE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.t8Hca-uPI0EQqyDE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.t8Hca-uPI0EQqyDE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .t8Hca-uPI0EQqyDE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .t8Hca-uPI0EQqyDE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .t8Hca-uPI0EQqyDE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .t8Hca-uPI0EQqyDE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .t8Hca-uPI0EQqyDE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .t8Hca-uPI0EQqyDE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .t8Hca-uPI0EQqyDE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .t8Hca-uPI0EQqyDE .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .t8Hca-uPI0EQqyDE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .t8Hca-uPI0EQqyDE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .t8Hca-uPI0EQqyDE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.t8Hca-uPI0EQqyDE .navbar.navbar-short {
  min-height: 96px;
}
.t8Hca-uPI0EQqyDE .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.t8Hca-uPI0EQqyDE .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 2;
  word-wrap: break-word !important;
  white-space: normal;
}
@media (min-width: 992px) {
  .t8Hca-uPI0EQqyDE .navbar-brand {
    position: absolute;
    left: 45%;
  }
}
.t8Hca-uPI0EQqyDE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.t8Hca-uPI0EQqyDE .navbar-brand .navbar-caption:hover,
.t8Hca-uPI0EQqyDE .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPI0EQqyDE .navbar-brand .navbar-logo a {
  outline: none;
}
.t8Hca-uPI0EQqyDE .navbar.opened .navbar-brand .navbar-caption:hover,
.t8Hca-uPI0EQqyDE .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPI0EQqyDE .dropdown-item.active,
.t8Hca-uPI0EQqyDE .dropdown-item:active {
  background-color: transparent;
}
.t8Hca-uPI0EQqyDE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.t8Hca-uPI0EQqyDE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.t8Hca-uPI0EQqyDE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.t8Hca-uPI0EQqyDE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPI0EQqyDE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.t8Hca-uPI0EQqyDE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.t8Hca-uPI0EQqyDE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.t8Hca-uPI0EQqyDE ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .t8Hca-uPI0EQqyDE ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.t8Hca-uPI0EQqyDE .navbar-buttons {
  text-align: center;
  width: auto;
}
.t8Hca-uPI0EQqyDE .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 12px 24px;
}
@media (max-width: 992px) {
  .t8Hca-uPI0EQqyDE .navbar-buttons .btn {
    padding: 12px 16px;
  }
}
.t8Hca-uPI0EQqyDE .navbar-buttons .btn .menu-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .t8Hca-uPI0EQqyDE .navbar-buttons .btn {
    width: auto !important;
  }
}
.t8Hca-uPI0EQqyDE button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPI0EQqyDE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.t8Hca-uPI0EQqyDE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.t8Hca-uPI0EQqyDE button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPI0EQqyDE button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPI0EQqyDE button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.t8Hca-uPI0EQqyDE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPI0EQqyDE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.t8Hca-uPI0EQqyDE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.t8Hca-uPI0EQqyDE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPI0EQqyDE .navbar-dropdown {
  padding: 0 1rem;
}
.t8Hca-uPI0EQqyDE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.t8Hca-uPI0EQqyDE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .t8Hca-uPI0EQqyDE .navbar {
    height: 70px;
  }
  .t8Hca-uPI0EQqyDE .navbar.opened {
    height: auto;
  }
  .t8Hca-uPI0EQqyDE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.t8Hca-uPI0EQqyDE .navbar-nav {
  margin: 0 auto;
}
.t8Hca-uPI0EQqyDE .nav-item {
  padding: 0;
  margin: 0;
}
.t8Hca-uPI0EQqyDE .nav-item .nav-link {
  padding: 8px 25px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.t8Hca-uPI0EQqyDE .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.t8Hca-uPI0EQqyDE .nav-item .nav-link:hover,
.t8Hca-uPI0EQqyDE .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.t8Hca-uPI0EQqyDE .nav-item .nav-link:hover::after,
.t8Hca-uPI0EQqyDE .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.t8Hca-uPI0EQqyDE .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.t8Hca-uPI0EQqyDE .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.t8Hca-uPI0EQqyDE .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .t8Hca-uPI0EQqyDE .navbar {
    justify-content: flex-start !important;
  }
  .t8Hca-uPI0EQqyDE .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .t8Hca-uPI0EQqyDE .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .t8Hca-uPI0EQqyDE .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .t8Hca-uPI0EQqyDE .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .t8Hca-uPI0EQqyDE .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .t8Hca-uPI0EQqyDE .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
@media (min-width: 1440px) {
  .t8Hca-uPI0EQqyDE .nav-dropdown {
    padding-right: 30% !important;
  }
}
@media (min-width: 1200px) {
  .t8Hca-uPI0EQqyDE .nav-dropdown {
    padding-right: 20% !important;
  }
}
@media (min-width: 992px) {
  .t8Hca-uPI0EQqyDE .nav-dropdown {
    width: 100%;
    padding-right: 40% !important;
    margin: 0;
  }
}
.t8Hca-uPI0EQqyDE .content-wrap {
  min-height: 110px;
}
.t8Hca-uPI0ET0Vw8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #de8700;
}
.t8Hca-uPI0ET0Vw8 .menu-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.t8Hca-uPI0ET0Vw8 section {
  position: relative;
}
.t8Hca-uPI0ET0Vw8 .menu-section-title {
  color: #ffffff;
  text-align: center;
}
.t8Hca-uPI0ET0Vw8 .svg1 {
  width: 220px;
  position: absolute;
  z-index: 10;
  right: 10%;
  bottom: -45%;
}
@media (max-width: 600px) {
  .t8Hca-uPI0ET0Vw8 .svg1 {
    width: 150px;
  }
}
.t8Hca-uPI0ET0Vw8 .st1 {
  fill: #b5310b;
}
.t8Hca-uPI0ET0Vw8 .st0 {
  fill: #ffc263;
}
.t8Hca-uPI0EU58mA {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffd390;
}
.t8Hca-uPIkyuPyRo {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPIkyuPyRo .row {
  justify-content: center;
}
.t8Hca-uPIkyuPyRo .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
    width: 100%;
  }
}
.t8Hca-uPIkyuPyRo .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:last-child {
  margin-bottom: 0;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:hover,
.t8Hca-uPIkyuPyRo .list .item-wrap:focus {
  transform: translateX(14px);
}
.t8Hca-uPIkyuPyRo .menu-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.t8Hca-uPIkyuPyRo .menu-section-title {
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .menu-text {
  color: #151e11;
}
.t8Hca-uPI0Gz47JB .navbar-dropdown {
  position: relative !important;
}
.t8Hca-uPI0Gz47JB .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .t8Hca-uPI0Gz47JB .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.t8Hca-uPI0Gz47JB .dropdown-item:before {
  font-family: button2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPI0Gz47JB .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.t8Hca-uPI0Gz47JB .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.t8Hca-uPI0Gz47JB .dropdown-item:hover,
.t8Hca-uPI0Gz47JB .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.t8Hca-uPI0Gz47JB .dropdown-item:hover span {
  color: white;
}
.t8Hca-uPI0Gz47JB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.t8Hca-uPI0Gz47JB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.t8Hca-uPI0Gz47JB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.t8Hca-uPI0Gz47JB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.t8Hca-uPI0Gz47JB .nav-link {
  position: relative;
}
.t8Hca-uPI0Gz47JB .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .t8Hca-uPI0Gz47JB .container {
    flex-wrap: nowrap;
  }
}
.t8Hca-uPI0Gz47JB .iconfont-wrapper {
  color: #000c3f !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.t8Hca-uPI0Gz47JB .iconfont-wrapper:hover {
  opacity: .5;
}
.t8Hca-uPI0Gz47JB .dropdown-menu,
.t8Hca-uPI0Gz47JB .navbar.opened {
  background: #ffffff !important;
}
.t8Hca-uPI0Gz47JB .nav-item:focus,
.t8Hca-uPI0Gz47JB .nav-link:focus {
  outline: none;
}
.t8Hca-uPI0Gz47JB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPI0Gz47JB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.t8Hca-uPI0Gz47JB .dropdown .dropdown-menu .dropdown-item .menu-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.t8Hca-uPI0Gz47JB .dropdown .dropdown-menu .dropdown-item .menu-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.t8Hca-uPI0Gz47JB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.t8Hca-uPI0Gz47JB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.t8Hca-uPI0Gz47JB .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPI0Gz47JB .navbar.opened {
  transition: all 0.3s;
}
.t8Hca-uPI0Gz47JB .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.t8Hca-uPI0Gz47JB .navbar .navbar-logo img {
  width: auto;
}
.t8Hca-uPI0Gz47JB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.t8Hca-uPI0Gz47JB .navbar.collapsed {
  justify-content: center;
}
.t8Hca-uPI0Gz47JB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.t8Hca-uPI0Gz47JB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .t8Hca-uPI0Gz47JB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.t8Hca-uPI0Gz47JB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.t8Hca-uPI0Gz47JB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.t8Hca-uPI0Gz47JB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.t8Hca-uPI0Gz47JB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.t8Hca-uPI0Gz47JB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.t8Hca-uPI0Gz47JB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .t8Hca-uPI0Gz47JB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .t8Hca-uPI0Gz47JB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .t8Hca-uPI0Gz47JB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .t8Hca-uPI0Gz47JB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .t8Hca-uPI0Gz47JB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .t8Hca-uPI0Gz47JB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .t8Hca-uPI0Gz47JB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .t8Hca-uPI0Gz47JB .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .t8Hca-uPI0Gz47JB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .t8Hca-uPI0Gz47JB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .t8Hca-uPI0Gz47JB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.t8Hca-uPI0Gz47JB .navbar.navbar-short {
  min-height: 96px;
}
.t8Hca-uPI0Gz47JB .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.t8Hca-uPI0Gz47JB .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 2;
  word-wrap: break-word !important;
  white-space: normal;
}
@media (min-width: 992px) {
  .t8Hca-uPI0Gz47JB .navbar-brand {
    position: absolute;
    left: 45%;
  }
}
.t8Hca-uPI0Gz47JB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.t8Hca-uPI0Gz47JB .navbar-brand .navbar-caption:hover,
.t8Hca-uPI0Gz47JB .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPI0Gz47JB .navbar-brand .navbar-logo a {
  outline: none;
}
.t8Hca-uPI0Gz47JB .navbar.opened .navbar-brand .navbar-caption:hover,
.t8Hca-uPI0Gz47JB .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.t8Hca-uPI0Gz47JB .dropdown-item.active,
.t8Hca-uPI0Gz47JB .dropdown-item:active {
  background-color: transparent;
}
.t8Hca-uPI0Gz47JB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.t8Hca-uPI0Gz47JB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.t8Hca-uPI0Gz47JB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.t8Hca-uPI0Gz47JB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPI0Gz47JB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.t8Hca-uPI0Gz47JB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.t8Hca-uPI0Gz47JB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.t8Hca-uPI0Gz47JB ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .t8Hca-uPI0Gz47JB ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.t8Hca-uPI0Gz47JB .navbar-buttons {
  text-align: center;
  width: auto;
}
.t8Hca-uPI0Gz47JB .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 12px 24px;
}
@media (max-width: 992px) {
  .t8Hca-uPI0Gz47JB .navbar-buttons .btn {
    padding: 12px 16px;
  }
}
.t8Hca-uPI0Gz47JB .navbar-buttons .btn .menu-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .t8Hca-uPI0Gz47JB .navbar-buttons .btn {
    width: auto !important;
  }
}
.t8Hca-uPI0Gz47JB button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.t8Hca-uPI0Gz47JB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.t8Hca-uPI0Gz47JB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.t8Hca-uPI0Gz47JB button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPI0Gz47JB button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.t8Hca-uPI0Gz47JB button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.t8Hca-uPI0Gz47JB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPI0Gz47JB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.t8Hca-uPI0Gz47JB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.t8Hca-uPI0Gz47JB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.t8Hca-uPI0Gz47JB .navbar-dropdown {
  padding: 0 1rem;
}
.t8Hca-uPI0Gz47JB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.t8Hca-uPI0Gz47JB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .t8Hca-uPI0Gz47JB .navbar {
    height: 70px;
  }
  .t8Hca-uPI0Gz47JB .navbar.opened {
    height: auto;
  }
  .t8Hca-uPI0Gz47JB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.t8Hca-uPI0Gz47JB .navbar-nav {
  margin: 0 auto;
}
.t8Hca-uPI0Gz47JB .nav-item {
  padding: 0;
  margin: 0;
}
.t8Hca-uPI0Gz47JB .nav-item .nav-link {
  padding: 8px 25px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.t8Hca-uPI0Gz47JB .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.t8Hca-uPI0Gz47JB .nav-item .nav-link:hover,
.t8Hca-uPI0Gz47JB .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.t8Hca-uPI0Gz47JB .nav-item .nav-link:hover::after,
.t8Hca-uPI0Gz47JB .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.t8Hca-uPI0Gz47JB .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.t8Hca-uPI0Gz47JB .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.t8Hca-uPI0Gz47JB .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .t8Hca-uPI0Gz47JB .navbar {
    justify-content: flex-start !important;
  }
  .t8Hca-uPI0Gz47JB .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .t8Hca-uPI0Gz47JB .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .t8Hca-uPI0Gz47JB .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .t8Hca-uPI0Gz47JB .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .t8Hca-uPI0Gz47JB .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .t8Hca-uPI0Gz47JB .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
@media (min-width: 1440px) {
  .t8Hca-uPI0Gz47JB .nav-dropdown {
    padding-right: 30% !important;
  }
}
@media (min-width: 1200px) {
  .t8Hca-uPI0Gz47JB .nav-dropdown {
    padding-right: 20% !important;
  }
}
@media (min-width: 992px) {
  .t8Hca-uPI0Gz47JB .nav-dropdown {
    width: 100%;
    padding-right: 40% !important;
    margin: 0;
  }
}
.t8Hca-uPI0Gz47JB .content-wrap {
  min-height: 110px;
}
.t8Hca-uPI0GAlf77 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #de8700;
}
.t8Hca-uPI0GAlf77 .menu-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.t8Hca-uPI0GAlf77 section {
  position: relative;
}
.t8Hca-uPI0GAlf77 .menu-section-title {
  color: #ffffff;
  text-align: center;
}
.t8Hca-uPI0GAlf77 .svg1 {
  width: 220px;
  position: absolute;
  z-index: 10;
  right: 10%;
  bottom: -45%;
}
@media (max-width: 600px) {
  .t8Hca-uPI0GAlf77 .svg1 {
    width: 150px;
  }
}
.t8Hca-uPI0GAlf77 .st1 {
  fill: #b5310b;
}
.t8Hca-uPI0GAlf77 .st0 {
  fill: #ffc263;
}
.t8Hca-uPI0GBiqqr {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffd390;
}
.t8Hca-uPIkyuPyRo {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image.disabled {
  display: none;
}
.t8Hca-uPIkyuPyRo .menu-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.t8Hca-uPIkyuPyRo .row {
  justify-content: center;
}
.t8Hca-uPIkyuPyRo .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .menu-section-title {
    margin-bottom: 30px;
  }
}
.t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .t8Hca-uPIkyuPyRo .title-wrapper .text-wrapper .menu-text {
    width: 100%;
  }
}
.t8Hca-uPIkyuPyRo .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:last-child {
  margin-bottom: 0;
}
.t8Hca-uPIkyuPyRo .list .item-wrap:hover,
.t8Hca-uPIkyuPyRo .list .item-wrap:focus {
  transform: translateX(14px);
}
.t8Hca-uPIkyuPyRo .menu-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.t8Hca-uPIkyuPyRo .menu-section-title {
  color: #151e11;
}
.t8Hca-uPIkyuPyRo .menu-text {
  color: #151e11;
}

/* Base Cookie Banner */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #424a4d;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #424a4d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    all: unset;
    padding: 18px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    display: inline-block;
}

.cookie-btn.Accept {
    background-color: #28a745 !important;
}

.cookie-btn.ignore {
    background-color: #dc3545 !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cookie-btn {
        width: 100%;
        padding: 10px 0;
    }
}
/* Finish Cookie Banner */
/* logoanimations */
@keyframes stretchX {
    0%, 100% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.2);
    }
}

.navbar-brand {
    animation: stretchX 1.5s ease-in-out 1;
}
/* endlogoanimations */

/* mainanimations */
/* Style 12: blur filter */
a, button, .btn {
  transition: filter 0.2s ease;
}
a:active, button:active, .btn:active {
  filter: blur(2px);
}
/* endmainanimations */
