body {
  font-family: Gloock;
}
.display-1 {
  font-family: 'Gloock', sans-serif;
  font-size: 4.2rem;
  line-height: 80px;
  letter-spacing: 0.99px;
}
.display-1 > .application-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Gloock', sans-serif;
  font-size: 3.5rem;
  line-height: 60px;
  letter-spacing: 0.99px;
}
.display-2 > .application-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.3rem;
  line-height: 60px;
  letter-spacing: 2.4px;
}
.display-4 > .application-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Gloock', sans-serif;
  font-size: 2.1rem;
  line-height: 30px;
  letter-spacing: 0.99px;
}
.display-5 > .application-iconfont {
  font-size: 2.625rem;
}
.display-7 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.4rem;
  line-height: 35px;
  letter-spacing: normal;
}
.display-7 > .application-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.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.875rem + (3.5 - 1.875) * ((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.68rem;
    font-size: calc( 1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.385rem + (2.1 - 1.385) * ((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: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6c9a8b !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: #6c9a8b !important;
  border-color: #6c9a8b !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: #47685d !important;
  border-color: #47685d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #47685d !important;
  border-color: #47685d !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: #6c9a8b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #47685d !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: #6c9a8b !important;
  border-color: #6c9a8b !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: #6c9a8b !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: #415f55 !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: #6c9a8b;
}
.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;
}
.application-gallery-filter li.active .btn {
  background-color: #6c9a8b;
  border-color: #6c9a8b;
  color: #ffffff;
}
.application-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6c9a8b;
}
.application-plan-header.bg-primary .application-plan-subtitle,
.application-plan-header.bg-primary .application-plan-price-desc {
  color: #b8cec7;
}
.application-plan-header.bg-success .application-plan-subtitle,
.application-plan-header.bg-success .application-plan-price-desc {
  color: #ffffff;
}
.application-plan-header.bg-info .application-plan-subtitle,
.application-plan-header.bg-info .application-plan-price-desc {
  color: #ffffff;
}
.application-plan-header.bg-warning .application-plan-subtitle,
.application-plan-header.bg-warning .application-plan-price-desc {
  color: #b3b3b3;
}
.application-plan-header.bg-danger .application-plan-subtitle,
.application-plan-header.bg-danger .application-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.3rem;
  line-height: 60px;
  letter-spacing: 2.4px;
  font-weight: 400;
}
.form-control > .application-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: #6c9a8b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.3rem;
  line-height: 60px;
  letter-spacing: 2.4px;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .application-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #6c9a8b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6c9a8b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6c9a8b;
}
.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: #6c9a8b;
  border-bottom-color: #6c9a8b;
}
.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: #6c9a8b !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='%236c9a8b' %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;
}
.application-section-btn .btn,
.application-section-btn-main .btn {
  padding: 0 60px;
  box-shadow: none;
}
@media (max-width: 768px) {
  .application-section-btn .btn,
  .application-section-btn-main .btn {
    padding: 15px 30px;
  }
}
.application-section-btn .btn .application-iconfont,
.application-section-btn-main .btn .application-iconfont {
  font-size: 14px;
}
.application-section-btn .btn:hover,
.application-section-btn-main .btn:hover,
.application-section-btn .btn:focus,
.application-section-btn-main .btn:focus {
  box-shadow: none;
}
.application-section-btn .btn-primary-outline,
.application-section-btn-main .btn-primary-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #6c9a8b;
  border-radius: 0;
}
.application-section-btn .btn-primary-outline .application-iconfont,
.application-section-btn-main .btn-primary-outline .application-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.application-section-btn .btn-primary-outline:hover,
.application-section-btn-main .btn-primary-outline:hover,
.application-section-btn .btn-primary-outline:focus,
.application-section-btn-main .btn-primary-outline:focus {
  border-bottom: 2px solid #6c9a8b !important;
}
.application-section-btn .btn-secondary-outline,
.application-section-btn-main .btn-secondary-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #ffffff;
  border-radius: 0;
}
.application-section-btn .btn-secondary-outline .application-iconfont,
.application-section-btn-main .btn-secondary-outline .application-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.application-section-btn .btn-secondary-outline:hover,
.application-section-btn-main .btn-secondary-outline:hover,
.application-section-btn .btn-secondary-outline:focus,
.application-section-btn-main .btn-secondary-outline:focus {
  border-bottom: 2px solid #ffffff !important;
}
.application-section-btn .btn-success-outline,
.application-section-btn-main .btn-success-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #ffffff;
  border-radius: 0;
}
.application-section-btn .btn-success-outline .application-iconfont,
.application-section-btn-main .btn-success-outline .application-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.application-section-btn .btn-success-outline:hover,
.application-section-btn-main .btn-success-outline:hover,
.application-section-btn .btn-success-outline:focus,
.application-section-btn-main .btn-success-outline:focus {
  border-bottom: 2px solid #ffffff !important;
}
.application-section-btn .btn-info-outline,
.application-section-btn-main .btn-info-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #ffffff;
  border-radius: 0;
}
.application-section-btn .btn-info-outline .application-iconfont,
.application-section-btn-main .btn-info-outline .application-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.application-section-btn .btn-info-outline:hover,
.application-section-btn-main .btn-info-outline:hover,
.application-section-btn .btn-info-outline:focus,
.application-section-btn-main .btn-info-outline:focus {
  border-bottom: 2px solid #ffffff !important;
}
.application-section-btn .btn-danger-outline,
.application-section-btn-main .btn-danger-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #000000;
  border-radius: 0;
}
.application-section-btn .btn-danger-outline .application-iconfont,
.application-section-btn-main .btn-danger-outline .application-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.application-section-btn .btn-danger-outline:hover,
.application-section-btn-main .btn-danger-outline:hover,
.application-section-btn .btn-danger-outline:focus,
.application-section-btn-main .btn-danger-outline:focus {
  border-bottom: 2px solid #000000 !important;
}
.application-section-btn .btn-warning-outline,
.application-section-btn-main .btn-warning-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #000000;
  border-radius: 0;
}
.application-section-btn .btn-warning-outline .application-iconfont,
.application-section-btn-main .btn-warning-outline .application-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.application-section-btn .btn-warning-outline:hover,
.application-section-btn-main .btn-warning-outline:hover,
.application-section-btn .btn-warning-outline:focus,
.application-section-btn-main .btn-warning-outline:focus {
  border-bottom: 2px solid #000000 !important;
}
.application-section-btn .btn-black-outline,
.application-section-btn-main .btn-black-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #000000;
  border-radius: 0;
}
.application-section-btn .btn-black-outline .application-iconfont,
.application-section-btn-main .btn-black-outline .application-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.application-section-btn .btn-black-outline:hover,
.application-section-btn-main .btn-black-outline:hover,
.application-section-btn .btn-black-outline:focus,
.application-section-btn-main .btn-black-outline:focus {
  border-bottom: 2px solid #000000 !important;
}
.application-section-btn .btn-white-outline,
.application-section-btn-main .btn-white-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #ffffff;
  border-radius: 0;
}
.application-section-btn .btn-white-outline .application-iconfont,
.application-section-btn-main .btn-white-outline .application-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.application-section-btn .btn-white-outline:hover,
.application-section-btn-main .btn-white-outline:hover,
.application-section-btn .btn-white-outline:focus,
.application-section-btn-main .btn-white-outline:focus {
  border-bottom: 2px solid #ffffff !important;
}
.yP1gH9-uP21HTJ0Bq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9f9;
}
.yP1gH9-uP21HTJ0Bq .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP21HTJ0Bq .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP21HTJ0Bq .content-wrapper .application-section-title {
  margin-bottom: 40px;
}
.yP1gH9-uP21HTJ0Bq .content-wrapper .tags-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .yP1gH9-uP21HTJ0Bq .content-wrapper .tags-wrapper {
    margin-bottom: 20px;
  }
}
.yP1gH9-uP21HTJ0Bq .content-wrapper .tags-wrapper .tags-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.yP1gH9-uP21HTJ0Bq .content-wrapper .tags-wrapper .tags-wrap .application-tag {
  position: relative;
  z-index: 1;
  margin: 0 16px 20px;
  display: inline-flex;
  justify-content: center;
  padding: 24px 88px;
  border-radius: 60px !important;
  border: 1px solid #6c9a8b;
  transform: rotate(8deg);
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .yP1gH9-uP21HTJ0Bq .content-wrapper .tags-wrapper .tags-wrap .application-tag {
    padding: 20px 40px;
    transform: none;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .yP1gH9-uP21HTJ0Bq .content-wrapper .tags-wrapper .tags-wrap .application-tag {
    width: 100%;
  }
}
.yP1gH9-uP21HTJ0Bq .content-wrapper .tags-wrapper .tags-wrap .application-tag:nth-child(2n) {
  transform: rotate(-8deg);
}
@media (max-width: 992px) {
  .yP1gH9-uP21HTJ0Bq .content-wrapper .tags-wrapper .tags-wrap .application-tag:nth-child(2n) {
    transform: none;
  }
}
.yP1gH9-uP21HTJ0Bq .content-wrapper .tags-wrapper .tags-wrap .application-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  opacity: .3;
  background-color: #6c9a8b;
  pointer-events: none;
  border-radius: 0 !important;
}
.yP1gH9-uP21HTJ0Bq .content-wrapper .text-wrapper {
  margin-bottom: 30px;
}
.yP1gH9-uP21HTJ0Bq .content-wrapper .text-wrapper .application-text {
  display: inline-block;
  width: 40%;
}
@media (max-width: 992px) {
  .yP1gH9-uP21HTJ0Bq .content-wrapper .text-wrapper .application-text {
    width: 100%;
  }
}
.yP1gH9-uP21HTJ0Bq .image-wrapper {
  margin-top: 40px;
  display: flex;
}
@media (max-width: 992px) {
  .yP1gH9-uP21HTJ0Bq .image-wrapper {
    justify-content: center;
  }
}
.yP1gH9-uP21HTJ0Bq .image-wrapper img {
  width: 540px;
  height: 540px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .yP1gH9-uP21HTJ0Bq .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 1200px) {
  .yP1gH9-uP21HTJ0Bq .image-wrapper img {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .yP1gH9-uP21HTJ0Bq .image-wrapper img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }
}
.yP1gH9-uP21HTJ0Bq .image-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .yP1gH9-uP21HTJ0Bq .image-wrap {
    justify-content: center;
  }
}
.yP1gH9-uP21HTJ0Bq .image-wrap img {
  width: 640px;
  height: 640px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .yP1gH9-uP21HTJ0Bq .image-wrap img {
    width: 540px;
    height: 540px;
  }
}
@media (max-width: 1200px) {
  .yP1gH9-uP21HTJ0Bq .image-wrap img {
    width: 440px;
    height: 440px;
  }
}
@media (max-width: 768px) {
  .yP1gH9-uP21HTJ0Bq .image-wrap img {
    width: 260px;
    height: 260px;
  }
}
.yP1gH9-uP21HTJ0Bq .application-section-title {
  color: #ffffff;
}
.yP1gH9-uP21HTJ0Bq .application-tag {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP21HTJ0Bq .application-text,
.yP1gH9-uP21HTJ0Bq .text-wrapper {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP21HTJ0Bq .application-section-title,
.yP1gH9-uP21HTJ0Bq .application-section-btn,
.yP1gH9-uP21HTJ0Bq .tags-wrapper {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP22a0FjGB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #e6e8e6;
}
.yP1gH9-uP22a0FjGB .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP22a0FjGB .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP22a0FjGB .row {
  justify-content: center;
}
.yP1gH9-uP22a0FjGB .card-wrapper {
  position: relative;
  padding: 80px 150px;
  background-color: #f2f4f3;
}
@media (max-width: 1600px) {
  .yP1gH9-uP22a0FjGB .card-wrapper {
    padding: 80px;
  }
}
@media (max-width: 1440px) {
  .yP1gH9-uP22a0FjGB .card-wrapper {
    padding: 60px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP22a0FjGB .card-wrapper {
    padding: 30px 20px;
  }
}
.yP1gH9-uP22a0FjGB .card-wrapper .application-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .yP1gH9-uP22a0FjGB .card-wrapper .application-section-title {
    margin-bottom: 30px;
  }
}
.yP1gH9-uP22a0FjGB .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.yP1gH9-uP22a0FjGB .card-wrapper .text-wrapper .application-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .yP1gH9-uP22a0FjGB .card-wrapper .text-wrapper .application-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.yP1gH9-uP22a0FjGB .card-wrapper .application-section-btn {
  position: relative;
  z-index: 1;
}
.yP1gH9-uP22a0FjGB .application-section-title {
  color: #000000;
}
.yP1gH9-uP22a0FjGB .application-text,
.yP1gH9-uP22a0FjGB .text-wrapper {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP22a0FjGB .application-section-title,
.yP1gH9-uP22a0FjGB .application-section-btn {
  text-align: center;
}
.yP1gH9-uP22dqWuim {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9f9;
}
.yP1gH9-uP22dqWuim .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP22dqWuim .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP22dqWuim .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .yP1gH9-uP22dqWuim .content-wrapper {
    margin-bottom: 32px;
  }
}
.yP1gH9-uP22dqWuim .content-wrapper .application-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .yP1gH9-uP22dqWuim .content-wrapper .application-section-title {
    margin-bottom: 32px;
  }
}
.yP1gH9-uP22dqWuim .content-wrapper .application-text {
  margin-bottom: 22px;
}
.yP1gH9-uP22dqWuim .image-wrapper img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .yP1gH9-uP22dqWuim .image-wrapper img {
    height: 350px;
  }
}
.yP1gH9-uP22dqWuim .application-section-title {
  color: #ffffff;
}
.yP1gH9-uP22dqWuim .application-text {
  color: #ffffff;
}
.yP1gH9-uP22dqWuim .application-section-title,
.yP1gH9-uP22dqWuim .application-section-btn {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP22dqWuim .application-text,
.yP1gH9-uP22dqWuim .text-wrapper {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP22RVqKzi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6e8e6;
}
.yP1gH9-uP22RVqKzi .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP22RVqKzi .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP22RVqKzi .row {
  justify-content: space-between;
}
.yP1gH9-uP22RVqKzi .title-wrapper .label-wrapper .application-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #6c9a8b;
}
@media (max-width: 992px) {
  .yP1gH9-uP22RVqKzi .title-wrapper .application-section-title {
    margin-bottom: 20px;
  }
}
.yP1gH9-uP22RVqKzi .content-wrapper .application-desc {
  margin-bottom: 20px;
}
.yP1gH9-uP22RVqKzi .content-wrapper .application-text {
  margin-bottom: 0;
}
.yP1gH9-uP22RVqKzi .content-wrapper .application-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .yP1gH9-uP22RVqKzi .content-wrapper .application-section-btn {
    margin-top: 20px;
  }
}
.yP1gH9-uP22RVqKzi .application-label {
  color: #000000;
}
.yP1gH9-uP22RVqKzi .application-section-title {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP22RVqKzi .application-desc {
  color: #000000;
}
.yP1gH9-uP22RVqKzi .application-text {
  color: #8a8a8a;
}
.yP1gH9-uP22RVqKzi .application-text,
.yP1gH9-uP22RVqKzi .application-section-btn {
  color: #000000;
}
.yP1gH9-uP22RVqKzi .application-label,
.yP1gH9-uP22RVqKzi .label-wrapper {
  text-align: center;
}
.yP1gH9-uP22WIVwc3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9f9;
}
.yP1gH9-uP22WIVwc3 .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP22WIVwc3 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP22WIVwc3 .row {
  margin: 0 -8px;
}
.yP1gH9-uP22WIVwc3 .row .card {
  padding: 0 8px;
}
.yP1gH9-uP22WIVwc3 .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .yP1gH9-uP22WIVwc3 .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP22WIVwc3 .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.yP1gH9-uP22WIVwc3 .card-wrapper .application-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .yP1gH9-uP22WIVwc3 .card-wrapper .application-section-title {
    margin-bottom: 24px;
  }
}
.yP1gH9-uP22WIVwc3 .card-wrapper .card-wrap .text-wrapper .application-text {
  margin-bottom: 24px;
}
.yP1gH9-uP22WIVwc3 .card-wrapper .card-wrap .application-section-btn .btn {
  margin-bottom: 0;
}
.yP1gH9-uP22WIVwc3 .image-wrapper {
  height: 100%;
}
.yP1gH9-uP22WIVwc3 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .yP1gH9-uP22WIVwc3 .image-wrapper img {
    height: 300px;
  }
}
.yP1gH9-uP22WIVwc3 .application-section-title {
  color: #2c2c26;
}
.yP1gH9-uP22WIVwc3 .application-text,
.yP1gH9-uP22WIVwc3 .text-wrapper {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP22WIVwc3 .application-section-title,
.yP1gH9-uP22WIVwc3 .application-section-btn {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP23buIPqc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6e8e6;
}
.yP1gH9-uP23buIPqc .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP23buIPqc .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP23buIPqc .items-wrap {
  justify-content: space-between;
}
.yP1gH9-uP23buIPqc .content-wrapper {
  padding: 96px;
  background-color: #ffffff;
  position: sticky;
  top: 32px;
}
@media (max-width: 1440px) {
  .yP1gH9-uP23buIPqc .content-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP23buIPqc .content-wrapper {
    padding: 26px 22px;
    margin-bottom: 12px;
    height: auto;
  }
}
.yP1gH9-uP23buIPqc .content-wrapper .application-section-title {
  margin-bottom: 0;
}
.yP1gH9-uP23buIPqc .card-wrapper {
  padding: 96px;
  background-color: #f2f4f3;
  margin-top: 32px;
}
@media (max-width: 1440px) {
  .yP1gH9-uP23buIPqc .card-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP23buIPqc .card-wrapper {
    padding: 26px 22px;
    margin-top: 12px;
  }
}
.yP1gH9-uP23buIPqc .card-wrapper:first-child {
  margin-top: 0;
}
.yP1gH9-uP23buIPqc .card-wrapper .application-address,
.yP1gH9-uP23buIPqc .card-wrapper .application-phone,
.yP1gH9-uP23buIPqc .card-wrapper .application-email {
  margin-bottom: 0;
}
.yP1gH9-uP23buIPqc .application-section-title {
  color: #191c25;
}
.yP1gH9-uP23buIPqc .application-address {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP23buIPqc .application-phone {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP23buIPqc .application-email {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP23buIPqc .application-section-title,
.yP1gH9-uP23buIPqc .application-section-btn {
  text-align: center;
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  background-color: #2d2f33 !important;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2f33 !important;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .menu_box .navbar.opened,
  .yP1gH9-uP2zfI3YQN .menu_box .navbar-collapse {
    background-color: #2d2f33 !important;
    transition: all 0s ease 0s;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  position: relative !important;
}
.yP1gH9-uP2zfI3YQN .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main {
    margin-top: 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #d17756;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-text,
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-section-subtitle {
    margin-bottom: 32px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .yP1gH9-uP2zfI3YQN ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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);
  }
  .yP1gH9-uP2zfI3YQN .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .yP1gH9-uP2zfI3YQN li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .yP1gH9-uP2zfI3YQN .lg_brand {
    margin: 0 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 0 !important;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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;
  }
  .yP1gH9-uP2zfI3YQN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box {
    display: none;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .container {
  display: flex;
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper {
  color: #263a5c;
  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;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .navbar-caption {
  color: #263652;
}
.yP1gH9-uP2zfI3YQN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar-nav {
    margin: 0;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-menu,
.yP1gH9-uP2zfI3YQN .navbar.opened {
  background-color: false !important;
}
.yP1gH9-uP2zfI3YQN .nav-item:focus,
.yP1gH9-uP2zfI3YQN .nav-link:focus {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.opened {
  transition: all 0.3s;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed {
  justify-content: center;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .navbar .nav-item {
    padding: .5rem 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .yP1gH9-uP2zfI3YQN .navbar .icons-menu {
    padding: 0;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short {
  min-height: 60px;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .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;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-logo a {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown-item.active,
.yP1gH9-uP2zfI3YQN .dropdown-item:active {
  background-color: transparent;
}
.yP1gH9-uP2zfI3YQN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.yP1gH9-uP2zfI3YQN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2f33;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.yP1gH9-uP2zfI3YQN .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) {
  .yP1gH9-uP2zfI3YQN .navbar {
    height: 70px;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened {
    height: auto;
  }
  .yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .yP1gH9-uP2zfI3YQN .container-fluid {
    padding-left: 160px;
    padding-right: 16px;
  }
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main {
  padding-top: 5px;
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-caption:hover {
  color: #6c9a8b;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.yP1gH9-uP2zfI3YQN .text_widget {
  margin-bottom: 32px;
}
.yP1gH9-uP2zfI3YQN .text_widget a {
  transition: all 0.3s ease-out;
}
.yP1gH9-uP2zfI3YQN .text_widget a:hover {
  color: #ffffff !important;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-text {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle,
.yP1gH9-uP2zfI3YQN .text_widget,
.yP1gH9-uP2zfI3YQN .application-section-btn {
  text-align: left;
}
.yP1gH9-uP2zfI3YQN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.yP1gH9-uP2zjFLOxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2f33;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP2zjFLOxq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container {
    padding: 0 16px;
  }
}
.yP1gH9-uP2zjFLOxq .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row {
    margin: 0 10px;
  }
}
.yP1gH9-uP2zjFLOxq .row .card {
  padding: 0;
}
.yP1gH9-uP2zjFLOxq .row .card:first-child {
  padding-right: 10px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row .card:first-child {
    padding: 0;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #6c9a8b;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper {
    height: auto;
    margin-bottom: 10px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
  padding: 30px 30px 70px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
    padding: 20px 20px 30px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper {
  margin-bottom: 20px;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper .application-iconfont {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #192227;
  color: #f9a600;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .application-section-title {
  margin-bottom: 0;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
  padding: 30px;
  margin-bottom: 0;
  border-top: 1px solid #f8f9f9;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
    padding: 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper {
  border: 1px solid #f8f9f9;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item {
  border-bottom: 1px solid #4a5357;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item:last-child {
  border: none;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a {
  display: block;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box {
  background-color: #6c9a8b;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title {
  color: #ffffff;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont {
  color: #ffffff;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
    padding: 15px 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .card-title {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .application-iconfont {
  font-size: 18px;
  color: #f8f9f9;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.yP1gH9-uP2zjFLOxq .application-section-title {
  color: #192227;
}
.yP1gH9-uP2zjFLOxq .application-copy {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP2zjFLOxq .card-title {
  color: #fdfcfc;
}
.yP1gH9-uP2zjFLOxq .application-section-title,
.yP1gH9-uP2zjFLOxq .icon-wrapper {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP23ven96o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #2d2f33;
  background-color: #f8f9f9;
}
.yP1gH9-uP23ven96o .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP23ven96o .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP23ven96o .card {
  justify-content: center;
}
.yP1gH9-uP23ven96o .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .yP1gH9-uP23ven96o .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP23ven96o .content-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.yP1gH9-uP23ven96o .content-wrapper .application-section-btn {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .yP1gH9-uP23ven96o .content-wrapper .application-section-btn {
    margin-bottom: 22px;
  }
}
.yP1gH9-uP23ven96o .content-wrapper .tag-wrapper {
  margin-bottom: 20px;
}
.yP1gH9-uP23ven96o .content-wrapper .tag-wrapper .application-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #6c9a8b;
}
.yP1gH9-uP23ven96o .content-wrapper .application-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .yP1gH9-uP23ven96o .content-wrapper .application-section-title {
    margin-bottom: 32px;
  }
}
.yP1gH9-uP23ven96o .content-wrapper .text-wrapper .application-text {
  display: inline-block;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .yP1gH9-uP23ven96o .content-wrapper .text-wrapper .application-text {
    margin-bottom: 32px;
  }
}
.yP1gH9-uP23ven96o .image-wrapper {
  padding-right: 108px;
}
@media (max-width: 1440px) {
  .yP1gH9-uP23ven96o .image-wrapper {
    padding-right: 64px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP23ven96o .image-wrapper {
    padding-right: 0;
  }
}
.yP1gH9-uP23ven96o .image-wrapper img {
  height: 800px;
  object-fit: cover;
  border: 2px solid #2d2f33;
  box-shadow: -10px 10px 0 0 #2d2f33;
}
@media (max-width: 992px) {
  .yP1gH9-uP23ven96o .image-wrapper img {
    box-shadow: -5px 5px 0 0 #2d2f33;
    height: 350px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP23ven96o .image-wrapper img {
    box-shadow: -5px 5px 0 0 #2d2f33;
  }
}
.yP1gH9-uP23ven96o .application-section-title {
  color: #ffffff;
}
.yP1gH9-uP23ven96o .application-tag {
  color: #ffffff;
}
.yP1gH9-uP23ven96o .application-text {
  color: #ffffff;
}
.yP1gH9-uP23ven96o .application-tag,
.yP1gH9-uP23ven96o .tag-wrapper {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP23ven96o .application-section-title,
.yP1gH9-uP23ven96o .application-section-btn {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP23ven96o .application-text,
.yP1gH9-uP23ven96o .text-wrapper {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP23CpvyXW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6e8e6;
}
.yP1gH9-uP23CpvyXW .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP23CpvyXW .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP23CpvyXW .icon-wrapper {
  margin-bottom: 20px;
}
.yP1gH9-uP23CpvyXW .icon-wrapper .application-iconfont {
  display: inline-flex;
  font-size: 62px;
  color: #6c9a8b;
}
.yP1gH9-uP23CpvyXW .application-text {
  margin-bottom: 32px;
  color: #000c3f;
}
.yP1gH9-uP23CpvyXW .desc-wrapper .application-desc {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP23CpvyXW .desc-wrapper .application-desc {
    width: 100%;
  }
}
.yP1gH9-uP23CpvyXW .application-desc,
.yP1gH9-uP23CpvyXW .desc-wrapper {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP23CpvyXW .application-text,
.yP1gH9-uP23CpvyXW .icon-wrapper {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP23F0K4zK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9f9;
}
.yP1gH9-uP23F0K4zK .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP23F0K4zK .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP23F0K4zK .row {
  justify-content: space-between;
}
.yP1gH9-uP23F0K4zK .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 75px 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .yP1gH9-uP23F0K4zK .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP23F0K4zK .card-wrapper {
    padding: 24px 12px;
    display: block;
  }
}
.yP1gH9-uP23F0K4zK .card-wrapper .card-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .yP1gH9-uP23F0K4zK .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 24px;
    padding: 0 14px;
  }
}
.yP1gH9-uP23F0K4zK .card-wrapper .card-wrap .application-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .yP1gH9-uP23F0K4zK .card-wrapper .card-wrap .application-section-title {
    margin-bottom: 24px;
  }
}
.yP1gH9-uP23F0K4zK .card-wrapper .card-wrap .text-wrapper .application-text {
  margin-bottom: 24px;
}
.yP1gH9-uP23F0K4zK .card-wrapper .card-wrap .application-section-btn .btn {
  margin-bottom: 0;
}
.yP1gH9-uP23F0K4zK .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .yP1gH9-uP23F0K4zK .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.yP1gH9-uP23F0K4zK .card-wrapper .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .yP1gH9-uP23F0K4zK .card-wrapper .image-wrapper img {
    height: 300px;
  }
}
.yP1gH9-uP23F0K4zK .application-section-title {
  color: #ffffff;
}
.yP1gH9-uP23F0K4zK .application-text,
.yP1gH9-uP23F0K4zK .text-wrapper {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP23F0K4zK .application-section-title,
.yP1gH9-uP23F0K4zK .application-section-btn {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP23K9h20X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6e8e6;
}
.yP1gH9-uP23K9h20X .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP23K9h20X .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP23K9h20X .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .yP1gH9-uP23K9h20X .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP23K9h20X .container {
    padding: 0 26px;
  }
}
.yP1gH9-uP23K9h20X .row {
  justify-content: center;
}
.yP1gH9-uP23K9h20X .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #f2f4f3;
  border-radius: 20px;
  padding: 200px 60px 200px 100px;
}
@media (max-width: 1440px) {
  .yP1gH9-uP23K9h20X .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP23K9h20X .content-wrapper {
    padding: 100px 20px;
  }
}
@media (max-width: 1440px) {
  .yP1gH9-uP23K9h20X .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP23K9h20X .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.yP1gH9-uP23K9h20X .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
  padding-right: 0;
  padding-left: 45px;
}
@media (max-width: 992px) {
  .yP1gH9-uP23K9h20X .content-wrapper .title-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP23K9h20X .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.yP1gH9-uP23K9h20X .content-wrapper .title-wrapper .application-section-title {
  margin-bottom: 30px;
}
.yP1gH9-uP23K9h20X .content-wrapper .title-wrapper .application-desc {
  margin-bottom: 0;
}
.yP1gH9-uP23K9h20X .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .yP1gH9-uP23K9h20X .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.yP1gH9-uP23K9h20X .content-wrapper .text-wrapper .application-section-subtitle {
  margin-bottom: 20px;
}
.yP1gH9-uP23K9h20X .content-wrapper .text-wrapper .application-text {
  margin-bottom: 20px;
}
.yP1gH9-uP23K9h20X .content-wrapper .text-wrapper .link-wrapper:hover .application-link,
.yP1gH9-uP23K9h20X .content-wrapper .text-wrapper .link-wrapper:focus .application-link {
  color: #000000;
}
.yP1gH9-uP23K9h20X .content-wrapper .text-wrapper .link-wrapper .application-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP23K9h20X .application-section-title {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP23K9h20X .application-section-subtitle {
  color: #ffffff;
}
.yP1gH9-uP23K9h20X .application-desc {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP23K9h20X .application-text {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP23K9h20X .application-link {
  color: #ffffff;
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  background-color: #2d2f33 !important;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2f33 !important;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .menu_box .navbar.opened,
  .yP1gH9-uP2zfI3YQN .menu_box .navbar-collapse {
    background-color: #2d2f33 !important;
    transition: all 0s ease 0s;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  position: relative !important;
}
.yP1gH9-uP2zfI3YQN .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main {
    margin-top: 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #d17756;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-text,
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-section-subtitle {
    margin-bottom: 32px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .yP1gH9-uP2zfI3YQN ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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);
  }
  .yP1gH9-uP2zfI3YQN .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .yP1gH9-uP2zfI3YQN li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .yP1gH9-uP2zfI3YQN .lg_brand {
    margin: 0 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 0 !important;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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;
  }
  .yP1gH9-uP2zfI3YQN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box {
    display: none;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .container {
  display: flex;
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper {
  color: #263a5c;
  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;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .navbar-caption {
  color: #263652;
}
.yP1gH9-uP2zfI3YQN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar-nav {
    margin: 0;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-menu,
.yP1gH9-uP2zfI3YQN .navbar.opened {
  background-color: false !important;
}
.yP1gH9-uP2zfI3YQN .nav-item:focus,
.yP1gH9-uP2zfI3YQN .nav-link:focus {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.opened {
  transition: all 0.3s;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed {
  justify-content: center;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .navbar .nav-item {
    padding: .5rem 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .yP1gH9-uP2zfI3YQN .navbar .icons-menu {
    padding: 0;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short {
  min-height: 60px;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .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;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-logo a {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown-item.active,
.yP1gH9-uP2zfI3YQN .dropdown-item:active {
  background-color: transparent;
}
.yP1gH9-uP2zfI3YQN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.yP1gH9-uP2zfI3YQN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2f33;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.yP1gH9-uP2zfI3YQN .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) {
  .yP1gH9-uP2zfI3YQN .navbar {
    height: 70px;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened {
    height: auto;
  }
  .yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .yP1gH9-uP2zfI3YQN .container-fluid {
    padding-left: 160px;
    padding-right: 16px;
  }
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main {
  padding-top: 5px;
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-caption:hover {
  color: #6c9a8b;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.yP1gH9-uP2zfI3YQN .text_widget {
  margin-bottom: 32px;
}
.yP1gH9-uP2zfI3YQN .text_widget a {
  transition: all 0.3s ease-out;
}
.yP1gH9-uP2zfI3YQN .text_widget a:hover {
  color: #ffffff !important;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-text {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle,
.yP1gH9-uP2zfI3YQN .text_widget,
.yP1gH9-uP2zfI3YQN .application-section-btn {
  text-align: left;
}
.yP1gH9-uP2zfI3YQN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.yP1gH9-uP2zjFLOxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2f33;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP2zjFLOxq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container {
    padding: 0 16px;
  }
}
.yP1gH9-uP2zjFLOxq .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row {
    margin: 0 10px;
  }
}
.yP1gH9-uP2zjFLOxq .row .card {
  padding: 0;
}
.yP1gH9-uP2zjFLOxq .row .card:first-child {
  padding-right: 10px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row .card:first-child {
    padding: 0;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #6c9a8b;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper {
    height: auto;
    margin-bottom: 10px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
  padding: 30px 30px 70px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
    padding: 20px 20px 30px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper {
  margin-bottom: 20px;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper .application-iconfont {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #192227;
  color: #f9a600;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .application-section-title {
  margin-bottom: 0;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
  padding: 30px;
  margin-bottom: 0;
  border-top: 1px solid #f8f9f9;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
    padding: 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper {
  border: 1px solid #f8f9f9;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item {
  border-bottom: 1px solid #4a5357;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item:last-child {
  border: none;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a {
  display: block;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box {
  background-color: #6c9a8b;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title {
  color: #ffffff;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont {
  color: #ffffff;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
    padding: 15px 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .card-title {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .application-iconfont {
  font-size: 18px;
  color: #f8f9f9;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.yP1gH9-uP2zjFLOxq .application-section-title {
  color: #192227;
}
.yP1gH9-uP2zjFLOxq .application-copy {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP2zjFLOxq .card-title {
  color: #fdfcfc;
}
.yP1gH9-uP2zjFLOxq .application-section-title,
.yP1gH9-uP2zjFLOxq .icon-wrapper {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP240qbPK6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9f9;
}
.yP1gH9-uP240qbPK6 .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP240qbPK6 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP240qbPK6 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP240qbPK6 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP240qbPK6 .container {
    padding: 0 16px;
  }
}
.yP1gH9-uP240qbPK6 .row {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 90px 45px 75px;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP240qbPK6 .row {
    padding: 45px 32px;
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .yP1gH9-uP240qbPK6 .row {
    padding: 45px 4px;
  }
}
.yP1gH9-uP240qbPK6 .row .card {
  justify-content: center;
}
.yP1gH9-uP240qbPK6 .title-wrapper {
  padding-right: 100px;
  padding-right: 0;
  padding-left: 100px;
}
@media (max-width: 992px) {
  .yP1gH9-uP240qbPK6 .title-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP240qbPK6 .title-wrapper {
    padding: 0;
    margin-bottom: 45px;
  }
}
.yP1gH9-uP240qbPK6 .title-wrapper .subtitle-wrapper {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .yP1gH9-uP240qbPK6 .title-wrapper .subtitle-wrapper {
    margin-bottom: 20px;
  }
}
.yP1gH9-uP240qbPK6 .title-wrapper .subtitle-wrapper .subtitle-wrap {
  display: inline-flex;
  align-items: center;
}
.yP1gH9-uP240qbPK6 .title-wrapper .subtitle-wrapper .subtitle-wrap .application-section-subtitle {
  margin: 0 20px 0 0;
}
.yP1gH9-uP240qbPK6 .title-wrapper .subtitle-wrapper .subtitle-wrap .application-iconfont {
  font-size: 30px;
  color: #6c9a8b;
}
.yP1gH9-uP240qbPK6 .title-wrapper .application-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .yP1gH9-uP240qbPK6 .title-wrapper .application-section-title {
    margin-bottom: 32px;
  }
}
.yP1gH9-uP240qbPK6 .title-wrapper .application-text {
  margin-bottom: 0;
}
.yP1gH9-uP240qbPK6 .title-wrapper .application-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .yP1gH9-uP240qbPK6 .title-wrapper .application-section-btn {
    margin-top: 30px;
  }
}
.yP1gH9-uP240qbPK6 .image-wrapper img {
  height: 590px;
  width: 70%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 14rem !important;
  border: 5px solid #2d2f33;
}
@media (max-width: 1440px) {
  .yP1gH9-uP240qbPK6 .image-wrapper img {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .yP1gH9-uP240qbPK6 .image-wrapper img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .yP1gH9-uP240qbPK6 .image-wrapper img {
    height: 350px;
  }
}
.yP1gH9-uP240qbPK6 .application-section-subtitle {
  color: #d1cece;
}
.yP1gH9-uP240qbPK6 .application-section-title {
  color: #192227;
}
.yP1gH9-uP240qbPK6 .application-text {
  color: #192227;
}
.yP1gH9-uP240qbPK6 .application-section-subtitle,
.yP1gH9-uP240qbPK6 .subtitle-wrapper {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP240qbPK6 .application-section-title,
.yP1gH9-uP240qbPK6 .application-section-btn {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP240qbPK6 .application-text,
.yP1gH9-uP240qbPK6 .application-section-btn {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP249t2s1J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6e8e6;
  position: relative;
  overflow: hidden;
}
.yP1gH9-uP249t2s1J::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #6c9a8b -10%, transparent 70%);
}
.yP1gH9-uP249t2s1J .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP249t2s1J .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .yP1gH9-uP249t2s1J .container {
    padding: 0 16px;
  }
}
.yP1gH9-uP249t2s1J .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.yP1gH9-uP249t2s1J .content-wrapper .application-section-title {
  margin-bottom: 50px;
}
.yP1gH9-uP249t2s1J .content-wrapper .application-text {
  margin-bottom: 0;
}
.yP1gH9-uP249t2s1J .application-section-title {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP249t2s1J .application-text {
  color: #000000;
}
.yP1gH9-uP249t2s1J .application-text,
.yP1gH9-uP249t2s1J .icon-wrapper {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP24mUPQbM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f8f9f9;
}
.yP1gH9-uP24mUPQbM .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP24mUPQbM .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP24mUPQbM .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .yP1gH9-uP24mUPQbM .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP24mUPQbM .container {
    padding: 0 24px;
  }
}
.yP1gH9-uP24mUPQbM .row .card {
  padding: 0 12px;
  border-radius: 0 !important;
}
.yP1gH9-uP24mUPQbM .image-wrapper {
  height: 100%;
}
.yP1gH9-uP24mUPQbM .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .yP1gH9-uP24mUPQbM .image-wrapper img {
    height: 350px;
  }
}
.yP1gH9-uP24mUPQbM .content-wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: .75rem;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .yP1gH9-uP24mUPQbM .content-wrapper {
    padding: 24px;
  }
}
.yP1gH9-uP24mUPQbM .content-wrapper .content-wrap {
  width: 100%;
}
.yP1gH9-uP24mUPQbM .content-wrapper .content-wrap .application-section-title {
  margin-bottom: 32px;
}
.yP1gH9-uP24mUPQbM .content-wrapper .content-wrap .application-text {
  margin-bottom: 16px;
}
.yP1gH9-uP24mUPQbM .content-wrapper .content-wrap .application-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.yP1gH9-uP24mUPQbM .content-wrapper .content-wrap .application-section-btn .btn:hover,
.yP1gH9-uP24mUPQbM .content-wrapper .content-wrap .application-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.yP1gH9-uP24mUPQbM .application-section-title {
  color: #141414;
}
.yP1gH9-uP24mUPQbM .application-text {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP24mUPQbM .application-section-title,
.yP1gH9-uP24mUPQbM .title-wrapper,
.yP1gH9-uP24mUPQbM .application-section-btn {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP25dBBuv8 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #e6e8e6;
}
.yP1gH9-uP25dBBuv8 .application-text {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP25dBBuv8 .my {
  margin-bottom: 0;
  margin-top: auto;
}
.yP1gH9-uP25dBBuv8 h5,
.yP1gH9-uP25dBBuv8 h6 {
  background: #6c9a8b;
  display: inline;
}
.yP1gH9-uP25dBBuv8 h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.yP1gH9-uP25dBBuv8 h6 {
  line-height: 1.3 !important;
}
.yP1gH9-uP25dBBuv8 h6 span {
  padding-right: 2rem;
}
.yP1gH9-uP25dBBuv8 .application-section-title,
.yP1gH9-uP25dBBuv8 .align {
  color: #ffffff;
}
.yP1gH9-uP25dBBuv8 .application-section-subtitle,
.yP1gH9-uP25dBBuv8 .align {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP25lfEeVr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f8f9f9;
}
.yP1gH9-uP25lfEeVr .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP25lfEeVr .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP25lfEeVr .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .yP1gH9-uP25lfEeVr .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP25lfEeVr .container {
    padding: 0 20px;
  }
}
.yP1gH9-uP25lfEeVr .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP25lfEeVr .content-wrapper {
    padding: 46px 0;
  }
}
.yP1gH9-uP25lfEeVr .content-wrapper .application-desc {
  margin-bottom: 32px;
}
.yP1gH9-uP25lfEeVr .content-wrapper .application-section-title {
  margin-bottom: 32px;
}
.yP1gH9-uP25lfEeVr .content-wrapper .text-wrapper .application-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .yP1gH9-uP25lfEeVr .content-wrapper .text-wrapper .application-text {
    margin-bottom: 20px;
    width: 100%;
  }
}
.yP1gH9-uP25lfEeVr .content-wrapper .image-wrapper img {
  display: inline-flex;
  width: 50%;
  border-radius: 20px !important;
  object-fit: cover;
  height: 280px;
}
@media (max-width: 992px) {
  .yP1gH9-uP25lfEeVr .content-wrapper .image-wrapper img {
    width: 100%;
  }
}
.yP1gH9-uP25lfEeVr .content-wrapper .application-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .yP1gH9-uP25lfEeVr .content-wrapper .application-section-btn {
    margin-top: 20px;
  }
}
.yP1gH9-uP25lfEeVr .application-section-title {
  color: #000000;
}
.yP1gH9-uP25lfEeVr .application-desc {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP25lfEeVr .application-text,
.yP1gH9-uP25lfEeVr .text-wrapper {
  color: #000000;
  text-align: center;
}
.yP1gH9-uP25lfEeVr .application-section-title,
.yP1gH9-uP25lfEeVr .application-section-btn,
.yP1gH9-uP25lfEeVr .image-wrapper {
  text-align: center;
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  background-color: #2d2f33 !important;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2f33 !important;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .menu_box .navbar.opened,
  .yP1gH9-uP2zfI3YQN .menu_box .navbar-collapse {
    background-color: #2d2f33 !important;
    transition: all 0s ease 0s;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  position: relative !important;
}
.yP1gH9-uP2zfI3YQN .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main {
    margin-top: 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #d17756;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-text,
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-section-subtitle {
    margin-bottom: 32px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .yP1gH9-uP2zfI3YQN ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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);
  }
  .yP1gH9-uP2zfI3YQN .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .yP1gH9-uP2zfI3YQN li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .yP1gH9-uP2zfI3YQN .lg_brand {
    margin: 0 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 0 !important;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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;
  }
  .yP1gH9-uP2zfI3YQN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box {
    display: none;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .container {
  display: flex;
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper {
  color: #263a5c;
  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;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .navbar-caption {
  color: #263652;
}
.yP1gH9-uP2zfI3YQN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar-nav {
    margin: 0;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-menu,
.yP1gH9-uP2zfI3YQN .navbar.opened {
  background-color: false !important;
}
.yP1gH9-uP2zfI3YQN .nav-item:focus,
.yP1gH9-uP2zfI3YQN .nav-link:focus {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.opened {
  transition: all 0.3s;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed {
  justify-content: center;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .navbar .nav-item {
    padding: .5rem 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .yP1gH9-uP2zfI3YQN .navbar .icons-menu {
    padding: 0;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short {
  min-height: 60px;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .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;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-logo a {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown-item.active,
.yP1gH9-uP2zfI3YQN .dropdown-item:active {
  background-color: transparent;
}
.yP1gH9-uP2zfI3YQN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.yP1gH9-uP2zfI3YQN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2f33;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.yP1gH9-uP2zfI3YQN .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) {
  .yP1gH9-uP2zfI3YQN .navbar {
    height: 70px;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened {
    height: auto;
  }
  .yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .yP1gH9-uP2zfI3YQN .container-fluid {
    padding-left: 160px;
    padding-right: 16px;
  }
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main {
  padding-top: 5px;
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-caption:hover {
  color: #6c9a8b;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.yP1gH9-uP2zfI3YQN .text_widget {
  margin-bottom: 32px;
}
.yP1gH9-uP2zfI3YQN .text_widget a {
  transition: all 0.3s ease-out;
}
.yP1gH9-uP2zfI3YQN .text_widget a:hover {
  color: #ffffff !important;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-text {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle,
.yP1gH9-uP2zfI3YQN .text_widget,
.yP1gH9-uP2zfI3YQN .application-section-btn {
  text-align: left;
}
.yP1gH9-uP2zfI3YQN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.yP1gH9-uP2zjFLOxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2f33;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP2zjFLOxq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container {
    padding: 0 16px;
  }
}
.yP1gH9-uP2zjFLOxq .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row {
    margin: 0 10px;
  }
}
.yP1gH9-uP2zjFLOxq .row .card {
  padding: 0;
}
.yP1gH9-uP2zjFLOxq .row .card:first-child {
  padding-right: 10px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row .card:first-child {
    padding: 0;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #6c9a8b;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper {
    height: auto;
    margin-bottom: 10px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
  padding: 30px 30px 70px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
    padding: 20px 20px 30px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper {
  margin-bottom: 20px;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper .application-iconfont {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #192227;
  color: #f9a600;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .application-section-title {
  margin-bottom: 0;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
  padding: 30px;
  margin-bottom: 0;
  border-top: 1px solid #f8f9f9;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
    padding: 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper {
  border: 1px solid #f8f9f9;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item {
  border-bottom: 1px solid #4a5357;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item:last-child {
  border: none;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a {
  display: block;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box {
  background-color: #6c9a8b;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title {
  color: #ffffff;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont {
  color: #ffffff;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
    padding: 15px 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .card-title {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .application-iconfont {
  font-size: 18px;
  color: #f8f9f9;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.yP1gH9-uP2zjFLOxq .application-section-title {
  color: #192227;
}
.yP1gH9-uP2zjFLOxq .application-copy {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP2zjFLOxq .card-title {
  color: #fdfcfc;
}
.yP1gH9-uP2zjFLOxq .application-section-title,
.yP1gH9-uP2zjFLOxq .icon-wrapper {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP25yHTPM7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9f9;
}
.yP1gH9-uP25yHTPM7 .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP25yHTPM7 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP25yHTPM7 .cont-wrap {
  justify-content: center;
}
.yP1gH9-uP25yHTPM7 .title-wrapper .application-section-title {
  margin-bottom: 64px;
  display: inline-block;
  width: 80%;
}
@media (max-width: 992px) {
  .yP1gH9-uP25yHTPM7 .title-wrapper .application-section-title {
    margin-bottom: 46px;
    width: 100%;
  }
}
.yP1gH9-uP25yHTPM7 .content-wrapper .application-text {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .yP1gH9-uP25yHTPM7 .content-wrapper .application-text {
    margin-bottom: 22px;
  }
}
.yP1gH9-uP25yHTPM7 .content-wrapper .contacts-wrapper {
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .yP1gH9-uP25yHTPM7 .content-wrapper .contacts-wrapper {
    margin-bottom: 22px;
  }
}
.yP1gH9-uP25yHTPM7 .content-wrapper .contacts-wrapper .list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.yP1gH9-uP25yHTPM7 .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP25yHTPM7 .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.yP1gH9-uP25yHTPM7 .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.yP1gH9-uP25yHTPM7 .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP25yHTPM7 .content-wrapper .social-wrapper {
    margin-bottom: 46px;
  }
}
.yP1gH9-uP25yHTPM7 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.yP1gH9-uP25yHTPM7 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.yP1gH9-uP25yHTPM7 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .application-iconfont,
.yP1gH9-uP25yHTPM7 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .application-iconfont {
  background-color: #000000;
}
.yP1gH9-uP25yHTPM7 .content-wrapper .social-wrapper .social-wrap .soc-item a .application-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;
}
.yP1gH9-uP25yHTPM7 .content-wrap .application-section-subtitle {
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .yP1gH9-uP25yHTPM7 .content-wrap .application-section-subtitle {
    margin-bottom: 22px;
  }
}
.yP1gH9-uP25yHTPM7 .content-wrap .dragArea.row {
  position: relative;
  z-index: 1;
}
.yP1gH9-uP25yHTPM7 .content-wrap .dragArea.row .form-group {
  margin-bottom: 10px !important;
}
.yP1gH9-uP25yHTPM7 .content-wrap .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 5px;
}
.yP1gH9-uP25yHTPM7 .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) {
  .yP1gH9-uP25yHTPM7 .content-wrap .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.yP1gH9-uP25yHTPM7 .content-wrap .dragArea.row .form-group .form-control:hover,
.yP1gH9-uP25yHTPM7 .content-wrap .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.yP1gH9-uP25yHTPM7 .content-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  font-weight: 700 !important;
  opacity: .7;
}
.yP1gH9-uP25yHTPM7 .content-wrap .dragArea.row .form-group textarea {
  min-height: 100px;
}
.yP1gH9-uP25yHTPM7 .content-wrap .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.yP1gH9-uP25yHTPM7 .content-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
  border-radius: 0;
}
.yP1gH9-uP25yHTPM7 .content-wrap .dragArea.row .application-section-btn {
  width: 100%;
}
.yP1gH9-uP25yHTPM7 .application-section-title {
  color: #212529;
}
.yP1gH9-uP25yHTPM7 .application-section-subtitle {
  color: #51565c;
}
.yP1gH9-uP25yHTPM7 .application-text {
  color: #000000;
}
.yP1gH9-uP25yHTPM7 .list {
  color: #212529;
}
.yP1gH9-uP25yHTPM7 .application-section-title,
.yP1gH9-uP25yHTPM7 .title-wrapper {
  text-align: center;
}
.yP1gH9-uP25yHTPM7 .application-section-subtitle,
.yP1gH9-uP25yHTPM7 .application-section-btn {
  text-align: center;
  color: #000000;
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  background-color: #2d2f33 !important;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2f33 !important;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .menu_box .navbar.opened,
  .yP1gH9-uP2zfI3YQN .menu_box .navbar-collapse {
    background-color: #2d2f33 !important;
    transition: all 0s ease 0s;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  position: relative !important;
}
.yP1gH9-uP2zfI3YQN .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main {
    margin-top: 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #d17756;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-text,
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-section-subtitle {
    margin-bottom: 32px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .yP1gH9-uP2zfI3YQN ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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);
  }
  .yP1gH9-uP2zfI3YQN .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .yP1gH9-uP2zfI3YQN li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .yP1gH9-uP2zfI3YQN .lg_brand {
    margin: 0 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 0 !important;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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;
  }
  .yP1gH9-uP2zfI3YQN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box {
    display: none;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .container {
  display: flex;
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper {
  color: #263a5c;
  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;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .navbar-caption {
  color: #263652;
}
.yP1gH9-uP2zfI3YQN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar-nav {
    margin: 0;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-menu,
.yP1gH9-uP2zfI3YQN .navbar.opened {
  background-color: false !important;
}
.yP1gH9-uP2zfI3YQN .nav-item:focus,
.yP1gH9-uP2zfI3YQN .nav-link:focus {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.opened {
  transition: all 0.3s;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed {
  justify-content: center;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .navbar .nav-item {
    padding: .5rem 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .yP1gH9-uP2zfI3YQN .navbar .icons-menu {
    padding: 0;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short {
  min-height: 60px;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .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;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-logo a {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown-item.active,
.yP1gH9-uP2zfI3YQN .dropdown-item:active {
  background-color: transparent;
}
.yP1gH9-uP2zfI3YQN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.yP1gH9-uP2zfI3YQN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2f33;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.yP1gH9-uP2zfI3YQN .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) {
  .yP1gH9-uP2zfI3YQN .navbar {
    height: 70px;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened {
    height: auto;
  }
  .yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .yP1gH9-uP2zfI3YQN .container-fluid {
    padding-left: 160px;
    padding-right: 16px;
  }
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main {
  padding-top: 5px;
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-caption:hover {
  color: #6c9a8b;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.yP1gH9-uP2zfI3YQN .text_widget {
  margin-bottom: 32px;
}
.yP1gH9-uP2zfI3YQN .text_widget a {
  transition: all 0.3s ease-out;
}
.yP1gH9-uP2zfI3YQN .text_widget a:hover {
  color: #ffffff !important;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-text {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle,
.yP1gH9-uP2zfI3YQN .text_widget,
.yP1gH9-uP2zfI3YQN .application-section-btn {
  text-align: left;
}
.yP1gH9-uP2zfI3YQN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.yP1gH9-uP2zjFLOxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2f33;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP2zjFLOxq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container {
    padding: 0 16px;
  }
}
.yP1gH9-uP2zjFLOxq .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row {
    margin: 0 10px;
  }
}
.yP1gH9-uP2zjFLOxq .row .card {
  padding: 0;
}
.yP1gH9-uP2zjFLOxq .row .card:first-child {
  padding-right: 10px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row .card:first-child {
    padding: 0;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #6c9a8b;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper {
    height: auto;
    margin-bottom: 10px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
  padding: 30px 30px 70px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
    padding: 20px 20px 30px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper {
  margin-bottom: 20px;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper .application-iconfont {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #192227;
  color: #f9a600;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .application-section-title {
  margin-bottom: 0;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
  padding: 30px;
  margin-bottom: 0;
  border-top: 1px solid #f8f9f9;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
    padding: 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper {
  border: 1px solid #f8f9f9;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item {
  border-bottom: 1px solid #4a5357;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item:last-child {
  border: none;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a {
  display: block;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box {
  background-color: #6c9a8b;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title {
  color: #ffffff;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont {
  color: #ffffff;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
    padding: 15px 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .card-title {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .application-iconfont {
  font-size: 18px;
  color: #f8f9f9;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.yP1gH9-uP2zjFLOxq .application-section-title {
  color: #192227;
}
.yP1gH9-uP2zjFLOxq .application-copy {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP2zjFLOxq .card-title {
  color: #fdfcfc;
}
.yP1gH9-uP2zjFLOxq .application-section-title,
.yP1gH9-uP2zjFLOxq .icon-wrapper {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP25S1mWuM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9f9;
}
.yP1gH9-uP25S1mWuM .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP25S1mWuM .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP25S1mWuM .row {
  justify-content: space-between;
}
.yP1gH9-uP25S1mWuM .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .yP1gH9-uP25S1mWuM .content-wrapper {
    padding: 0;
  }
}
.yP1gH9-uP25S1mWuM .content-wrapper .application-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .yP1gH9-uP25S1mWuM .content-wrapper .application-section-title {
    margin-bottom: 20px;
  }
}
.yP1gH9-uP25S1mWuM .content-wrapper .application-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .yP1gH9-uP25S1mWuM .content-wrapper .application-text {
    margin-bottom: 20px;
  }
}
.yP1gH9-uP25S1mWuM .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.yP1gH9-uP25S1mWuM .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.yP1gH9-uP25S1mWuM .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.yP1gH9-uP25S1mWuM .content-wrapper .logo-wrapper .logo-wrap .application-desc {
  margin-bottom: 0;
}
.yP1gH9-uP25S1mWuM .application-section-title {
  color: #000000;
}
.yP1gH9-uP25S1mWuM .application-desc {
  color: #000000;
}
.yP1gH9-uP25S1mWuM .application-text {
  color: #000000;
}
.yP1gH9-uP25S1mWuM .application-section-title,
.yP1gH9-uP25S1mWuM .application-section-btn {
  text-align: center;
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  background-color: #2d2f33 !important;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2f33 !important;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .menu_box .navbar.opened,
  .yP1gH9-uP2zfI3YQN .menu_box .navbar-collapse {
    background-color: #2d2f33 !important;
    transition: all 0s ease 0s;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  position: relative !important;
}
.yP1gH9-uP2zfI3YQN .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main {
    margin-top: 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #d17756;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-text,
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-section-subtitle {
    margin-bottom: 32px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .yP1gH9-uP2zfI3YQN ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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);
  }
  .yP1gH9-uP2zfI3YQN .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .yP1gH9-uP2zfI3YQN li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .yP1gH9-uP2zfI3YQN .lg_brand {
    margin: 0 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 0 !important;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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;
  }
  .yP1gH9-uP2zfI3YQN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box {
    display: none;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .container {
  display: flex;
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper {
  color: #263a5c;
  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;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .navbar-caption {
  color: #263652;
}
.yP1gH9-uP2zfI3YQN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar-nav {
    margin: 0;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-menu,
.yP1gH9-uP2zfI3YQN .navbar.opened {
  background-color: false !important;
}
.yP1gH9-uP2zfI3YQN .nav-item:focus,
.yP1gH9-uP2zfI3YQN .nav-link:focus {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.opened {
  transition: all 0.3s;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed {
  justify-content: center;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .navbar .nav-item {
    padding: .5rem 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .yP1gH9-uP2zfI3YQN .navbar .icons-menu {
    padding: 0;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short {
  min-height: 60px;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .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;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-logo a {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown-item.active,
.yP1gH9-uP2zfI3YQN .dropdown-item:active {
  background-color: transparent;
}
.yP1gH9-uP2zfI3YQN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.yP1gH9-uP2zfI3YQN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2f33;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.yP1gH9-uP2zfI3YQN .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) {
  .yP1gH9-uP2zfI3YQN .navbar {
    height: 70px;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened {
    height: auto;
  }
  .yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .yP1gH9-uP2zfI3YQN .container-fluid {
    padding-left: 160px;
    padding-right: 16px;
  }
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main {
  padding-top: 5px;
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-caption:hover {
  color: #6c9a8b;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.yP1gH9-uP2zfI3YQN .text_widget {
  margin-bottom: 32px;
}
.yP1gH9-uP2zfI3YQN .text_widget a {
  transition: all 0.3s ease-out;
}
.yP1gH9-uP2zfI3YQN .text_widget a:hover {
  color: #ffffff !important;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-text {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle,
.yP1gH9-uP2zfI3YQN .text_widget,
.yP1gH9-uP2zfI3YQN .application-section-btn {
  text-align: left;
}
.yP1gH9-uP2zfI3YQN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.yP1gH9-uP2zjFLOxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2f33;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP2zjFLOxq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container {
    padding: 0 16px;
  }
}
.yP1gH9-uP2zjFLOxq .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row {
    margin: 0 10px;
  }
}
.yP1gH9-uP2zjFLOxq .row .card {
  padding: 0;
}
.yP1gH9-uP2zjFLOxq .row .card:first-child {
  padding-right: 10px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row .card:first-child {
    padding: 0;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #6c9a8b;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper {
    height: auto;
    margin-bottom: 10px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
  padding: 30px 30px 70px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
    padding: 20px 20px 30px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper {
  margin-bottom: 20px;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper .application-iconfont {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #192227;
  color: #f9a600;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .application-section-title {
  margin-bottom: 0;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
  padding: 30px;
  margin-bottom: 0;
  border-top: 1px solid #f8f9f9;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
    padding: 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper {
  border: 1px solid #f8f9f9;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item {
  border-bottom: 1px solid #4a5357;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item:last-child {
  border: none;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a {
  display: block;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box {
  background-color: #6c9a8b;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title {
  color: #ffffff;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont {
  color: #ffffff;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
    padding: 15px 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .card-title {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .application-iconfont {
  font-size: 18px;
  color: #f8f9f9;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.yP1gH9-uP2zjFLOxq .application-section-title {
  color: #192227;
}
.yP1gH9-uP2zjFLOxq .application-copy {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP2zjFLOxq .card-title {
  color: #fdfcfc;
}
.yP1gH9-uP2zjFLOxq .application-section-title,
.yP1gH9-uP2zjFLOxq .icon-wrapper {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP29eTmIvH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9f9;
}
.yP1gH9-uP29eTmIvH .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP29eTmIvH .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP29eTmIvH .row {
  justify-content: space-between;
}
.yP1gH9-uP29eTmIvH .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .yP1gH9-uP29eTmIvH .content-wrapper {
    padding: 0;
  }
}
.yP1gH9-uP29eTmIvH .content-wrapper .application-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .yP1gH9-uP29eTmIvH .content-wrapper .application-section-title {
    margin-bottom: 20px;
  }
}
.yP1gH9-uP29eTmIvH .content-wrapper .application-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .yP1gH9-uP29eTmIvH .content-wrapper .application-text {
    margin-bottom: 20px;
  }
}
.yP1gH9-uP29eTmIvH .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.yP1gH9-uP29eTmIvH .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.yP1gH9-uP29eTmIvH .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.yP1gH9-uP29eTmIvH .content-wrapper .logo-wrapper .logo-wrap .application-desc {
  margin-bottom: 0;
}
.yP1gH9-uP29eTmIvH .application-section-title {
  color: #000000;
}
.yP1gH9-uP29eTmIvH .application-desc {
  color: #000000;
}
.yP1gH9-uP29eTmIvH .application-text {
  color: #000000;
}
.yP1gH9-uP29eTmIvH .application-section-title,
.yP1gH9-uP29eTmIvH .application-section-btn {
  text-align: center;
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  background-color: #2d2f33 !important;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2f33 !important;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .menu_box .navbar.opened,
  .yP1gH9-uP2zfI3YQN .menu_box .navbar-collapse {
    background-color: #2d2f33 !important;
    transition: all 0s ease 0s;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  position: relative !important;
}
.yP1gH9-uP2zfI3YQN .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main {
    margin-top: 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #d17756;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-text,
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-section-subtitle {
    margin-bottom: 32px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .yP1gH9-uP2zfI3YQN ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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);
  }
  .yP1gH9-uP2zfI3YQN .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .yP1gH9-uP2zfI3YQN li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .yP1gH9-uP2zfI3YQN .lg_brand {
    margin: 0 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 0 !important;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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;
  }
  .yP1gH9-uP2zfI3YQN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box {
    display: none;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .container {
  display: flex;
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper {
  color: #263a5c;
  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;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .navbar-caption {
  color: #263652;
}
.yP1gH9-uP2zfI3YQN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar-nav {
    margin: 0;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-menu,
.yP1gH9-uP2zfI3YQN .navbar.opened {
  background-color: false !important;
}
.yP1gH9-uP2zfI3YQN .nav-item:focus,
.yP1gH9-uP2zfI3YQN .nav-link:focus {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.opened {
  transition: all 0.3s;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed {
  justify-content: center;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .navbar .nav-item {
    padding: .5rem 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .yP1gH9-uP2zfI3YQN .navbar .icons-menu {
    padding: 0;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short {
  min-height: 60px;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .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;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-logo a {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown-item.active,
.yP1gH9-uP2zfI3YQN .dropdown-item:active {
  background-color: transparent;
}
.yP1gH9-uP2zfI3YQN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.yP1gH9-uP2zfI3YQN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2f33;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.yP1gH9-uP2zfI3YQN .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) {
  .yP1gH9-uP2zfI3YQN .navbar {
    height: 70px;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened {
    height: auto;
  }
  .yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .yP1gH9-uP2zfI3YQN .container-fluid {
    padding-left: 160px;
    padding-right: 16px;
  }
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main {
  padding-top: 5px;
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-caption:hover {
  color: #6c9a8b;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.yP1gH9-uP2zfI3YQN .text_widget {
  margin-bottom: 32px;
}
.yP1gH9-uP2zfI3YQN .text_widget a {
  transition: all 0.3s ease-out;
}
.yP1gH9-uP2zfI3YQN .text_widget a:hover {
  color: #ffffff !important;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-text {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle,
.yP1gH9-uP2zfI3YQN .text_widget,
.yP1gH9-uP2zfI3YQN .application-section-btn {
  text-align: left;
}
.yP1gH9-uP2zfI3YQN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.yP1gH9-uP2zjFLOxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2f33;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP2zjFLOxq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container {
    padding: 0 16px;
  }
}
.yP1gH9-uP2zjFLOxq .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row {
    margin: 0 10px;
  }
}
.yP1gH9-uP2zjFLOxq .row .card {
  padding: 0;
}
.yP1gH9-uP2zjFLOxq .row .card:first-child {
  padding-right: 10px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row .card:first-child {
    padding: 0;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #6c9a8b;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper {
    height: auto;
    margin-bottom: 10px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
  padding: 30px 30px 70px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
    padding: 20px 20px 30px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper {
  margin-bottom: 20px;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper .application-iconfont {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #192227;
  color: #f9a600;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .application-section-title {
  margin-bottom: 0;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
  padding: 30px;
  margin-bottom: 0;
  border-top: 1px solid #f8f9f9;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
    padding: 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper {
  border: 1px solid #f8f9f9;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item {
  border-bottom: 1px solid #4a5357;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item:last-child {
  border: none;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a {
  display: block;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box {
  background-color: #6c9a8b;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title {
  color: #ffffff;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont {
  color: #ffffff;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
    padding: 15px 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .card-title {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .application-iconfont {
  font-size: 18px;
  color: #f8f9f9;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.yP1gH9-uP2zjFLOxq .application-section-title {
  color: #192227;
}
.yP1gH9-uP2zjFLOxq .application-copy {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP2zjFLOxq .card-title {
  color: #fdfcfc;
}
.yP1gH9-uP2zjFLOxq .application-section-title,
.yP1gH9-uP2zjFLOxq .icon-wrapper {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP29hxcP1k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9f9;
}
.yP1gH9-uP29hxcP1k .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP29hxcP1k .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP29hxcP1k .row {
  justify-content: space-between;
}
.yP1gH9-uP29hxcP1k .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .yP1gH9-uP29hxcP1k .content-wrapper {
    padding: 0;
  }
}
.yP1gH9-uP29hxcP1k .content-wrapper .application-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .yP1gH9-uP29hxcP1k .content-wrapper .application-section-title {
    margin-bottom: 20px;
  }
}
.yP1gH9-uP29hxcP1k .content-wrapper .application-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .yP1gH9-uP29hxcP1k .content-wrapper .application-text {
    margin-bottom: 20px;
  }
}
.yP1gH9-uP29hxcP1k .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.yP1gH9-uP29hxcP1k .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.yP1gH9-uP29hxcP1k .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.yP1gH9-uP29hxcP1k .content-wrapper .logo-wrapper .logo-wrap .application-desc {
  margin-bottom: 0;
}
.yP1gH9-uP29hxcP1k .application-section-title {
  color: #000000;
}
.yP1gH9-uP29hxcP1k .application-desc {
  color: #000000;
}
.yP1gH9-uP29hxcP1k .application-text {
  color: #000000;
}
.yP1gH9-uP29hxcP1k .application-section-title,
.yP1gH9-uP29hxcP1k .application-section-btn {
  text-align: center;
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  background-color: #2d2f33 !important;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2d2f33 !important;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .menu_box .navbar.opened,
  .yP1gH9-uP2zfI3YQN .menu_box .navbar-collapse {
    background-color: #2d2f33 !important;
    transition: all 0s ease 0s;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown {
  position: relative !important;
}
.yP1gH9-uP2zfI3YQN .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main {
    margin-top: 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #d17756;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-text,
  .yP1gH9-uP2zfI3YQN .offcanvas-body .application-section-subtitle {
    margin-bottom: 32px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .yP1gH9-uP2zfI3YQN ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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);
  }
  .yP1gH9-uP2zfI3YQN .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .yP1gH9-uP2zfI3YQN li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .yP1gH9-uP2zfI3YQN .lg_brand {
    margin: 0 1rem;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .nav-item {
    margin: 0 !important;
  }
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .yP1gH9-uP2zfI3YQN .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;
  }
  .yP1gH9-uP2zfI3YQN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .yP1gH9-uP2zfI3YQN .offcanvas_box {
    display: none;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.yP1gH9-uP2zfI3YQN .container {
  display: flex;
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper {
  color: #263a5c;
  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;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.yP1gH9-uP2zfI3YQN .iconfont-wrapper:hover {
  opacity: .5;
}
.yP1gH9-uP2zfI3YQN .navbar-caption {
  color: #263652;
}
.yP1gH9-uP2zfI3YQN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar-nav {
    margin: 0;
  }
}
.yP1gH9-uP2zfI3YQN .dropdown-menu,
.yP1gH9-uP2zfI3YQN .navbar.opened {
  background-color: false !important;
}
.yP1gH9-uP2zfI3YQN .nav-item:focus,
.yP1gH9-uP2zfI3YQN .nav-link:focus {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.yP1gH9-uP2zfI3YQN .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.opened {
  transition: all 0.3s;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed {
  justify-content: center;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .yP1gH9-uP2zfI3YQN .navbar .nav-item {
    padding: .5rem 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .yP1gH9-uP2zfI3YQN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .yP1gH9-uP2zfI3YQN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .yP1gH9-uP2zfI3YQN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .yP1gH9-uP2zfI3YQN .navbar .icons-menu {
    padding: 0;
  }
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short {
  min-height: 60px;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.yP1gH9-uP2zfI3YQN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .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;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.yP1gH9-uP2zfI3YQN .navbar-brand .navbar-logo a {
  outline: none;
}
.yP1gH9-uP2zfI3YQN .dropdown-item.active,
.yP1gH9-uP2zfI3YQN .dropdown-item:active {
  background-color: transparent;
}
.yP1gH9-uP2zfI3YQN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.yP1gH9-uP2zfI3YQN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.yP1gH9-uP2zfI3YQN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.yP1gH9-uP2zfI3YQN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.yP1gH9-uP2zfI3YQN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2d2f33;
  background: #2d2f33;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.yP1gH9-uP2zfI3YQN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.yP1gH9-uP2zfI3YQN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.yP1gH9-uP2zfI3YQN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.yP1gH9-uP2zfI3YQN .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) {
  .yP1gH9-uP2zfI3YQN .navbar {
    height: 70px;
  }
  .yP1gH9-uP2zfI3YQN .navbar.opened {
    height: auto;
  }
  .yP1gH9-uP2zfI3YQN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .yP1gH9-uP2zfI3YQN .container-fluid {
    padding-left: 160px;
    padding-right: 16px;
  }
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main {
  padding-top: 5px;
}
.yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zfI3YQN .application-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.yP1gH9-uP2zfI3YQN .navbar-caption:hover {
  color: #6c9a8b;
}
@media (min-width: 992px) {
  .yP1gH9-uP2zfI3YQN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.yP1gH9-uP2zfI3YQN .text_widget {
  margin-bottom: 32px;
}
.yP1gH9-uP2zfI3YQN .text_widget a {
  transition: all 0.3s ease-out;
}
.yP1gH9-uP2zfI3YQN .text_widget a:hover {
  color: #ffffff !important;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-text {
  color: #ffffff;
  text-align: left;
}
.yP1gH9-uP2zfI3YQN .application-section-subtitle,
.yP1gH9-uP2zfI3YQN .text_widget,
.yP1gH9-uP2zfI3YQN .application-section-btn {
  text-align: left;
}
.yP1gH9-uP2zfI3YQN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.yP1gH9-uP2zjFLOxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2d2f33;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image.disabled {
  display: none;
}
.yP1gH9-uP2zjFLOxq .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.yP1gH9-uP2zjFLOxq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .container {
    padding: 0 16px;
  }
}
.yP1gH9-uP2zjFLOxq .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row {
    margin: 0 10px;
  }
}
.yP1gH9-uP2zjFLOxq .row .card {
  padding: 0;
}
.yP1gH9-uP2zjFLOxq .row .card:first-child {
  padding-right: 10px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .row .card:first-child {
    padding: 0;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #6c9a8b;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper {
    height: auto;
    margin-bottom: 10px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
  padding: 30px 30px 70px;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap {
    padding: 20px 20px 30px;
  }
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper {
  margin-bottom: 20px;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .icon-wrapper .application-iconfont {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #192227;
  color: #f9a600;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .title-wrapper .title-wrap .application-section-title {
  margin-bottom: 0;
}
.yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
  padding: 30px;
  margin-bottom: 0;
  border-top: 1px solid #f8f9f9;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .title-wrapper .application-copy {
    padding: 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper {
  border: 1px solid #f8f9f9;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item {
  border-bottom: 1px solid #4a5357;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item:last-child {
  border: none;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  overflow: hidden;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a {
  display: block;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box {
  background-color: #6c9a8b;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .card-title {
  color: #ffffff;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont,
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a:hover .card-box .application-iconfont {
  color: #ffffff;
  transform: rotate(-45deg);
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box {
    padding: 15px 20px;
  }
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .card-title {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .list-wrapper .item .item-wrapper a .card-box .application-iconfont {
  font-size: 18px;
  color: #f8f9f9;
  transition: all 0.3s ease-in-out;
}
.yP1gH9-uP2zjFLOxq .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.yP1gH9-uP2zjFLOxq .application-section-title {
  color: #192227;
}
.yP1gH9-uP2zjFLOxq .application-copy {
  color: #ffffff;
  text-align: center;
}
.yP1gH9-uP2zjFLOxq .card-title {
  color: #fdfcfc;
}
.yP1gH9-uP2zjFLOxq .application-section-title,
.yP1gH9-uP2zjFLOxq .icon-wrapper {
  color: #ffffff;
  text-align: center;
}

/* 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 */
.cookie-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	display: none;
}

.cookie-overlay.active {
	display: block;
}

.cookie-notification {
	position: fixed;
	bottom: -350px;
	left: 0;
	right: 0;
	background-color: gray;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
	padding: 20px;
	text-align: center;
	transition: transform 0.3s ease;
	transform: translateY(200px);
	z-index: 1000;
}

.cookie-notification.active {
	transform: translateY(-350px);
}

.cookie-notification__content {
	max-width: 800px;
	margin: 0 auto;
	color: aliceblue;
}

.cookie-notification__content p a {
	color: aliceblue;
	transition: all 0.5s ease-in-out;
}

.cookie-notification__content p a:hover {
	color: blueviolet;
}

.cookie-notification__actions {
	margin-top: 10px;
}

.cookie-notification__button {
	margin: 5px;
	padding: 10px 15px;
	min-width: 150px;
	font-size: 14px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-notification__button:hover {
	filter: saturate(0.8);
}

@media (max-width: 768px) {
	.cookie-notification {
		bottom: -250px;
		padding: 15px;
		transform: translateY(150px);
	}
	.cookie-notification.active {
		transform: translateY(-250px);
	}
	.cookie-notification__content {
		max-width: 90%;
	}
	.cookie-notification__button {
		min-width: 120px;
		font-size: 12px;
		padding: 8px 12px;
	}
}

@media (max-width: 480px) {
	.cookie-notification {
		bottom: -200px;
		padding: 10px;
		transform: translateY(100px);
	}
	.cookie-notification.active {
		transform: translateY(-200px);
	}
	.cookie-notification__content {
		max-width: 95%;
	}
	.cookie-notification__button {
		min-width: 100px;
		font-size: 10px;
		padding: 6px 10px;
	}
}

/* logoanimations */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
    75% {
        transform: translateX(-5px);
    }
}

.navbar-brand {
    animation: shake 0.8s ease-in-out;
}
/* endlogoanimations */

/* mainanimations */
/* Style 2: ripple effect */
a, button, .btn {
  position: relative;
  overflow: hidden;
}
a::after, button::after, .btn::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  opacity: 1;
  pointer-events: none;
  transition: transform 0.5s ease-out, opacity 0.8s ease-out;
}
a:active::after, button:active::after, .btn:active::after {
  transform: scale(50);
  opacity: 0;
  top: 50%; left: 50%;
  margin-top: -4px; margin-left: -4px;
}
/* endmainanimations */
