body {
  font-family: Anek Latin;
}
.display-1 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .depth-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 4.75rem;
  line-height: 1.1;
}
.display-2 > .depth-iconfont {
  font-size: 5.9375rem;
}
.display-4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .depth-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
}
.display-5 > .depth-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .depth-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.8rem;
    font-size: calc( 2.3125rem + (4.75 - 2.3125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.3125rem + (4.75 - 2.3125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #c19c1c !important;
}
.bg-info {
  background-color: #ffe589 !important;
}
.bg-warning {
  background-color: #ffaa5c !important;
}
.bg-danger {
  background-color: #c06816 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !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 {
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffdd65 !important;
  border-color: #ffdd65 !important;
  color: #654f00 !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 {
  border-color: #ffca0e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #654f00 !important;
  background-color: #ffca0e !important;
  border-color: #ffca0e !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffe589 !important;
  border-color: #ffe589 !important;
  color: #896b00 !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 {
  border-color: #ffd232 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #896b00 !important;
  background-color: #ffd232 !important;
  border-color: #ffd232 !important;
}
.btn-success,
.btn-success:active {
  background-color: #c19c1c !important;
  border-color: #c19c1c !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 {
  border-color: #755f11 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #755f11 !important;
  border-color: #755f11 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffaa5c !important;
  border-color: #ffaa5c !important;
  color: #ffffff !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 {
  border-color: #ff7d05 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff7d05 !important;
  border-color: #ff7d05 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c06816 !important;
  border-color: #c06816 !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 {
  border-color: #723e0d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #723e0d !important;
  border-color: #723e0d !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 {
  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: #212132 !important;
  border-color: #212132 !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 {
  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: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffdd65;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffdd65 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #654f00 !important;
  background-color: #ffdd65 !important;
  border-color: #ffdd65 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe589;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffe589 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #896b00 !important;
  background-color: #ffe589 !important;
  border-color: #ffe589 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c19c1c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #c19c1c !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: #c19c1c !important;
  border-color: #c19c1c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffaa5c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffaa5c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffaa5c !important;
  border-color: #ffaa5c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c06816;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c06816 !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: #c06816 !important;
  border-color: #c06816 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #212132;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #212132 !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: #212132 !important;
  border-color: #212132 !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: #fafafa !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: #000000 !important;
}
.text-secondary {
  color: #ffdd65 !important;
}
.text-success {
  color: #c19c1c !important;
}
.text-info {
  color: #ffe589 !important;
}
.text-warning {
  color: #ffaa5c !important;
}
.text-danger {
  color: #c06816 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #212132 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #fec600 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #68540f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #ffcf23 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f57500 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #64360c !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: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #212132;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffe589;
}
.alert-warning {
  background-color: #ffaa5c;
}
.alert-danger {
  background-color: #c06816;
}
.depth-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.depth-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.depth-plan-header.bg-primary .depth-plan-subtitle,
.depth-plan-header.bg-primary .depth-plan-price-desc {
  color: #b3b3b3;
}
.depth-plan-header.bg-success .depth-plan-subtitle,
.depth-plan-header.bg-success .depth-plan-price-desc {
  color: #ebd072;
}
.depth-plan-header.bg-info .depth-plan-subtitle,
.depth-plan-header.bg-info .depth-plan-price-desc {
  color: #ffffff;
}
.depth-plan-header.bg-warning .depth-plan-subtitle,
.depth-plan-header.bg-warning .depth-plan-price-desc {
  color: #ffffff;
}
.depth-plan-header.bg-danger .depth-plan-subtitle,
.depth-plan-header.bg-danger .depth-plan-price-desc {
  color: #eea868;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .depth-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .depth-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #ffdd65 !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='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition-duration: .2s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1440px;
  padding-left: 6vw;
  padding-right: 6vw;
}
@media (max-width: 991px) {
  .container {
    max-width: 80vw;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media (min-width: 1600px) {
  .container {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.container-fluid {
  padding-left: 6vw;
  padding-right: 6vw;
}
@media (max-width: 767px) {
  .container-fluid {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media (min-width: 1600px) {
  .container-fluid {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.row {
  margin-left: -6vw;
  margin-right: -6vw;
}
.row > [class*="col"] {
  padding-left: 6vw;
  padding-right: 6vw;
}
@media (max-width: 767px) {
  .row {
    margin-left: -3vw;
    margin-right: -3vw;
  }
  .row > [class*="col"] {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media (min-width: 1600px) {
  .row {
    margin-left: -96px;
    margin-right: -96px;
  }
  .row > [class*="col"] {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.row {
  justify-content: center;
}
.depth-section-btn .btn {
  min-width: 100px;
  min-height: 40px;
  padding: 20px 40px;
  line-height: 1.55;
  font-weight: 500;
  transition-duration: .2s;
  border-radius: 0.75rem !important;
  box-shadow: none !important;
  border: none !important;
}
@media (max-width: 575px) {
  .depth-section-btn {
    width: 100%;
  }
  .depth-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.custom-depth-section-btn {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.custom-section-btn {
  display: inline-block;
  padding: 3px;
  position: relative;
  border-radius: 0.75rem !important;
  margin-top: 0.42rem;
  margin-left: 0.42rem;
}
.custom-section-btn::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem !important;
  transition: all 300ms ease;
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.custom-section-btn .btn {
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  position: relative;
  z-index: 11;
  transform-style: preserve-3d;
  transition: all 300ms ease;
  border: none !important;
  margin: 0 !important;
  min-height: 106px;
  padding: 20px 40px;
}
@media (max-width: 767px) {
  .custom-section-btn .btn {
    padding: 12px 24px;
    min-height: 68px;
  }
}
.custom-section-btn:hover .btn {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.custom-section-btn:hover::after {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.lYErDWww-uO6dn6xKz6 .navbar-dropdown {
  position: relative !important;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:before {
  font-family: color2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:hover,
.lYErDWww-uO6dn6xKz6 .dropdown-item:focus {
  color: #000000 !important;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.lYErDWww-uO6dn6xKz6 .nav-link {
  position: relative;
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .container {
  display: flex;
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .dropdown-menu,
.lYErDWww-uO6dn6xKz6 .navbar.opened {
  background: #ffffff !important;
}
.lYErDWww-uO6dn6xKz6 .nav-item:focus,
.lYErDWww-uO6dn6xKz6 .nav-link:focus {
  outline: none;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item .depth-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item .depth-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.lYErDWww-uO6dn6xKz6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.lYErDWww-uO6dn6xKz6 .navbar.opened {
  transition: all 0.3s;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.lYErDWww-uO6dn6xKz6 .navbar .navbar-logo img {
  width: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed {
  justify-content: center;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .lYErDWww-uO6dn6xKz6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6dn6xKz6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .lYErDWww-uO6dn6xKz6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .lYErDWww-uO6dn6xKz6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short {
  min-height: 60px;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .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;
}
.lYErDWww-uO6dn6xKz6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.lYErDWww-uO6dn6xKz6 .navbar-brand .navbar-logo a {
  outline: none;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item.active,
.lYErDWww-uO6dn6xKz6 .dropdown-item:active {
  background-color: transparent;
}
.lYErDWww-uO6dn6xKz6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.lYErDWww-uO6dn6xKz6 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.lYErDWww-uO6dn6xKz6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 .navbar-dropdown {
  padding: 19px 1rem;
}
.lYErDWww-uO6dn6xKz6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lYErDWww-uO6dn6xKz6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .lYErDWww-uO6dn6xKz6 .navbar {
    height: 70px;
  }
  .lYErDWww-uO6dn6xKz6 .navbar.opened {
    height: auto;
  }
  .lYErDWww-uO6dn6xKz6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.lYErDWww-uO6dn6xKz6 a {
  display: inline;
}
.lYErDWww-uO6dn6xKz6 img {
  display: inline;
  padding-right: 10px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle:after {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:hover {
  color: #c19c1c !important;
}
@media (max-width: 990px) {
  .lYErDWww-uO6dn6xKz6 .dropdown-menu {
    margin-top: 0px;
  }
  .lYErDWww-uO6dn6xKz6 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.lYErDWww-uO6dn6xKz6 .depth-buttons {
  margin: 20px -6px 20px;
}
.lYErDWww-uO6dn6xKz6 .nav-item {
  margin-right: 32px;
}
.lYErDWww-uO6dn6xKz6 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .lYErDWww-uO6dn6xKz6 ul li {
    height: 45px;
    display: list-item;
  }
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.lYErDWww-uO6dn6xKz6 .navbar-nav {
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.lYErDWww-uO6dn6xKz6 .depth-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.lYErDWww-uO6dn6xKz6 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:focus {
  color: #c19c1c !important;
}
@media (max-width: 945px) {
  .lYErDWww-uO6dn6xKz6 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .lYErDWww-uO6dn6xKz6 .top {
    margin-top: 25px;
  }
}
.lYErDWww-uO6dn6xKz6 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .lYErDWww-uO6dn6xKz6 .container,
  .lYErDWww-uO6dn6xKz6 .container-fluid {
    flex-wrap: nowrap;
  }
}
.lYErDWww-uO6dn6xKz6 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .lYErDWww-uO6dn6xKz6 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .lYErDWww-uO6dn6xKz6 .icons-menu {
    min-width: initial !important;
  }
  .lYErDWww-uO6dn6xKz6 a.btn {
    margin-top: 10px;
  }
}
.lYErDWww-uO6dn6xKz6 a.btn > span {
  margin-left: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .navbar-nav .nav-item .nav-link:hover,
.lYErDWww-uO6dn6xKz6 .navbar-nav .nav-item .nav-link:focus {
  color: #c19c1c !important;
}
.lYErDWww-uO6uPEnBYc {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff7db;
  background: linear-gradient(180deg, #fff7db, #ffffff);
}
@media (max-width: 1400px) {
  .lYErDWww-uO6uPEnBYc .display-1 {
    font-size: 2.24rem;
  }
}
@media (max-width: 575px) {
  .lYErDWww-uO6uPEnBYc .row {
    text-align: center!important;
  }
}
.lYErDWww-uO6uPEnBYc .content-container {
  width: 100%;
  padding: 3.5rem 2.5rem;
  border-radius: 2rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffe589);
  background: linear-gradient(90deg, #ffffff, #ffe589) !important;
}
@media (max-width: 767px) {
  .lYErDWww-uO6uPEnBYc .content-container {
    padding: 1rem 0rem;
    padding-top: 2rem;
  }
}
.lYErDWww-uO6uPEnBYc img {
  border-radius: 2rem;
  height: 100%;
  object-fit: cover;
}
.lYErDWww-uO6uPEnBYc .depth-section-title {
  color: #ffffff;
}
@media (max-width: 575px) {
  .lYErDWww-uO6uPEnBYc .depth-section-title {
    text-align: center;
  }
}
.lYErDWww-uO6uPEnBYc .depth-text {
  color: #000000;
  text-align: center;
}
.lYErDWww-uO6uPEnBYc .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6uPEnBYc .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uO6uPEnBYc .depth-section-title,
.lYErDWww-uO6uPEnBYc .depth-section-btn {
  text-align: center;
  color: #000000;
}
.lYErDWww-uO6v3ynFVv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7db;
}
.lYErDWww-uO6v3ynFVv .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6v3ynFVv .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uO6v3ynFVv .container {
  max-width: 1280px;
}
.lYErDWww-uO6v3ynFVv .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #ffffff;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6v3ynFVv .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .lYErDWww-uO6v3ynFVv .content-wrapper {
    padding: 40px 6vw;
  }
}
.lYErDWww-uO6v3ynFVv .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 45%;
}
@media (max-width: 991px) {
  .lYErDWww-uO6v3ynFVv .text-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }
}
.lYErDWww-uO6v3ynFVv .label-container {
  padding: 4px 12px;
  border-radius: 100vw;
  background-color: #ffe589;
  margin-bottom: 20px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .lYErDWww-uO6v3ynFVv .label-container {
    margin-bottom: 12px;
  }
}
.lYErDWww-uO6v3ynFVv .label-text {
  color: #212132;
  text-align: center;
}
.lYErDWww-uO6v3ynFVv .depth-section-title {
  color: #000000;
  margin-bottom: 1.5rem;
  width: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  .lYErDWww-uO6v3ynFVv .depth-section-title {
    margin-bottom: 24px;
  }
}
.lYErDWww-uO6v3ynFVv .depth-section-subtitle {
  color: #000000;
  margin-top: auto;
  width: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  .lYErDWww-uO6v3ynFVv .depth-section-subtitle {
    margin-top: 0;
  }
}
.lYErDWww-uO6v3ynFVv .card-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .lYErDWww-uO6v3ynFVv .card-container {
    right: calc(-4vw - 4rem);
  }
}
@media (max-width: 991px) {
  .lYErDWww-uO6v3ynFVv .card-container {
    width: 100%;
    margin-top: 40px;
    left: 0;
    right: 0;
  }
}
.lYErDWww-uO6v3ynFVv .card-item {
  position: relative;
  width: 46%;
  margin: 2%;
  transition: .3s all;
}
.lYErDWww-uO6v3ynFVv .card-item:hover {
  transform: scale(0.96);
}
@media (max-width: 575px) {
  .lYErDWww-uO6v3ynFVv .card-item {
    width: 96%;
    margin: 2%;
  }
}
.lYErDWww-uO6v3ynFVv .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: linear-gradient(135deg, #c19c1c 2.76%, #ffdd65 29.66%, #c19c1c 61%, #e4c03e 99.93%);
  filter: blur(1rem);
}
.lYErDWww-uO6v3ynFVv .card-border {
  position: relative;
  z-index: 6;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #c19c1c 2.76%, #ffdd65 29.66%, #c19c1c 61%, #e4c03e 99.93%);
}
.lYErDWww-uO6v3ynFVv .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 40px;
  background-color: #ffdd65;
  border-radius: 1.76rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6v3ynFVv .card-box {
    padding: 16px;
  }
}
.lYErDWww-uO6v3ynFVv .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 3px;
  min-width: 32px;
  min-height: 32px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .lYErDWww-uO6v3ynFVv .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.lYErDWww-uO6v3ynFVv .iconfont-wrapper .depth-iconfont {
  color: #000000;
  font-size: 64px;
}
.lYErDWww-uO6v3ynFVv .card-title {
  color: #000000;
  text-align: center;
}
.lYErDWww-uO6v3ynFVv .depth-text {
  color: #ffffff;
  margin-top: 12px;
}
@media (max-width: 991px) {
  .lYErDWww-uO6v3ynFVv .depth-text {
    margin-top: 8px;
  }
}
.lYErDWww-uO6v5OPQGE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.lYErDWww-uO6v5OPQGE .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6v5OPQGE .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uO6v5OPQGE .card-wrapper {
  overflow: hidden;
  display: flex;
}
@media (max-width: 992px) {
  .lYErDWww-uO6v5OPQGE .card-wrapper {
    display: block;
  }
}
.lYErDWww-uO6v5OPQGE .card-wrapper .items-wrapper {
  width: 50%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
@media (max-width: 992px) {
  .lYErDWww-uO6v5OPQGE .card-wrapper .items-wrapper {
    width: 100%;
    padding: 20px;
    min-height: 350px;
  }
}
.lYErDWww-uO6v5OPQGE .card-wrapper .items-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
.lYErDWww-uO6v5OPQGE .card-wrapper .items-wrapper .image-wrap img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 50%;
  object-fit: cover;
  z-index: 1;
  border-top: 1px solid #fff7db;
  border-right: 1px solid #fff7db;
}
.lYErDWww-uO6v5OPQGE .card-wrapper .content-wrapper {
  width: 50%;
  padding: 30px;
  background-color: #fff7db;
}
@media (max-width: 992px) {
  .lYErDWww-uO6v5OPQGE .card-wrapper .content-wrapper {
    padding: 20px;
    width: 100%;
  }
}
.lYErDWww-uO6v5OPQGE .card-wrapper .content-wrapper .icon-wrapper {
  margin-bottom: 160px;
}
@media (max-width: 992px) {
  .lYErDWww-uO6v5OPQGE .card-wrapper .content-wrapper .icon-wrapper {
    margin-bottom: 20px;
  }
}
.lYErDWww-uO6v5OPQGE .card-wrapper .content-wrapper .icon-wrapper .depth-iconfont {
  display: inline-flex;
  font-size: 84px;
  color: #093388;
}
@media (max-width: 992px) {
  .lYErDWww-uO6v5OPQGE .card-wrapper .content-wrapper .icon-wrapper .depth-iconfont {
    font-size: 54px;
  }
}
.lYErDWww-uO6v5OPQGE .card-wrapper .content-wrapper .title-wrapper .depth-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .lYErDWww-uO6v5OPQGE .card-wrapper .content-wrapper .title-wrapper .depth-section-title {
    width: 100%;
  }
}
.lYErDWww-uO6v5OPQGE .card-wrapper .content-wrapper .text-wrapper .depth-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .lYErDWww-uO6v5OPQGE .card-wrapper .content-wrapper .text-wrapper .depth-text {
    width: 100%;
  }
}
.lYErDWww-uO6v5OPQGE .card-wrapper .content-wrapper .depth-section-btn .btn {
  margin-bottom: 0;
}
.lYErDWww-uO6v5OPQGE .depth-section-title {
  color: #093388;
}
.lYErDWww-uO6v5OPQGE .depth-text {
  color: #58595b;
}
.lYErDWww-uO6v5OPQGE .depth-text,
.lYErDWww-uO6v5OPQGE .text-wrapper {
  color: #000000;
  text-align: center;
}
.lYErDWww-uO6v5OPQGE .depth-section-title,
.lYErDWww-uO6v5OPQGE .depth-section-btn,
.lYErDWww-uO6v5OPQGE .title-wrapper,
.lYErDWww-uO6v5OPQGE .icon-wrapper {
  color: #000000;
  text-align: center;
}
.lYErDWww-uO6vfyY2jE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7db;
  position: relative;
  overflow: hidden;
}
.lYErDWww-uO6vfyY2jE::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #ffffff -10%, transparent 70%);
}
.lYErDWww-uO6vfyY2jE .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6vfyY2jE .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .lYErDWww-uO6vfyY2jE .container {
    padding: 0 16px;
  }
}
.lYErDWww-uO6vfyY2jE .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.lYErDWww-uO6vfyY2jE .content-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uO6vfyY2jE .content-wrapper .depth-text {
  margin-bottom: 0;
}
.lYErDWww-uO6vfyY2jE .depth-section-title {
  color: #000000;
  text-align: center;
}
.lYErDWww-uO6vfyY2jE .depth-text {
  color: #000000;
}
.lYErDWww-uO6vfyY2jE .depth-text,
.lYErDWww-uO6vfyY2jE .icon-wrapper {
  text-align: center;
}
.lYErDWww-uO6voJtaX4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.lYErDWww-uO6voJtaX4 .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6voJtaX4 .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .lYErDWww-uO6voJtaX4 .container {
    padding: 0 24px;
  }
}
.lYErDWww-uO6voJtaX4 .row .card {
  padding: 0 12px;
  border-radius: 0 !important;
}
.lYErDWww-uO6voJtaX4 .image-wrapper {
  height: 100%;
}
.lYErDWww-uO6voJtaX4 .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .lYErDWww-uO6voJtaX4 .image-wrapper img {
    height: 350px;
  }
}
.lYErDWww-uO6voJtaX4 .content-wrapper {
  display: flex;
  align-items: center;
  background-color: #fff7db;
  border-radius: .75rem;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .lYErDWww-uO6voJtaX4 .content-wrapper {
    padding: 24px;
  }
}
.lYErDWww-uO6voJtaX4 .content-wrapper .content-wrap {
  width: 100%;
}
.lYErDWww-uO6voJtaX4 .content-wrapper .content-wrap .depth-section-title {
  margin-bottom: 32px;
}
.lYErDWww-uO6voJtaX4 .content-wrapper .content-wrap .depth-text {
  margin-bottom: 16px;
}
.lYErDWww-uO6voJtaX4 .content-wrapper .content-wrap .depth-section-btn .btn::before {
  background-image: linear-gradient(90deg, #e4c03e 0%, transparent 100%);
}
.lYErDWww-uO6voJtaX4 .content-wrapper .content-wrap .depth-section-btn .btn:hover,
.lYErDWww-uO6voJtaX4 .content-wrapper .content-wrap .depth-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #e4c03e !important;
  border-color: #e4c03e !important;
}
.lYErDWww-uO6voJtaX4 .depth-section-title {
  color: #141414;
}
.lYErDWww-uO6voJtaX4 .depth-text {
  color: #141414;
  text-align: center;
}
.lYErDWww-uO6voJtaX4 .depth-section-title,
.lYErDWww-uO6voJtaX4 .title-wrapper,
.lYErDWww-uO6voJtaX4 .depth-section-btn {
  text-align: center;
}
.lYErDWww-uO6vs3Ahcz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7db;
}
.lYErDWww-uO6vs3Ahcz .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6vs3Ahcz .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uO6vs3Ahcz .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #ffffff -30%, #fff7db 20%, #ffffff 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .lYErDWww-uO6vs3Ahcz .card-wrapper {
    padding: 16px;
  }
}
.lYErDWww-uO6vs3Ahcz .card-wrapper .depth-section-title {
  margin-bottom: 22px;
}
.lYErDWww-uO6vs3Ahcz .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.lYErDWww-uO6vs3Ahcz .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.lYErDWww-uO6vs3Ahcz .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.lYErDWww-uO6vs3Ahcz .depth-section-title {
  color: #000000;
  text-align: center;
}
.lYErDWww-uO6vs3Ahcz .list {
  color: #ffffff;
  text-align: center;
}
.lYErDWww-uO6vs3Ahcz .list,
.lYErDWww-uO6vs3Ahcz .item-wrap,
.lYErDWww-uO6vs3Ahcz .tabs-wrapper {
  color: #000000;
}
.lYErDWww-uObW51tZ3N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uObW51tZ3N .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container {
    padding: 0 6px;
  }
}
.lYErDWww-uObW51tZ3N .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fff7db;
}
@media (max-width: 1440px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 30px;
  }
}
.lYErDWww-uObW51tZ3N .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.lYErDWww-uObW51tZ3N .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .title-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title span {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-btn .btn {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .list-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:hover,
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}
.lYErDWww-uObW51tZ3N .depth-section-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list,
.lYErDWww-uObW51tZ3N .item-wrap {
  color: #000000;
}
.lYErDWww-uObW51tZ3N .depth-section-title,
.lYErDWww-uObW51tZ3N .depth-section-btn {
  color: #000000;
}
.lYErDWww-uO6dn6xKz6 .navbar-dropdown {
  position: relative !important;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:before {
  font-family: color2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:hover,
.lYErDWww-uO6dn6xKz6 .dropdown-item:focus {
  color: #000000 !important;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.lYErDWww-uO6dn6xKz6 .nav-link {
  position: relative;
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .container {
  display: flex;
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .dropdown-menu,
.lYErDWww-uO6dn6xKz6 .navbar.opened {
  background: #ffffff !important;
}
.lYErDWww-uO6dn6xKz6 .nav-item:focus,
.lYErDWww-uO6dn6xKz6 .nav-link:focus {
  outline: none;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item .depth-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item .depth-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.lYErDWww-uO6dn6xKz6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.lYErDWww-uO6dn6xKz6 .navbar.opened {
  transition: all 0.3s;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.lYErDWww-uO6dn6xKz6 .navbar .navbar-logo img {
  width: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed {
  justify-content: center;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .lYErDWww-uO6dn6xKz6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6dn6xKz6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .lYErDWww-uO6dn6xKz6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .lYErDWww-uO6dn6xKz6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short {
  min-height: 60px;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .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;
}
.lYErDWww-uO6dn6xKz6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.lYErDWww-uO6dn6xKz6 .navbar-brand .navbar-logo a {
  outline: none;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item.active,
.lYErDWww-uO6dn6xKz6 .dropdown-item:active {
  background-color: transparent;
}
.lYErDWww-uO6dn6xKz6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.lYErDWww-uO6dn6xKz6 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.lYErDWww-uO6dn6xKz6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 .navbar-dropdown {
  padding: 19px 1rem;
}
.lYErDWww-uO6dn6xKz6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lYErDWww-uO6dn6xKz6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .lYErDWww-uO6dn6xKz6 .navbar {
    height: 70px;
  }
  .lYErDWww-uO6dn6xKz6 .navbar.opened {
    height: auto;
  }
  .lYErDWww-uO6dn6xKz6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.lYErDWww-uO6dn6xKz6 a {
  display: inline;
}
.lYErDWww-uO6dn6xKz6 img {
  display: inline;
  padding-right: 10px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle:after {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:hover {
  color: #c19c1c !important;
}
@media (max-width: 990px) {
  .lYErDWww-uO6dn6xKz6 .dropdown-menu {
    margin-top: 0px;
  }
  .lYErDWww-uO6dn6xKz6 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.lYErDWww-uO6dn6xKz6 .depth-buttons {
  margin: 20px -6px 20px;
}
.lYErDWww-uO6dn6xKz6 .nav-item {
  margin-right: 32px;
}
.lYErDWww-uO6dn6xKz6 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .lYErDWww-uO6dn6xKz6 ul li {
    height: 45px;
    display: list-item;
  }
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.lYErDWww-uO6dn6xKz6 .navbar-nav {
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.lYErDWww-uO6dn6xKz6 .depth-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.lYErDWww-uO6dn6xKz6 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:focus {
  color: #c19c1c !important;
}
@media (max-width: 945px) {
  .lYErDWww-uO6dn6xKz6 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .lYErDWww-uO6dn6xKz6 .top {
    margin-top: 25px;
  }
}
.lYErDWww-uO6dn6xKz6 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .lYErDWww-uO6dn6xKz6 .container,
  .lYErDWww-uO6dn6xKz6 .container-fluid {
    flex-wrap: nowrap;
  }
}
.lYErDWww-uO6dn6xKz6 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .lYErDWww-uO6dn6xKz6 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .lYErDWww-uO6dn6xKz6 .icons-menu {
    min-width: initial !important;
  }
  .lYErDWww-uO6dn6xKz6 a.btn {
    margin-top: 10px;
  }
}
.lYErDWww-uO6dn6xKz6 a.btn > span {
  margin-left: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .navbar-nav .nav-item .nav-link:hover,
.lYErDWww-uO6dn6xKz6 .navbar-nav .nav-item .nav-link:focus {
  color: #c19c1c !important;
}
.lYErDWww-uO6zHtNhuy {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fff7db;
}
.lYErDWww-uO6zHtNhuy .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6zHtNhuy .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uO6zHtNhuy .container {
  max-width: 1280px;
}
.lYErDWww-uO6zHtNhuy .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  padding: 4rem 0;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6zHtNhuy .content-wrapper {
    flex-wrap: wrap;
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .lYErDWww-uO6zHtNhuy .content-wrapper {
    padding: 4rem 6vw;
  }
}
.lYErDWww-uO6zHtNhuy .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .lYErDWww-uO6zHtNhuy .text-wrapper {
    width: 100%;
    min-height: 344px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .lYErDWww-uO6zHtNhuy .text-wrapper {
    min-height: auto;
  }
}
.lYErDWww-uO6zHtNhuy .card-title {
  color: #FFDD65;
}
.lYErDWww-uO6zHtNhuy .depth-text {
  color: #000000;
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 991px) {
  .lYErDWww-uO6zHtNhuy .depth-text {
    margin-top: 16px;
  }
}
.lYErDWww-uO6zHtNhuy .col-link {
  margin-top: auto;
}
@media (max-width: 767px) {
  .lYErDWww-uO6zHtNhuy .col-link {
    margin-top: 50px;
  }
}
.lYErDWww-uO6zHtNhuy .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  padding-left: 0;
}
.lYErDWww-uO6zHtNhuy .item-wrap {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 3px 24px 3px 3px;
  margin: 3px 5px;
  border-radius: 100vw;
  background-color: rgba(255, 255, 255, 0.01);
}
.lYErDWww-uO6zHtNhuy .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  padding: 3px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 100%;
  background-color: #ffe589;
}
.lYErDWww-uO6zHtNhuy .iconfont-wrapper .depth-iconfont {
  color: #000000;
  font-size: 16px;
}
.lYErDWww-uO6zHtNhuy .list-text {
  color: #000000;
}
.lYErDWww-uO6zHtNhuy .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  left: -6rem;
}
@media (max-width: 1599px) {
  .lYErDWww-uO6zHtNhuy .img-container {
    left: -4vw;
  }
}
@media (max-width: 991px) {
  .lYErDWww-uO6zHtNhuy .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
  }
}
.lYErDWww-uO6zHtNhuy .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #c19c1c 2.76%, #e4c03e 29.66%, #c19c1c 61%, #ffdd65 99.93%);
}
.lYErDWww-uO6zHtNhuy .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #c19c1c 2.76%, #e4c03e 29.66%, #c19c1c 61%, #ffdd65 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.lYErDWww-uO6zHtNhuy .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 1.76rem;
  overflow: hidden;
  height: 100%;
}
.lYErDWww-uO6zHtNhuy .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lYErDWww-uO6zHtNhuy .custom-section-btn {
  background-image: linear-gradient(90deg, #c19c1c 2.76%, #e4c03e 29.66%, #c19c1c 61%, #ffdd65 99.93%);
}
.lYErDWww-uO6zHtNhuy .custom-section-btn::after {
  background-image: linear-gradient(90deg, #c19c1c 2.76%, #e4c03e 29.66%, #c19c1c 61%, #ffdd65 99.93%);
}
.lYErDWww-uO6zHtNhuy .btn-container {
  width: 50%;
  margin-top: -3.5rem;
  padding-right: 4rem;
  margin-left: auto;
}
@media (max-width: 991px) {
  .lYErDWww-uO6zHtNhuy .btn-container {
    width: 100%;
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .lYErDWww-uO6zHtNhuy .btn-container {
    padding: 0 6vw;
  }
  .lYErDWww-uO6zHtNhuy .btn-container .custom-section-btn {
    width: 100%;
  }
  .lYErDWww-uO6zHtNhuy .btn-container .btn {
    width: 100%;
  }
}
.lYErDWww-uO6zHtNhuy .card-title,
.lYErDWww-uO6zHtNhuy .depth-section-btn {
  text-align: center;
  color: #000000;
}
.lYErDWww-uO6BpravwD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: linear-gradient(45deg, #fff7db -20%, #ffffff 40%, #ffffff 200%);
}
@media (max-width: 768px) {
  .lYErDWww-uO6BpravwD {
    background-image: linear-gradient(45deg, #fff7db -60%, #ffffff 40%, #ffffff 200%);
  }
}
.lYErDWww-uO6BpravwD .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6BpravwD .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uO6BpravwD .row {
  justify-content: space-between;
}
.lYErDWww-uO6BpravwD .title-wrapper .depth-section-title {
  margin-bottom: 22px;
}
.lYErDWww-uO6BpravwD .items-wrapper .item {
  margin-bottom: 32px;
}
.lYErDWww-uO6BpravwD .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .lYErDWww-uO6BpravwD .items-wrapper .item {
    margin-bottom: 22px;
  }
}
.lYErDWww-uO6BpravwD .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.lYErDWww-uO6BpravwD .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.lYErDWww-uO6BpravwD .items-wrapper .item .item-wrapper .card-box .depth-section-btn {
  margin-top: 16px;
}
.lYErDWww-uO6BpravwD .depth-section-title {
  color: #ffffff;
}
.lYErDWww-uO6BpravwD .item-title {
  color: #ffffff;
}
.lYErDWww-uO6BpravwD .item-text {
  color: #000000;
}
.lYErDWww-uO6BpravwD .item-title,
.lYErDWww-uO6BpravwD .depth-section-btn {
  text-align: left;
  color: #000000;
}
.lYErDWww-uO6BpravwD .depth-section-title,
.lYErDWww-uO6BpravwD .title-wrapper {
  color: #000000;
}
.lYErDWww-uO6CiWsDjG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7db;
}
.lYErDWww-uO6CiWsDjG .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6CiWsDjG .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uO6CiWsDjG .row {
  justify-content: space-between;
}
.lYErDWww-uO6CiWsDjG .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 75px 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .lYErDWww-uO6CiWsDjG .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uO6CiWsDjG .card-wrapper {
    padding: 24px 12px;
    display: block;
  }
}
.lYErDWww-uO6CiWsDjG .card-wrapper .card-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .lYErDWww-uO6CiWsDjG .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 24px;
    padding: 0 14px;
  }
}
.lYErDWww-uO6CiWsDjG .card-wrapper .card-wrap .depth-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .lYErDWww-uO6CiWsDjG .card-wrapper .card-wrap .depth-section-title {
    margin-bottom: 24px;
  }
}
.lYErDWww-uO6CiWsDjG .card-wrapper .card-wrap .text-wrapper .depth-text {
  margin-bottom: 24px;
}
.lYErDWww-uO6CiWsDjG .card-wrapper .card-wrap .depth-section-btn .btn {
  margin-bottom: 0;
}
.lYErDWww-uO6CiWsDjG .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .lYErDWww-uO6CiWsDjG .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.lYErDWww-uO6CiWsDjG .card-wrapper .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .lYErDWww-uO6CiWsDjG .card-wrapper .image-wrapper img {
    height: 300px;
  }
}
.lYErDWww-uO6CiWsDjG .depth-section-title {
  color: #ffffff;
}
.lYErDWww-uO6CiWsDjG .depth-text,
.lYErDWww-uO6CiWsDjG .text-wrapper {
  color: #000000;
}
.lYErDWww-uO6CiWsDjG .depth-section-title,
.lYErDWww-uO6CiWsDjG .depth-section-btn {
  color: #000000;
  text-align: center;
}
.lYErDWww-uO6CzKXF5c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.lYErDWww-uO6CzKXF5c .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6CzKXF5c .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .lYErDWww-uO6CzKXF5c .container {
    padding: 0 16px;
  }
}
.lYErDWww-uO6CzKXF5c .card {
  justify-content: center;
}
.lYErDWww-uO6CzKXF5c .title-wrapper .depth-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #fff7db;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .lYErDWww-uO6CzKXF5c .title-wrapper .depth-section-title {
    margin-bottom: 32px;
  }
}
.lYErDWww-uO6CzKXF5c .text-wrapper .depth-text {
  margin-bottom: 24px;
}
.lYErDWww-uO6CzKXF5c .text-wrapper .depth-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.lYErDWww-uO6CzKXF5c .depth-section-title {
  color: #000000;
}
.lYErDWww-uO6CzKXF5c .depth-text {
  color: #000000;
}
.lYErDWww-uO6CzKXF5c .depth-desc {
  color: #000000;
}
.lYErDWww-uObW51tZ3N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uObW51tZ3N .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container {
    padding: 0 6px;
  }
}
.lYErDWww-uObW51tZ3N .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fff7db;
}
@media (max-width: 1440px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 30px;
  }
}
.lYErDWww-uObW51tZ3N .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.lYErDWww-uObW51tZ3N .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .title-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title span {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-btn .btn {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .list-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:hover,
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}
.lYErDWww-uObW51tZ3N .depth-section-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list,
.lYErDWww-uObW51tZ3N .item-wrap {
  color: #000000;
}
.lYErDWww-uObW51tZ3N .depth-section-title,
.lYErDWww-uObW51tZ3N .depth-section-btn {
  color: #000000;
}
.lYErDWww-uO6dn6xKz6 .navbar-dropdown {
  position: relative !important;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:before {
  font-family: color2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:hover,
.lYErDWww-uO6dn6xKz6 .dropdown-item:focus {
  color: #000000 !important;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.lYErDWww-uO6dn6xKz6 .nav-link {
  position: relative;
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .container {
  display: flex;
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .dropdown-menu,
.lYErDWww-uO6dn6xKz6 .navbar.opened {
  background: #ffffff !important;
}
.lYErDWww-uO6dn6xKz6 .nav-item:focus,
.lYErDWww-uO6dn6xKz6 .nav-link:focus {
  outline: none;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item .depth-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item .depth-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.lYErDWww-uO6dn6xKz6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.lYErDWww-uO6dn6xKz6 .navbar.opened {
  transition: all 0.3s;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.lYErDWww-uO6dn6xKz6 .navbar .navbar-logo img {
  width: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed {
  justify-content: center;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .lYErDWww-uO6dn6xKz6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6dn6xKz6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .lYErDWww-uO6dn6xKz6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .lYErDWww-uO6dn6xKz6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short {
  min-height: 60px;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .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;
}
.lYErDWww-uO6dn6xKz6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.lYErDWww-uO6dn6xKz6 .navbar-brand .navbar-logo a {
  outline: none;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item.active,
.lYErDWww-uO6dn6xKz6 .dropdown-item:active {
  background-color: transparent;
}
.lYErDWww-uO6dn6xKz6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.lYErDWww-uO6dn6xKz6 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.lYErDWww-uO6dn6xKz6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 .navbar-dropdown {
  padding: 19px 1rem;
}
.lYErDWww-uO6dn6xKz6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lYErDWww-uO6dn6xKz6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .lYErDWww-uO6dn6xKz6 .navbar {
    height: 70px;
  }
  .lYErDWww-uO6dn6xKz6 .navbar.opened {
    height: auto;
  }
  .lYErDWww-uO6dn6xKz6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.lYErDWww-uO6dn6xKz6 a {
  display: inline;
}
.lYErDWww-uO6dn6xKz6 img {
  display: inline;
  padding-right: 10px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle:after {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:hover {
  color: #c19c1c !important;
}
@media (max-width: 990px) {
  .lYErDWww-uO6dn6xKz6 .dropdown-menu {
    margin-top: 0px;
  }
  .lYErDWww-uO6dn6xKz6 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.lYErDWww-uO6dn6xKz6 .depth-buttons {
  margin: 20px -6px 20px;
}
.lYErDWww-uO6dn6xKz6 .nav-item {
  margin-right: 32px;
}
.lYErDWww-uO6dn6xKz6 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .lYErDWww-uO6dn6xKz6 ul li {
    height: 45px;
    display: list-item;
  }
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.lYErDWww-uO6dn6xKz6 .navbar-nav {
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.lYErDWww-uO6dn6xKz6 .depth-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.lYErDWww-uO6dn6xKz6 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:focus {
  color: #c19c1c !important;
}
@media (max-width: 945px) {
  .lYErDWww-uO6dn6xKz6 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .lYErDWww-uO6dn6xKz6 .top {
    margin-top: 25px;
  }
}
.lYErDWww-uO6dn6xKz6 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .lYErDWww-uO6dn6xKz6 .container,
  .lYErDWww-uO6dn6xKz6 .container-fluid {
    flex-wrap: nowrap;
  }
}
.lYErDWww-uO6dn6xKz6 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .lYErDWww-uO6dn6xKz6 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .lYErDWww-uO6dn6xKz6 .icons-menu {
    min-width: initial !important;
  }
  .lYErDWww-uO6dn6xKz6 a.btn {
    margin-top: 10px;
  }
}
.lYErDWww-uO6dn6xKz6 a.btn > span {
  margin-left: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .navbar-nav .nav-item .nav-link:hover,
.lYErDWww-uO6dn6xKz6 .navbar-nav .nav-item .nav-link:focus {
  color: #c19c1c !important;
}
.lYErDWww-uO6D6CAJ0J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7db;
}
.lYErDWww-uO6D6CAJ0J .container {
  max-width: 1600px;
}
.lYErDWww-uO6D6CAJ0J .row {
  align-items: center;
}
.lYErDWww-uO6D6CAJ0J .content-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .lYErDWww-uO6D6CAJ0J .content-container {
    flex-wrap: wrap;
  }
}
.lYErDWww-uO6D6CAJ0J .title-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  width: 45%;
  margin-right: auto;
}
@media (max-width: 991px) {
  .lYErDWww-uO6D6CAJ0J .title-container {
    max-width: 455px;
    margin-right: auto;
    margin-left: 0;
    width: 100%;
    margin-bottom: 40px;
  }
}
.lYErDWww-uO6D6CAJ0J .main-title {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}
.lYErDWww-uO6D6CAJ0J .main-subtitle {
  color: #000000;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .lYErDWww-uO6D6CAJ0J .main-subtitle {
    margin-top: 12px;
  }
}
.lYErDWww-uO6D6CAJ0J .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 2.08rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6D6CAJ0J .form-container {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    flex-wrap: nowrap;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .lYErDWww-uO6D6CAJ0J .form-container {
    flex-direction: column;
    align-items: center;
  }
}
.lYErDWww-uO6D6CAJ0J .form-subtitle {
  color: #212132;
  width: 100%;
  margin-bottom: 40px;
  text-align: left;
}
@media (max-width: 991px) {
  .lYErDWww-uO6D6CAJ0J .form-subtitle {
    width: 30%;
    padding-right: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .lYErDWww-uO6D6CAJ0J .form-subtitle {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .lYErDWww-uO6D6CAJ0J .form-size {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .lYErDWww-uO6D6CAJ0J .form-size {
    width: 100%;
  }
}
.lYErDWww-uO6D6CAJ0J form {
  width: 100%;
}
.lYErDWww-uO6D6CAJ0J form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.lYErDWww-uO6D6CAJ0J form p {
  color: #ffffff;
}
@media (max-width: 767px) {
  .lYErDWww-uO6D6CAJ0J form .depth-section-btn {
    width: 100%;
  }
}
.lYErDWww-uO6D6CAJ0J form .depth-section-btn .custom-section-btn {
  margin-left: 0 !important;
}
@media (max-width: 767px) {
  .lYErDWww-uO6D6CAJ0J form .depth-section-btn .custom-section-btn {
    width: 100%;
  }
}
.lYErDWww-uO6D6CAJ0J form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .lYErDWww-uO6D6CAJ0J form .form-group {
    margin-bottom: 12px !important;
  }
}
.lYErDWww-uO6D6CAJ0J form .group-container {
  position: relative;
  width: 100%;
  margin-top: 0.42rem;
}
.lYErDWww-uO6D6CAJ0J form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #c19c1c 29.66%, #ffdd65 61%, #c19c1c 99.93%);
}
.lYErDWww-uO6D6CAJ0J form .group-border {
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #c19c1c 29.66%, #ffdd65 61%, #c19c1c 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.lYErDWww-uO6D6CAJ0J form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.lYErDWww-uO6D6CAJ0J form .form-control {
  height: 100px;
  border: none !important;
  background: #fff3cd;
  box-shadow: none !important;
  border-radius: 0.75rem;
  margin-bottom: 0;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 32px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 767px) {
  .lYErDWww-uO6D6CAJ0J form .form-control {
    height: 62px;
    font-size: 16px;
    padding: 12px 24px;
  }
}
.lYErDWww-uO6D6CAJ0J form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.lYErDWww-uO6D6CAJ0J form .form-control::-moz-placeholder {
  color: #000000;
}
.lYErDWww-uO6D6CAJ0J form .form-control:-moz-placeholder {
  color: #939292;
}
.lYErDWww-uO6D6CAJ0J form .form-control:-ms-input-placeholder {
  color: #939292;
}
.lYErDWww-uO6D6CAJ0J form .form-control:hover {
  outline: none !important;
}
.lYErDWww-uO6D6CAJ0J form select {
  color: #939292 !important;
}
.lYErDWww-uO6D6CAJ0J form textarea {
  height: 200px;
}
.lYErDWww-uO6D6CAJ0J form input:active,
.lYErDWww-uO6D6CAJ0J form textarea:active,
.lYErDWww-uO6D6CAJ0J form input:focus,
.lYErDWww-uO6D6CAJ0J form textarea:focus {
  background-color: #FFFFFF !important;
}
.lYErDWww-uO6D6CAJ0J form input:active::-webkit-input-placeholder,
.lYErDWww-uO6D6CAJ0J form textarea:active::-webkit-input-placeholder,
.lYErDWww-uO6D6CAJ0J form input:focus::-webkit-input-placeholder,
.lYErDWww-uO6D6CAJ0J form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.lYErDWww-uO6D6CAJ0J form input:active::-moz-placeholder,
.lYErDWww-uO6D6CAJ0J form textarea:active::-moz-placeholder,
.lYErDWww-uO6D6CAJ0J form input:focus::-moz-placeholder,
.lYErDWww-uO6D6CAJ0J form textarea:focus::-moz-placeholder {
  color: #939292;
}
.lYErDWww-uO6D6CAJ0J form input:active:-moz-placeholder,
.lYErDWww-uO6D6CAJ0J form textarea:active:-moz-placeholder,
.lYErDWww-uO6D6CAJ0J form input:focus:-moz-placeholder,
.lYErDWww-uO6D6CAJ0J form textarea:focus:-moz-placeholder {
  color: #939292;
}
.lYErDWww-uO6D6CAJ0J form input:active:-ms-input-placeholder,
.lYErDWww-uO6D6CAJ0J form textarea:active:-ms-input-placeholder,
.lYErDWww-uO6D6CAJ0J form input:focus:-ms-input-placeholder,
.lYErDWww-uO6D6CAJ0J form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.lYErDWww-uO6D6CAJ0J form .row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.lYErDWww-uO6D6CAJ0J form .row [class*=col] {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.lYErDWww-uO6D6CAJ0J form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.lYErDWww-uO6D6CAJ0J form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.lYErDWww-uO6D6CAJ0J form .form-check-input:focus,
.lYErDWww-uO6D6CAJ0J form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.lYErDWww-uO6D6CAJ0J form .form-check-input:checked {
  border-color: #ffffff !important;
}
.lYErDWww-uO6D6CAJ0J .custom-section-btn {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #c19c1c 29.66%, #ffdd65 61%, #c19c1c 99.93%);
}
.lYErDWww-uO6D6CAJ0J .custom-section-btn::after {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #c19c1c 29.66%, #ffdd65 61%, #c19c1c 99.93%);
}
.lYErDWww-uO6D6CAJ0J .main-subtitle DIV {
  text-align: center;
}
.lYErDWww-uObSzN22JV {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fff7db;
}
.lYErDWww-uObSzN22JV .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uObSzN22JV .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uObSzN22JV .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #ffffff -30%, #ffefb9 20%, #ffffff 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .lYErDWww-uObSzN22JV .card-wrapper {
    padding: 16px;
  }
}
.lYErDWww-uObSzN22JV .card-wrapper .depth-section-title {
  margin-bottom: 22px;
}
.lYErDWww-uObSzN22JV .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.lYErDWww-uObSzN22JV .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.lYErDWww-uObSzN22JV .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.lYErDWww-uObSzN22JV .depth-section-title {
  color: #000000;
  text-align: center;
}
.lYErDWww-uObSzN22JV .list {
  color: #ffffff;
  text-align: center;
}
.lYErDWww-uObSzN22JV .list,
.lYErDWww-uObSzN22JV .item-wrap,
.lYErDWww-uObSzN22JV .tabs-wrapper {
  color: #000000;
}
.lYErDWww-uObW51tZ3N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uObW51tZ3N .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container {
    padding: 0 6px;
  }
}
.lYErDWww-uObW51tZ3N .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fff7db;
}
@media (max-width: 1440px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 30px;
  }
}
.lYErDWww-uObW51tZ3N .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.lYErDWww-uObW51tZ3N .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .title-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title span {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-btn .btn {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .list-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:hover,
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}
.lYErDWww-uObW51tZ3N .depth-section-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list,
.lYErDWww-uObW51tZ3N .item-wrap {
  color: #000000;
}
.lYErDWww-uObW51tZ3N .depth-section-title,
.lYErDWww-uObW51tZ3N .depth-section-btn {
  color: #000000;
}
.lYErDWww-uO6dn6xKz6 .navbar-dropdown {
  position: relative !important;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:before {
  font-family: color2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:hover,
.lYErDWww-uO6dn6xKz6 .dropdown-item:focus {
  color: #000000 !important;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.lYErDWww-uO6dn6xKz6 .nav-link {
  position: relative;
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .container {
  display: flex;
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .dropdown-menu,
.lYErDWww-uO6dn6xKz6 .navbar.opened {
  background: #ffffff !important;
}
.lYErDWww-uO6dn6xKz6 .nav-item:focus,
.lYErDWww-uO6dn6xKz6 .nav-link:focus {
  outline: none;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item .depth-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item .depth-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.lYErDWww-uO6dn6xKz6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.lYErDWww-uO6dn6xKz6 .navbar.opened {
  transition: all 0.3s;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.lYErDWww-uO6dn6xKz6 .navbar .navbar-logo img {
  width: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed {
  justify-content: center;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .lYErDWww-uO6dn6xKz6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6dn6xKz6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .lYErDWww-uO6dn6xKz6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .lYErDWww-uO6dn6xKz6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short {
  min-height: 60px;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .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;
}
.lYErDWww-uO6dn6xKz6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.lYErDWww-uO6dn6xKz6 .navbar-brand .navbar-logo a {
  outline: none;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item.active,
.lYErDWww-uO6dn6xKz6 .dropdown-item:active {
  background-color: transparent;
}
.lYErDWww-uO6dn6xKz6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.lYErDWww-uO6dn6xKz6 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.lYErDWww-uO6dn6xKz6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 .navbar-dropdown {
  padding: 19px 1rem;
}
.lYErDWww-uO6dn6xKz6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lYErDWww-uO6dn6xKz6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .lYErDWww-uO6dn6xKz6 .navbar {
    height: 70px;
  }
  .lYErDWww-uO6dn6xKz6 .navbar.opened {
    height: auto;
  }
  .lYErDWww-uO6dn6xKz6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.lYErDWww-uO6dn6xKz6 a {
  display: inline;
}
.lYErDWww-uO6dn6xKz6 img {
  display: inline;
  padding-right: 10px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle:after {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:hover {
  color: #c19c1c !important;
}
@media (max-width: 990px) {
  .lYErDWww-uO6dn6xKz6 .dropdown-menu {
    margin-top: 0px;
  }
  .lYErDWww-uO6dn6xKz6 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.lYErDWww-uO6dn6xKz6 .depth-buttons {
  margin: 20px -6px 20px;
}
.lYErDWww-uO6dn6xKz6 .nav-item {
  margin-right: 32px;
}
.lYErDWww-uO6dn6xKz6 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .lYErDWww-uO6dn6xKz6 ul li {
    height: 45px;
    display: list-item;
  }
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.lYErDWww-uO6dn6xKz6 .navbar-nav {
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.lYErDWww-uO6dn6xKz6 .depth-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.lYErDWww-uO6dn6xKz6 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:focus {
  color: #c19c1c !important;
}
@media (max-width: 945px) {
  .lYErDWww-uO6dn6xKz6 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .lYErDWww-uO6dn6xKz6 .top {
    margin-top: 25px;
  }
}
.lYErDWww-uO6dn6xKz6 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .lYErDWww-uO6dn6xKz6 .container,
  .lYErDWww-uO6dn6xKz6 .container-fluid {
    flex-wrap: nowrap;
  }
}
.lYErDWww-uO6dn6xKz6 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .lYErDWww-uO6dn6xKz6 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .lYErDWww-uO6dn6xKz6 .icons-menu {
    min-width: initial !important;
  }
  .lYErDWww-uO6dn6xKz6 a.btn {
    margin-top: 10px;
  }
}
.lYErDWww-uO6dn6xKz6 a.btn > span {
  margin-left: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .navbar-nav .nav-item .nav-link:hover,
.lYErDWww-uO6dn6xKz6 .navbar-nav .nav-item .nav-link:focus {
  color: #c19c1c !important;
}
.lYErDWww-uO6E1YaPB5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff7db;
  overflow: hidden;
}
.lYErDWww-uO6E1YaPB5 .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6E1YaPB5 .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .lYErDWww-uO6E1YaPB5 .container {
    padding: 0 16px;
  }
}
.lYErDWww-uO6E1YaPB5 .row {
  justify-content: center;
}
.lYErDWww-uO6E1YaPB5 .content-wrapper {
  position: relative;
}
.lYErDWww-uO6E1YaPB5 .content-wrapper .icon-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .lYErDWww-uO6E1YaPB5 .content-wrapper .icon-wrapper {
    margin-bottom: 40px;
  }
}
.lYErDWww-uO6E1YaPB5 .content-wrapper .icon-wrapper .depth-iconfont {
  font-size: 42px;
  color: #e4c03e;
  display: inline-flex;
}
.lYErDWww-uO6E1YaPB5 .content-wrapper .depth-text {
  margin-bottom: 0;
}
.lYErDWww-uO6E1YaPB5 .content-wrapper .depth-text span {
  color: #000000;
}
.lYErDWww-uO6E1YaPB5 .content-wrapper .decor-wrapper {
  position: absolute;
  top: -10%;
  left: -12rem;
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #ffffff -10%, transparent 70%);
}
.lYErDWww-uO6E1YaPB5 .depth-text {
  color: #000000;
}
.lYErDWww-uO6E1YaPB5 .depth-text,
.lYErDWww-uO6E1YaPB5 .icon-wrapper {
  text-align: center;
}
.lYErDWww-uO6EowPeLZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.lYErDWww-uO6EowPeLZ .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6EowPeLZ .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .lYErDWww-uO6EowPeLZ .container {
    padding: 0 16px;
  }
}
.lYErDWww-uO6EowPeLZ .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.lYErDWww-uO6EowPeLZ .content-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uO6EowPeLZ .content-wrapper .depth-text {
  margin-bottom: 0;
}
.lYErDWww-uO6EowPeLZ .depth-section-title {
  color: #f1634f;
}
.lYErDWww-uO6EowPeLZ .depth-text {
  color: #000000;
}
.lYErDWww-uObW51tZ3N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uObW51tZ3N .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container {
    padding: 0 6px;
  }
}
.lYErDWww-uObW51tZ3N .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fff7db;
}
@media (max-width: 1440px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 30px;
  }
}
.lYErDWww-uObW51tZ3N .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.lYErDWww-uObW51tZ3N .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .title-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title span {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-btn .btn {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .list-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:hover,
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}
.lYErDWww-uObW51tZ3N .depth-section-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list,
.lYErDWww-uObW51tZ3N .item-wrap {
  color: #000000;
}
.lYErDWww-uObW51tZ3N .depth-section-title,
.lYErDWww-uObW51tZ3N .depth-section-btn {
  color: #000000;
}
.lYErDWww-uO6EzbGLew .navbar-dropdown {
  position: relative !important;
}
.lYErDWww-uO6EzbGLew .dropdown-item:before {
  font-family: color2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6EzbGLew .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.lYErDWww-uO6EzbGLew .dropdown-item:hover,
.lYErDWww-uO6EzbGLew .dropdown-item:focus {
  color: #000000 !important;
}
.lYErDWww-uO6EzbGLew .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.lYErDWww-uO6EzbGLew .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.lYErDWww-uO6EzbGLew .nav-link {
  position: relative;
  padding: 0;
}
.lYErDWww-uO6EzbGLew .container {
  display: flex;
  margin: auto;
}
.lYErDWww-uO6EzbGLew .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.lYErDWww-uO6EzbGLew .dropdown-menu,
.lYErDWww-uO6EzbGLew .navbar.opened {
  background: #ffffff !important;
}
.lYErDWww-uO6EzbGLew .nav-item:focus,
.lYErDWww-uO6EzbGLew .nav-link:focus {
  outline: none;
}
.lYErDWww-uO6EzbGLew .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6EzbGLew .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.lYErDWww-uO6EzbGLew .dropdown .dropdown-menu .dropdown-item .depth-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.lYErDWww-uO6EzbGLew .dropdown .dropdown-menu .dropdown-item .depth-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6EzbGLew .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.lYErDWww-uO6EzbGLew .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.lYErDWww-uO6EzbGLew .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.lYErDWww-uO6EzbGLew .navbar.opened {
  transition: all 0.3s;
}
.lYErDWww-uO6EzbGLew .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.lYErDWww-uO6EzbGLew .navbar .navbar-logo img {
  width: auto;
}
.lYErDWww-uO6EzbGLew .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.lYErDWww-uO6EzbGLew .navbar.collapsed {
  justify-content: center;
}
.lYErDWww-uO6EzbGLew .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.lYErDWww-uO6EzbGLew .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .lYErDWww-uO6EzbGLew .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.lYErDWww-uO6EzbGLew .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.lYErDWww-uO6EzbGLew .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.lYErDWww-uO6EzbGLew .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6EzbGLew .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.lYErDWww-uO6EzbGLew .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.lYErDWww-uO6EzbGLew .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6EzbGLew .navbar .nav-item .nav-link::before {
    display: none;
  }
  .lYErDWww-uO6EzbGLew .navbar.opened .dropdown-menu {
    top: 0;
  }
  .lYErDWww-uO6EzbGLew .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .lYErDWww-uO6EzbGLew .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .lYErDWww-uO6EzbGLew .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .lYErDWww-uO6EzbGLew .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .lYErDWww-uO6EzbGLew .navbar ul.navbar-nav li {
    margin: auto;
  }
  .lYErDWww-uO6EzbGLew .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .lYErDWww-uO6EzbGLew .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .lYErDWww-uO6EzbGLew .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .lYErDWww-uO6EzbGLew .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.lYErDWww-uO6EzbGLew .navbar.navbar-short {
  min-height: 60px;
}
.lYErDWww-uO6EzbGLew .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.lYErDWww-uO6EzbGLew .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.lYErDWww-uO6EzbGLew .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;
}
.lYErDWww-uO6EzbGLew .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.lYErDWww-uO6EzbGLew .navbar-brand .navbar-logo a {
  outline: none;
}
.lYErDWww-uO6EzbGLew .dropdown-item.active,
.lYErDWww-uO6EzbGLew .dropdown-item:active {
  background-color: transparent;
}
.lYErDWww-uO6EzbGLew .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.lYErDWww-uO6EzbGLew .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.lYErDWww-uO6EzbGLew .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.lYErDWww-uO6EzbGLew .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.lYErDWww-uO6EzbGLew .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.lYErDWww-uO6EzbGLew .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.lYErDWww-uO6EzbGLew ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.lYErDWww-uO6EzbGLew .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.lYErDWww-uO6EzbGLew button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.lYErDWww-uO6EzbGLew button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.lYErDWww-uO6EzbGLew button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.lYErDWww-uO6EzbGLew button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6EzbGLew button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6EzbGLew button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.lYErDWww-uO6EzbGLew nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6EzbGLew nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6EzbGLew nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6EzbGLew nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6EzbGLew .navbar-dropdown {
  padding: 19px 1rem;
}
.lYErDWww-uO6EzbGLew a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lYErDWww-uO6EzbGLew .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .lYErDWww-uO6EzbGLew .navbar {
    height: 70px;
  }
  .lYErDWww-uO6EzbGLew .navbar.opened {
    height: auto;
  }
  .lYErDWww-uO6EzbGLew .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.lYErDWww-uO6EzbGLew a {
  display: inline;
}
.lYErDWww-uO6EzbGLew img {
  display: inline;
  padding-right: 10px;
}
.lYErDWww-uO6EzbGLew .dropdown-toggle:after {
  display: none;
}
.lYErDWww-uO6EzbGLew .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.lYErDWww-uO6EzbGLew .dropdown-item:hover {
  color: #c19c1c !important;
}
@media (max-width: 990px) {
  .lYErDWww-uO6EzbGLew .dropdown-menu {
    margin-top: 0px;
  }
  .lYErDWww-uO6EzbGLew .nav-dropdown .link {
    margin: 0 !important;
  }
}
.lYErDWww-uO6EzbGLew .depth-buttons {
  margin: 20px -6px 20px;
}
.lYErDWww-uO6EzbGLew .nav-item {
  margin-right: 32px;
}
.lYErDWww-uO6EzbGLew .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .lYErDWww-uO6EzbGLew ul li {
    height: 45px;
    display: list-item;
  }
}
.lYErDWww-uO6EzbGLew .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.lYErDWww-uO6EzbGLew .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.lYErDWww-uO6EzbGLew .navbar-nav {
  margin: auto;
}
.lYErDWww-uO6EzbGLew .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.lYErDWww-uO6EzbGLew .depth-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.lYErDWww-uO6EzbGLew .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.lYErDWww-uO6EzbGLew .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.lYErDWww-uO6EzbGLew .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.lYErDWww-uO6EzbGLew .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6EzbGLew .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.lYErDWww-uO6EzbGLew .dropdown-item:focus {
  color: #c19c1c !important;
}
@media (max-width: 945px) {
  .lYErDWww-uO6EzbGLew .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .lYErDWww-uO6EzbGLew .top {
    margin-top: 25px;
  }
}
.lYErDWww-uO6EzbGLew .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .lYErDWww-uO6EzbGLew .container,
  .lYErDWww-uO6EzbGLew .container-fluid {
    flex-wrap: nowrap;
  }
}
.lYErDWww-uO6EzbGLew li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .lYErDWww-uO6EzbGLew ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .lYErDWww-uO6EzbGLew .icons-menu {
    min-width: initial !important;
  }
  .lYErDWww-uO6EzbGLew a.btn {
    margin-top: 10px;
  }
}
.lYErDWww-uO6EzbGLew a.btn > span {
  margin-left: 0.5rem;
}
.lYErDWww-uO6EzbGLew .navbar-nav .nav-item .nav-link:hover,
.lYErDWww-uO6EzbGLew .navbar-nav .nav-item .nav-link:focus {
  color: #c19c1c !important;
}
.lYErDWww-uO6EzclAtI {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff7db;
  overflow: hidden;
}
.lYErDWww-uO6EzclAtI .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6EzclAtI .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .lYErDWww-uO6EzclAtI .container {
    padding: 0 16px;
  }
}
.lYErDWww-uO6EzclAtI .row {
  justify-content: center;
}
.lYErDWww-uO6EzclAtI .content-wrapper {
  position: relative;
}
.lYErDWww-uO6EzclAtI .content-wrapper .icon-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .lYErDWww-uO6EzclAtI .content-wrapper .icon-wrapper {
    margin-bottom: 40px;
  }
}
.lYErDWww-uO6EzclAtI .content-wrapper .icon-wrapper .depth-iconfont {
  font-size: 42px;
  color: #e4c03e;
  display: inline-flex;
}
.lYErDWww-uO6EzclAtI .content-wrapper .depth-text {
  margin-bottom: 0;
}
.lYErDWww-uO6EzclAtI .content-wrapper .depth-text span {
  color: #000000;
}
.lYErDWww-uO6EzclAtI .content-wrapper .decor-wrapper {
  position: absolute;
  top: -10%;
  left: -12rem;
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #ffffff -10%, transparent 70%);
}
.lYErDWww-uO6EzclAtI .depth-text {
  color: #000000;
}
.lYErDWww-uO6EzclAtI .depth-text,
.lYErDWww-uO6EzclAtI .icon-wrapper {
  text-align: center;
}
.lYErDWww-uO6EzcVJyE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.lYErDWww-uO6EzcVJyE .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6EzcVJyE .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .lYErDWww-uO6EzcVJyE .container {
    padding: 0 16px;
  }
}
.lYErDWww-uO6EzcVJyE .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.lYErDWww-uO6EzcVJyE .content-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uO6EzcVJyE .content-wrapper .depth-text {
  margin-bottom: 0;
}
.lYErDWww-uO6EzcVJyE .depth-section-title {
  color: #f1634f;
}
.lYErDWww-uO6EzcVJyE .depth-text {
  color: #000000;
}
.lYErDWww-uObW51tZ3N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uObW51tZ3N .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container {
    padding: 0 6px;
  }
}
.lYErDWww-uObW51tZ3N .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fff7db;
}
@media (max-width: 1440px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 30px;
  }
}
.lYErDWww-uObW51tZ3N .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.lYErDWww-uObW51tZ3N .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .title-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title span {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-btn .btn {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .list-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:hover,
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}
.lYErDWww-uObW51tZ3N .depth-section-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list,
.lYErDWww-uObW51tZ3N .item-wrap {
  color: #000000;
}
.lYErDWww-uObW51tZ3N .depth-section-title,
.lYErDWww-uObW51tZ3N .depth-section-btn {
  color: #000000;
}
.lYErDWww-uO6EBKziWL .navbar-dropdown {
  position: relative !important;
}
.lYErDWww-uO6EBKziWL .dropdown-item:before {
  font-family: color2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6EBKziWL .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.lYErDWww-uO6EBKziWL .dropdown-item:hover,
.lYErDWww-uO6EBKziWL .dropdown-item:focus {
  color: #000000 !important;
}
.lYErDWww-uO6EBKziWL .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.lYErDWww-uO6EBKziWL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.lYErDWww-uO6EBKziWL .nav-link {
  position: relative;
  padding: 0;
}
.lYErDWww-uO6EBKziWL .container {
  display: flex;
  margin: auto;
}
.lYErDWww-uO6EBKziWL .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.lYErDWww-uO6EBKziWL .dropdown-menu,
.lYErDWww-uO6EBKziWL .navbar.opened {
  background: #ffffff !important;
}
.lYErDWww-uO6EBKziWL .nav-item:focus,
.lYErDWww-uO6EBKziWL .nav-link:focus {
  outline: none;
}
.lYErDWww-uO6EBKziWL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6EBKziWL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.lYErDWww-uO6EBKziWL .dropdown .dropdown-menu .dropdown-item .depth-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.lYErDWww-uO6EBKziWL .dropdown .dropdown-menu .dropdown-item .depth-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6EBKziWL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.lYErDWww-uO6EBKziWL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.lYErDWww-uO6EBKziWL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.lYErDWww-uO6EBKziWL .navbar.opened {
  transition: all 0.3s;
}
.lYErDWww-uO6EBKziWL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.lYErDWww-uO6EBKziWL .navbar .navbar-logo img {
  width: auto;
}
.lYErDWww-uO6EBKziWL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.lYErDWww-uO6EBKziWL .navbar.collapsed {
  justify-content: center;
}
.lYErDWww-uO6EBKziWL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.lYErDWww-uO6EBKziWL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .lYErDWww-uO6EBKziWL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.lYErDWww-uO6EBKziWL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.lYErDWww-uO6EBKziWL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.lYErDWww-uO6EBKziWL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6EBKziWL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.lYErDWww-uO6EBKziWL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.lYErDWww-uO6EBKziWL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6EBKziWL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .lYErDWww-uO6EBKziWL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .lYErDWww-uO6EBKziWL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .lYErDWww-uO6EBKziWL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .lYErDWww-uO6EBKziWL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .lYErDWww-uO6EBKziWL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .lYErDWww-uO6EBKziWL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .lYErDWww-uO6EBKziWL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .lYErDWww-uO6EBKziWL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .lYErDWww-uO6EBKziWL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .lYErDWww-uO6EBKziWL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.lYErDWww-uO6EBKziWL .navbar.navbar-short {
  min-height: 60px;
}
.lYErDWww-uO6EBKziWL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.lYErDWww-uO6EBKziWL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.lYErDWww-uO6EBKziWL .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;
}
.lYErDWww-uO6EBKziWL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.lYErDWww-uO6EBKziWL .navbar-brand .navbar-logo a {
  outline: none;
}
.lYErDWww-uO6EBKziWL .dropdown-item.active,
.lYErDWww-uO6EBKziWL .dropdown-item:active {
  background-color: transparent;
}
.lYErDWww-uO6EBKziWL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.lYErDWww-uO6EBKziWL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.lYErDWww-uO6EBKziWL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.lYErDWww-uO6EBKziWL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.lYErDWww-uO6EBKziWL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.lYErDWww-uO6EBKziWL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.lYErDWww-uO6EBKziWL ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.lYErDWww-uO6EBKziWL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.lYErDWww-uO6EBKziWL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.lYErDWww-uO6EBKziWL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.lYErDWww-uO6EBKziWL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.lYErDWww-uO6EBKziWL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6EBKziWL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6EBKziWL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.lYErDWww-uO6EBKziWL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6EBKziWL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6EBKziWL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6EBKziWL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6EBKziWL .navbar-dropdown {
  padding: 19px 1rem;
}
.lYErDWww-uO6EBKziWL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lYErDWww-uO6EBKziWL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .lYErDWww-uO6EBKziWL .navbar {
    height: 70px;
  }
  .lYErDWww-uO6EBKziWL .navbar.opened {
    height: auto;
  }
  .lYErDWww-uO6EBKziWL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.lYErDWww-uO6EBKziWL a {
  display: inline;
}
.lYErDWww-uO6EBKziWL img {
  display: inline;
  padding-right: 10px;
}
.lYErDWww-uO6EBKziWL .dropdown-toggle:after {
  display: none;
}
.lYErDWww-uO6EBKziWL .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.lYErDWww-uO6EBKziWL .dropdown-item:hover {
  color: #c19c1c !important;
}
@media (max-width: 990px) {
  .lYErDWww-uO6EBKziWL .dropdown-menu {
    margin-top: 0px;
  }
  .lYErDWww-uO6EBKziWL .nav-dropdown .link {
    margin: 0 !important;
  }
}
.lYErDWww-uO6EBKziWL .depth-buttons {
  margin: 20px -6px 20px;
}
.lYErDWww-uO6EBKziWL .nav-item {
  margin-right: 32px;
}
.lYErDWww-uO6EBKziWL .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .lYErDWww-uO6EBKziWL ul li {
    height: 45px;
    display: list-item;
  }
}
.lYErDWww-uO6EBKziWL .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.lYErDWww-uO6EBKziWL .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.lYErDWww-uO6EBKziWL .navbar-nav {
  margin: auto;
}
.lYErDWww-uO6EBKziWL .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.lYErDWww-uO6EBKziWL .depth-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.lYErDWww-uO6EBKziWL .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.lYErDWww-uO6EBKziWL .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.lYErDWww-uO6EBKziWL .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.lYErDWww-uO6EBKziWL .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6EBKziWL .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.lYErDWww-uO6EBKziWL .dropdown-item:focus {
  color: #c19c1c !important;
}
@media (max-width: 945px) {
  .lYErDWww-uO6EBKziWL .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .lYErDWww-uO6EBKziWL .top {
    margin-top: 25px;
  }
}
.lYErDWww-uO6EBKziWL .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .lYErDWww-uO6EBKziWL .container,
  .lYErDWww-uO6EBKziWL .container-fluid {
    flex-wrap: nowrap;
  }
}
.lYErDWww-uO6EBKziWL li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .lYErDWww-uO6EBKziWL ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .lYErDWww-uO6EBKziWL .icons-menu {
    min-width: initial !important;
  }
  .lYErDWww-uO6EBKziWL a.btn {
    margin-top: 10px;
  }
}
.lYErDWww-uO6EBKziWL a.btn > span {
  margin-left: 0.5rem;
}
.lYErDWww-uO6EBKziWL .navbar-nav .nav-item .nav-link:hover,
.lYErDWww-uO6EBKziWL .navbar-nav .nav-item .nav-link:focus {
  color: #c19c1c !important;
}
.lYErDWww-uO6EBLczDz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff7db;
  overflow: hidden;
}
.lYErDWww-uO6EBLczDz .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6EBLczDz .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .lYErDWww-uO6EBLczDz .container {
    padding: 0 16px;
  }
}
.lYErDWww-uO6EBLczDz .row {
  justify-content: center;
}
.lYErDWww-uO6EBLczDz .content-wrapper {
  position: relative;
}
.lYErDWww-uO6EBLczDz .content-wrapper .icon-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .lYErDWww-uO6EBLczDz .content-wrapper .icon-wrapper {
    margin-bottom: 40px;
  }
}
.lYErDWww-uO6EBLczDz .content-wrapper .icon-wrapper .depth-iconfont {
  font-size: 42px;
  color: #e4c03e;
  display: inline-flex;
}
.lYErDWww-uO6EBLczDz .content-wrapper .depth-text {
  margin-bottom: 0;
}
.lYErDWww-uO6EBLczDz .content-wrapper .depth-text span {
  color: #000000;
}
.lYErDWww-uO6EBLczDz .content-wrapper .decor-wrapper {
  position: absolute;
  top: -10%;
  left: -12rem;
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #ffffff -10%, transparent 70%);
}
.lYErDWww-uO6EBLczDz .depth-text {
  color: #000000;
}
.lYErDWww-uO6EBLczDz .depth-text,
.lYErDWww-uO6EBLczDz .icon-wrapper {
  text-align: center;
}
.lYErDWww-uO6EBLNzaR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.lYErDWww-uO6EBLNzaR .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6EBLNzaR .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .lYErDWww-uO6EBLNzaR .container {
    padding: 0 16px;
  }
}
.lYErDWww-uO6EBLNzaR .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.lYErDWww-uO6EBLNzaR .content-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uO6EBLNzaR .content-wrapper .depth-text {
  margin-bottom: 0;
}
.lYErDWww-uO6EBLNzaR .depth-section-title {
  color: #f1634f;
}
.lYErDWww-uO6EBLNzaR .depth-text {
  color: #000000;
}
.lYErDWww-uObW51tZ3N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uObW51tZ3N .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container {
    padding: 0 6px;
  }
}
.lYErDWww-uObW51tZ3N .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fff7db;
}
@media (max-width: 1440px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 30px;
  }
}
.lYErDWww-uObW51tZ3N .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.lYErDWww-uObW51tZ3N .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .title-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title span {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-btn .btn {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .list-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:hover,
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}
.lYErDWww-uObW51tZ3N .depth-section-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list,
.lYErDWww-uObW51tZ3N .item-wrap {
  color: #000000;
}
.lYErDWww-uObW51tZ3N .depth-section-title,
.lYErDWww-uObW51tZ3N .depth-section-btn {
  color: #000000;
}
.lYErDWww-uO6ED6Scjc .navbar-dropdown {
  position: relative !important;
}
.lYErDWww-uO6ED6Scjc .dropdown-item:before {
  font-family: color2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6ED6Scjc .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.lYErDWww-uO6ED6Scjc .dropdown-item:hover,
.lYErDWww-uO6ED6Scjc .dropdown-item:focus {
  color: #000000 !important;
}
.lYErDWww-uO6ED6Scjc .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.lYErDWww-uO6ED6Scjc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.lYErDWww-uO6ED6Scjc .nav-link {
  position: relative;
  padding: 0;
}
.lYErDWww-uO6ED6Scjc .container {
  display: flex;
  margin: auto;
}
.lYErDWww-uO6ED6Scjc .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.lYErDWww-uO6ED6Scjc .dropdown-menu,
.lYErDWww-uO6ED6Scjc .navbar.opened {
  background: #ffffff !important;
}
.lYErDWww-uO6ED6Scjc .nav-item:focus,
.lYErDWww-uO6ED6Scjc .nav-link:focus {
  outline: none;
}
.lYErDWww-uO6ED6Scjc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6ED6Scjc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.lYErDWww-uO6ED6Scjc .dropdown .dropdown-menu .dropdown-item .depth-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.lYErDWww-uO6ED6Scjc .dropdown .dropdown-menu .dropdown-item .depth-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6ED6Scjc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.lYErDWww-uO6ED6Scjc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.lYErDWww-uO6ED6Scjc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.lYErDWww-uO6ED6Scjc .navbar.opened {
  transition: all 0.3s;
}
.lYErDWww-uO6ED6Scjc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.lYErDWww-uO6ED6Scjc .navbar .navbar-logo img {
  width: auto;
}
.lYErDWww-uO6ED6Scjc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.lYErDWww-uO6ED6Scjc .navbar.collapsed {
  justify-content: center;
}
.lYErDWww-uO6ED6Scjc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.lYErDWww-uO6ED6Scjc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .lYErDWww-uO6ED6Scjc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.lYErDWww-uO6ED6Scjc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.lYErDWww-uO6ED6Scjc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.lYErDWww-uO6ED6Scjc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6ED6Scjc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.lYErDWww-uO6ED6Scjc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.lYErDWww-uO6ED6Scjc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6ED6Scjc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .lYErDWww-uO6ED6Scjc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .lYErDWww-uO6ED6Scjc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .lYErDWww-uO6ED6Scjc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .lYErDWww-uO6ED6Scjc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .lYErDWww-uO6ED6Scjc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .lYErDWww-uO6ED6Scjc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .lYErDWww-uO6ED6Scjc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .lYErDWww-uO6ED6Scjc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .lYErDWww-uO6ED6Scjc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .lYErDWww-uO6ED6Scjc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.lYErDWww-uO6ED6Scjc .navbar.navbar-short {
  min-height: 60px;
}
.lYErDWww-uO6ED6Scjc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.lYErDWww-uO6ED6Scjc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.lYErDWww-uO6ED6Scjc .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;
}
.lYErDWww-uO6ED6Scjc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.lYErDWww-uO6ED6Scjc .navbar-brand .navbar-logo a {
  outline: none;
}
.lYErDWww-uO6ED6Scjc .dropdown-item.active,
.lYErDWww-uO6ED6Scjc .dropdown-item:active {
  background-color: transparent;
}
.lYErDWww-uO6ED6Scjc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.lYErDWww-uO6ED6Scjc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.lYErDWww-uO6ED6Scjc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.lYErDWww-uO6ED6Scjc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.lYErDWww-uO6ED6Scjc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.lYErDWww-uO6ED6Scjc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.lYErDWww-uO6ED6Scjc ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.lYErDWww-uO6ED6Scjc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.lYErDWww-uO6ED6Scjc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.lYErDWww-uO6ED6Scjc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.lYErDWww-uO6ED6Scjc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.lYErDWww-uO6ED6Scjc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6ED6Scjc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6ED6Scjc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.lYErDWww-uO6ED6Scjc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6ED6Scjc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6ED6Scjc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6ED6Scjc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6ED6Scjc .navbar-dropdown {
  padding: 19px 1rem;
}
.lYErDWww-uO6ED6Scjc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lYErDWww-uO6ED6Scjc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .lYErDWww-uO6ED6Scjc .navbar {
    height: 70px;
  }
  .lYErDWww-uO6ED6Scjc .navbar.opened {
    height: auto;
  }
  .lYErDWww-uO6ED6Scjc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.lYErDWww-uO6ED6Scjc a {
  display: inline;
}
.lYErDWww-uO6ED6Scjc img {
  display: inline;
  padding-right: 10px;
}
.lYErDWww-uO6ED6Scjc .dropdown-toggle:after {
  display: none;
}
.lYErDWww-uO6ED6Scjc .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.lYErDWww-uO6ED6Scjc .dropdown-item:hover {
  color: #c19c1c !important;
}
@media (max-width: 990px) {
  .lYErDWww-uO6ED6Scjc .dropdown-menu {
    margin-top: 0px;
  }
  .lYErDWww-uO6ED6Scjc .nav-dropdown .link {
    margin: 0 !important;
  }
}
.lYErDWww-uO6ED6Scjc .depth-buttons {
  margin: 20px -6px 20px;
}
.lYErDWww-uO6ED6Scjc .nav-item {
  margin-right: 32px;
}
.lYErDWww-uO6ED6Scjc .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .lYErDWww-uO6ED6Scjc ul li {
    height: 45px;
    display: list-item;
  }
}
.lYErDWww-uO6ED6Scjc .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.lYErDWww-uO6ED6Scjc .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.lYErDWww-uO6ED6Scjc .navbar-nav {
  margin: auto;
}
.lYErDWww-uO6ED6Scjc .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.lYErDWww-uO6ED6Scjc .depth-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.lYErDWww-uO6ED6Scjc .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.lYErDWww-uO6ED6Scjc .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.lYErDWww-uO6ED6Scjc .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.lYErDWww-uO6ED6Scjc .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6ED6Scjc .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.lYErDWww-uO6ED6Scjc .dropdown-item:focus {
  color: #c19c1c !important;
}
@media (max-width: 945px) {
  .lYErDWww-uO6ED6Scjc .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .lYErDWww-uO6ED6Scjc .top {
    margin-top: 25px;
  }
}
.lYErDWww-uO6ED6Scjc .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .lYErDWww-uO6ED6Scjc .container,
  .lYErDWww-uO6ED6Scjc .container-fluid {
    flex-wrap: nowrap;
  }
}
.lYErDWww-uO6ED6Scjc li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .lYErDWww-uO6ED6Scjc ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .lYErDWww-uO6ED6Scjc .icons-menu {
    min-width: initial !important;
  }
  .lYErDWww-uO6ED6Scjc a.btn {
    margin-top: 10px;
  }
}
.lYErDWww-uO6ED6Scjc a.btn > span {
  margin-left: 0.5rem;
}
.lYErDWww-uO6ED6Scjc .navbar-nav .nav-item .nav-link:hover,
.lYErDWww-uO6ED6Scjc .navbar-nav .nav-item .nav-link:focus {
  color: #c19c1c !important;
}
.lYErDWww-uO6ED7VXew {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff7db;
  overflow: hidden;
}
.lYErDWww-uO6ED7VXew .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6ED7VXew .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .lYErDWww-uO6ED7VXew .container {
    padding: 0 16px;
  }
}
.lYErDWww-uO6ED7VXew .row {
  justify-content: center;
}
.lYErDWww-uO6ED7VXew .content-wrapper {
  position: relative;
}
.lYErDWww-uO6ED7VXew .content-wrapper .icon-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .lYErDWww-uO6ED7VXew .content-wrapper .icon-wrapper {
    margin-bottom: 40px;
  }
}
.lYErDWww-uO6ED7VXew .content-wrapper .icon-wrapper .depth-iconfont {
  font-size: 42px;
  color: #e4c03e;
  display: inline-flex;
}
.lYErDWww-uO6ED7VXew .content-wrapper .depth-text {
  margin-bottom: 0;
}
.lYErDWww-uO6ED7VXew .content-wrapper .depth-text span {
  color: #000000;
}
.lYErDWww-uO6ED7VXew .content-wrapper .decor-wrapper {
  position: absolute;
  top: -10%;
  left: -12rem;
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #ffffff -10%, transparent 70%);
}
.lYErDWww-uO6ED7VXew .depth-text {
  color: #000000;
}
.lYErDWww-uO6ED7VXew .depth-text,
.lYErDWww-uO6ED7VXew .icon-wrapper {
  text-align: center;
}
.lYErDWww-uO6ED8rtrc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.lYErDWww-uO6ED8rtrc .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6ED8rtrc .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .lYErDWww-uO6ED8rtrc .container {
    padding: 0 16px;
  }
}
.lYErDWww-uO6ED8rtrc .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.lYErDWww-uO6ED8rtrc .content-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uO6ED8rtrc .content-wrapper .depth-text {
  margin-bottom: 0;
}
.lYErDWww-uO6ED8rtrc .depth-section-title {
  color: #f1634f;
}
.lYErDWww-uO6ED8rtrc .depth-text {
  color: #000000;
}
.lYErDWww-uObW51tZ3N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uObW51tZ3N .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container {
    padding: 0 6px;
  }
}
.lYErDWww-uObW51tZ3N .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fff7db;
}
@media (max-width: 1440px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 30px;
  }
}
.lYErDWww-uObW51tZ3N .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.lYErDWww-uObW51tZ3N .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .title-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title span {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-btn .btn {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .list-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:hover,
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}
.lYErDWww-uObW51tZ3N .depth-section-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list,
.lYErDWww-uObW51tZ3N .item-wrap {
  color: #000000;
}
.lYErDWww-uObW51tZ3N .depth-section-title,
.lYErDWww-uObW51tZ3N .depth-section-btn {
  color: #000000;
}
.lYErDWww-uO6dn6xKz6 .navbar-dropdown {
  position: relative !important;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:before {
  font-family: color2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:hover,
.lYErDWww-uO6dn6xKz6 .dropdown-item:focus {
  color: #000000 !important;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.lYErDWww-uO6dn6xKz6 .nav-link {
  position: relative;
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .container {
  display: flex;
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .dropdown-menu,
.lYErDWww-uO6dn6xKz6 .navbar.opened {
  background: #ffffff !important;
}
.lYErDWww-uO6dn6xKz6 .nav-item:focus,
.lYErDWww-uO6dn6xKz6 .nav-link:focus {
  outline: none;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item .depth-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.lYErDWww-uO6dn6xKz6 .dropdown .dropdown-menu .dropdown-item .depth-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.lYErDWww-uO6dn6xKz6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.lYErDWww-uO6dn6xKz6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.lYErDWww-uO6dn6xKz6 .navbar.opened {
  transition: all 0.3s;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.lYErDWww-uO6dn6xKz6 .navbar .navbar-logo img {
  width: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed {
  justify-content: center;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .lYErDWww-uO6dn6xKz6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .lYErDWww-uO6dn6xKz6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .lYErDWww-uO6dn6xKz6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .lYErDWww-uO6dn6xKz6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .lYErDWww-uO6dn6xKz6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short {
  min-height: 60px;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .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;
}
.lYErDWww-uO6dn6xKz6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.lYErDWww-uO6dn6xKz6 .navbar-brand .navbar-logo a {
  outline: none;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item.active,
.lYErDWww-uO6dn6xKz6 .dropdown-item:active {
  background-color: transparent;
}
.lYErDWww-uO6dn6xKz6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.lYErDWww-uO6dn6xKz6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.lYErDWww-uO6dn6xKz6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.lYErDWww-uO6dn6xKz6 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.lYErDWww-uO6dn6xKz6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.lYErDWww-uO6dn6xKz6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.lYErDWww-uO6dn6xKz6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.lYErDWww-uO6dn6xKz6 .navbar-dropdown {
  padding: 19px 1rem;
}
.lYErDWww-uO6dn6xKz6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lYErDWww-uO6dn6xKz6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .lYErDWww-uO6dn6xKz6 .navbar {
    height: 70px;
  }
  .lYErDWww-uO6dn6xKz6 .navbar.opened {
    height: auto;
  }
  .lYErDWww-uO6dn6xKz6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.lYErDWww-uO6dn6xKz6 a {
  display: inline;
}
.lYErDWww-uO6dn6xKz6 img {
  display: inline;
  padding-right: 10px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle:after {
  display: none;
}
.lYErDWww-uO6dn6xKz6 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:hover {
  color: #c19c1c !important;
}
@media (max-width: 990px) {
  .lYErDWww-uO6dn6xKz6 .dropdown-menu {
    margin-top: 0px;
  }
  .lYErDWww-uO6dn6xKz6 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.lYErDWww-uO6dn6xKz6 .depth-buttons {
  margin: 20px -6px 20px;
}
.lYErDWww-uO6dn6xKz6 .nav-item {
  margin-right: 32px;
}
.lYErDWww-uO6dn6xKz6 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .lYErDWww-uO6dn6xKz6 ul li {
    height: 45px;
    display: list-item;
  }
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.lYErDWww-uO6dn6xKz6 .navbar-nav {
  margin: auto;
}
.lYErDWww-uO6dn6xKz6 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.lYErDWww-uO6dn6xKz6 .depth-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.lYErDWww-uO6dn6xKz6 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.lYErDWww-uO6dn6xKz6 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.lYErDWww-uO6dn6xKz6 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.lYErDWww-uO6dn6xKz6 .dropdown-item:focus {
  color: #c19c1c !important;
}
@media (max-width: 945px) {
  .lYErDWww-uO6dn6xKz6 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .lYErDWww-uO6dn6xKz6 .top {
    margin-top: 25px;
  }
}
.lYErDWww-uO6dn6xKz6 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .lYErDWww-uO6dn6xKz6 .container,
  .lYErDWww-uO6dn6xKz6 .container-fluid {
    flex-wrap: nowrap;
  }
}
.lYErDWww-uO6dn6xKz6 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .lYErDWww-uO6dn6xKz6 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .lYErDWww-uO6dn6xKz6 .icons-menu {
    min-width: initial !important;
  }
  .lYErDWww-uO6dn6xKz6 a.btn {
    margin-top: 10px;
  }
}
.lYErDWww-uO6dn6xKz6 a.btn > span {
  margin-left: 0.5rem;
}
.lYErDWww-uO6dn6xKz6 .navbar-nav .nav-item .nav-link:hover,
.lYErDWww-uO6dn6xKz6 .navbar-nav .nav-item .nav-link:focus {
  color: #c19c1c !important;
}
.lYErDWww-uO6CK0ou6N {
  background-color: #ffdd65;
  background-image: linear-gradient(135deg, #ffffff 10%, #ffdd65 80%, #c19c1c 130%);
}
.lYErDWww-uO6CK0ou6N .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uO6CK0ou6N .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uO6CK0ou6N .row {
  justify-content: center;
}
.lYErDWww-uO6CK0ou6N .content-wrapper .logo-wrapper {
  margin-bottom: 22px;
}
.lYErDWww-uO6CK0ou6N .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 130px;
  height: 130px;
  object-fit: cover;
}
.lYErDWww-uO6CK0ou6N .content-wrapper .depth-section-title {
  margin-bottom: 22px;
}
.lYErDWww-uO6CK0ou6N .content-wrapper .text-wrapper .depth-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .lYErDWww-uO6CK0ou6N .content-wrapper .text-wrapper .depth-text {
    width: 100%;
  }
}
.lYErDWww-uO6CK0ou6N .content-wrapper .depth-section-btn {
  margin-top: 32px;
}
.lYErDWww-uO6CK0ou6N .content-wrapper .depth-section-btn .depth-section-title {
  margin-top: 22px;
}
.lYErDWww-uO6CK0ou6N .depth-section-title {
  color: #ffffff;
}
.lYErDWww-uO6CK0ou6N .depth-text,
.lYErDWww-uO6CK0ou6N .text-wrapper {
  color: #000000;
  text-align: center;
}
.lYErDWww-uO6CK0ou6N .depth-section-title,
.lYErDWww-uO6CK0ou6N .depth-section-btn,
.lYErDWww-uO6CK0ou6N .logo-wrapper {
  text-align: center;
  color: #000000;
}
.lYErDWww-uObW51tZ3N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image.disabled {
  display: none;
}
.lYErDWww-uObW51tZ3N .depth-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.lYErDWww-uObW51tZ3N .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .container {
    padding: 0 6px;
  }
}
.lYErDWww-uObW51tZ3N .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fff7db;
}
@media (max-width: 1440px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .lYErDWww-uObW51tZ3N .row {
    padding: 50px 30px;
  }
}
.lYErDWww-uObW51tZ3N .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.lYErDWww-uObW51tZ3N .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .title-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title {
  margin-bottom: 50px;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-title span {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .title-wrapper .depth-section-btn .btn {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .lYErDWww-uObW51tZ3N .list-wrapper {
    padding: 0;
  }
}
.lYErDWww-uObW51tZ3N .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:hover,
.lYErDWww-uObW51tZ3N .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.lYErDWww-uObW51tZ3N .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.lYErDWww-uObW51tZ3N .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}
.lYErDWww-uObW51tZ3N .depth-section-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list-title {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list {
  color: #ffffff;
}
.lYErDWww-uObW51tZ3N .list,
.lYErDWww-uObW51tZ3N .item-wrap {
  color: #000000;
}
.lYErDWww-uObW51tZ3N .depth-section-title,
.lYErDWww-uObW51tZ3N .depth-section-btn {
  color: #000000;
}

/* 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 */
@keyframes spinIn {
  0% {
    opacity: 0;
    transform: rotate(-360deg) scale(0.5);
  }
  60% {
    opacity: 1;
    transform: rotate(30deg) scale(1.1);
  }
  80% {
    transform: rotate(-10deg) scale(0.95);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes spinOut {
  0% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(360deg) scale(0.5);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 600px;
  width: calc(100% - 32px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  animation: spinIn 0.8s ease-out forwards;
  transition: all 0.3s ease-in-out;
}

.cookie-banner.hide {
  animation: spinOut 0.6s ease-in-out forwards;
  pointer-events: none;
}

#cookieBanner button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.8);
}

#cookieAcceptBtn {
  background: linear-gradient(145deg, #007bff, #0056b3);
  color: white;
}

#cookieAcceptBtn:hover {
  background: linear-gradient(145deg, #0056b3, #004494);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.3),
              inset -4px -4px 6px rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

#cookieRejectBtn {
  background: linear-gradient(145deg, #f8f9fa, #e0e0e0);
  color: #333;
  border: 1px solid #ccc;
}

#cookieRejectBtn:hover {
  background: linear-gradient(145deg, #e0e0e0, #d6d6d6);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.2),
              inset -4px -4px 6px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
    padding: 15px;
  }
  #cookieBanner button {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    width: calc(100% - 16px);
    left: 8px;
    bottom: 16px;
    padding: 10px;
  }
  #cookieBanner button {
    padding: 8px;
    font-size: 12px;
  }
}

/* logoanimations */
@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

.navbar-brand {
    animation: bounceIn 1s ease-out;
}
/* endlogoanimations */

/* mainanimations */
/* Style 21: translate bounce */
a, button, .btn {
  position: relative;
}
a:active, button:active, .btn:active {
  animation: bounce-click 0.3s ease-out;
}
@keyframes bounce-click {
  0% { transform: translateY(0); }
  50% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}
/* endmainanimations */
