body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.2rem;
  line-height: 1.2;
}
.display-1 > .alignment-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.6rem;
  line-height: 1.2;
}
.display-2 > .alignment-iconfont {
  font-size: 4.5rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .alignment-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
}
.display-5 > .alignment-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .alignment-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 60px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 60px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 60px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 60px;
}
.bg-primary {
  background-color: #b34700 !important;
}
.bg-success {
  background-color: #b34700 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ffd263 !important;
}
.bg-danger {
  background-color: #b34700 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #b34700 !important;
  border-color: #b34700 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #5c2500 !important;
  border-color: #5c2500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #5c2500 !important;
  border-color: #5c2500 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d4fe00 !important;
  border-color: #d4fe00 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8ca700 !important;
  border-color: #8ca700 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #000000 !important;
  background-color: #8ca700 !important;
  border-color: #8ca700 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #b34700 !important;
  border-color: #b34700 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #5c2500 !important;
  border-color: #5c2500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #5c2500 !important;
  border-color: #5c2500 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffd263 !important;
  border-color: #ffd263 !important;
  color: #634600 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ffb90c !important;
  border-color: #ffb90c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #634600 !important;
  background-color: #ffb90c !important;
  border-color: #ffb90c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b34700 !important;
  border-color: #b34700 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #5c2500 !important;
  border-color: #5c2500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #5c2500 !important;
  border-color: #5c2500 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b34700;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #5c2500 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #b34700 !important;
  border-color: #b34700 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d4fe00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8ca700 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #000000 !important;
  background-color: #d4fe00 !important;
  border-color: #d4fe00 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #b34700;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #5c2500 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b34700 !important;
  border-color: #b34700 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffd263;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffb90c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #634600 !important;
  background-color: #ffd263 !important;
  border-color: #ffd263 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b34700;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #5c2500 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b34700 !important;
  border-color: #b34700 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #b34700 !important;
}
.text-secondary {
  color: #d4fe00 !important;
}
.text-success {
  color: #b34700 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ffd263 !important;
}
.text-danger {
  color: #b34700 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #4d1f00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #7f9800 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #4d1f00 !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: #fcb300 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4d1f00 !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: #b34700;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ffd263;
}
.alert-danger {
  background-color: #b34700;
}
.alignment-gallery-filter li.active .btn {
  background-color: #b34700;
  border-color: #b34700;
  color: #ffffff;
}
.alignment-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #b34700;
}
.alignment-plan-header.bg-primary .alignment-plan-subtitle,
.alignment-plan-header.bg-primary .alignment-plan-price-desc {
  color: #ff8433;
}
.alignment-plan-header.bg-success .alignment-plan-subtitle,
.alignment-plan-header.bg-success .alignment-plan-price-desc {
  color: #ff8433;
}
.alignment-plan-header.bg-info .alignment-plan-subtitle,
.alignment-plan-header.bg-info .alignment-plan-price-desc {
  color: #ffffff;
}
.alignment-plan-header.bg-warning .alignment-plan-subtitle,
.alignment-plan-header.bg-warning .alignment-plan-price-desc {
  color: #ffffff;
}
.alignment-plan-header.bg-danger .alignment-plan-subtitle,
.alignment-plan-header.bg-danger .alignment-plan-price-desc {
  color: #ff8433;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .alignment-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: #b34700 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .alignment-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #b34700;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b34700;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #b34700;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #b34700;
  border-bottom-color: #b34700;
}
.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: #b34700 !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: #d4fe00 !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='%23b34700' %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;
}
.alignment-section-btn .btn,
.alignment-section-btn-main .btn {
  line-height: 165%;
  letter-spacing: 1px;
  padding: 20px 40px;
  box-shadow: none;
}
@media (max-width: 992px) {
  .alignment-section-btn .btn,
  .alignment-section-btn-main .btn {
    padding: 14px 40px;
  }
}
.alignment-section-btn .btn:hover,
.alignment-section-btn-main .btn:hover,
.alignment-section-btn .btn:focus,
.alignment-section-btn-main .btn:focus {
  box-shadow: none;
}
.alignment-section-btn .btn-primary-outline,
.alignment-section-btn-main .btn-primary-outline {
  border: 1px solid #b34700;
}
.alignment-section-btn .btn-primary-outline:hover,
.alignment-section-btn-main .btn-primary-outline:hover,
.alignment-section-btn .btn-primary-outline:focus,
.alignment-section-btn-main .btn-primary-outline:focus {
  color: #ffffff !important;
  background-color: #b34700 !important;
}
.alignment-section-btn .btn-secondary-outline,
.alignment-section-btn-main .btn-secondary-outline {
  border: 1px solid #d4fe00;
}
.alignment-section-btn .btn-secondary-outline:hover,
.alignment-section-btn-main .btn-secondary-outline:hover,
.alignment-section-btn .btn-secondary-outline:focus,
.alignment-section-btn-main .btn-secondary-outline:focus {
  color: #b34700 !important;
  background-color: #d4fe00 !important;
}
.alignment-section-btn .btn-success-outline,
.alignment-section-btn-main .btn-success-outline {
  border: 1px solid #b34700;
}
.alignment-section-btn .btn-success-outline:hover,
.alignment-section-btn-main .btn-success-outline:hover,
.alignment-section-btn .btn-success-outline:focus,
.alignment-section-btn-main .btn-success-outline:focus {
  color: #ffffff !important;
  background-color: #b34700 !important;
}
.alignment-section-btn .btn-info-outline,
.alignment-section-btn-main .btn-info-outline {
  border: 1px solid #ffffff;
}
.alignment-section-btn .btn-info-outline:hover,
.alignment-section-btn-main .btn-info-outline:hover,
.alignment-section-btn .btn-info-outline:focus,
.alignment-section-btn-main .btn-info-outline:focus {
  color: #b34700 !important;
  background-color: #ffffff !important;
}
.alignment-section-btn .btn-warning-outline,
.alignment-section-btn-main .btn-warning-outline {
  border: 1px solid #ffd263;
}
.alignment-section-btn .btn-warning-outline:hover,
.alignment-section-btn-main .btn-warning-outline:hover,
.alignment-section-btn .btn-warning-outline:focus,
.alignment-section-btn-main .btn-warning-outline:focus {
  color: #b34700 !important;
  background-color: #ffd263 !important;
}
.alignment-section-btn .btn-danger-outline,
.alignment-section-btn-main .btn-danger-outline {
  border: 1px solid #b34700;
}
.alignment-section-btn .btn-danger-outline:hover,
.alignment-section-btn-main .btn-danger-outline:hover,
.alignment-section-btn .btn-danger-outline:focus,
.alignment-section-btn-main .btn-danger-outline:focus {
  color: #ffffff !important;
  background-color: #b34700 !important;
}
.alignment-section-btn .btn-black-outline,
.alignment-section-btn-main .btn-black-outline {
  border: 1px solid #000000;
}
.alignment-section-btn .btn-black-outline:hover,
.alignment-section-btn-main .btn-black-outline:hover,
.alignment-section-btn .btn-black-outline:focus,
.alignment-section-btn-main .btn-black-outline:focus {
  color: #ffffff !important;
  background-color: #000000!important;
}
.alignment-section-btn .btn-white-outline,
.alignment-section-btn-main .btn-white-outline {
  border: 1px solid #ffffff;
}
.alignment-section-btn .btn-white-outline:hover,
.alignment-section-btn-main .btn-white-outline:hover,
.alignment-section-btn .btn-white-outline:focus,
.alignment-section-btn-main .btn-white-outline:focus {
  color: #b34700 !important;
  background-color: #ffffff !important;
}
.G3Qec4I-uQDvdUGsXD {
  background-color: transparent;
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown {
  background-color: #3d3028 !important;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #3d3028 !important;
  background: #3d3028;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.G3Qec4I-uQDvdUGsXD .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .G3Qec4I-uQDvdUGsXD .menu_box .navbar.opened,
  .G3Qec4I-uQDvdUGsXD .menu_box .navbar-collapse {
    background-color: #3d3028 !important;
    transition: all 0s ease 0s;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown {
  position: relative !important;
}
.G3Qec4I-uQDvdUGsXD .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
    margin-top: 1rem;
  }
}
.G3Qec4I-uQDvdUGsXD .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.G3Qec4I-uQDvdUGsXD .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f0f0f0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .alignment-text,
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .alignment-section-subtitle {
    margin-bottom: 32px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #080808;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .G3Qec4I-uQDvdUGsXD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .G3Qec4I-uQDvdUGsXD li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .G3Qec4I-uQDvdUGsXD .lg_brand {
    margin: 0 1rem;
  }
  .G3Qec4I-uQDvdUGsXD .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.G3Qec4I-uQDvdUGsXD .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .G3Qec4I-uQDvdUGsXD .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .nav-item {
    margin: 0 !important;
  }
}
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link {
  transition: all 0.5s ease-out;
}
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link:hover,
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link:focus {
  opacity: .7;
}
.G3Qec4I-uQDvdUGsXD .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .G3Qec4I-uQDvdUGsXD .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .G3Qec4I-uQDvdUGsXD .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box {
    display: none;
  }
}
.G3Qec4I-uQDvdUGsXD .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.G3Qec4I-uQDvdUGsXD .container {
  display: flex;
  margin: auto;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper {
  color: #333333;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper:last-child {
  margin-right: 0;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper:hover {
  opacity: .5;
}
.G3Qec4I-uQDvdUGsXD .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .navbar-nav {
    margin: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .dropdown-menu,
.G3Qec4I-uQDvdUGsXD .navbar.opened {
  background-color: false !important;
}
.G3Qec4I-uQDvdUGsXD .nav-item:focus,
.G3Qec4I-uQDvdUGsXD .nav-link:focus {
  outline: none;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item .alignment-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item .alignment-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.G3Qec4I-uQDvdUGsXD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar.opened {
  transition: all 0.3s;
}
.G3Qec4I-uQDvdUGsXD .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.G3Qec4I-uQDvdUGsXD .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.G3Qec4I-uQDvdUGsXD .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed {
  justify-content: center;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .navbar .nav-item {
    padding: .5rem 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .G3Qec4I-uQDvdUGsXD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .G3Qec4I-uQDvdUGsXD .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .G3Qec4I-uQDvdUGsXD .navbar ul.navbar-nav li {
    margin: 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .icons-menu {
    padding: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short {
  min-height: 60px;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand .navbar-logo a {
  outline: none;
}
.G3Qec4I-uQDvdUGsXD .dropdown-item.active,
.G3Qec4I-uQDvdUGsXD .dropdown-item:active {
  background-color: transparent;
}
.G3Qec4I-uQDvdUGsXD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.G3Qec4I-uQDvdUGsXD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.G3Qec4I-uQDvdUGsXD ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #3d3028;
  background: #cccccc;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #080808;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.G3Qec4I-uQDvdUGsXD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .G3Qec4I-uQDvdUGsXD .navbar {
    height: 70px;
  }
  .G3Qec4I-uQDvdUGsXD .navbar.opened {
    height: auto;
  }
  .G3Qec4I-uQDvdUGsXD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .G3Qec4I-uQDvdUGsXD .container-fluid {
    padding: 0 36px;
  }
}
.G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
    display: block;
    padding: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .alignment-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 225px;
  white-space: nowrap;
}
.G3Qec4I-uQDvdUGsXD .navbar-caption:hover {
  color: #b34700;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.G3Qec4I-uQDvdUGsXD .text_widget {
  margin-bottom: 32px;
}
.G3Qec4I-uQDvdUGsXD .text_widget a {
  transition: all 0.3s ease-out;
}
.G3Qec4I-uQDvdUGsXD .text_widget a:hover,
.G3Qec4I-uQDvdUGsXD .text_widget a:focus {
  opacity: .7;
}
.G3Qec4I-uQDvdUGsXD .alignment-section-subtitle {
  color: #080808;
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD .navbar-caption {
  color: #080808;
}
.G3Qec4I-uQDvdUGsXD .alignment-text {
  color: #333333;
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD .alignment-section-subtitle,
.G3Qec4I-uQDvdUGsXD .text_widget,
.G3Qec4I-uQDvdUGsXD .alignment-section-btn {
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.G3Qec4I-uQDvpSEnFZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f5f2;
}
.G3Qec4I-uQDvpSEnFZ .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDvpSEnFZ .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvpSEnFZ .container {
    padding: 0 15px;
  }
}
.G3Qec4I-uQDvpSEnFZ .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvpSEnFZ .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvpSEnFZ .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.G3Qec4I-uQDvpSEnFZ .content-wrapper .alignment-section-subtitle {
  margin-bottom: 30px;
}
.G3Qec4I-uQDvpSEnFZ .content-wrapper .alignment-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvpSEnFZ .content-wrapper .alignment-section-title {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDvpSEnFZ .content-wrapper .alignment-text {
  margin-bottom: 0;
}
.G3Qec4I-uQDvpSEnFZ .content-wrapper .alignment-section-btn {
  margin-top: 40px;
}
.G3Qec4I-uQDvpSEnFZ .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.G3Qec4I-uQDvpSEnFZ .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #b34700;
  box-shadow: 10px 10px 50px #d2d2df;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .G3Qec4I-uQDvpSEnFZ .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .G3Qec4I-uQDvpSEnFZ .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .G3Qec4I-uQDvpSEnFZ .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.G3Qec4I-uQDvpSEnFZ .alignment-section-title {
  color: #ffffff;
}
.G3Qec4I-uQDvpSEnFZ .alignment-section-subtitle {
  color: #b34700;
}
.G3Qec4I-uQDvpSEnFZ .alignment-text {
  color: #000000;
  text-align: center;
}
.G3Qec4I-uQDvpSEnFZ .alignment-section-title,
.G3Qec4I-uQDvpSEnFZ .alignment-section-btn {
  text-align: center;
  color: #000000;
}
.G3Qec4I-uQDyesWEEB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #efeae6;
}
.G3Qec4I-uQDyesWEEB .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDyesWEEB .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDyesWEEB .row {
  justify-content: flex-start;
}
.G3Qec4I-uQDyesWEEB .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 361px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
  background-color: #ffe3c1;
}
@media (max-width: 767px) {
  .G3Qec4I-uQDyesWEEB .content-container {
    padding: 30px;
  }
}
.G3Qec4I-uQDyesWEEB .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.G3Qec4I-uQDyesWEEB .alignment-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.G3Qec4I-uQDyesWEEB .alignment-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.G3Qec4I-uQDyesWEEB .alignment-section-btn {
  width: 100%;
  margin-top: 50px;
}
.G3Qec4I-uQDxmQUikI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff4e3;
}
.G3Qec4I-uQDxmQUikI .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDxmQUikI .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDxmQUikI .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDxmQUikI .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .G3Qec4I-uQDxmQUikI .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDxmQUikI .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .G3Qec4I-uQDxmQUikI .container {
    padding: 0 16px;
  }
}
.G3Qec4I-uQDxmQUikI .row {
  background-color: #ffe3c1;
  justify-content: center;
  margin: 0;
  border-radius: 1rem;
}
.G3Qec4I-uQDxmQUikI .item {
  padding: 40px 80px;
  border-right: 1px solid #000000;
}
@media (max-width: 1200px) {
  .G3Qec4I-uQDxmQUikI .item {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDxmQUikI .item {
    padding: 25px;
    border-right: none;
    border-bottom: 1px solid #000000;
  }
}
.G3Qec4I-uQDxmQUikI .item:nth-child(2n) {
  border-right: none;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDxmQUikI .item:nth-child(2n) {
    border-right: none;
  }
}
.G3Qec4I-uQDxmQUikI .item .item-wrapper .card-subtitle {
  margin-bottom: 40px;
}
.G3Qec4I-uQDxmQUikI .item .item-wrapper .item-img {
  margin-bottom: 28px;
}
.G3Qec4I-uQDxmQUikI .item .item-wrapper .item-img img {
  display: inline-flex;
  object-fit: cover;
  height: 350px;
  border-radius: 1rem !important;
  width: 80%;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDxmQUikI .item .item-wrapper .item-img img {
    width: 100%;
  }
}
.G3Qec4I-uQDxmQUikI .item .item-wrapper .card-title {
  margin-bottom: 10px;
}
.G3Qec4I-uQDxmQUikI .item .item-wrapper .card-text {
  margin-bottom: 20px;
}
.G3Qec4I-uQDxmQUikI .card-title {
  color: #000000;
}
.G3Qec4I-uQDxmQUikI .card-subtitle {
  color: #000000;
  text-align: center;
}
.G3Qec4I-uQDxmQUikI .card-text {
  color: #000000;
  text-align: center;
}
.G3Qec4I-uQDxmQUikI .card-title,
.G3Qec4I-uQDxmQUikI .item-img,
.G3Qec4I-uQDxmQUikI .alignment-section-btn {
  text-align: center;
}
.G3Qec4I-uQDyg5HNSI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f5f2;
}
.G3Qec4I-uQDyg5HNSI .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDyg5HNSI .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDyg5HNSI .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  background-color: #d5c3b1;
  padding: 80px 80px 80px 80px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .G3Qec4I-uQDyg5HNSI .content-container {
    flex-wrap: wrap;
    padding: 80px 20px 80px 20px;
  }
}
.G3Qec4I-uQDyg5HNSI .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 767px) {
  .G3Qec4I-uQDyg5HNSI .text-container {
    width: 100%;
  }
}
.G3Qec4I-uQDyg5HNSI .iconfont-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.G3Qec4I-uQDyg5HNSI .iconfont-wrapper .alignment-iconfont {
  font-size: 86px;
  color: #b34700;
}
.G3Qec4I-uQDyg5HNSI .text-wrap {
  width: 100%;
  padding: 0;
}
.G3Qec4I-uQDyg5HNSI .alignment-section-title {
  color: #080808;
  margin-bottom: 0;
  width: 100%;
}
.G3Qec4I-uQDyg5HNSI .alignment-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.G3Qec4I-uQDyg5HNSI .alignment-section-btn {
  margin-top: 10px;
}
.G3Qec4I-uQDyg5HNSI .alignment-text,
.G3Qec4I-uQDyg5HNSI .alignment-section-btn {
  color: #080808;
}
.G3Qec4I-uQDyvPfggm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f5f2;
  position: relative;
  overflow: hidden;
}
.G3Qec4I-uQDyvPfggm .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDyvPfggm .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDyvPfggm .col-text {
    padding-right: 28px;
  }
}
@media (min-width: 992px) {
  .G3Qec4I-uQDyvPfggm .col-img {
    padding-left: 28px;
  }
}
.G3Qec4I-uQDyvPfggm .card-title {
  color: #161616;
  margin-top: 1rem;
  width: 100%;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDyvPfggm .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.G3Qec4I-uQDyvPfggm .alignment-text {
  color: #161616;
  margin-top: 2rem;
  padding-right: 40px;
  width: 100%;
}
@media (max-width: 1199px) {
  .G3Qec4I-uQDyvPfggm .alignment-text {
    margin-top: 1.5rem;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDyvPfggm .alignment-text {
    text-align: center !important;
    padding-right: 0;
    margin-top: 1rem;
  }
}
.G3Qec4I-uQDyvPfggm .alignment-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDyvPfggm .alignment-section-btn {
    text-align: center !important;
  }
}
.G3Qec4I-uQDyvPfggm .image-wrapper {
  overflow: hidden;
  width: 100%;
  height: 560px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #161616;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .G3Qec4I-uQDyvPfggm .image-wrapper {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .G3Qec4I-uQDyvPfggm .image-wrapper {
    height: 360px;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDyvPfggm .image-wrapper {
    margin-top: 56px;
  }
}
.G3Qec4I-uQDyvPfggm .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.G3Qec4I-uQDyvPfggm .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #f6efd3 27%, #ffe3c1 50%, #d5c3b1 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.G3Qec4I-uQDyvPfggm .card-title,
.G3Qec4I-uQDyvPfggm .alignment-section-btn {
  text-align: center;
}
.G3Qec4I-uQDyvPfggm .alignment-text,
.G3Qec4I-uQDyvPfggm .link-wrap {
  text-align: center;
}
.G3Qec4I-uQDyGp5pqO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #f3e4d7;
}
.G3Qec4I-uQDyGp5pqO::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 32rem;
  height: 100%;
  background-image: linear-gradient(60deg, #d5c3b1 0, #f6efd3 100%);
  border-radius: 100%;
  z-index: 1;
  filter: blur(70px);
}
.G3Qec4I-uQDyGp5pqO .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDyGp5pqO .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDyGp5pqO .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDyGp5pqO .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDyGp5pqO .container {
    padding: 0 24px;
  }
}
.G3Qec4I-uQDyGp5pqO .row {
  justify-content: center;
}
.G3Qec4I-uQDyGp5pqO .row .card,
.G3Qec4I-uQDyGp5pqO .row .item {
  padding: 0 12px;
}
.G3Qec4I-uQDyGp5pqO .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDyGp5pqO .title-wrapper {
    margin-bottom: 32px;
  }
}
.G3Qec4I-uQDyGp5pqO .title-wrapper .alignment-section-title {
  margin-bottom: 0;
}
.G3Qec4I-uQDyGp5pqO .item {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.G3Qec4I-uQDyGp5pqO .item .item-wrapper {
  padding: 32px;
  border-radius: .75rem !important;
  background-color: #efeae6;
  height: 100%;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDyGp5pqO .item .item-wrapper {
    padding: 24px;
  }
}
.G3Qec4I-uQDyGp5pqO .item .item-wrapper .card-box .card-number {
  margin-bottom: 24px;
  opacity: .4;
}
.G3Qec4I-uQDyGp5pqO .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.G3Qec4I-uQDyGp5pqO .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
  transition: all .3s ease;
  opacity: .7;
}
.G3Qec4I-uQDyGp5pqO .item .item-wrapper .card-box .card-text:hover,
.G3Qec4I-uQDyGp5pqO .item .item-wrapper .card-box .card-text:focus {
  opacity: 1;
}
.G3Qec4I-uQDyGp5pqO .alignment-section-title {
  color: #141414;
  text-align: center;
}
.G3Qec4I-uQDyGp5pqO .card-title {
  color: #141414;
}
.G3Qec4I-uQDyGp5pqO .card-text {
  color: #000000;
}
.G3Qec4I-uQDOzYOErA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e1a18;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDOzYOErA .row {
  justify-content: center;
}
.G3Qec4I-uQDOzYOErA .row .card {
  justify-content: space-between;
}
.G3Qec4I-uQDOzYOErA .content-wrapper {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 100%;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper img {
  height: 260px;
  object-fit: cover;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .title-wrapper .alignment-section-title {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .alignment-list-title {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:hover,
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn .btn {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #bac0cc;
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-list-title {
  color: #b34700;
}
.G3Qec4I-uQDOzYOErA .list {
  color: #58595b;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title,
.G3Qec4I-uQDOzYOErA .alignment-section-btn,
.G3Qec4I-uQDOzYOErA .content-wrapper {
  color: #b34700;
}
.G3Qec4I-uQDvdUGsXD {
  background-color: transparent;
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown {
  background-color: #3d3028 !important;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #3d3028 !important;
  background: #3d3028;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.G3Qec4I-uQDvdUGsXD .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .G3Qec4I-uQDvdUGsXD .menu_box .navbar.opened,
  .G3Qec4I-uQDvdUGsXD .menu_box .navbar-collapse {
    background-color: #3d3028 !important;
    transition: all 0s ease 0s;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown {
  position: relative !important;
}
.G3Qec4I-uQDvdUGsXD .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
    margin-top: 1rem;
  }
}
.G3Qec4I-uQDvdUGsXD .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.G3Qec4I-uQDvdUGsXD .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f0f0f0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .alignment-text,
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .alignment-section-subtitle {
    margin-bottom: 32px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #080808;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .G3Qec4I-uQDvdUGsXD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .G3Qec4I-uQDvdUGsXD li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .G3Qec4I-uQDvdUGsXD .lg_brand {
    margin: 0 1rem;
  }
  .G3Qec4I-uQDvdUGsXD .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.G3Qec4I-uQDvdUGsXD .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .G3Qec4I-uQDvdUGsXD .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .nav-item {
    margin: 0 !important;
  }
}
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link {
  transition: all 0.5s ease-out;
}
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link:hover,
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link:focus {
  opacity: .7;
}
.G3Qec4I-uQDvdUGsXD .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .G3Qec4I-uQDvdUGsXD .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .G3Qec4I-uQDvdUGsXD .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box {
    display: none;
  }
}
.G3Qec4I-uQDvdUGsXD .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.G3Qec4I-uQDvdUGsXD .container {
  display: flex;
  margin: auto;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper {
  color: #333333;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper:last-child {
  margin-right: 0;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper:hover {
  opacity: .5;
}
.G3Qec4I-uQDvdUGsXD .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .navbar-nav {
    margin: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .dropdown-menu,
.G3Qec4I-uQDvdUGsXD .navbar.opened {
  background-color: false !important;
}
.G3Qec4I-uQDvdUGsXD .nav-item:focus,
.G3Qec4I-uQDvdUGsXD .nav-link:focus {
  outline: none;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item .alignment-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item .alignment-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.G3Qec4I-uQDvdUGsXD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar.opened {
  transition: all 0.3s;
}
.G3Qec4I-uQDvdUGsXD .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.G3Qec4I-uQDvdUGsXD .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.G3Qec4I-uQDvdUGsXD .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed {
  justify-content: center;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .navbar .nav-item {
    padding: .5rem 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .G3Qec4I-uQDvdUGsXD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .G3Qec4I-uQDvdUGsXD .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .G3Qec4I-uQDvdUGsXD .navbar ul.navbar-nav li {
    margin: 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .icons-menu {
    padding: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short {
  min-height: 60px;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand .navbar-logo a {
  outline: none;
}
.G3Qec4I-uQDvdUGsXD .dropdown-item.active,
.G3Qec4I-uQDvdUGsXD .dropdown-item:active {
  background-color: transparent;
}
.G3Qec4I-uQDvdUGsXD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.G3Qec4I-uQDvdUGsXD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.G3Qec4I-uQDvdUGsXD ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #3d3028;
  background: #cccccc;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #080808;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.G3Qec4I-uQDvdUGsXD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .G3Qec4I-uQDvdUGsXD .navbar {
    height: 70px;
  }
  .G3Qec4I-uQDvdUGsXD .navbar.opened {
    height: auto;
  }
  .G3Qec4I-uQDvdUGsXD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .G3Qec4I-uQDvdUGsXD .container-fluid {
    padding: 0 36px;
  }
}
.G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
    display: block;
    padding: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .alignment-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 225px;
  white-space: nowrap;
}
.G3Qec4I-uQDvdUGsXD .navbar-caption:hover {
  color: #b34700;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.G3Qec4I-uQDvdUGsXD .text_widget {
  margin-bottom: 32px;
}
.G3Qec4I-uQDvdUGsXD .text_widget a {
  transition: all 0.3s ease-out;
}
.G3Qec4I-uQDvdUGsXD .text_widget a:hover,
.G3Qec4I-uQDvdUGsXD .text_widget a:focus {
  opacity: .7;
}
.G3Qec4I-uQDvdUGsXD .alignment-section-subtitle {
  color: #080808;
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD .navbar-caption {
  color: #080808;
}
.G3Qec4I-uQDvdUGsXD .alignment-text {
  color: #333333;
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD .alignment-section-subtitle,
.G3Qec4I-uQDvdUGsXD .text_widget,
.G3Qec4I-uQDvdUGsXD .alignment-section-btn {
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.G3Qec4I-uQDIy23Kly {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efeae6;
  position: relative;
}
.G3Qec4I-uQDIy23Kly .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDIy23Kly .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDIy23Kly .container,
.G3Qec4I-uQDIy23Kly .container-fluid {
  position: static;
}
.G3Qec4I-uQDIy23Kly .alignment-section-title {
  margin-bottom: 25px;
  color: #131313;
  text-align: center;
}
@media (max-width: 1199px) {
  .G3Qec4I-uQDIy23Kly .alignment-section-title {
    margin-bottom: 5px;
  }
}
.G3Qec4I-uQDIy23Kly .alignment-section-subtitle {
  color: #131313;
  text-align: center;
}
.G3Qec4I-uQDIy23Kly .alignment-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .G3Qec4I-uQDIy23Kly .alignment-text {
    margin-top: 18px;
  }
}
.G3Qec4I-uQDIy23Kly .alignment-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .G3Qec4I-uQDIy23Kly .alignment-section-btn {
    margin-top: 15px;
  }
}
.G3Qec4I-uQDIy23Kly .item-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.G3Qec4I-uQDIy23Kly .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .G3Qec4I-uQDIy23Kly .item-img {
    display: none;
  }
}
.G3Qec4I-uQDIy23Kly .alignment-text,
.G3Qec4I-uQDIy23Kly .alignment-section-btn {
  text-align: center;
}
.G3Qec4I-uQDzwYosLP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3e4d7;
}
.G3Qec4I-uQDzwYosLP .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDzwYosLP .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDzwYosLP .content-wrapper .label-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDzwYosLP .content-wrapper .label-wrapper {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDzwYosLP .content-wrapper .label-wrapper .alignment-label {
  display: inline-block;
  padding: 6px 20px;
  background-color: #d5c3b1;
  margin-bottom: 0;
}
.G3Qec4I-uQDzwYosLP .content-wrapper .title-wrapper .alignment-section-title {
  display: inline-block;
  width: 55%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDzwYosLP .content-wrapper .title-wrapper .alignment-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDzwYosLP .content-wrapper .text-wrapper .alignment-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .G3Qec4I-uQDzwYosLP .content-wrapper .text-wrapper .alignment-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDzwYosLP .content-wrapper .text-wrapper .alignment-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDzwYosLP .alignment-label,
.G3Qec4I-uQDzwYosLP .label-wrapper {
  color: #19171c;
  text-align: center;
}
.G3Qec4I-uQDzwYosLP .alignment-section-title {
  color: #19171c;
}
.G3Qec4I-uQDzwYosLP .alignment-text,
.G3Qec4I-uQDzwYosLP .text-wrapper {
  color: #19171c;
  text-align: center;
}
.G3Qec4I-uQDzwYosLP .alignment-section-title,
.G3Qec4I-uQDzwYosLP .title-wrapper,
.G3Qec4I-uQDzwYosLP .alignment-section-btn {
  text-align: center;
}
.G3Qec4I-uQDA4tEDur {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fff4e3;
}
.G3Qec4I-uQDA4tEDur .row {
  align-items: center;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDA4tEDur .row {
    flex-direction: column-reverse;
  }
  .G3Qec4I-uQDA4tEDur .image-wrapper {
    margin-bottom: 2rem;
  }
  .G3Qec4I-uQDA4tEDur .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .G3Qec4I-uQDA4tEDur .card-wrapper {
    padding-right: 2rem;
  }
}
.G3Qec4I-uQDA4tEDur .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.G3Qec4I-uQDA4tEDur .card-title {
  color: #b34700;
  text-align: center;
}
.G3Qec4I-uQDA4tEDur .alignment-text,
.G3Qec4I-uQDA4tEDur .alignment-section-btn {
  color: #000000;
  text-align: center;
}
.G3Qec4I-uQDA4tEDur .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDA4tEDur .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDAspZveR {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #f6efd3;
}
.G3Qec4I-uQDAspZveR h3 {
  position: relative;
}
.G3Qec4I-uQDAspZveR h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.G3Qec4I-uQDAspZveR .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDAspZveR .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDOzYOErA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e1a18;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDOzYOErA .row {
  justify-content: center;
}
.G3Qec4I-uQDOzYOErA .row .card {
  justify-content: space-between;
}
.G3Qec4I-uQDOzYOErA .content-wrapper {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 100%;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper img {
  height: 260px;
  object-fit: cover;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .title-wrapper .alignment-section-title {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .alignment-list-title {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:hover,
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn .btn {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #bac0cc;
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-list-title {
  color: #b34700;
}
.G3Qec4I-uQDOzYOErA .list {
  color: #58595b;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title,
.G3Qec4I-uQDOzYOErA .alignment-section-btn,
.G3Qec4I-uQDOzYOErA .content-wrapper {
  color: #b34700;
}
.G3Qec4I-uQDvdUGsXD {
  background-color: transparent;
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown {
  background-color: #3d3028 !important;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #3d3028 !important;
  background: #3d3028;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.G3Qec4I-uQDvdUGsXD .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .G3Qec4I-uQDvdUGsXD .menu_box .navbar.opened,
  .G3Qec4I-uQDvdUGsXD .menu_box .navbar-collapse {
    background-color: #3d3028 !important;
    transition: all 0s ease 0s;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown {
  position: relative !important;
}
.G3Qec4I-uQDvdUGsXD .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
    margin-top: 1rem;
  }
}
.G3Qec4I-uQDvdUGsXD .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.G3Qec4I-uQDvdUGsXD .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f0f0f0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .alignment-text,
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .alignment-section-subtitle {
    margin-bottom: 32px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #080808;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .G3Qec4I-uQDvdUGsXD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .G3Qec4I-uQDvdUGsXD li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .G3Qec4I-uQDvdUGsXD .lg_brand {
    margin: 0 1rem;
  }
  .G3Qec4I-uQDvdUGsXD .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.G3Qec4I-uQDvdUGsXD .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .G3Qec4I-uQDvdUGsXD .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .nav-item {
    margin: 0 !important;
  }
}
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link {
  transition: all 0.5s ease-out;
}
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link:hover,
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link:focus {
  opacity: .7;
}
.G3Qec4I-uQDvdUGsXD .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .G3Qec4I-uQDvdUGsXD .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .G3Qec4I-uQDvdUGsXD .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box {
    display: none;
  }
}
.G3Qec4I-uQDvdUGsXD .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.G3Qec4I-uQDvdUGsXD .container {
  display: flex;
  margin: auto;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper {
  color: #333333;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper:last-child {
  margin-right: 0;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper:hover {
  opacity: .5;
}
.G3Qec4I-uQDvdUGsXD .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .navbar-nav {
    margin: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .dropdown-menu,
.G3Qec4I-uQDvdUGsXD .navbar.opened {
  background-color: false !important;
}
.G3Qec4I-uQDvdUGsXD .nav-item:focus,
.G3Qec4I-uQDvdUGsXD .nav-link:focus {
  outline: none;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item .alignment-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item .alignment-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.G3Qec4I-uQDvdUGsXD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar.opened {
  transition: all 0.3s;
}
.G3Qec4I-uQDvdUGsXD .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.G3Qec4I-uQDvdUGsXD .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.G3Qec4I-uQDvdUGsXD .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed {
  justify-content: center;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .navbar .nav-item {
    padding: .5rem 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .G3Qec4I-uQDvdUGsXD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .G3Qec4I-uQDvdUGsXD .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .G3Qec4I-uQDvdUGsXD .navbar ul.navbar-nav li {
    margin: 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .icons-menu {
    padding: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short {
  min-height: 60px;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand .navbar-logo a {
  outline: none;
}
.G3Qec4I-uQDvdUGsXD .dropdown-item.active,
.G3Qec4I-uQDvdUGsXD .dropdown-item:active {
  background-color: transparent;
}
.G3Qec4I-uQDvdUGsXD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.G3Qec4I-uQDvdUGsXD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.G3Qec4I-uQDvdUGsXD ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #3d3028;
  background: #cccccc;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #080808;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.G3Qec4I-uQDvdUGsXD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .G3Qec4I-uQDvdUGsXD .navbar {
    height: 70px;
  }
  .G3Qec4I-uQDvdUGsXD .navbar.opened {
    height: auto;
  }
  .G3Qec4I-uQDvdUGsXD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .G3Qec4I-uQDvdUGsXD .container-fluid {
    padding: 0 36px;
  }
}
.G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
    display: block;
    padding: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .alignment-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 225px;
  white-space: nowrap;
}
.G3Qec4I-uQDvdUGsXD .navbar-caption:hover {
  color: #b34700;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.G3Qec4I-uQDvdUGsXD .text_widget {
  margin-bottom: 32px;
}
.G3Qec4I-uQDvdUGsXD .text_widget a {
  transition: all 0.3s ease-out;
}
.G3Qec4I-uQDvdUGsXD .text_widget a:hover,
.G3Qec4I-uQDvdUGsXD .text_widget a:focus {
  opacity: .7;
}
.G3Qec4I-uQDvdUGsXD .alignment-section-subtitle {
  color: #080808;
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD .navbar-caption {
  color: #080808;
}
.G3Qec4I-uQDvdUGsXD .alignment-text {
  color: #333333;
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD .alignment-section-subtitle,
.G3Qec4I-uQDvdUGsXD .text_widget,
.G3Qec4I-uQDvdUGsXD .alignment-section-btn {
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.G3Qec4I-uQDB8oEXMG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe3c1;
}
.G3Qec4I-uQDB8oEXMG .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDB8oEXMG .alignment-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.G3Qec4I-uQDB8oEXMG .alignment-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #d4ceff;
  z-index: -1;
}
.G3Qec4I-uQDB8oEXMG img {
  border-radius: 1rem;
}
.G3Qec4I-uQDB8oEXMG .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDB8oEXMG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDB8oEXMG .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .G3Qec4I-uQDB8oEXMG .text-wrapper {
    padding: 0 2rem;
  }
}
.G3Qec4I-uQDB8oEXMG .alignment-section-title {
  color: #000000;
  text-align: center;
}
.G3Qec4I-uQDB8oEXMG .alignment-section-subtitle,
.G3Qec4I-uQDB8oEXMG .subtitle-wrap {
  color: #19303d;
}
.G3Qec4I-uQDB8oEXMG .alignment-text,
.G3Qec4I-uQDB8oEXMG .alignment-section-btn {
  color: #000000;
  text-align: center;
}
.G3Qec4I-uQDDuvyt8y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff4e3;
}
.G3Qec4I-uQDDuvyt8y .alignment-section-title {
  color: #b34700;
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .G3Qec4I-uQDDuvyt8y .alignment-section-title {
    margin-top: 24px;
  }
}
.G3Qec4I-uQDDuvyt8y .alignment-text {
  color: #000000;
  text-align: center;
}
.G3Qec4I-uQE3ZbvNiK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #efeae6;
}
.G3Qec4I-uQE3ZbvNiK .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQE3ZbvNiK .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQE3ZbvNiK .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQE3ZbvNiK .container-fluid {
    padding: 0 20px;
  }
}
.G3Qec4I-uQE3ZbvNiK .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .G3Qec4I-uQE3ZbvNiK .container {
    padding: 0 20px;
  }
  .G3Qec4I-uQE3ZbvNiK .container .row {
    padding: 0;
  }
}
.G3Qec4I-uQE3ZbvNiK .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .G3Qec4I-uQE3ZbvNiK .title-wrapper {
    margin-bottom: 40px;
  }
}
.G3Qec4I-uQE3ZbvNiK .title-wrapper .alignment-section-title {
  margin-bottom: 20px;
}
.G3Qec4I-uQE3ZbvNiK .title-wrapper .alignment-text {
  margin-bottom: 20px;
}
.G3Qec4I-uQE3ZbvNiK .title-wrapper .alignment-section-btn .btn .alignment-iconfont {
  color: #c6a38f;
}
.G3Qec4I-uQE3ZbvNiK .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .G3Qec4I-uQE3ZbvNiK .image-wrapper img {
    height: 300px;
  }
}
.G3Qec4I-uQE3ZbvNiK .alignment-section-title {
  color: #222222;
}
.G3Qec4I-uQE3ZbvNiK .alignment-text {
  color: #222222;
  text-align: center;
}
.G3Qec4I-uQE3ZbvNiK .alignment-section-title,
.G3Qec4I-uQE3ZbvNiK .alignment-section-btn {
  text-align: center;
  color: #b34700;
}
.G3Qec4I-uQDDBQLr48 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3e4d7;
}
.G3Qec4I-uQDDBQLr48 .wrapper {
  background: #ffe3c1;
}
.G3Qec4I-uQDDBQLr48 .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDDBQLr48 .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDDBQLr48 .alignment-section-title {
  text-align: center;
}
.G3Qec4I-uQDDBQLr48 .alignment-text {
  text-align: center;
}
.G3Qec4I-uQDOzYOErA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e1a18;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDOzYOErA .row {
  justify-content: center;
}
.G3Qec4I-uQDOzYOErA .row .card {
  justify-content: space-between;
}
.G3Qec4I-uQDOzYOErA .content-wrapper {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 100%;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper img {
  height: 260px;
  object-fit: cover;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .title-wrapper .alignment-section-title {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .alignment-list-title {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:hover,
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn .btn {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #bac0cc;
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-list-title {
  color: #b34700;
}
.G3Qec4I-uQDOzYOErA .list {
  color: #58595b;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title,
.G3Qec4I-uQDOzYOErA .alignment-section-btn,
.G3Qec4I-uQDOzYOErA .content-wrapper {
  color: #b34700;
}
.G3Qec4I-uQDvdUGsXD {
  background-color: transparent;
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown {
  background-color: #3d3028 !important;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #3d3028 !important;
  background: #3d3028;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.G3Qec4I-uQDvdUGsXD .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .G3Qec4I-uQDvdUGsXD .menu_box .navbar.opened,
  .G3Qec4I-uQDvdUGsXD .menu_box .navbar-collapse {
    background-color: #3d3028 !important;
    transition: all 0s ease 0s;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown {
  position: relative !important;
}
.G3Qec4I-uQDvdUGsXD .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
    margin-top: 1rem;
  }
}
.G3Qec4I-uQDvdUGsXD .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.G3Qec4I-uQDvdUGsXD .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f0f0f0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .alignment-text,
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .alignment-section-subtitle {
    margin-bottom: 32px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #080808;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .G3Qec4I-uQDvdUGsXD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .G3Qec4I-uQDvdUGsXD li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .G3Qec4I-uQDvdUGsXD .lg_brand {
    margin: 0 1rem;
  }
  .G3Qec4I-uQDvdUGsXD .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.G3Qec4I-uQDvdUGsXD .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .G3Qec4I-uQDvdUGsXD .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .nav-item {
    margin: 0 !important;
  }
}
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link {
  transition: all 0.5s ease-out;
}
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link:hover,
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link:focus {
  opacity: .7;
}
.G3Qec4I-uQDvdUGsXD .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .G3Qec4I-uQDvdUGsXD .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .G3Qec4I-uQDvdUGsXD .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box {
    display: none;
  }
}
.G3Qec4I-uQDvdUGsXD .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.G3Qec4I-uQDvdUGsXD .container {
  display: flex;
  margin: auto;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper {
  color: #333333;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper:last-child {
  margin-right: 0;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper:hover {
  opacity: .5;
}
.G3Qec4I-uQDvdUGsXD .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .navbar-nav {
    margin: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .dropdown-menu,
.G3Qec4I-uQDvdUGsXD .navbar.opened {
  background-color: false !important;
}
.G3Qec4I-uQDvdUGsXD .nav-item:focus,
.G3Qec4I-uQDvdUGsXD .nav-link:focus {
  outline: none;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item .alignment-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item .alignment-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.G3Qec4I-uQDvdUGsXD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar.opened {
  transition: all 0.3s;
}
.G3Qec4I-uQDvdUGsXD .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.G3Qec4I-uQDvdUGsXD .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.G3Qec4I-uQDvdUGsXD .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed {
  justify-content: center;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .navbar .nav-item {
    padding: .5rem 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .G3Qec4I-uQDvdUGsXD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .G3Qec4I-uQDvdUGsXD .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .G3Qec4I-uQDvdUGsXD .navbar ul.navbar-nav li {
    margin: 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .icons-menu {
    padding: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short {
  min-height: 60px;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand .navbar-logo a {
  outline: none;
}
.G3Qec4I-uQDvdUGsXD .dropdown-item.active,
.G3Qec4I-uQDvdUGsXD .dropdown-item:active {
  background-color: transparent;
}
.G3Qec4I-uQDvdUGsXD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.G3Qec4I-uQDvdUGsXD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.G3Qec4I-uQDvdUGsXD ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #3d3028;
  background: #cccccc;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #080808;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.G3Qec4I-uQDvdUGsXD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .G3Qec4I-uQDvdUGsXD .navbar {
    height: 70px;
  }
  .G3Qec4I-uQDvdUGsXD .navbar.opened {
    height: auto;
  }
  .G3Qec4I-uQDvdUGsXD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .G3Qec4I-uQDvdUGsXD .container-fluid {
    padding: 0 36px;
  }
}
.G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
    display: block;
    padding: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .alignment-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 225px;
  white-space: nowrap;
}
.G3Qec4I-uQDvdUGsXD .navbar-caption:hover {
  color: #b34700;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.G3Qec4I-uQDvdUGsXD .text_widget {
  margin-bottom: 32px;
}
.G3Qec4I-uQDvdUGsXD .text_widget a {
  transition: all 0.3s ease-out;
}
.G3Qec4I-uQDvdUGsXD .text_widget a:hover,
.G3Qec4I-uQDvdUGsXD .text_widget a:focus {
  opacity: .7;
}
.G3Qec4I-uQDvdUGsXD .alignment-section-subtitle {
  color: #080808;
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD .navbar-caption {
  color: #080808;
}
.G3Qec4I-uQDvdUGsXD .alignment-text {
  color: #333333;
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD .alignment-section-subtitle,
.G3Qec4I-uQDvdUGsXD .text_widget,
.G3Qec4I-uQDvdUGsXD .alignment-section-btn {
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.G3Qec4I-uQDEdEL7uw {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f3e4d7;
}
.G3Qec4I-uQDEdEL7uw .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDEdEL7uw .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDEdEL7uw form .btn {
  border-radius: 2rem;
  padding: 1rem 2rem;
}
.G3Qec4I-uQDEdEL7uw h1 {
  font-weight: 500;
  line-height: 1;
}
.G3Qec4I-uQDEdEL7uw .alignment-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.G3Qec4I-uQDEdEL7uw .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #b34700;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.G3Qec4I-uQDEdEL7uw .subtitle-wrap .alignment-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d4fe00;
  font-size: 1.5rem;
}
.G3Qec4I-uQDEdEL7uw .alignment-section-title {
  color: #000000;
}
.G3Qec4I-uQDEdEL7uw .alignment-text,
.G3Qec4I-uQDEdEL7uw .alignment-section-btn {
  color: #000000;
}
.G3Qec4I-uQDEdEL7uw .alignment-section-subtitle,
.G3Qec4I-uQDEdEL7uw .align-wrapper {
  color: #000000;
  text-align: left;
}
.G3Qec4I-uQDEdEL7uw .form-control,
.G3Qec4I-uQDEdEL7uw .field-input {
  padding: 1rem;
  background-color: #ffffff;
  border: none !important;
  border-radius: 0;
  border-left: 2px solid #04492e !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.G3Qec4I-uQDEdEL7uw .form-control::-webkit-input-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input::-webkit-input-placeholder,
.G3Qec4I-uQDEdEL7uw .form-control::-webkit-input-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input::-webkit-input-placeholder {
  color: #6e6e6e;
}
.G3Qec4I-uQDEdEL7uw .form-control:-moz-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input:-moz-placeholder,
.G3Qec4I-uQDEdEL7uw .form-control:-moz-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input:-moz-placeholder {
  color: #6e6e6e;
}
.G3Qec4I-uQDEdEL7uw .form-control:hover,
.G3Qec4I-uQDEdEL7uw .field-input:hover,
.G3Qec4I-uQDEdEL7uw .form-control:focus,
.G3Qec4I-uQDEdEL7uw .field-input:focus {
  background-color: #ffffff;
  border-color: #04492e !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.G3Qec4I-uQDEdEL7uw .form-control:hover::-webkit-input-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input:hover::-webkit-input-placeholder,
.G3Qec4I-uQDEdEL7uw .form-control:focus::-webkit-input-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input:focus::-webkit-input-placeholder,
.G3Qec4I-uQDEdEL7uw .form-control:hover::-webkit-input-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input:hover::-webkit-input-placeholder,
.G3Qec4I-uQDEdEL7uw .form-control:focus::-webkit-input-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input:focus::-webkit-input-placeholder {
  color: #6e6e6e;
}
.G3Qec4I-uQDEdEL7uw .form-control:hover:-moz-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input:hover:-moz-placeholder,
.G3Qec4I-uQDEdEL7uw .form-control:focus:-moz-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input:focus:-moz-placeholder,
.G3Qec4I-uQDEdEL7uw .form-control:hover:-moz-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input:hover:-moz-placeholder,
.G3Qec4I-uQDEdEL7uw .form-control:focus:-moz-placeholder,
.G3Qec4I-uQDEdEL7uw .field-input:focus:-moz-placeholder {
  color: #6e6e6e;
}
.G3Qec4I-uQDEdEL7uw .jq-number__spin:hover,
.G3Qec4I-uQDEdEL7uw .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #04492e !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.G3Qec4I-uQDEdEL7uw .jq-number__spin {
  background-color: #ffffff;
  border-color: #04492e;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.G3Qec4I-uQDEdEL7uw .jq-selectbox li,
.G3Qec4I-uQDEdEL7uw .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.G3Qec4I-uQDEdEL7uw .jq-selectbox li:hover,
.G3Qec4I-uQDEdEL7uw .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.G3Qec4I-uQDEdEL7uw .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.G3Qec4I-uQDEdEL7uw .jq-number__spin.minus:hover:after,
.G3Qec4I-uQDEdEL7uw .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.G3Qec4I-uQDEdEL7uw .jq-selectbox .jq-selectbox__trigger-arrow,
.G3Qec4I-uQDEdEL7uw .jq-number__spin.minus:after,
.G3Qec4I-uQDEdEL7uw .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.G3Qec4I-uQDEdEL7uw textarea {
  min-height: 150px;
}
.G3Qec4I-uQDEdEL7uw input::-webkit-clear-button {
  display: none;
}
.G3Qec4I-uQDEdEL7uw input::-webkit-inner-spin-button {
  display: none;
}
.G3Qec4I-uQDEdEL7uw input::-webkit-outer-spin-button {
  display: none;
}
.G3Qec4I-uQDEdEL7uw input::-webkit-calendar-picker-indicator {
  display: none;
}
.G3Qec4I-uQDEdEL7uw LABEL {
  color: #04492e;
}
@media (max-width: 767px) {
  .G3Qec4I-uQDEdEL7uw .col-auto {
    margin: auto;
  }
}
.G3Qec4I-uQDOzYOErA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e1a18;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDOzYOErA .row {
  justify-content: center;
}
.G3Qec4I-uQDOzYOErA .row .card {
  justify-content: space-between;
}
.G3Qec4I-uQDOzYOErA .content-wrapper {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 100%;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper img {
  height: 260px;
  object-fit: cover;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .title-wrapper .alignment-section-title {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .alignment-list-title {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:hover,
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn .btn {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #bac0cc;
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-list-title {
  color: #b34700;
}
.G3Qec4I-uQDOzYOErA .list {
  color: #58595b;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title,
.G3Qec4I-uQDOzYOErA .alignment-section-btn,
.G3Qec4I-uQDOzYOErA .content-wrapper {
  color: #b34700;
}
.G3Qec4I-uQDvdUGsXD {
  background-color: transparent;
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown {
  background-color: #3d3028 !important;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #3d3028 !important;
  background: #3d3028;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.G3Qec4I-uQDvdUGsXD .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .G3Qec4I-uQDvdUGsXD .menu_box .navbar.opened,
  .G3Qec4I-uQDvdUGsXD .menu_box .navbar-collapse {
    background-color: #3d3028 !important;
    transition: all 0s ease 0s;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown {
  position: relative !important;
}
.G3Qec4I-uQDvdUGsXD .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
    margin-top: 1rem;
  }
}
.G3Qec4I-uQDvdUGsXD .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.G3Qec4I-uQDvdUGsXD .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f0f0f0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .alignment-text,
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .alignment-section-subtitle {
    margin-bottom: 32px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #080808;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .G3Qec4I-uQDvdUGsXD ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .G3Qec4I-uQDvdUGsXD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .G3Qec4I-uQDvdUGsXD li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .G3Qec4I-uQDvdUGsXD .lg_brand {
    margin: 0 1rem;
  }
  .G3Qec4I-uQDvdUGsXD .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.G3Qec4I-uQDvdUGsXD .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .G3Qec4I-uQDvdUGsXD .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .nav-item {
    margin: 0 !important;
  }
}
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link {
  transition: all 0.5s ease-out;
}
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link:hover,
.G3Qec4I-uQDvdUGsXD .nav-item .nav-link:focus {
  opacity: .7;
}
.G3Qec4I-uQDvdUGsXD .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .G3Qec4I-uQDvdUGsXD .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDvdUGsXD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .G3Qec4I-uQDvdUGsXD .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .G3Qec4I-uQDvdUGsXD .offcanvas_box {
    display: none;
  }
}
.G3Qec4I-uQDvdUGsXD .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.G3Qec4I-uQDvdUGsXD .container {
  display: flex;
  margin: auto;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper {
  color: #333333;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper:last-child {
  margin-right: 0;
}
.G3Qec4I-uQDvdUGsXD .iconfont-wrapper:hover {
  opacity: .5;
}
.G3Qec4I-uQDvdUGsXD .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .navbar-nav {
    margin: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .dropdown-menu,
.G3Qec4I-uQDvdUGsXD .navbar.opened {
  background-color: false !important;
}
.G3Qec4I-uQDvdUGsXD .nav-item:focus,
.G3Qec4I-uQDvdUGsXD .nav-link:focus {
  outline: none;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item .alignment-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.G3Qec4I-uQDvdUGsXD .dropdown .dropdown-menu .dropdown-item .alignment-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDvdUGsXD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.G3Qec4I-uQDvdUGsXD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar.opened {
  transition: all 0.3s;
}
.G3Qec4I-uQDvdUGsXD .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.G3Qec4I-uQDvdUGsXD .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.G3Qec4I-uQDvdUGsXD .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed {
  justify-content: center;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.G3Qec4I-uQDvdUGsXD .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDvdUGsXD .navbar .nav-item {
    padding: .5rem 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .G3Qec4I-uQDvdUGsXD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .G3Qec4I-uQDvdUGsXD .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .G3Qec4I-uQDvdUGsXD .navbar ul.navbar-nav li {
    margin: 0;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .G3Qec4I-uQDvdUGsXD .navbar .icons-menu {
    padding: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short {
  min-height: 60px;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.G3Qec4I-uQDvdUGsXD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.G3Qec4I-uQDvdUGsXD .navbar-brand .navbar-logo a {
  outline: none;
}
.G3Qec4I-uQDvdUGsXD .dropdown-item.active,
.G3Qec4I-uQDvdUGsXD .dropdown-item:active {
  background-color: transparent;
}
.G3Qec4I-uQDvdUGsXD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.G3Qec4I-uQDvdUGsXD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.G3Qec4I-uQDvdUGsXD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.G3Qec4I-uQDvdUGsXD ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.G3Qec4I-uQDvdUGsXD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #3d3028;
  background: #cccccc;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #080808;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDvdUGsXD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDvdUGsXD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDvdUGsXD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.G3Qec4I-uQDvdUGsXD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .G3Qec4I-uQDvdUGsXD .navbar {
    height: 70px;
  }
  .G3Qec4I-uQDvdUGsXD .navbar.opened {
    height: auto;
  }
  .G3Qec4I-uQDvdUGsXD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.G3Qec4I-uQDvdUGsXD .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .G3Qec4I-uQDvdUGsXD .container-fluid {
    padding: 0 36px;
  }
}
.G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .alignment-section-btn-main {
    display: block;
    padding: 0;
  }
}
.G3Qec4I-uQDvdUGsXD .alignment-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 225px;
  white-space: nowrap;
}
.G3Qec4I-uQDvdUGsXD .navbar-caption:hover {
  color: #b34700;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDvdUGsXD .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.G3Qec4I-uQDvdUGsXD .text_widget {
  margin-bottom: 32px;
}
.G3Qec4I-uQDvdUGsXD .text_widget a {
  transition: all 0.3s ease-out;
}
.G3Qec4I-uQDvdUGsXD .text_widget a:hover,
.G3Qec4I-uQDvdUGsXD .text_widget a:focus {
  opacity: .7;
}
.G3Qec4I-uQDvdUGsXD .alignment-section-subtitle {
  color: #080808;
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD .navbar-caption {
  color: #080808;
}
.G3Qec4I-uQDvdUGsXD .alignment-text {
  color: #333333;
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD .alignment-section-subtitle,
.G3Qec4I-uQDvdUGsXD .text_widget,
.G3Qec4I-uQDvdUGsXD .alignment-section-btn {
  text-align: center;
}
.G3Qec4I-uQDvdUGsXD a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.G3Qec4I-uQDFjQV1zL {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #fff4e3;
}
.G3Qec4I-uQDFjQV1zL .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDFjQV1zL .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDFjQV1zL .alignment-section-title {
  color: #000000;
}
.G3Qec4I-uQDFjQV1zL .alignment-text {
  color: #000000;
}
.G3Qec4I-uQDOzYOErA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e1a18;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDOzYOErA .row {
  justify-content: center;
}
.G3Qec4I-uQDOzYOErA .row .card {
  justify-content: space-between;
}
.G3Qec4I-uQDOzYOErA .content-wrapper {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 100%;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper img {
  height: 260px;
  object-fit: cover;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .title-wrapper .alignment-section-title {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .alignment-list-title {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:hover,
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn .btn {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #bac0cc;
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-list-title {
  color: #b34700;
}
.G3Qec4I-uQDOzYOErA .list {
  color: #58595b;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title,
.G3Qec4I-uQDOzYOErA .alignment-section-btn,
.G3Qec4I-uQDOzYOErA .content-wrapper {
  color: #b34700;
}
.G3Qec4I-uQDLjFCwZm {
  background-color: transparent;
}
.G3Qec4I-uQDLjFCwZm .navbar-dropdown {
  background-color: #3d3028 !important;
  padding: 0;
}
.G3Qec4I-uQDLjFCwZm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #3d3028 !important;
  background: #3d3028;
}
.G3Qec4I-uQDLjFCwZm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.G3Qec4I-uQDLjFCwZm .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjFCwZm .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .G3Qec4I-uQDLjFCwZm .menu_box .navbar.opened,
  .G3Qec4I-uQDLjFCwZm .menu_box .navbar-collapse {
    background-color: #3d3028 !important;
    transition: all 0s ease 0s;
  }
}
.G3Qec4I-uQDLjFCwZm .navbar-dropdown {
  position: relative !important;
}
.G3Qec4I-uQDLjFCwZm .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjFCwZm .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjFCwZm .alignment-section-btn-main {
    margin-top: 1rem;
  }
}
.G3Qec4I-uQDLjFCwZm .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.G3Qec4I-uQDLjFCwZm .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDLjFCwZm .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f0f0f0;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas-body .alignment-text,
  .G3Qec4I-uQDLjFCwZm .offcanvas-body .alignment-section-subtitle {
    margin-bottom: 32px;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #080808;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .G3Qec4I-uQDLjFCwZm ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .G3Qec4I-uQDLjFCwZm .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDLjFCwZm .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .G3Qec4I-uQDLjFCwZm .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .G3Qec4I-uQDLjFCwZm li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .G3Qec4I-uQDLjFCwZm .lg_brand {
    margin: 0 1rem;
  }
  .G3Qec4I-uQDLjFCwZm .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.G3Qec4I-uQDLjFCwZm .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .G3Qec4I-uQDLjFCwZm .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjFCwZm .nav-item {
    margin: 0 !important;
  }
}
.G3Qec4I-uQDLjFCwZm .nav-item .nav-link {
  transition: all 0.5s ease-out;
}
.G3Qec4I-uQDLjFCwZm .nav-item .nav-link:hover,
.G3Qec4I-uQDLjFCwZm .nav-item .nav-link:focus {
  opacity: .7;
}
.G3Qec4I-uQDLjFCwZm .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDLjFCwZm .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .G3Qec4I-uQDLjFCwZm .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjFCwZm .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDLjFCwZm .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .G3Qec4I-uQDLjFCwZm .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .G3Qec4I-uQDLjFCwZm .offcanvas_box {
    display: none;
  }
}
.G3Qec4I-uQDLjFCwZm .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.G3Qec4I-uQDLjFCwZm .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.G3Qec4I-uQDLjFCwZm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.G3Qec4I-uQDLjFCwZm .container {
  display: flex;
  margin: auto;
}
.G3Qec4I-uQDLjFCwZm .iconfont-wrapper {
  color: #333333;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.G3Qec4I-uQDLjFCwZm .iconfont-wrapper:last-child {
  margin-right: 0;
}
.G3Qec4I-uQDLjFCwZm .iconfont-wrapper:hover {
  opacity: .5;
}
.G3Qec4I-uQDLjFCwZm .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDLjFCwZm .navbar-nav {
    margin: 0;
  }
}
.G3Qec4I-uQDLjFCwZm .dropdown-menu,
.G3Qec4I-uQDLjFCwZm .navbar.opened {
  background-color: false !important;
}
.G3Qec4I-uQDLjFCwZm .nav-item:focus,
.G3Qec4I-uQDLjFCwZm .nav-link:focus {
  outline: none;
}
.G3Qec4I-uQDLjFCwZm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDLjFCwZm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.G3Qec4I-uQDLjFCwZm .dropdown .dropdown-menu .dropdown-item .alignment-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.G3Qec4I-uQDLjFCwZm .dropdown .dropdown-menu .dropdown-item .alignment-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDLjFCwZm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.G3Qec4I-uQDLjFCwZm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.G3Qec4I-uQDLjFCwZm .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDLjFCwZm .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.G3Qec4I-uQDLjFCwZm .navbar.opened {
  transition: all 0.3s;
}
.G3Qec4I-uQDLjFCwZm .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.G3Qec4I-uQDLjFCwZm .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.G3Qec4I-uQDLjFCwZm .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.G3Qec4I-uQDLjFCwZm .navbar.collapsed {
  justify-content: center;
}
.G3Qec4I-uQDLjFCwZm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.G3Qec4I-uQDLjFCwZm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.G3Qec4I-uQDLjFCwZm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.G3Qec4I-uQDLjFCwZm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.G3Qec4I-uQDLjFCwZm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.G3Qec4I-uQDLjFCwZm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.G3Qec4I-uQDLjFCwZm .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjFCwZm .navbar .nav-item {
    padding: .5rem 0;
  }
  .G3Qec4I-uQDLjFCwZm .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .G3Qec4I-uQDLjFCwZm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .G3Qec4I-uQDLjFCwZm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .G3Qec4I-uQDLjFCwZm .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .G3Qec4I-uQDLjFCwZm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .G3Qec4I-uQDLjFCwZm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .G3Qec4I-uQDLjFCwZm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .G3Qec4I-uQDLjFCwZm .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .G3Qec4I-uQDLjFCwZm .navbar ul.navbar-nav li {
    margin: 0;
  }
  .G3Qec4I-uQDLjFCwZm .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .G3Qec4I-uQDLjFCwZm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .G3Qec4I-uQDLjFCwZm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .G3Qec4I-uQDLjFCwZm .navbar .icons-menu {
    padding: 0;
  }
}
.G3Qec4I-uQDLjFCwZm .navbar.navbar-short {
  min-height: 60px;
}
.G3Qec4I-uQDLjFCwZm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.G3Qec4I-uQDLjFCwZm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.G3Qec4I-uQDLjFCwZm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.G3Qec4I-uQDLjFCwZm .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.G3Qec4I-uQDLjFCwZm .navbar-brand .navbar-logo a {
  outline: none;
}
.G3Qec4I-uQDLjFCwZm .dropdown-item.active,
.G3Qec4I-uQDLjFCwZm .dropdown-item:active {
  background-color: transparent;
}
.G3Qec4I-uQDLjFCwZm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.G3Qec4I-uQDLjFCwZm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.G3Qec4I-uQDLjFCwZm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.G3Qec4I-uQDLjFCwZm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.G3Qec4I-uQDLjFCwZm ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.G3Qec4I-uQDLjFCwZm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.G3Qec4I-uQDLjFCwZm button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #3d3028;
  background: #cccccc;
}
.G3Qec4I-uQDLjFCwZm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #080808;
}
.G3Qec4I-uQDLjFCwZm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.G3Qec4I-uQDLjFCwZm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDLjFCwZm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDLjFCwZm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.G3Qec4I-uQDLjFCwZm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDLjFCwZm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDLjFCwZm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDLjFCwZm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDLjFCwZm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.G3Qec4I-uQDLjFCwZm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .G3Qec4I-uQDLjFCwZm .navbar {
    height: 70px;
  }
  .G3Qec4I-uQDLjFCwZm .navbar.opened {
    height: auto;
  }
  .G3Qec4I-uQDLjFCwZm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.G3Qec4I-uQDLjFCwZm .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .G3Qec4I-uQDLjFCwZm .container-fluid {
    padding: 0 36px;
  }
}
.G3Qec4I-uQDLjFCwZm .alignment-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDLjFCwZm .alignment-section-btn-main {
    display: block;
    padding: 0;
  }
}
.G3Qec4I-uQDLjFCwZm .alignment-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 225px;
  white-space: nowrap;
}
.G3Qec4I-uQDLjFCwZm .navbar-caption:hover {
  color: #b34700;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDLjFCwZm .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.G3Qec4I-uQDLjFCwZm .text_widget {
  margin-bottom: 32px;
}
.G3Qec4I-uQDLjFCwZm .text_widget a {
  transition: all 0.3s ease-out;
}
.G3Qec4I-uQDLjFCwZm .text_widget a:hover,
.G3Qec4I-uQDLjFCwZm .text_widget a:focus {
  opacity: .7;
}
.G3Qec4I-uQDLjFCwZm .alignment-section-subtitle {
  color: #080808;
  text-align: center;
}
.G3Qec4I-uQDLjFCwZm .navbar-caption {
  color: #080808;
}
.G3Qec4I-uQDLjFCwZm .alignment-text {
  color: #333333;
  text-align: center;
}
.G3Qec4I-uQDLjFCwZm .alignment-section-subtitle,
.G3Qec4I-uQDLjFCwZm .text_widget,
.G3Qec4I-uQDLjFCwZm .alignment-section-btn {
  text-align: center;
}
.G3Qec4I-uQDLjFCwZm a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.G3Qec4I-uQDLjGBmdj {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #fff4e3;
}
.G3Qec4I-uQDLjGBmdj .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDLjGBmdj .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDLjGBmdj .alignment-section-title {
  color: #000000;
}
.G3Qec4I-uQDLjGBmdj .alignment-text {
  color: #000000;
}
.G3Qec4I-uQDOzYOErA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e1a18;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDOzYOErA .row {
  justify-content: center;
}
.G3Qec4I-uQDOzYOErA .row .card {
  justify-content: space-between;
}
.G3Qec4I-uQDOzYOErA .content-wrapper {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 100%;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper img {
  height: 260px;
  object-fit: cover;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .title-wrapper .alignment-section-title {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .alignment-list-title {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:hover,
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn .btn {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #bac0cc;
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-list-title {
  color: #b34700;
}
.G3Qec4I-uQDOzYOErA .list {
  color: #58595b;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title,
.G3Qec4I-uQDOzYOErA .alignment-section-btn,
.G3Qec4I-uQDOzYOErA .content-wrapper {
  color: #b34700;
}
.G3Qec4I-uQDLjV1OP8 {
  background-color: transparent;
}
.G3Qec4I-uQDLjV1OP8 .navbar-dropdown {
  background-color: #3d3028 !important;
  padding: 0;
}
.G3Qec4I-uQDLjV1OP8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #3d3028 !important;
  background: #3d3028;
}
.G3Qec4I-uQDLjV1OP8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.G3Qec4I-uQDLjV1OP8 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjV1OP8 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .G3Qec4I-uQDLjV1OP8 .menu_box .navbar.opened,
  .G3Qec4I-uQDLjV1OP8 .menu_box .navbar-collapse {
    background-color: #3d3028 !important;
    transition: all 0s ease 0s;
  }
}
.G3Qec4I-uQDLjV1OP8 .navbar-dropdown {
  position: relative !important;
}
.G3Qec4I-uQDLjV1OP8 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjV1OP8 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjV1OP8 .alignment-section-btn-main {
    margin-top: 1rem;
  }
}
.G3Qec4I-uQDLjV1OP8 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.G3Qec4I-uQDLjV1OP8 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDLjV1OP8 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f0f0f0;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas-body .alignment-text,
  .G3Qec4I-uQDLjV1OP8 .offcanvas-body .alignment-section-subtitle {
    margin-bottom: 32px;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #080808;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .G3Qec4I-uQDLjV1OP8 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .G3Qec4I-uQDLjV1OP8 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDLjV1OP8 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .G3Qec4I-uQDLjV1OP8 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .G3Qec4I-uQDLjV1OP8 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .G3Qec4I-uQDLjV1OP8 .lg_brand {
    margin: 0 1rem;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.G3Qec4I-uQDLjV1OP8 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .G3Qec4I-uQDLjV1OP8 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjV1OP8 .nav-item {
    margin: 0 !important;
  }
}
.G3Qec4I-uQDLjV1OP8 .nav-item .nav-link {
  transition: all 0.5s ease-out;
}
.G3Qec4I-uQDLjV1OP8 .nav-item .nav-link:hover,
.G3Qec4I-uQDLjV1OP8 .nav-item .nav-link:focus {
  opacity: .7;
}
.G3Qec4I-uQDLjV1OP8 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDLjV1OP8 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .G3Qec4I-uQDLjV1OP8 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjV1OP8 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .G3Qec4I-uQDLjV1OP8 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .G3Qec4I-uQDLjV1OP8 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .G3Qec4I-uQDLjV1OP8 .offcanvas_box {
    display: none;
  }
}
.G3Qec4I-uQDLjV1OP8 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.G3Qec4I-uQDLjV1OP8 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.G3Qec4I-uQDLjV1OP8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.G3Qec4I-uQDLjV1OP8 .container {
  display: flex;
  margin: auto;
}
.G3Qec4I-uQDLjV1OP8 .iconfont-wrapper {
  color: #333333;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.G3Qec4I-uQDLjV1OP8 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.G3Qec4I-uQDLjV1OP8 .iconfont-wrapper:hover {
  opacity: .5;
}
.G3Qec4I-uQDLjV1OP8 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDLjV1OP8 .navbar-nav {
    margin: 0;
  }
}
.G3Qec4I-uQDLjV1OP8 .dropdown-menu,
.G3Qec4I-uQDLjV1OP8 .navbar.opened {
  background-color: false !important;
}
.G3Qec4I-uQDLjV1OP8 .nav-item:focus,
.G3Qec4I-uQDLjV1OP8 .nav-link:focus {
  outline: none;
}
.G3Qec4I-uQDLjV1OP8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDLjV1OP8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.G3Qec4I-uQDLjV1OP8 .dropdown .dropdown-menu .dropdown-item .alignment-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.G3Qec4I-uQDLjV1OP8 .dropdown .dropdown-menu .dropdown-item .alignment-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.G3Qec4I-uQDLjV1OP8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.G3Qec4I-uQDLjV1OP8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.G3Qec4I-uQDLjV1OP8 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDLjV1OP8 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.G3Qec4I-uQDLjV1OP8 .navbar.opened {
  transition: all 0.3s;
}
.G3Qec4I-uQDLjV1OP8 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.G3Qec4I-uQDLjV1OP8 .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.G3Qec4I-uQDLjV1OP8 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.G3Qec4I-uQDLjV1OP8 .navbar.collapsed {
  justify-content: center;
}
.G3Qec4I-uQDLjV1OP8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.G3Qec4I-uQDLjV1OP8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.G3Qec4I-uQDLjV1OP8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.G3Qec4I-uQDLjV1OP8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.G3Qec4I-uQDLjV1OP8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.G3Qec4I-uQDLjV1OP8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.G3Qec4I-uQDLjV1OP8 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .G3Qec4I-uQDLjV1OP8 .navbar .nav-item {
    padding: .5rem 0;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar .icons-menu {
    padding: 0;
  }
}
.G3Qec4I-uQDLjV1OP8 .navbar.navbar-short {
  min-height: 60px;
}
.G3Qec4I-uQDLjV1OP8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.G3Qec4I-uQDLjV1OP8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.G3Qec4I-uQDLjV1OP8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.G3Qec4I-uQDLjV1OP8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.G3Qec4I-uQDLjV1OP8 .navbar-brand .navbar-logo a {
  outline: none;
}
.G3Qec4I-uQDLjV1OP8 .dropdown-item.active,
.G3Qec4I-uQDLjV1OP8 .dropdown-item:active {
  background-color: transparent;
}
.G3Qec4I-uQDLjV1OP8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.G3Qec4I-uQDLjV1OP8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.G3Qec4I-uQDLjV1OP8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.G3Qec4I-uQDLjV1OP8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.G3Qec4I-uQDLjV1OP8 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.G3Qec4I-uQDLjV1OP8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.G3Qec4I-uQDLjV1OP8 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #3d3028;
  background: #cccccc;
}
.G3Qec4I-uQDLjV1OP8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #080808;
}
.G3Qec4I-uQDLjV1OP8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.G3Qec4I-uQDLjV1OP8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDLjV1OP8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.G3Qec4I-uQDLjV1OP8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.G3Qec4I-uQDLjV1OP8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDLjV1OP8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDLjV1OP8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.G3Qec4I-uQDLjV1OP8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.G3Qec4I-uQDLjV1OP8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.G3Qec4I-uQDLjV1OP8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .G3Qec4I-uQDLjV1OP8 .navbar {
    height: 70px;
  }
  .G3Qec4I-uQDLjV1OP8 .navbar.opened {
    height: auto;
  }
  .G3Qec4I-uQDLjV1OP8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.G3Qec4I-uQDLjV1OP8 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .G3Qec4I-uQDLjV1OP8 .container-fluid {
    padding: 0 36px;
  }
}
.G3Qec4I-uQDLjV1OP8 .alignment-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDLjV1OP8 .alignment-section-btn-main {
    display: block;
    padding: 0;
  }
}
.G3Qec4I-uQDLjV1OP8 .alignment-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 225px;
  white-space: nowrap;
}
.G3Qec4I-uQDLjV1OP8 .navbar-caption:hover {
  color: #b34700;
}
@media (min-width: 992px) {
  .G3Qec4I-uQDLjV1OP8 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.G3Qec4I-uQDLjV1OP8 .text_widget {
  margin-bottom: 32px;
}
.G3Qec4I-uQDLjV1OP8 .text_widget a {
  transition: all 0.3s ease-out;
}
.G3Qec4I-uQDLjV1OP8 .text_widget a:hover,
.G3Qec4I-uQDLjV1OP8 .text_widget a:focus {
  opacity: .7;
}
.G3Qec4I-uQDLjV1OP8 .alignment-section-subtitle {
  color: #080808;
  text-align: center;
}
.G3Qec4I-uQDLjV1OP8 .navbar-caption {
  color: #080808;
}
.G3Qec4I-uQDLjV1OP8 .alignment-text {
  color: #333333;
  text-align: center;
}
.G3Qec4I-uQDLjV1OP8 .alignment-section-subtitle,
.G3Qec4I-uQDLjV1OP8 .text_widget,
.G3Qec4I-uQDLjV1OP8 .alignment-section-btn {
  text-align: center;
}
.G3Qec4I-uQDLjV1OP8 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.G3Qec4I-uQDLjVSHeN {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #fff4e3;
}
.G3Qec4I-uQDLjVSHeN .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDLjVSHeN .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDLjVSHeN .alignment-section-title {
  color: #000000;
}
.G3Qec4I-uQDLjVSHeN .alignment-text {
  color: #000000;
}
.G3Qec4I-uQDOzYOErA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e1a18;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image.disabled {
  display: none;
}
.G3Qec4I-uQDOzYOErA .alignment-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.G3Qec4I-uQDOzYOErA .row {
  justify-content: center;
}
.G3Qec4I-uQDOzYOErA .row .card {
  justify-content: space-between;
}
.G3Qec4I-uQDOzYOErA .content-wrapper {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap {
    width: 100%;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .image-wrapper img {
  height: 260px;
  object-fit: cover;
}
.G3Qec4I-uQDOzYOErA .content-wrapper .content-wrap .title-wrapper .alignment-section-title {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .alignment-list-title {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:hover,
.G3Qec4I-uQDOzYOErA .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn {
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-section-btn .btn {
  margin-bottom: 0;
}
.G3Qec4I-uQDOzYOErA .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #bac0cc;
  margin-bottom: 20px;
}
.G3Qec4I-uQDOzYOErA .alignment-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title {
  color: #093388;
}
.G3Qec4I-uQDOzYOErA .alignment-list-title {
  color: #b34700;
}
.G3Qec4I-uQDOzYOErA .list {
  color: #58595b;
}
.G3Qec4I-uQDOzYOErA .alignment-section-title,
.G3Qec4I-uQDOzYOErA .alignment-section-btn,
.G3Qec4I-uQDOzYOErA .content-wrapper {
  color: #b34700;
}

/* 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 */
/* */
#cookieAcceptBtn:hover {
  background: linear-gradient(145deg, #0056b3, #004494);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.9);
}

#cookieRejectBtn:hover {
  background: linear-gradient(145deg, #e0e0e0, #d6d6d6);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2), -6px -6px 12px rgba(255, 255, 255, 0.8);
}

/*768px*/
@media (max-width: 768px) {
  #cookieAcceptBtn:hover,
  #cookieRejectBtn:hover {
    box-shadow: none;
  }
}

/*480px*/
@media (max-width: 480px) {
  #cookieAcceptBtn:hover,
  #cookieRejectBtn:hover {
    box-shadow: none;
  }
}

/* logoanimations */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
    75% {
        transform: translateX(-5px);
    }
}

.navbar-brand {
    animation: shake 0.8s ease-in-out;
}
/* endlogoanimations */

/* mainanimations */
/* Style 20: rotate 10deg */
a, button, .btn {
  transition: transform 0.1s ease;
}
a:active, button:active, .btn:active {
  transform: rotate(10deg);
}
/* endmainanimations */
