body {
  font-family: Instrument Sans;
}
.display-1 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 4.2rem;
  line-height: 1.1;
  letter-spacing: .05em;
}
.display-1 > .grid-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 3.6rem;
  line-height: 1.125em;
  letter-spacing: -0.01em;
}
.display-2 > .grid-iconfont {
  font-size: 4.5rem;
}
.display-4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 21px;
  letter-spacing: .05em;
}
.display-4 > .grid-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 2.4rem;
  line-height: 1.22222em;
  letter-spacing: 0;
}
.display-5 > .grid-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.41176em;
  letter-spacing: .03em;
}
.display-7 > .grid-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 5em;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 5em;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 5em;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 5em;
}
.bg-primary {
  background-color: #006d6f !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #000000 !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #006d6f !important;
  border-color: #006d6f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #001818 !important;
  border-color: #001818 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #001818 !important;
  border-color: #001818 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-warning,
.btn-warning: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-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger: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-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #006d6f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #001818 !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: #006d6f !important;
  border-color: #006d6f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #006d6f !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #000000 !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000909 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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: #006d6f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #000000;
}
.alert-danger {
  background-color: #000000;
}
.grid-gallery-filter li.active .btn {
  background-color: #006d6f;
  border-color: #006d6f;
  color: #ffffff;
}
.grid-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #006d6f;
}
.grid-plan-header.bg-primary .grid-plan-subtitle,
.grid-plan-header.bg-primary .grid-plan-price-desc {
  color: #00eaef;
}
.grid-plan-header.bg-success .grid-plan-subtitle,
.grid-plan-header.bg-success .grid-plan-price-desc {
  color: #ffffff;
}
.grid-plan-header.bg-info .grid-plan-subtitle,
.grid-plan-header.bg-info .grid-plan-price-desc {
  color: #ffffff;
}
.grid-plan-header.bg-warning .grid-plan-subtitle,
.grid-plan-header.bg-warning .grid-plan-price-desc {
  color: #b3b3b3;
}
.grid-plan-header.bg-danger .grid-plan-subtitle,
.grid-plan-header.bg-danger .grid-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 21px;
  letter-spacing: .05em;
  font-weight: 400;
}
.form-control > .grid-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #006d6f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 21px;
  letter-spacing: .05em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .grid-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #006d6f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #006d6f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #006d6f;
}
.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: #006d6f;
  border-bottom-color: #006d6f;
}
.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: #006d6f !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: #ffffff !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='%23006d6f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.grid-section-btn .btn,
.grid-section-btn-main .btn {
  padding: 5px 25px;
  box-shadow: none;
  font-style: italic;
  font-weight: 400 !important;
}
.grid-section-btn .btn:hover,
.grid-section-btn-main .btn:hover,
.grid-section-btn .btn:focus,
.grid-section-btn-main .btn:focus {
  box-shadow: none;
}
.grid-section-btn .btn:hover .grid-iconfont,
.grid-section-btn-main .btn:hover .grid-iconfont,
.grid-section-btn .btn:focus .grid-iconfont,
.grid-section-btn-main .btn:focus .grid-iconfont {
  transform: rotate(-45deg);
}
.grid-section-btn .btn .grid-iconfont,
.grid-section-btn-main .btn .grid-iconfont {
  margin-left: 7px;
  transition: all 0.3s ease-in-out;
}
.grid-section-btn .btn-primary-outline,
.grid-section-btn-main .btn-primary-outline {
  border: 1px solid #006d6f !important;
}
.grid-section-btn .btn-secondary-outline,
.grid-section-btn-main .btn-secondary-outline {
  border: 1px solid #ffffff !important;
}
.grid-section-btn .btn-success-outline,
.grid-section-btn-main .btn-success-outline {
  border: 1px solid #ffffff !important;
}
.grid-section-btn .btn-info-outline,
.grid-section-btn-main .btn-info-outline {
  border: 1px solid #ffffff !important;
}
.grid-section-btn .btn-warning-outline,
.grid-section-btn-main .btn-warning-outline {
  border: 1px solid #000000 !important;
}
.grid-section-btn .btn-danger-outline,
.grid-section-btn-main .btn-danger-outline {
  border: 1px solid #000000 !important;
}
.grid-section-btn .btn-black-outline,
.grid-section-btn-main .btn-black-outline {
  border: 1px solid #000000;
}
.grid-section-btn .btn-white-outline,
.grid-section-btn-main .btn-white-outline {
  border: 1px solid #ffffff;
}
.grid-section-btn .btn-info,
.grid-section-btn-main .btn-info {
  color: #006d6f !important;
}
.e0LG3Ty-uLJzowNast {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f4efe9;
}
.e0LG3Ty-uLJzowNast .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJzowNast .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJzowNast .items-wrap {
  justify-content: space-between;
}
.e0LG3Ty-uLJzowNast .items-wrap .card {
  justify-content: center;
}
.e0LG3Ty-uLJzowNast .title-wrapper .grid-desc {
  margin-bottom: 15px;
}
.e0LG3Ty-uLJzowNast .title-wrapper .grid-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJzowNast .title-wrapper .grid-section-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJzowNast .title-wrapper {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJzowNast .content-wrapper {
    margin-bottom: 32px;
    text-align: center;
  }
}
.e0LG3Ty-uLJzowNast .icon-title {
  color: #bff747;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJzowNast .image-wrapper {
    margin-bottom: 32px;
  }
}
.e0LG3Ty-uLJzowNast .image-wrapper img {
  border-radius: 2rem;
  padding: 5px;
  background-color: #2d2a3e;
  height: 550px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJzowNast .image-wrapper img {
    height: 350px;
  }
}
.e0LG3Ty-uLJzowNast .grid-section-title {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJzowNast .grid-text {
  color: #000000;
}
.e0LG3Ty-uLJzowNast .grid-text,
.e0LG3Ty-uLJzowNast .grid-section-btn {
  color: #fdfde1;
}
.e0LG3Ty-uLJzowNast .grid-desc {
  color: #fdfde1;
}
.e0LG3Ty-uLJzowNast .grid-section-subtitle {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJzowNast .grid-desc,
.e0LG3Ty-uLJzowNast .grid-section-btn {
  color: #000000;
}
.e0LG3Ty-uLJzowNast .grid-text,
.e0LG3Ty-uLJzowNast .grid-section-btn mb-4 {
  color: #000000;
}
.e0LG3Ty-uLJztKwNBT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #c9b8af;
}
.e0LG3Ty-uLJztKwNBT .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJztKwNBT .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJztKwNBT .row {
  justify-content: center;
}
.e0LG3Ty-uLJztKwNBT .card-wrapper {
  position: relative;
  padding: 80px 150px;
  background-color: #e3dfe8;
}
@media (max-width: 1600px) {
  .e0LG3Ty-uLJztKwNBT .card-wrapper {
    padding: 80px;
  }
}
@media (max-width: 1440px) {
  .e0LG3Ty-uLJztKwNBT .card-wrapper {
    padding: 60px;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJztKwNBT .card-wrapper {
    padding: 30px 20px;
  }
}
.e0LG3Ty-uLJztKwNBT .card-wrapper .grid-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJztKwNBT .card-wrapper .grid-section-title {
    margin-bottom: 30px;
  }
}
.e0LG3Ty-uLJztKwNBT .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.e0LG3Ty-uLJztKwNBT .card-wrapper .text-wrapper .grid-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJztKwNBT .card-wrapper .text-wrapper .grid-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.e0LG3Ty-uLJztKwNBT .card-wrapper .grid-section-btn {
  position: relative;
  z-index: 1;
}
.e0LG3Ty-uLJztKwNBT .grid-section-title {
  color: #000000;
}
.e0LG3Ty-uLJztKwNBT .grid-text,
.e0LG3Ty-uLJztKwNBT .text-wrapper {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJztKwNBT .grid-section-title,
.e0LG3Ty-uLJztKwNBT .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLJzMbhnD9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4efe9;
}
.e0LG3Ty-uLJzMbhnD9 .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJzMbhnD9 .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJzMbhnD9 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJzMbhnD9 .content-wrapper {
    margin-bottom: 35px;
  }
}
.e0LG3Ty-uLJzMbhnD9 .content-wrapper .grid-desc {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJzMbhnD9 .content-wrapper .grid-desc {
    margin-bottom: 20px;
  }
}
.e0LG3Ty-uLJzMbhnD9 .content-wrapper .grid-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJzMbhnD9 .content-wrapper .grid-section-title {
    margin-bottom: 20px;
  }
}
.e0LG3Ty-uLJzMbhnD9 .content-wrapper .grid-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJzMbhnD9 .content-wrapper .grid-text {
    margin-bottom: 15px;
  }
}
.e0LG3Ty-uLJzMbhnD9 .image-wrapper {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJzMbhnD9 .image-wrapper {
    padding-left: 0;
  }
}
.e0LG3Ty-uLJzMbhnD9 .image-wrapper img {
  height: 540px;
  object-fit: cover;
  border-radius: 0 16rem;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJzMbhnD9 .image-wrapper img {
    height: 350px;
    border-radius: 0 8rem;
  }
}
.e0LG3Ty-uLJzMbhnD9 .grid-section-title {
  color: #000000;
}
.e0LG3Ty-uLJzMbhnD9 .grid-desc {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJzMbhnD9 .grid-text {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJzMbhnD9 .grid-section-title,
.e0LG3Ty-uLJzMbhnD9 .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLJA3EmbS0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c9b8af;
}
.e0LG3Ty-uLJA3EmbS0 .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJA3EmbS0 .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJA3EmbS0 .container {
    padding: 0 30px;
  }
}
.e0LG3Ty-uLJA3EmbS0 .content-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJA3EmbS0 .content-wrapper {
    display: block;
  }
}
.e0LG3Ty-uLJA3EmbS0 .content-wrapper .card {
  justify-content: center;
}
.e0LG3Ty-uLJA3EmbS0 .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
  background-color: #a49c8f;
  border-radius: 0 0 2rem 0 !important;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJA3EmbS0 .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 20px;
    border-radius: 0 0 2rem 0 !important;
  }
}
.e0LG3Ty-uLJA3EmbS0 .content-wrapper .content-wrap .grid-section-title {
  margin-bottom: 35px;
}
.e0LG3Ty-uLJA3EmbS0 .content-wrapper .content-wrap .grid-text {
  margin-bottom: 40px;
}
.e0LG3Ty-uLJA3EmbS0 .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJA3EmbS0 .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.e0LG3Ty-uLJA3EmbS0 .content-wrapper .image-wrapper img {
  min-height: 630px;
  object-fit: cover;
  border-radius: 2rem 0 0 0 !important;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJA3EmbS0 .content-wrapper .image-wrapper img {
    min-height: auto;
    height: 430px;
    border-radius: 2rem 0 0 0 !important;
  }
}
.e0LG3Ty-uLJA3EmbS0 .grid-section-title {
  color: #144031;
}
.e0LG3Ty-uLJA3EmbS0 .grid-text {
  color: #ffffff;
  text-align: center;
}
.e0LG3Ty-uLJA3EmbS0 .grid-section-title,
.e0LG3Ty-uLJA3EmbS0 .grid-section-btn {
  color: #ffffff;
  text-align: center;
}
.e0LG3Ty-uLJAhPJ48R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f4efe9;
}
.e0LG3Ty-uLJAhPJ48R .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJAhPJ48R .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJAhPJ48R .container-fluid {
  padding: 0;
}
@media (max-width: 1440px) {
  .e0LG3Ty-uLJAhPJ48R .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJAhPJ48R .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJAhPJ48R .container {
    padding: 0 16px;
  }
}
.e0LG3Ty-uLJAhPJ48R .image-wrapper {
  height: 100%;
}
.e0LG3Ty-uLJAhPJ48R .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJAhPJ48R .image-wrapper img {
    height: 400px;
    margin: 32px 0;
    border-radius: .3rem !important;
  }
}
.e0LG3Ty-uLJAhPJ48R .content-wrapper {
  padding: 150px 150px 150px 32px ;
  padding: 150px 32px 150px 150px;
}
@media (max-width: 1440px) {
  .e0LG3Ty-uLJAhPJ48R .content-wrapper {
    padding: 150px 32px 150px 96px;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJAhPJ48R .content-wrapper {
    padding: 0 0 48px 0;
  }
}
@media (max-width: 1440px) {
  .e0LG3Ty-uLJAhPJ48R .content-wrapper {
    padding: 150px 96px 150px 32px;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJAhPJ48R .content-wrapper {
    padding: 0 0 48px 0;
  }
}
.e0LG3Ty-uLJAhPJ48R .content-wrapper .grid-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJAhPJ48R .content-wrapper .grid-section-title {
    margin-bottom: 16px;
  }
}
.e0LG3Ty-uLJAhPJ48R .content-wrapper .grid-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJAhPJ48R .content-wrapper .grid-text {
    margin-bottom: 16px;
  }
}
.e0LG3Ty-uLJAhPJ48R .grid-section-title {
  color: #1c1c1c;
}
.e0LG3Ty-uLJAhPJ48R .grid-text {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJAhPJ48R .grid-section-title,
.e0LG3Ty-uLJAhPJ48R .grid-section-btn {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJADSVXjN {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #c9b8af;
}
.e0LG3Ty-uLJADSVXjN .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJADSVXjN .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJADSVXjN .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .e0LG3Ty-uLJADSVXjN .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJADSVXjN .container {
    padding: 0 20px;
  }
}
.e0LG3Ty-uLJADSVXjN .content-wrapper .grid-section-title {
  padding: 60px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJADSVXjN .content-wrapper .grid-section-title {
    padding: 46px 0;
  }
}
.e0LG3Ty-uLJADSVXjN .content-wrapper .items-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  width: 100%;
}
.e0LG3Ty-uLJADSVXjN .content-wrapper .items-wrapper .item {
  padding: 20px 24px;
  border-radius: 20px !important;
  background-color: #e3dfe8;
  flex-grow: 1;
  width: 260px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJADSVXjN .content-wrapper .items-wrapper .item {
    padding: 20px;
  }
}
.e0LG3Ty-uLJADSVXjN .content-wrapper .items-wrapper .item .item-wrapper {
  height: 100%;
}
.e0LG3Ty-uLJADSVXjN .content-wrapper .items-wrapper .item .item-wrapper .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.e0LG3Ty-uLJADSVXjN .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 40px;
}
.e0LG3Ty-uLJADSVXjN .content-wrapper .items-wrapper .item .item-wrapper .card-box .icon-wrapper .grid-iconfont {
  font-size: 48px;
  color: #000000;
  display: inline-flex;
}
.e0LG3Ty-uLJADSVXjN .grid-section-title {
  color: #000000;
}
.e0LG3Ty-uLJADSVXjN .card-number {
  color: #000000;
}
.e0LG3Ty-uLJADSVXjN .card-title {
  color: #000000;
}
.e0LG3Ty-uLJADSVXjN .grid-section-title,
.e0LG3Ty-uLJADSVXjN .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLJADSVXjN .card-title,
.e0LG3Ty-uLJADSVXjN .icon-wrapper {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  background-color: #2d2a3e !important;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2a3e !important;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar.opened,
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar-collapse {
    background-color: #2d2a3e !important;
    transition: all 0s ease 0s;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  position: relative !important;
}
.e0LG3Ty-uLKE2G8GFQ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .btn:hover {
  box-shadow: none;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 0 !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus::before {
  width: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .e0LG3Ty-uLKE2G8GFQ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .e0LG3Ty-uLKE2G8GFQ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .e0LG3Ty-uLKE2G8GFQ .offcanvas_box {
    display: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .container {
  display: flex;
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper {
  color: #bee0d6;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:hover {
  opacity: .5;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav {
    margin: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu,
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  background-color: false !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item:focus,
.e0LG3Ty-uLKE2G8GFQ .nav-link:focus {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  transition: all 0.3s;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed {
  justify-content: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item {
    padding: .5rem 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .icons-menu {
    padding: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short {
  min-height: 60px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .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;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-logo a {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item.active,
.e0LG3Ty-uLKE2G8GFQ .dropdown-item:active {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.e0LG3Ty-uLKE2G8GFQ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2a3e;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.e0LG3Ty-uLKE2G8GFQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    height: 70px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened {
    height: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .e0LG3Ty-uLKE2G8GFQ .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .text_widget {
  margin-bottom: 32px;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a {
  transition: all 0.3s ease-out;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a:hover,
.e0LG3Ty-uLKE2G8GFQ .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption {
  color: #bee0d6;
}
.e0LG3Ty-uLKE2G8GFQ .grid-text {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle,
.e0LG3Ty-uLKE2G8GFQ .text_widget,
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.e0LG3Ty-uLKE51z6kc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2a3e;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .container {
    padding: 0 16px;
  }
}
.e0LG3Ty-uLKE51z6kc .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap .grid-section-title {
  margin-bottom: 0;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .grid-card-title {
  margin-bottom: 16px;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .grid-section-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .copyright {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .grid-card-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list {
  color: #ffffff;
}
.e0LG3Ty-uLJB2dAIOQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c9b8af;
}
.e0LG3Ty-uLJB2dAIOQ .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJB2dAIOQ .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJB2dAIOQ .content-wrap {
  justify-content: flex-end;
}
.e0LG3Ty-uLJB2dAIOQ .content-wrap .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJB2dAIOQ .content-wrapper {
    margin-bottom: 32px;
  }
}
.e0LG3Ty-uLJB2dAIOQ .content-wrapper .grid-section-title {
  margin-bottom: 24px;
}
.e0LG3Ty-uLJB2dAIOQ .content-wrapper .grid-section-title span {
  background: linear-gradient(170deg, #000000, #1a1a1a);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.e0LG3Ty-uLJB2dAIOQ .content-wrapper .text-wrapper .grid-text {
  width: 80%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJB2dAIOQ .content-wrapper .text-wrapper .grid-text {
    width: 100%;
  }
}
.e0LG3Ty-uLJB2dAIOQ .image-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .e0LG3Ty-uLJB2dAIOQ .image-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJB2dAIOQ .image-wrapper {
    padding: 0;
  }
}
.e0LG3Ty-uLJB2dAIOQ .image-wrapper img {
  height: 700px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJB2dAIOQ .image-wrapper img {
    height: 350px;
  }
}
.e0LG3Ty-uLJB2dAIOQ .grid-section-title {
  color: #ffffff;
}
.e0LG3Ty-uLJB2dAIOQ .grid-text,
.e0LG3Ty-uLJB2dAIOQ .text-wrapper {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJB2dAIOQ .grid-section-title,
.e0LG3Ty-uLJB2dAIOQ .grid-section-btn,
.e0LG3Ty-uLJB2dAIOQ .clients-wrapper {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJBa8JIt5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f4efe9;
}
.e0LG3Ty-uLJBa8JIt5 .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJBa8JIt5 .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJBa8JIt5 .title-wrapper .grid-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBa8JIt5 .title-wrapper .grid-section-title {
    margin-bottom: 32px;
  }
}
.e0LG3Ty-uLJBa8JIt5 .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.e0LG3Ty-uLJBa8JIt5 .items-wrapper .item {
  padding: 0 10px;
}
.e0LG3Ty-uLJBa8JIt5 .item {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBa8JIt5 .item {
    margin-bottom: 16px;
  }
}
.e0LG3Ty-uLJBa8JIt5 .item .item-wrapper {
  padding: 10px;
  background-color: #e3dfe8;
  height: 100%;
}
.e0LG3Ty-uLJBa8JIt5 .item .item-wrapper .item-img {
  margin-bottom: 32px;
}
.e0LG3Ty-uLJBa8JIt5 .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
}
.e0LG3Ty-uLJBa8JIt5 .item .item-wrapper .item-content {
  padding: 0 40px 20px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBa8JIt5 .item .item-wrapper .item-content {
    padding: 0 10px;
  }
}
.e0LG3Ty-uLJBa8JIt5 .item .item-wrapper .item-content .item-title {
  margin-bottom: 20px;
}
.e0LG3Ty-uLJBa8JIt5 .item .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.e0LG3Ty-uLJBa8JIt5 .grid-section-title {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJBa8JIt5 .item-title {
  color: #000c3f;
}
.e0LG3Ty-uLJBa8JIt5 .item-text {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJBa8JIt5 .item-title,
.e0LG3Ty-uLJBa8JIt5 .grid-section-btn {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJB5Ig57B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c9b8af;
}
.e0LG3Ty-uLJB5Ig57B .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJB5Ig57B .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJB5Ig57B .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJB5Ig57B .container-fluid {
    padding: 0 25px;
  }
}
.e0LG3Ty-uLJB5Ig57B .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJB5Ig57B .container {
    padding: 0 25px;
  }
}
.e0LG3Ty-uLJB5Ig57B .row {
  border: 1px solid #a49c8f;
}
.e0LG3Ty-uLJB5Ig57B .card {
  padding: 0;
}
.e0LG3Ty-uLJB5Ig57B .card .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.e0LG3Ty-uLJB5Ig57B .card .image-wrapper img {
  height: 100%;
  object-fit: cover;
  max-height: 610px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJB5Ig57B .card .image-wrapper img {
    max-height: 100%;
    height: 300px;
  }
}
.e0LG3Ty-uLJB5Ig57B .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 70px 60px;
  height: 100%;
  background-color: #a49c8f;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJB5Ig57B .title-wrapper {
    padding: 60px 25px;
  }
}
.e0LG3Ty-uLJB5Ig57B .title-wrapper .title-wrap {
  width: 100%;
}
.e0LG3Ty-uLJB5Ig57B .title-wrapper .title-wrap .grid-section-title {
  margin-bottom: 20px;
}
.e0LG3Ty-uLJB5Ig57B .title-wrapper .title-wrap .grid-text {
  margin-bottom: 20px;
}
.e0LG3Ty-uLJB5Ig57B .title-wrapper .title-wrap .grid-section-btn {
  margin-top: 35px;
}
.e0LG3Ty-uLJB5Ig57B .title-wrapper .grid-desc {
  width: 100%;
  margin-bottom: 0;
}
.e0LG3Ty-uLJB5Ig57B .grid-section-title {
  color: #ffffff;
}
.e0LG3Ty-uLJB5Ig57B .grid-text {
  color: #ffffff;
  text-align: center;
}
.e0LG3Ty-uLJB5Ig57B .grid-desc {
  color: #ffffff;
  text-align: center;
}
.e0LG3Ty-uLJB5Ig57B .grid-section-title,
.e0LG3Ty-uLJB5Ig57B .grid-section-btn {
  color: #ffffff;
  text-align: center;
}
.e0LG3Ty-uLJBpmzQL0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4efe9;
}
.e0LG3Ty-uLJBpmzQL0 .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJBpmzQL0 .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJBpmzQL0 .items-wrap {
  justify-content: space-between;
}
.e0LG3Ty-uLJBpmzQL0 .items-wrap .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBpmzQL0 .content-wrapper {
    margin-bottom: 32px;
  }
}
.e0LG3Ty-uLJBpmzQL0 .content-wrapper .grid-section-title {
  margin-bottom: 32px;
}
.e0LG3Ty-uLJBpmzQL0 .content-wrapper .grid-section-title span {
  color: #000000;
}
.e0LG3Ty-uLJBpmzQL0 .content-wrapper .text-wrapper .grid-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBpmzQL0 .content-wrapper .text-wrapper .grid-text {
    margin-bottom: 16px;
    width: 100%;
  }
}
.e0LG3Ty-uLJBpmzQL0 .image-wrapper {
  margin-bottom: 32px;
}
.e0LG3Ty-uLJBpmzQL0 .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBpmzQL0 .image-wrapper img {
    height: 350px;
  }
}
.e0LG3Ty-uLJBpmzQL0 .grid-section-title {
  color: #ffffff;
}
.e0LG3Ty-uLJBpmzQL0 .grid-text,
.e0LG3Ty-uLJBpmzQL0 .text-wrapper {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJBpmzQL0 .grid-section-title,
.e0LG3Ty-uLJBpmzQL0 .grid-section-btn {
  text-align: center;
  color: #000000;
}
.e0LG3Ty-uLK3Zffiw2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #c9b8af;
}
.e0LG3Ty-uLK3Zffiw2 .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLK3Zffiw2 .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLK3Zffiw2 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK3Zffiw2 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK3Zffiw2 .container {
    padding: 0;
  }
}
.e0LG3Ty-uLK3Zffiw2 .row {
  justify-content: center;
}
.e0LG3Ty-uLK3Zffiw2 .title-wrapper {
  padding: 0 16px;
}
.e0LG3Ty-uLK3Zffiw2 .title-wrapper .grid-section-title {
  margin-bottom: 0;
}
.e0LG3Ty-uLK3Zffiw2 .grid-section-title {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJBv9tRli {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #c9b8af;
}
.e0LG3Ty-uLJBv9tRli .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJBv9tRli .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJBv9tRli .card {
  justify-content: center;
}
.e0LG3Ty-uLJBv9tRli .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .e0LG3Ty-uLJBv9tRli .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBv9tRli .content-wrapper {
    padding: 0;
  }
}
.e0LG3Ty-uLJBv9tRli .content-wrapper .grid-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBv9tRli .content-wrapper .grid-section-title {
    margin-bottom: 32px;
  }
}
.e0LG3Ty-uLJBv9tRli .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 90px;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .e0LG3Ty-uLJBv9tRli .items-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBv9tRli .items-wrapper {
    padding: 0;
    display: block;
  }
}
.e0LG3Ty-uLJBv9tRli .items-wrapper .item {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBv9tRli .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.e0LG3Ty-uLJBv9tRli .items-wrapper .item:hover .item-wrapper .item-img img,
.e0LG3Ty-uLJBv9tRli .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.e0LG3Ty-uLJBv9tRli .items-wrapper .item .item-wrapper {
  transition: all .3s ease;
  height: 100%;
  overflow: hidden;
}
.e0LG3Ty-uLJBv9tRli .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  overflow: hidden;
}
.e0LG3Ty-uLJBv9tRli .items-wrapper .item .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBv9tRli .items-wrapper .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.e0LG3Ty-uLJBv9tRli .items-wrapper .item .item-wrapper .card-box {
  padding: 32px;
  background-color: #e3dfe8;
  border-top: 2px solid #2c2625;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBv9tRli .items-wrapper .item .item-wrapper .card-box {
    padding: 20px;
  }
}
.e0LG3Ty-uLJBv9tRli .items-wrapper .item .item-wrapper .card-box .tag-wrapper {
  margin-bottom: 32px;
}
.e0LG3Ty-uLJBv9tRli .items-wrapper .item .item-wrapper .card-box .tag-wrapper .item-price {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #2c2625;
}
.e0LG3Ty-uLJBv9tRli .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
.e0LG3Ty-uLJBv9tRli .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 32px;
}
.e0LG3Ty-uLJBv9tRli .items-wrapper .item .item-wrapper .card-box .grid-section-btn .btn {
  margin-bottom: 0;
}
.e0LG3Ty-uLJBv9tRli .grid-section-title {
  color: #ffffff;
}
.e0LG3Ty-uLJBv9tRli .item-title {
  color: #2C2625;
}
.e0LG3Ty-uLJBv9tRli .item-price {
  color: #2C2625;
}
.e0LG3Ty-uLJBv9tRli .item-text {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJBv9tRli .item-title,
.e0LG3Ty-uLJBv9tRli .grid-section-btn {
  text-align: center;
  color: #000000;
}
.e0LG3Ty-uLJBv9tRli .item-price,
.e0LG3Ty-uLJBv9tRli .tag-wrapper {
  text-align: center;
  color: #000000;
}
.e0LG3Ty-uLJBv9tRli .grid-section-title,
.e0LG3Ty-uLJBv9tRli .grid-section-btn {
  text-align: center;
  color: #000000;
}
.e0LG3Ty-uLJBByo8b3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4efe9;
}
.e0LG3Ty-uLJBByo8b3 .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJBByo8b3 .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJBByo8b3 .row {
  justify-content: center;
}
.e0LG3Ty-uLJBByo8b3 .image-wrapper img {
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBByo8b3 .image-wrapper img {
    height: 300px;
  }
}
.e0LG3Ty-uLJBByo8b3 .card-wrapper {
  position: relative;
  padding: 64px;
  overflow: hidden;
  margin-top: -25%;
}
@media (max-width: 1440px) {
  .e0LG3Ty-uLJBByo8b3 .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBByo8b3 .card-wrapper {
    padding: 24px;
    margin-top: 12px;
  }
}
.e0LG3Ty-uLJBByo8b3 .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.e0LG3Ty-uLJBByo8b3 .card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #a49c8f;
  opacity: .5;
  pointer-events: none;
}
.e0LG3Ty-uLJBByo8b3 .card-wrapper .grid-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBByo8b3 .card-wrapper .grid-section-title {
    margin-bottom: 24px;
  }
}
.e0LG3Ty-uLJBByo8b3 .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.e0LG3Ty-uLJBByo8b3 .card-wrapper .text-wrapper .grid-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJBByo8b3 .card-wrapper .text-wrapper .grid-text {
    width: 100%;
  }
}
.e0LG3Ty-uLJBByo8b3 .card-wrapper .grid-section-btn {
  position: relative;
  z-index: 1;
}
.e0LG3Ty-uLJBByo8b3 .card-wrapper .grid-section-btn .btn {
  margin-bottom: 0;
}
.e0LG3Ty-uLJBByo8b3 .grid-section-title {
  color: #2c2c26;
}
.e0LG3Ty-uLJBByo8b3 .grid-text,
.e0LG3Ty-uLJBByo8b3 .text-wrapper {
  color: #000000;
  text-align: center;
}
.e0LG3Ty-uLJBByo8b3 .grid-section-title,
.e0LG3Ty-uLJBByo8b3 .grid-section-btn {
  text-align: center;
  color: #000000;
}
.e0LG3Ty-uLKE2G8GFQ {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  background-color: #2d2a3e !important;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2a3e !important;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar.opened,
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar-collapse {
    background-color: #2d2a3e !important;
    transition: all 0s ease 0s;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  position: relative !important;
}
.e0LG3Ty-uLKE2G8GFQ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .btn:hover {
  box-shadow: none;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 0 !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus::before {
  width: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .e0LG3Ty-uLKE2G8GFQ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .e0LG3Ty-uLKE2G8GFQ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .e0LG3Ty-uLKE2G8GFQ .offcanvas_box {
    display: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .container {
  display: flex;
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper {
  color: #bee0d6;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:hover {
  opacity: .5;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav {
    margin: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu,
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  background-color: false !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item:focus,
.e0LG3Ty-uLKE2G8GFQ .nav-link:focus {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  transition: all 0.3s;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed {
  justify-content: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item {
    padding: .5rem 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .icons-menu {
    padding: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short {
  min-height: 60px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .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;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-logo a {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item.active,
.e0LG3Ty-uLKE2G8GFQ .dropdown-item:active {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.e0LG3Ty-uLKE2G8GFQ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2a3e;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.e0LG3Ty-uLKE2G8GFQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    height: 70px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened {
    height: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .e0LG3Ty-uLKE2G8GFQ .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .text_widget {
  margin-bottom: 32px;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a {
  transition: all 0.3s ease-out;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a:hover,
.e0LG3Ty-uLKE2G8GFQ .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption {
  color: #bee0d6;
}
.e0LG3Ty-uLKE2G8GFQ .grid-text {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle,
.e0LG3Ty-uLKE2G8GFQ .text_widget,
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.e0LG3Ty-uLKE51z6kc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2a3e;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .container {
    padding: 0 16px;
  }
}
.e0LG3Ty-uLKE51z6kc .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap .grid-section-title {
  margin-bottom: 0;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .grid-card-title {
  margin-bottom: 16px;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .grid-section-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .copyright {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .grid-card-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list {
  color: #ffffff;
}
.e0LG3Ty-uLK6ADnZKd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4efe9;
}
.e0LG3Ty-uLK6ADnZKd .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLK6ADnZKd .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLK6ADnZKd .cont-wrap {
  justify-content: center;
}
.e0LG3Ty-uLK6ADnZKd .title-wrapper .grid-section-title {
  margin-bottom: 64px;
  display: inline-block;
  width: 80%;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK6ADnZKd .title-wrapper .grid-section-title {
    margin-bottom: 46px;
    width: 100%;
  }
}
.e0LG3Ty-uLK6ADnZKd .content-wrapper .grid-text {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK6ADnZKd .content-wrapper .grid-text {
    margin-bottom: 22px;
  }
}
.e0LG3Ty-uLK6ADnZKd .content-wrapper .contacts-wrapper {
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK6ADnZKd .content-wrapper .contacts-wrapper {
    margin-bottom: 22px;
  }
}
.e0LG3Ty-uLK6ADnZKd .content-wrapper .contacts-wrapper .list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.e0LG3Ty-uLK6ADnZKd .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.e0LG3Ty-uLK6ADnZKd .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.e0LG3Ty-uLK6ADnZKd .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.e0LG3Ty-uLK6ADnZKd .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK6ADnZKd .content-wrapper .social-wrapper {
    margin-bottom: 46px;
  }
}
.e0LG3Ty-uLK6ADnZKd .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLK6ADnZKd .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.e0LG3Ty-uLK6ADnZKd .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .grid-iconfont,
.e0LG3Ty-uLK6ADnZKd .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .grid-iconfont {
  background-color: #000000;
}
.e0LG3Ty-uLK6ADnZKd .content-wrapper .social-wrapper .social-wrap .soc-item a .grid-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #ffffff;
  background-color: #212529;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.e0LG3Ty-uLK6ADnZKd .content-wrap .grid-section-subtitle {
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK6ADnZKd .content-wrap .grid-section-subtitle {
    margin-bottom: 22px;
  }
}
.e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row {
  position: relative;
  z-index: 1;
}
.e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row .form-group {
  margin-bottom: 10px !important;
}
.e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 5px;
}
.e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 14px 20px;
  border-radius: 10px !important;
  border: none !important;
  box-shadow: none;
  background-color: #ffffff;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row .form-group .form-control:hover,
.e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #51565c;
  font-weight: 700 !important;
  opacity: .7;
}
.e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row .form-group textarea {
  min-height: 100px;
}
.e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #51565c;
  border-color: #51565c;
  border-radius: 0;
}
.e0LG3Ty-uLK6ADnZKd .content-wrap .dragArea.row .grid-section-btn {
  width: 100%;
}
.e0LG3Ty-uLK6ADnZKd .grid-section-title {
  color: #212529;
}
.e0LG3Ty-uLK6ADnZKd .grid-section-subtitle {
  color: #51565c;
}
.e0LG3Ty-uLK6ADnZKd .grid-text {
  color: #000000;
}
.e0LG3Ty-uLK6ADnZKd .list {
  color: #212529;
}
.e0LG3Ty-uLK6ADnZKd .grid-section-title,
.e0LG3Ty-uLK6ADnZKd .title-wrapper {
  text-align: center;
  color: #000000;
}
.e0LG3Ty-uLK6ADnZKd .grid-section-subtitle,
.e0LG3Ty-uLK6ADnZKd .grid-section-btn {
  text-align: center;
  color: #000000;
}
.e0LG3Ty-uLKE2G8GFQ {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  background-color: #2d2a3e !important;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2a3e !important;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar.opened,
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar-collapse {
    background-color: #2d2a3e !important;
    transition: all 0s ease 0s;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  position: relative !important;
}
.e0LG3Ty-uLKE2G8GFQ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .btn:hover {
  box-shadow: none;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 0 !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus::before {
  width: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .e0LG3Ty-uLKE2G8GFQ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .e0LG3Ty-uLKE2G8GFQ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .e0LG3Ty-uLKE2G8GFQ .offcanvas_box {
    display: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .container {
  display: flex;
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper {
  color: #bee0d6;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:hover {
  opacity: .5;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav {
    margin: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu,
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  background-color: false !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item:focus,
.e0LG3Ty-uLKE2G8GFQ .nav-link:focus {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  transition: all 0.3s;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed {
  justify-content: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item {
    padding: .5rem 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .icons-menu {
    padding: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short {
  min-height: 60px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .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;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-logo a {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item.active,
.e0LG3Ty-uLKE2G8GFQ .dropdown-item:active {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.e0LG3Ty-uLKE2G8GFQ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2a3e;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.e0LG3Ty-uLKE2G8GFQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    height: 70px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened {
    height: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .e0LG3Ty-uLKE2G8GFQ .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .text_widget {
  margin-bottom: 32px;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a {
  transition: all 0.3s ease-out;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a:hover,
.e0LG3Ty-uLKE2G8GFQ .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption {
  color: #bee0d6;
}
.e0LG3Ty-uLKE2G8GFQ .grid-text {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle,
.e0LG3Ty-uLKE2G8GFQ .text_widget,
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.e0LG3Ty-uLKE51z6kc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2a3e;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .container {
    padding: 0 16px;
  }
}
.e0LG3Ty-uLKE51z6kc .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap .grid-section-title {
  margin-bottom: 0;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .grid-card-title {
  margin-bottom: 16px;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .grid-section-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .copyright {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .grid-card-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list {
  color: #ffffff;
}
.e0LG3Ty-uLJC2LErnm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4efe9;
}
.e0LG3Ty-uLJC2LErnm .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLJC2LErnm .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLJC2LErnm .row {
  justify-content: space-between;
}
.e0LG3Ty-uLJC2LErnm .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJC2LErnm .content-wrapper {
    padding: 0;
  }
}
.e0LG3Ty-uLJC2LErnm .content-wrapper .grid-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJC2LErnm .content-wrapper .grid-section-title {
    margin-bottom: 20px;
  }
}
.e0LG3Ty-uLJC2LErnm .content-wrapper .grid-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLJC2LErnm .content-wrapper .grid-text {
    margin-bottom: 20px;
  }
}
.e0LG3Ty-uLJC2LErnm .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.e0LG3Ty-uLJC2LErnm .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.e0LG3Ty-uLJC2LErnm .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.e0LG3Ty-uLJC2LErnm .content-wrapper .logo-wrapper .logo-wrap .grid-desc {
  margin-bottom: 0;
}
.e0LG3Ty-uLJC2LErnm .grid-section-title {
  color: #000000;
}
.e0LG3Ty-uLJC2LErnm .grid-desc {
  color: #000000;
}
.e0LG3Ty-uLJC2LErnm .grid-text {
  color: #000000;
}
.e0LG3Ty-uLJC2LErnm .grid-section-title,
.e0LG3Ty-uLJC2LErnm .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  background-color: #2d2a3e !important;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2a3e !important;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar.opened,
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar-collapse {
    background-color: #2d2a3e !important;
    transition: all 0s ease 0s;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  position: relative !important;
}
.e0LG3Ty-uLKE2G8GFQ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .btn:hover {
  box-shadow: none;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 0 !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus::before {
  width: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .e0LG3Ty-uLKE2G8GFQ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .e0LG3Ty-uLKE2G8GFQ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .e0LG3Ty-uLKE2G8GFQ .offcanvas_box {
    display: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .container {
  display: flex;
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper {
  color: #bee0d6;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:hover {
  opacity: .5;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav {
    margin: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu,
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  background-color: false !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item:focus,
.e0LG3Ty-uLKE2G8GFQ .nav-link:focus {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  transition: all 0.3s;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed {
  justify-content: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item {
    padding: .5rem 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .icons-menu {
    padding: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short {
  min-height: 60px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .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;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-logo a {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item.active,
.e0LG3Ty-uLKE2G8GFQ .dropdown-item:active {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.e0LG3Ty-uLKE2G8GFQ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2a3e;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.e0LG3Ty-uLKE2G8GFQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    height: 70px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened {
    height: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .e0LG3Ty-uLKE2G8GFQ .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .text_widget {
  margin-bottom: 32px;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a {
  transition: all 0.3s ease-out;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a:hover,
.e0LG3Ty-uLKE2G8GFQ .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption {
  color: #bee0d6;
}
.e0LG3Ty-uLKE2G8GFQ .grid-text {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle,
.e0LG3Ty-uLKE2G8GFQ .text_widget,
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.e0LG3Ty-uLKE51z6kc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2a3e;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .container {
    padding: 0 16px;
  }
}
.e0LG3Ty-uLKE51z6kc .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap .grid-section-title {
  margin-bottom: 0;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .grid-card-title {
  margin-bottom: 16px;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .grid-section-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .copyright {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .grid-card-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list {
  color: #ffffff;
}
.e0LG3Ty-uLK7TZW9Yj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4efe9;
}
.e0LG3Ty-uLK7TZW9Yj .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLK7TZW9Yj .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLK7TZW9Yj .row {
  justify-content: space-between;
}
.e0LG3Ty-uLK7TZW9Yj .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK7TZW9Yj .content-wrapper {
    padding: 0;
  }
}
.e0LG3Ty-uLK7TZW9Yj .content-wrapper .grid-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK7TZW9Yj .content-wrapper .grid-section-title {
    margin-bottom: 20px;
  }
}
.e0LG3Ty-uLK7TZW9Yj .content-wrapper .grid-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK7TZW9Yj .content-wrapper .grid-text {
    margin-bottom: 20px;
  }
}
.e0LG3Ty-uLK7TZW9Yj .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.e0LG3Ty-uLK7TZW9Yj .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.e0LG3Ty-uLK7TZW9Yj .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.e0LG3Ty-uLK7TZW9Yj .content-wrapper .logo-wrapper .logo-wrap .grid-desc {
  margin-bottom: 0;
}
.e0LG3Ty-uLK7TZW9Yj .grid-section-title {
  color: #000000;
}
.e0LG3Ty-uLK7TZW9Yj .grid-desc {
  color: #000000;
}
.e0LG3Ty-uLK7TZW9Yj .grid-text {
  color: #000000;
}
.e0LG3Ty-uLK7TZW9Yj .grid-section-title,
.e0LG3Ty-uLK7TZW9Yj .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  background-color: #2d2a3e !important;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2a3e !important;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar.opened,
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar-collapse {
    background-color: #2d2a3e !important;
    transition: all 0s ease 0s;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  position: relative !important;
}
.e0LG3Ty-uLKE2G8GFQ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .btn:hover {
  box-shadow: none;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 0 !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus::before {
  width: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .e0LG3Ty-uLKE2G8GFQ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .e0LG3Ty-uLKE2G8GFQ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .e0LG3Ty-uLKE2G8GFQ .offcanvas_box {
    display: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .container {
  display: flex;
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper {
  color: #bee0d6;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:hover {
  opacity: .5;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav {
    margin: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu,
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  background-color: false !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item:focus,
.e0LG3Ty-uLKE2G8GFQ .nav-link:focus {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  transition: all 0.3s;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed {
  justify-content: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item {
    padding: .5rem 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .icons-menu {
    padding: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short {
  min-height: 60px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .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;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-logo a {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item.active,
.e0LG3Ty-uLKE2G8GFQ .dropdown-item:active {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.e0LG3Ty-uLKE2G8GFQ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2a3e;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.e0LG3Ty-uLKE2G8GFQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    height: 70px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened {
    height: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .e0LG3Ty-uLKE2G8GFQ .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .text_widget {
  margin-bottom: 32px;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a {
  transition: all 0.3s ease-out;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a:hover,
.e0LG3Ty-uLKE2G8GFQ .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption {
  color: #bee0d6;
}
.e0LG3Ty-uLKE2G8GFQ .grid-text {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle,
.e0LG3Ty-uLKE2G8GFQ .text_widget,
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.e0LG3Ty-uLKE51z6kc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2a3e;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .container {
    padding: 0 16px;
  }
}
.e0LG3Ty-uLKE51z6kc .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap .grid-section-title {
  margin-bottom: 0;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .grid-card-title {
  margin-bottom: 16px;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .grid-section-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .copyright {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .grid-card-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list {
  color: #ffffff;
}
.e0LG3Ty-uLK7WeiSsg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4efe9;
}
.e0LG3Ty-uLK7WeiSsg .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLK7WeiSsg .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLK7WeiSsg .row {
  justify-content: space-between;
}
.e0LG3Ty-uLK7WeiSsg .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK7WeiSsg .content-wrapper {
    padding: 0;
  }
}
.e0LG3Ty-uLK7WeiSsg .content-wrapper .grid-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK7WeiSsg .content-wrapper .grid-section-title {
    margin-bottom: 20px;
  }
}
.e0LG3Ty-uLK7WeiSsg .content-wrapper .grid-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK7WeiSsg .content-wrapper .grid-text {
    margin-bottom: 20px;
  }
}
.e0LG3Ty-uLK7WeiSsg .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.e0LG3Ty-uLK7WeiSsg .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.e0LG3Ty-uLK7WeiSsg .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.e0LG3Ty-uLK7WeiSsg .content-wrapper .logo-wrapper .logo-wrap .grid-desc {
  margin-bottom: 0;
}
.e0LG3Ty-uLK7WeiSsg .grid-section-title {
  color: #000000;
}
.e0LG3Ty-uLK7WeiSsg .grid-desc {
  color: #000000;
}
.e0LG3Ty-uLK7WeiSsg .grid-text {
  color: #000000;
}
.e0LG3Ty-uLK7WeiSsg .grid-section-title,
.e0LG3Ty-uLK7WeiSsg .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  background-color: #2d2a3e !important;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2a3e !important;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar.opened,
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar-collapse {
    background-color: #2d2a3e !important;
    transition: all 0s ease 0s;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  position: relative !important;
}
.e0LG3Ty-uLKE2G8GFQ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .btn:hover {
  box-shadow: none;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 0 !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus::before {
  width: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .e0LG3Ty-uLKE2G8GFQ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .e0LG3Ty-uLKE2G8GFQ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .e0LG3Ty-uLKE2G8GFQ .offcanvas_box {
    display: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .container {
  display: flex;
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper {
  color: #bee0d6;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:hover {
  opacity: .5;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav {
    margin: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu,
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  background-color: false !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item:focus,
.e0LG3Ty-uLKE2G8GFQ .nav-link:focus {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  transition: all 0.3s;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed {
  justify-content: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item {
    padding: .5rem 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .icons-menu {
    padding: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short {
  min-height: 60px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .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;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-logo a {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item.active,
.e0LG3Ty-uLKE2G8GFQ .dropdown-item:active {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.e0LG3Ty-uLKE2G8GFQ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2a3e;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.e0LG3Ty-uLKE2G8GFQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    height: 70px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened {
    height: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .e0LG3Ty-uLKE2G8GFQ .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .text_widget {
  margin-bottom: 32px;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a {
  transition: all 0.3s ease-out;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a:hover,
.e0LG3Ty-uLKE2G8GFQ .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption {
  color: #bee0d6;
}
.e0LG3Ty-uLKE2G8GFQ .grid-text {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle,
.e0LG3Ty-uLKE2G8GFQ .text_widget,
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.e0LG3Ty-uLKE51z6kc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2a3e;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .container {
    padding: 0 16px;
  }
}
.e0LG3Ty-uLKE51z6kc .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap .grid-section-title {
  margin-bottom: 0;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .grid-card-title {
  margin-bottom: 16px;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .grid-section-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .copyright {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .grid-card-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list {
  color: #ffffff;
}
.e0LG3Ty-uLK7YlPybh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4efe9;
}
.e0LG3Ty-uLK7YlPybh .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLK7YlPybh .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.e0LG3Ty-uLK7YlPybh .row {
  justify-content: space-between;
}
.e0LG3Ty-uLK7YlPybh .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK7YlPybh .content-wrapper {
    padding: 0;
  }
}
.e0LG3Ty-uLK7YlPybh .content-wrapper .grid-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK7YlPybh .content-wrapper .grid-section-title {
    margin-bottom: 20px;
  }
}
.e0LG3Ty-uLK7YlPybh .content-wrapper .grid-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLK7YlPybh .content-wrapper .grid-text {
    margin-bottom: 20px;
  }
}
.e0LG3Ty-uLK7YlPybh .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.e0LG3Ty-uLK7YlPybh .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.e0LG3Ty-uLK7YlPybh .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.e0LG3Ty-uLK7YlPybh .content-wrapper .logo-wrapper .logo-wrap .grid-desc {
  margin-bottom: 0;
}
.e0LG3Ty-uLK7YlPybh .grid-section-title {
  color: #000000;
}
.e0LG3Ty-uLK7YlPybh .grid-desc {
  color: #000000;
}
.e0LG3Ty-uLK7YlPybh .grid-text {
  color: #000000;
}
.e0LG3Ty-uLK7YlPybh .grid-section-title,
.e0LG3Ty-uLK7YlPybh .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  background-color: #2d2a3e !important;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2a3e !important;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar.opened,
  .e0LG3Ty-uLKE2G8GFQ .menu_box .navbar-collapse {
    background-color: #2d2a3e !important;
    transition: all 0s ease 0s;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown {
  position: relative !important;
}
.e0LG3Ty-uLKE2G8GFQ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .btn:hover {
  box-shadow: none;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .nav-item {
    margin: 0 !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before,
.e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:focus::before {
  width: 100%;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .e0LG3Ty-uLKE2G8GFQ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .e0LG3Ty-uLKE2G8GFQ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .e0LG3Ty-uLKE2G8GFQ .offcanvas_box {
    display: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .container {
  display: flex;
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper {
  color: #bee0d6;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.e0LG3Ty-uLKE2G8GFQ .iconfont-wrapper:hover {
  opacity: .5;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav {
    margin: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-menu,
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  background-color: false !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-item:focus,
.e0LG3Ty-uLKE2G8GFQ .nav-link:focus {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown .dropdown-menu .dropdown-item .grid-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.opened {
  transition: all 0.3s;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed {
  justify-content: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item {
    padding: .5rem 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar .icons-menu {
    padding: 0;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short {
  min-height: 60px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.e0LG3Ty-uLKE2G8GFQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .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;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-brand .navbar-logo a {
  outline: none;
}
.e0LG3Ty-uLKE2G8GFQ .dropdown-item.active,
.e0LG3Ty-uLKE2G8GFQ .dropdown-item:active {
  background-color: transparent;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.e0LG3Ty-uLKE2G8GFQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.e0LG3Ty-uLKE2G8GFQ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2a3e;
  background: #2d2a3e;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.e0LG3Ty-uLKE2G8GFQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.e0LG3Ty-uLKE2G8GFQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.e0LG3Ty-uLKE2G8GFQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.e0LG3Ty-uLKE2G8GFQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .e0LG3Ty-uLKE2G8GFQ .navbar {
    height: 70px;
  }
  .e0LG3Ty-uLKE2G8GFQ .navbar.opened {
    height: auto;
  }
  .e0LG3Ty-uLKE2G8GFQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.e0LG3Ty-uLKE2G8GFQ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .e0LG3Ty-uLKE2G8GFQ .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.e0LG3Ty-uLKE2G8GFQ .text_widget {
  margin-bottom: 32px;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a {
  transition: all 0.3s ease-out;
}
.e0LG3Ty-uLKE2G8GFQ .text_widget a:hover,
.e0LG3Ty-uLKE2G8GFQ .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .e0LG3Ty-uLKE2G8GFQ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .navbar-caption {
  color: #bee0d6;
}
.e0LG3Ty-uLKE2G8GFQ .grid-text {
  color: #254b45;
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ .grid-section-subtitle,
.e0LG3Ty-uLKE2G8GFQ .text_widget,
.e0LG3Ty-uLKE2G8GFQ .grid-section-btn {
  text-align: center;
}
.e0LG3Ty-uLKE2G8GFQ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.e0LG3Ty-uLKE51z6kc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2a3e;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image.disabled {
  display: none;
}
.e0LG3Ty-uLKE51z6kc .grid-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .container {
    padding: 0 16px;
  }
}
.e0LG3Ty-uLKE51z6kc .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .title-wrapper .title-wrap .grid-section-title {
  margin-bottom: 0;
}
.e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .card .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.e0LG3Ty-uLKE51z6kc .social-wrapper .social-wrap .grid-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .grid-card-title {
  margin-bottom: 16px;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.e0LG3Ty-uLKE51z6kc .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .e0LG3Ty-uLKE51z6kc .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.e0LG3Ty-uLKE51z6kc .grid-section-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .copyright {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .grid-card-title {
  color: #ffffff;
}
.e0LG3Ty-uLKE51z6kc .list {
  color: #ffffff;
}

/* Base Cookie Banner */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #424a4d;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #424a4d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    all: unset;
    padding: 18px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    display: inline-block;
}

.cookie-btn.Accept {
    background-color: #28a745 !important;
}

.cookie-btn.ignore {
    background-color: #dc3545 !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cookie-btn {
        width: 100%;
        padding: 10px 0;
    }
}
/* Finish Cookie Banner */
/* */
#cookieAcceptBtn:hover {
  background: linear-gradient(145deg, #0056b3, #004494);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.9);
}

#cookieRejectBtn:hover {
  background: linear-gradient(145deg, #e0e0e0, #d6d6d6);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2), -6px -6px 12px rgba(255, 255, 255, 0.8);
}

/*768px*/
@media (max-width: 768px) {
  #cookieAcceptBtn:hover,
  #cookieRejectBtn:hover {
    box-shadow: none;
  }
}

/*480px*/
@media (max-width: 480px) {
  #cookieAcceptBtn:hover,
  #cookieRejectBtn:hover {
    box-shadow: none;
  }
}

/* logoanimations */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px #fff;
    }
    50% {
        text-shadow: 0 0 20px #ff0;
    }
    100% {
        text-shadow: 0 0 5px #fff;
    }
}

.navbar-brand {
    animation: glow 2s alternate;
}
/* endlogoanimations */

/* mainanimations */
/* Style 7: rotate slight */
a, button, .btn {
  transition: transform 0.1s ease;
}
a:active, button:active, .btn:active {
  transform: rotate(-3deg);
}
/* endmainanimations */
