body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.2rem;
  line-height: 1;
}
.display-1 > .zoom-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-2 > .zoom-iconfont {
  font-size: 4.5rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}
.display-4 > .zoom-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  line-height: 1.2;
}
.display-5 > .zoom-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .zoom-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 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.5 * (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: #ff934f !important;
}
.bg-success {
  background-color: #ffe161 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #9f6d2a !important;
}
.bg-danger {
  background-color: #73460b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff934f !important;
  border-color: #ff934f !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: #f76000 !important;
  border-color: #f76000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #f76000 !important;
  border-color: #f76000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c69453 !important;
  border-color: #c69453 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #926830 !important;
  border-color: #926830 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #926830 !important;
  border-color: #926830 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #9f6d2a !important;
  border-color: #9f6d2a !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: #5a3e18 !important;
  border-color: #5a3e18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a3e18 !important;
  border-color: #5a3e18 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #73460b !important;
  border-color: #73460b !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: #241603 !important;
  border-color: #241603 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #241603 !important;
  border-color: #241603 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
  color: #95785a !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: #5f4c39 !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #95785a !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !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: #ff934f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #f76000 !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: #ff934f !important;
  border-color: #ff934f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c69453;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #926830 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #c69453 !important;
  border-color: #c69453 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9f6d2a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5a3e18 !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: #9f6d2a !important;
  border-color: #9f6d2a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #73460b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #241603 !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: #73460b !important;
  border-color: #73460b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #222222;
}
.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: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f9f7f5;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d8ccbf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #95785a !important;
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
}
.text-primary {
  color: #ff934f !important;
}
.text-secondary {
  color: #c69453 !important;
}
.text-success {
  color: #ffe161 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #9f6d2a !important;
}
.text-danger {
  color: #73460b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #e85a00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #865f2d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #facb00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #4e3615 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #160d02 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #d3c4b5 !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: #ff934f;
}
.nav-tabs .nav-link:not(.active) {
  color: #222222;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #9f6d2a;
}
.alert-danger {
  background-color: #73460b;
}
.zoom-gallery-filter li.active .btn {
  background-color: #ff934f;
  border-color: #ff934f;
  color: #ffffff;
}
.zoom-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff934f;
}
.zoom-plan-header.bg-primary .zoom-plan-subtitle,
.zoom-plan-header.bg-primary .zoom-plan-price-desc {
  color: #ffffff;
}
.zoom-plan-header.bg-success .zoom-plan-subtitle,
.zoom-plan-header.bg-success .zoom-plan-price-desc {
  color: #ffffff;
}
.zoom-plan-header.bg-info .zoom-plan-subtitle,
.zoom-plan-header.bg-info .zoom-plan-price-desc {
  color: #ffffff;
}
.zoom-plan-header.bg-warning .zoom-plan-subtitle,
.zoom-plan-header.bg-warning .zoom-plan-price-desc {
  color: #d9ac6f;
}
.zoom-plan-header.bg-danger .zoom-plan-subtitle,
.zoom-plan-header.bg-danger .zoom-plan-price-desc {
  color: #e78d16;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .zoom-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: #ff934f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .zoom-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ff934f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff934f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff934f;
}
.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: #ff934f;
  border-bottom-color: #ff934f;
}
.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: #000000 !important;
  background-color: #ff934f !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: #c69453 !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='%23ff934f' %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;
}
.container {
  max-width: 1302px;
}
.btn {
  padding: 12px 24px;
  border-radius: 0;
  letter-spacing: 3px;
}
.btn-big {
  padding: 20px 40px !important;
}
.btn-scale {
  transition: 0.3s all;
}
.btn-scale:hover {
  transform: scale(0.9);
}
.YDeTZC-uLnyN3GgzF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/home1.jpg");
}
.YDeTZC-uLnyN3GgzF .row {
  align-items: center;
}
@media (max-width: 991px) {
  .YDeTZC-uLnyN3GgzF .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .YDeTZC-uLnyN3GgzF .col-text {
    padding: 30px;
  }
}
.YDeTZC-uLnyN3GgzF .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .YDeTZC-uLnyN3GgzF .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .YDeTZC-uLnyN3GgzF .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .YDeTZC-uLnyN3GgzF .col-form {
    max-height: 440px;
  }
}
.YDeTZC-uLnyN3GgzF .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .YDeTZC-uLnyN3GgzF .text-wrapper {
    text-align: center !important;
  }
}
.YDeTZC-uLnyN3GgzF .zoom-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .YDeTZC-uLnyN3GgzF .zoom-section-title {
    text-align: center !important;
  }
}
.YDeTZC-uLnyN3GgzF .zoom-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .YDeTZC-uLnyN3GgzF .zoom-text {
    text-align: center !important;
  }
}
.YDeTZC-uLnyN3GgzF .text-user {
  width: 100%;
  margin-top: 20px;
}
.YDeTZC-uLnyN3GgzF .name-text {
  color: #222222;
  width: 100%;
}
.YDeTZC-uLnyN3GgzF .prof-text {
  color: #555555;
  width: 100%;
}
.YDeTZC-uLnyN3GgzF .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .YDeTZC-uLnyN3GgzF .zoom-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .YDeTZC-uLnyN3GgzF .zoom-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .YDeTZC-uLnyN3GgzF .zoom-section-btn .btn {
    width: 100%;
  }
}
.YDeTZC-uLnyN3GgzF .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnyN3GgzF .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLnyN3GgzF .zoom-section-title,
.YDeTZC-uLnyN3GgzF .zoom-section-btn {
  text-align: center;
  color: #ffffff;
}
.YDeTZC-uLnyWIySgm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #eaf3f9;
}
.YDeTZC-uLnyWIySgm .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnyWIySgm .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLnyWIySgm .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .title-wrapper {
    margin-bottom: 32px;
  }
}
.YDeTZC-uLnyWIySgm .title-wrapper .zoom-section-title {
  margin-bottom: 32px;
}
.YDeTZC-uLnyWIySgm .title-wrapper .text-wrapper .zoom-text {
  display: inline-block;
  width: 30%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .YDeTZC-uLnyWIySgm .title-wrapper .text-wrapper .zoom-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .title-wrapper .text-wrapper .zoom-text {
    width: 100%;
  }
}
.YDeTZC-uLnyWIySgm .items-wrapper {
  justify-content: center;
  margin: 0 -12px;
}
.YDeTZC-uLnyWIySgm .items-wrapper .item {
  padding: 0 12px;
}
.YDeTZC-uLnyWIySgm .item {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .item {
    margin-bottom: 16px;
  }
}
.YDeTZC-uLnyWIySgm .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 50px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 19px 45px 0 #0000001a;
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .item .item-wrapper {
    padding: 30px 20px;
    display: block;
  }
}
.YDeTZC-uLnyWIySgm .item .item-wrapper .item-content {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .YDeTZC-uLnyWIySgm .item .item-wrapper .item-content {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .item .item-wrapper .item-content {
    width: 100%;
  }
}
.YDeTZC-uLnyWIySgm .item .item-wrapper .item-content .card-box .item-title {
  margin-bottom: 20px;
}
.YDeTZC-uLnyWIySgm .item .item-wrapper .item-content .card-box .item-text {
  margin-bottom: 0;
}
.YDeTZC-uLnyWIySgm .item .item-wrapper .item-content .zoom-section-btn {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .item .item-wrapper .item-content .zoom-section-btn {
    margin-top: 20px;
  }
}
.YDeTZC-uLnyWIySgm .item .item-wrapper .item-content .zoom-section-btn .btn {
  margin-bottom: 0;
}
.YDeTZC-uLnyWIySgm .item .item-wrapper .item-img {
  width: 30%;
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .item .item-wrapper .item-img {
    margin-bottom: 32px;
    width: 100%;
  }
}
.YDeTZC-uLnyWIySgm .item .item-wrapper .item-img img {
  height: 350px;
  width: 300px;
  object-fit: cover;
  border: 10px solid #ffffff;
  box-shadow: 0 19px 45px 0 #0000001a;
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .item .item-wrapper .item-img img {
    height: 300px;
    width: 100%;
  }
}
.YDeTZC-uLnyWIySgm .item .card_1 {
  background-color: #d3e4cc;
}
.YDeTZC-uLnyWIySgm .item .card_1 .item-img img {
  transform: rotate(-5deg) translateX(3rem);
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .item .card_1 .item-img img {
    transform: none;
  }
}
.YDeTZC-uLnyWIySgm .item .card_2 {
  background-color: #f1f1f6;
}
.YDeTZC-uLnyWIySgm .item .card_2 .item-img img {
  transform: rotate(5deg) translateX(3rem);
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .item .card_2 .item-img img {
    transform: none;
  }
}
.YDeTZC-uLnyWIySgm .item .card_3 {
  background-color: #fdf2d0;
}
.YDeTZC-uLnyWIySgm .item .card_3 .item-content {
  width: 40%;
}
@media (max-width: 1440px) {
  .YDeTZC-uLnyWIySgm .item .card_3 .item-content {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .item .card_3 .item-content {
    width: 100%;
  }
}
.YDeTZC-uLnyWIySgm .item .card_3 .item-img {
  width: 40%;
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .item .card_3 .item-img {
    width: 100%;
  }
}
.YDeTZC-uLnyWIySgm .item .card_3 .item-img img {
  height: 400px;
  width: 100%;
  transform: rotate(5deg) translateY(5rem);
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .item .card_3 .item-img img {
    transform: none;
    height: 300px;
  }
}
.YDeTZC-uLnyWIySgm .main-btn {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnyWIySgm .main-btn {
    margin-top: 16px;
  }
}
.YDeTZC-uLnyWIySgm .zoom-section-title {
  color: #000c3f;
}
.YDeTZC-uLnyWIySgm .zoom-text,
.YDeTZC-uLnyWIySgm .text-wrapper {
  color: #000c3f;
  text-align: center;
}
.YDeTZC-uLnyWIySgm .zoom-section-title,
.YDeTZC-uLnyWIySgm .main-btn {
  text-align: center;
  color: #000000;
}
.YDeTZC-uLnyWIySgm .item-title {
  color: #000c3f;
}
.YDeTZC-uLnyWIySgm .item-text {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLnyWIySgm .zoom-text,
.YDeTZC-uLnyWIySgm text-wrapper {
  color: #000000;
}
.YDeTZC-uLnyWIySgm .item-title,
.YDeTZC-uLnyWIySgm .card-btn {
  text-align: center;
  color: #000000;
}
.YDeTZC-uLnJj0lcs2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d3e4cc;
}
.YDeTZC-uLnJj0lcs2 .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnJj0lcs2 .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLnJj0lcs2 .row {
  justify-content: space-between;
}
.YDeTZC-uLnJj0lcs2 .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJj0lcs2 .content-wrapper {
    padding: 0;
  }
}
.YDeTZC-uLnJj0lcs2 .content-wrapper .zoom-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJj0lcs2 .content-wrapper .zoom-section-title {
    margin-bottom: 20px;
  }
}
.YDeTZC-uLnJj0lcs2 .content-wrapper .zoom-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJj0lcs2 .content-wrapper .zoom-text {
    margin-bottom: 20px;
  }
}
.YDeTZC-uLnJj0lcs2 .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.YDeTZC-uLnJj0lcs2 .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.YDeTZC-uLnJj0lcs2 .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.YDeTZC-uLnJj0lcs2 .content-wrapper .logo-wrapper .logo-wrap .zoom-desc {
  margin-bottom: 0;
}
.YDeTZC-uLnJj0lcs2 .zoom-section-title {
  color: #000000;
}
.YDeTZC-uLnJj0lcs2 .zoom-desc {
  color: #000000;
}
.YDeTZC-uLnJj0lcs2 .zoom-text {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLnJj0lcs2 .zoom-section-title,
.YDeTZC-uLnJj0lcs2 .zoom-section-btn {
  text-align: center;
}
.YDeTZC-uLnJuMjb5A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaf3f9;
}
.YDeTZC-uLnJuMjb5A .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnJuMjb5A .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJuMjb5A .container {
    padding: 0 30px;
  }
}
.YDeTZC-uLnJuMjb5A .content-wrapper {
  display: flex;
  position: relative;
  padding-bottom: 180px;
  border-bottom: 1px solid #1b2e52;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJuMjb5A .content-wrapper {
    display: block;
  }
}
.YDeTZC-uLnJuMjb5A .content-wrapper .card {
  justify-content: center;
}
.YDeTZC-uLnJuMjb5A .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJuMjb5A .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 0 60px;
  }
}
.YDeTZC-uLnJuMjb5A .content-wrapper .content-wrap .zoom-section-title {
  margin-bottom: 35px;
}
.YDeTZC-uLnJuMjb5A .content-wrapper .content-wrap .zoom-text {
  margin-bottom: 40px;
}
.YDeTZC-uLnJuMjb5A .content-wrapper .image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJuMjb5A .content-wrapper .image-wrapper {
    min-height: auto;
    height: 400px;
    width: 100%;
  }
}
.YDeTZC-uLnJuMjb5A .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.YDeTZC-uLnJuMjb5A .content-wrapper .image-wrapper .list {
  position: relative;
  display: inline-block;
  max-width: 310px;
  flex-direction: column;
  width: fit-content;
  padding: 50px 30px;
  list-style-type: none;
  background-color: #fdf2d0;
  border-radius: 2rem 0 2rem 0;
  margin: 50px 50px -100px 0;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJuMjb5A .content-wrapper .image-wrapper .list {
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 50px 0 -100px 0;
  }
}
.YDeTZC-uLnJuMjb5A .content-wrapper .image-wrapper .list .item-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJuMjb5A .content-wrapper .image-wrapper .list .item-wrap {
    display: block;
  }
}
.YDeTZC-uLnJuMjb5A .content-wrapper .image-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.YDeTZC-uLnJuMjb5A .content-wrapper .image-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #ff934f;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJuMjb5A .content-wrapper .image-wrapper .list .item-wrap::before {
    top: 10px;
  }
}
.YDeTZC-uLnJuMjb5A .zoom-section-title {
  color: #144031;
}
.YDeTZC-uLnJuMjb5A .zoom-text {
  color: #000000;
}
.YDeTZC-uLnJuMjb5A .list {
  color: #144031;
}
.YDeTZC-uLnJuMjb5A .zoom-section-title,
.YDeTZC-uLnJuMjb5A .zoom-section-btn {
  text-align: center;
  color: #000000;
}
.YDeTZC-uLnJuMjb5A .list,
.YDeTZC-uLnJuMjb5A .item-wrap {
  color: #000000;
}
.YDeTZC-uLnJnkrV6w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d3e4cc;
}
.YDeTZC-uLnJnkrV6w .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnJnkrV6w .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLnJnkrV6w .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJnkrV6w .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .YDeTZC-uLnJnkrV6w .container {
    padding: 0 26px;
  }
}
.YDeTZC-uLnJnkrV6w .row {
  justify-content: center;
}
.YDeTZC-uLnJnkrV6w .content-wrapper {
  display: flex;
  align-items: center;
  padding: 100px 60px;
  background-color: #f1f1f6;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJnkrV6w .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.YDeTZC-uLnJnkrV6w .content-wrapper .content-wrap {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJnkrV6w .content-wrapper .content-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.YDeTZC-uLnJnkrV6w .content-wrapper .content-wrap .zoom-section-title {
  margin-bottom: 30px;
}
.YDeTZC-uLnJnkrV6w .content-wrapper .content-wrap .zoom-text {
  margin-bottom: 0;
}
.YDeTZC-uLnJnkrV6w .content-wrapper .content-wrap .zoom-section-btn {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJnkrV6w .content-wrapper .content-wrap .zoom-section-btn {
    margin-top: 30px;
  }
}
.YDeTZC-uLnJnkrV6w .content-wrapper .content-wrap .zoom-section-btn .btn {
  width: 70%;
}
@media (max-width: 1200px) {
  .YDeTZC-uLnJnkrV6w .content-wrapper .content-wrap .zoom-section-btn .btn {
    width: 100%;
  }
}
.YDeTZC-uLnJnkrV6w .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJnkrV6w .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.YDeTZC-uLnJnkrV6w .content-wrapper .image-wrapper img {
  height: 685px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJnkrV6w .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.YDeTZC-uLnJnkrV6w .zoom-section-title {
  color: #000000;
}
.YDeTZC-uLnJnkrV6w .zoom-section-subtitle {
  color: #000000;
}
.YDeTZC-uLnJnkrV6w .zoom-text {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLnJnkrV6w .zoom-section-title,
.YDeTZC-uLnJnkrV6w .zoom-section-btn {
  text-align: center;
}
.YDeTZC-uLnJFjxZoc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaf3f9;
}
.YDeTZC-uLnJFjxZoc .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnJFjxZoc .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLnJFjxZoc .content-wrapper .zoom-section-title {
  margin-bottom: 32px;
}
.YDeTZC-uLnJFjxZoc .content-wrapper .zoom-section-title span {
  color: #ff934f;
}
.YDeTZC-uLnJFjxZoc .content-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.YDeTZC-uLnJFjxZoc .content-wrapper .list .item-wrap {
  margin-bottom: 16px;
  transition: all .3s ease;
}
.YDeTZC-uLnJFjxZoc .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.YDeTZC-uLnJFjxZoc .content-wrapper .list .item-wrap:hover,
.YDeTZC-uLnJFjxZoc .content-wrapper .list .item-wrap:focus {
  color: #000000;
}
.YDeTZC-uLnJFjxZoc .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #1b2e52, #ff934f, #1b2e52);
}
@media (max-width: 992px) {
  .YDeTZC-uLnJFjxZoc .border-wrap {
    margin-top: 32px;
  }
}
.YDeTZC-uLnJFjxZoc .zoom-section-title {
  color: #ffffff;
  text-align: center;
}
.YDeTZC-uLnJFjxZoc .list {
  color: #bbbbbb;
  text-align: center;
}
.YDeTZC-uLnJFjxZoc .zoom-section-title,
.YDeTZC-uLnJFjxZoc .zoom-section-btn {
  color: #000000;
}
.YDeTZC-uLnJFjxZoc .list,
.YDeTZC-uLnJFjxZoc .item-wrap {
  color: #000000;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  position: relative !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:before {
  font-family: preview2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.YDeTZC-uLow8nT9OF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover,
.YDeTZC-uLow8nT9OF .dropdown-item:focus {
  background: #ff934f !important;
  color: white !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover span {
  color: white;
}
.YDeTZC-uLow8nT9OF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.YDeTZC-uLow8nT9OF .nav-link {
  position: relative;
}
.YDeTZC-uLow8nT9OF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .container {
    flex-wrap: nowrap;
  }
}
.YDeTZC-uLow8nT9OF .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown-menu,
.YDeTZC-uLow8nT9OF .navbar.opened {
  background: #1b2e52 !important;
}
.YDeTZC-uLow8nT9OF .nav-item:focus,
.YDeTZC-uLow8nT9OF .nav-link:focus {
  outline: none;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.opened {
  transition: all 0.3s;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
  width: auto;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed {
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .YDeTZC-uLow8nT9OF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short {
  min-height: 60px;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.YDeTZC-uLow8nT9OF .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;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-brand {
    padding-right: 40px;
  }
}
.YDeTZC-uLow8nT9OF .dropdown-item.active,
.YDeTZC-uLow8nT9OF .dropdown-item:active {
  background-color: transparent;
}
.YDeTZC-uLow8nT9OF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.YDeTZC-uLow8nT9OF ul.navbar-nav {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff934f;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .YDeTZC-uLow8nT9OF .navbar-dropdown {
    padding: 0 1rem;
  }
}
.YDeTZC-uLow8nT9OF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .YDeTZC-uLow8nT9OF .navbar {
    height: 70px;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened {
    height: auto;
  }
  .YDeTZC-uLow8nT9OF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.YDeTZC-uLow8nT9OF .container,
.YDeTZC-uLow8nT9OF .container-fluid {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.YDeTZC-uLow8nT9OF .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.YDeTZC-uLow8nT9OF .contacts-menu .zoom-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .contacts-menu {
    display: none;
  }
}
.YDeTZC-uLow8nT9OF .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.YDeTZC-uLow8nT9OF .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ff934f;
  margin-right: 24px;
  transition: 0.3s all;
}
.YDeTZC-uLow8nT9OF .icon-box:hover {
  transform: scale(1.1);
}
.YDeTZC-uLow8nT9OF .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    margin-left: auto;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn-black {
  color: #ff934f !important;
}
@media (max-width: 577px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn {
    flex-grow: 1;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .nav-link:hover {
  color: #ff934f !important;
}
.YDeTZC-uLow8nT9OF .card-title {
  color: #ffffff;
}
.YDeTZC-uLow8nT9OF .card-text {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1b2e52;
}
.YDeTZC-uLowfE9AFS .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 30px;
  }
}
.YDeTZC-uLowfE9AFS .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS div > *:last-child {
    margin-top: 0 !important;
  }
}
.YDeTZC-uLowfE9AFS .copyright {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS .zoom-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .zoom-section-subtitle {
    margin-bottom: 10px;
  }
}
.YDeTZC-uLowfE9AFS .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .YDeTZC-uLowfE9AFS .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .YDeTZC-uLowfE9AFS .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .footer-logo {
    margin: 0 auto;
  }
}
.YDeTZC-uLnJZ0pXVA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaf3f9;
}
.YDeTZC-uLnJZ0pXVA .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnJZ0pXVA .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLnJZ0pXVA .content-wrapper .zoom-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJZ0pXVA .content-wrapper .zoom-section-title {
    margin-bottom: 32px;
  }
}
.YDeTZC-uLnJZ0pXVA .content-wrapper .text-wrapper .zoom-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .YDeTZC-uLnJZ0pXVA .content-wrapper .text-wrapper .zoom-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .YDeTZC-uLnJZ0pXVA .content-wrapper .text-wrapper .zoom-text {
    width: 100%;
  }
}
.YDeTZC-uLnJZ0pXVA .content-wrapper .image-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJZ0pXVA .content-wrapper .image-wrapper {
    margin-top: 32px;
  }
}
.YDeTZC-uLnJZ0pXVA .content-wrapper .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .YDeTZC-uLnJZ0pXVA .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.YDeTZC-uLnJZ0pXVA .content-wrapper .zoom-desc {
  margin-top: 32px;
  margin-bottom: 0;
}
.YDeTZC-uLnJZ0pXVA .content-wrapper .zoom-section-btn {
  margin-top: 32px;
}
.YDeTZC-uLnJZ0pXVA .zoom-section-title {
  color: #c10b02;
}
.YDeTZC-uLnJZ0pXVA .zoom-text,
.YDeTZC-uLnJZ0pXVA .text-wrapper {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLnJZ0pXVA .zoom-desc {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLnJZ0pXVA .zoom-section-title,
.YDeTZC-uLnJZ0pXVA .zoom-section-btn {
  text-align: center;
  color: #000000;
}
.YDeTZC-uLnK3HjmSk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d3e4cc;
}
.YDeTZC-uLnK3HjmSk .row {
  flex-direction: row-reverse;
}
.YDeTZC-uLnK3HjmSk .row {
  align-items: center;
}
@media (max-width: 767px) {
  .YDeTZC-uLnK3HjmSk .row {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .YDeTZC-uLnK3HjmSk .col-text {
    padding: 0 30px;
    padding-left: 4rem;
  }
}
@media (max-width: 767px) {
  .YDeTZC-uLnK3HjmSk .col-text {
    margin-bottom: 3rem;
  }
}
.YDeTZC-uLnK3HjmSk .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .YDeTZC-uLnK3HjmSk .text-wrapper {
    text-align: center !important;
  }
}
.YDeTZC-uLnK3HjmSk .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
@media (max-width: 767px) {
  .YDeTZC-uLnK3HjmSk .label-text {
    text-align: center !important;
  }
}
.YDeTZC-uLnK3HjmSk .zoom-section-title {
  width: 100%;
  color: #222222;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .YDeTZC-uLnK3HjmSk .zoom-section-title {
    text-align: center !important;
  }
}
.YDeTZC-uLnK3HjmSk .zoom-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .YDeTZC-uLnK3HjmSk .zoom-text {
    text-align: center !important;
  }
}
.YDeTZC-uLnK3HjmSk .btn-container {
  width: 100%;
  margin-top: 8px;
}
.YDeTZC-uLnK3HjmSk .zoom-section-btn .btn {
  padding: 0;
}
.YDeTZC-uLnK3HjmSk .zoom-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.YDeTZC-uLnK3HjmSk .zoom-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.YDeTZC-uLnK3HjmSk .col-cards {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.YDeTZC-uLnK3HjmSk .card {
  padding: 0 12px 30px 12px;
}
@media (min-width: 992px) {
  .YDeTZC-uLnK3HjmSk .card {
    padding: 0 30px 30px 30px;
  }
}
.YDeTZC-uLnK3HjmSk .card-wrap {
  display: flex;
  flex-direction: column;
}
.YDeTZC-uLnK3HjmSk .card-title {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.YDeTZC-uLnK3HjmSk .card-inside-border {
  width: 100%;
  height: 1px;
  margin-bottom: 1rem;
  background-color: #555555;
}
.YDeTZC-uLnK3HjmSk .card-text {
  color: #000000;
  margin-bottom: 24px;
  text-align: left;
}
.YDeTZC-uLnK3HjmSk .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnK3HjmSk .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLnK3HjmSk .zoom-section-title,
.YDeTZC-uLnK3HjmSk .zoom-section-btn {
  text-align: center;
  color: #000000;
}
.YDeTZC-uLnKcIAOab {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaf3f9;
}
.YDeTZC-uLnKcIAOab .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnKcIAOab .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLnKcIAOab .row {
  margin: 0 -8px;
}
.YDeTZC-uLnKcIAOab .row .card {
  padding: 0 8px;
}
.YDeTZC-uLnKcIAOab .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #fdf2d0;
}
@media (max-width: 1440px) {
  .YDeTZC-uLnKcIAOab .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .YDeTZC-uLnKcIAOab .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.YDeTZC-uLnKcIAOab .card-wrapper .zoom-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnKcIAOab .card-wrapper .zoom-section-title {
    margin-bottom: 24px;
  }
}
.YDeTZC-uLnKcIAOab .card-wrapper .card-wrap .text-wrapper .zoom-text {
  margin-bottom: 24px;
}
.YDeTZC-uLnKcIAOab .card-wrapper .card-wrap .zoom-section-btn .btn {
  margin-bottom: 0;
}
.YDeTZC-uLnKcIAOab .image-wrapper {
  height: 100%;
}
.YDeTZC-uLnKcIAOab .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .YDeTZC-uLnKcIAOab .image-wrapper img {
    height: 300px;
  }
}
.YDeTZC-uLnKcIAOab .zoom-section-title {
  color: #2c2c26;
}
.YDeTZC-uLnKcIAOab .zoom-text,
.YDeTZC-uLnKcIAOab .text-wrapper {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLnKcIAOab .zoom-section-title,
.YDeTZC-uLnKcIAOab .zoom-section-btn {
  text-align: center;
  color: #000000;
}
.YDeTZC-uLnKkc8GVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaf3f9;
}
.YDeTZC-uLnKkc8GVR .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnKkc8GVR .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLnKkc8GVR .items-wrap {
  justify-content: space-between;
}
.YDeTZC-uLnKkc8GVR .items-wrap .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .YDeTZC-uLnKkc8GVR .content-wrapper {
    margin-bottom: 32px;
  }
}
.YDeTZC-uLnKkc8GVR .content-wrapper .zoom-section-title {
  margin-bottom: 32px;
}
.YDeTZC-uLnKkc8GVR .content-wrapper .zoom-section-title span {
  color: #ff934f;
}
.YDeTZC-uLnKkc8GVR .content-wrapper .text-wrapper .zoom-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnKkc8GVR .content-wrapper .text-wrapper .zoom-text {
    margin-bottom: 16px;
    width: 100%;
  }
}
.YDeTZC-uLnKkc8GVR .image-wrapper {
  margin-bottom: 32px;
}
.YDeTZC-uLnKkc8GVR .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .YDeTZC-uLnKkc8GVR .image-wrapper img {
    height: 350px;
  }
}
.YDeTZC-uLnKkc8GVR .zoom-section-title {
  color: #ffffff;
}
.YDeTZC-uLnKkc8GVR .zoom-text,
.YDeTZC-uLnKkc8GVR .text-wrapper {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLnKkc8GVR .zoom-section-title,
.YDeTZC-uLnKkc8GVR .zoom-section-btn {
  text-align: center;
  color: #000000;
}
.YDeTZC-uLokeDODBr {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #d3e4cc;
}
.YDeTZC-uLokeDODBr .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLokeDODBr .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .YDeTZC-uLokeDODBr .container {
    padding: 0 20px;
  }
}
.YDeTZC-uLokeDODBr .row {
  margin: 0;
}
.YDeTZC-uLokeDODBr .title-wrapper .zoom-section-title {
  margin-bottom: 0;
}
.YDeTZC-uLokeDODBr .zoom-section-title {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLokeVvj1v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d3e4cc;
}
.YDeTZC-uLokeVvj1v .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLokeVvj1v .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .YDeTZC-uLokeVvj1v .container {
    padding: 0 20px;
  }
}
.YDeTZC-uLokeVvj1v .row {
  margin: 0;
}
.YDeTZC-uLokeVvj1v .title-wrapper .zoom-section-title {
  margin-bottom: 0;
}
.YDeTZC-uLokeVvj1v .zoom-section-title {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLojYCbazM {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #d3e4cc;
}
.YDeTZC-uLojYCbazM .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLojYCbazM .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .YDeTZC-uLojYCbazM .container {
    padding: 0 20px;
  }
}
.YDeTZC-uLojYCbazM .row {
  justify-content: center;
  row-gap: 2rem;
}
@media (max-width: 992px) {
  .YDeTZC-uLojYCbazM .item {
    margin-bottom: 40px;
  }
}
.YDeTZC-uLojYCbazM .item:hover .item-wrapper,
.YDeTZC-uLojYCbazM .item:focus .item-wrapper {
  border: 2px solid #1b2e52;
  box-shadow: 5px 5px 0 0 #1b2e52;
}
.YDeTZC-uLojYCbazM .item:hover .item-wrapper .item-img img,
.YDeTZC-uLojYCbazM .item:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.YDeTZC-uLojYCbazM .item .item-wrapper {
  height: 100%;
  border: 2px solid #1b2e52;
  transition: all 0.3s ease-in-out;
  overflow: hidden !important;
}
.YDeTZC-uLojYCbazM .item .item-wrapper .item-img {
  overflow: hidden;
}
.YDeTZC-uLojYCbazM .item .item-wrapper .item-img img {
  height: 450px;
  border-radius: 0 !important;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .YDeTZC-uLojYCbazM .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.YDeTZC-uLojYCbazM .item .item-wrapper .item-content {
  padding: 24px;
}
.YDeTZC-uLojYCbazM .item .item-wrapper .item-content .card-desc {
  margin-bottom: 0;
}
.YDeTZC-uLojYCbazM .item .item-wrapper .item-content .zoom-section-btn .btn {
  margin-bottom: 0;
}
.YDeTZC-uLojYCbazM .card-price {
  color: #000000;
  text-align: left;
}
.YDeTZC-uLojYCbazM .card-desc {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLojYCbazM .card-title {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLojYCbazM .zoom-section-title,
.YDeTZC-uLojYCbazM .icon-wrap {
  text-align: center;
}
.YDeTZC-uLokemo9bg {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #d3e4cc;
}
.YDeTZC-uLokemo9bg .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLokemo9bg .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .YDeTZC-uLokemo9bg .container {
    padding: 0 20px;
  }
}
.YDeTZC-uLokemo9bg .row {
  margin: 0;
}
.YDeTZC-uLokemo9bg .title-wrapper .zoom-section-title {
  margin-bottom: 0;
}
.YDeTZC-uLokemo9bg .zoom-section-title {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLnKxtjoCp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaf3f9;
}
.YDeTZC-uLnKxtjoCp .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnKxtjoCp .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLnKxtjoCp .content-wrapper .label-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnKxtjoCp .content-wrapper .label-wrapper {
    margin-bottom: 20px;
  }
}
.YDeTZC-uLnKxtjoCp .content-wrapper .label-wrapper .zoom-label {
  display: inline-block;
  padding: 6px 20px;
  background-color: #292739;
  margin-bottom: 0;
}
.YDeTZC-uLnKxtjoCp .content-wrapper .title-wrapper .zoom-section-title {
  display: inline-block;
  width: 55%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .YDeTZC-uLnKxtjoCp .content-wrapper .title-wrapper .zoom-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.YDeTZC-uLnKxtjoCp .content-wrapper .text-wrapper .zoom-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .YDeTZC-uLnKxtjoCp .content-wrapper .text-wrapper .zoom-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .YDeTZC-uLnKxtjoCp .content-wrapper .text-wrapper .zoom-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.YDeTZC-uLnKxtjoCp .zoom-label,
.YDeTZC-uLnKxtjoCp .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.YDeTZC-uLnKxtjoCp .zoom-section-title {
  color: #19171c;
}
.YDeTZC-uLnKxtjoCp .zoom-text,
.YDeTZC-uLnKxtjoCp .text-wrapper {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLnKxtjoCp .zoom-section-title,
.YDeTZC-uLnKxtjoCp .title-wrapper,
.YDeTZC-uLnKxtjoCp .zoom-section-btn {
  text-align: center;
}
.YDeTZC-uLnKxtjoCp .zoom-section-title,
.YDeTZC-uLnKxtjoCp .zoom-section-btn,
.YDeTZC-uLnKxtjoCp .title-wrapper {
  color: #000000;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  position: relative !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:before {
  font-family: preview2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.YDeTZC-uLow8nT9OF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover,
.YDeTZC-uLow8nT9OF .dropdown-item:focus {
  background: #ff934f !important;
  color: white !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover span {
  color: white;
}
.YDeTZC-uLow8nT9OF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.YDeTZC-uLow8nT9OF .nav-link {
  position: relative;
}
.YDeTZC-uLow8nT9OF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .container {
    flex-wrap: nowrap;
  }
}
.YDeTZC-uLow8nT9OF .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown-menu,
.YDeTZC-uLow8nT9OF .navbar.opened {
  background: #1b2e52 !important;
}
.YDeTZC-uLow8nT9OF .nav-item:focus,
.YDeTZC-uLow8nT9OF .nav-link:focus {
  outline: none;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.opened {
  transition: all 0.3s;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
  width: auto;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed {
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .YDeTZC-uLow8nT9OF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short {
  min-height: 60px;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.YDeTZC-uLow8nT9OF .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;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-brand {
    padding-right: 40px;
  }
}
.YDeTZC-uLow8nT9OF .dropdown-item.active,
.YDeTZC-uLow8nT9OF .dropdown-item:active {
  background-color: transparent;
}
.YDeTZC-uLow8nT9OF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.YDeTZC-uLow8nT9OF ul.navbar-nav {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff934f;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .YDeTZC-uLow8nT9OF .navbar-dropdown {
    padding: 0 1rem;
  }
}
.YDeTZC-uLow8nT9OF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .YDeTZC-uLow8nT9OF .navbar {
    height: 70px;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened {
    height: auto;
  }
  .YDeTZC-uLow8nT9OF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.YDeTZC-uLow8nT9OF .container,
.YDeTZC-uLow8nT9OF .container-fluid {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.YDeTZC-uLow8nT9OF .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.YDeTZC-uLow8nT9OF .contacts-menu .zoom-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .contacts-menu {
    display: none;
  }
}
.YDeTZC-uLow8nT9OF .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.YDeTZC-uLow8nT9OF .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ff934f;
  margin-right: 24px;
  transition: 0.3s all;
}
.YDeTZC-uLow8nT9OF .icon-box:hover {
  transform: scale(1.1);
}
.YDeTZC-uLow8nT9OF .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    margin-left: auto;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn-black {
  color: #ff934f !important;
}
@media (max-width: 577px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn {
    flex-grow: 1;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .nav-link:hover {
  color: #ff934f !important;
}
.YDeTZC-uLow8nT9OF .card-title {
  color: #ffffff;
}
.YDeTZC-uLow8nT9OF .card-text {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1b2e52;
}
.YDeTZC-uLowfE9AFS .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 30px;
  }
}
.YDeTZC-uLowfE9AFS .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS div > *:last-child {
    margin-top: 0 !important;
  }
}
.YDeTZC-uLowfE9AFS .copyright {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS .zoom-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .zoom-section-subtitle {
    margin-bottom: 10px;
  }
}
.YDeTZC-uLowfE9AFS .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .YDeTZC-uLowfE9AFS .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .YDeTZC-uLowfE9AFS .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .footer-logo {
    margin: 0 auto;
  }
}
.YDeTZC-uLnKIz5Ukv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #eaf3f9;
}
.YDeTZC-uLnKIz5Ukv .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnKIz5Ukv .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .YDeTZC-uLnKIz5Ukv .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .YDeTZC-uLnKIz5Ukv .container {
    padding: 0 12px;
  }
}
.YDeTZC-uLnKIz5Ukv .content-wrapper {
  display: flex;
  border-radius: 32px;
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .YDeTZC-uLnKIz5Ukv .content-wrapper {
    display: block;
    padding: 0.5rem;
  }
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .title-wrapper {
  width: 50%;
  margin-right: 32px;
}
@media (max-width: 768px) {
  .YDeTZC-uLnKIz5Ukv .content-wrapper .title-wrapper {
    width: 100%;
    padding: 24px;
    margin: 0;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLnKIz5Ukv .content-wrapper .title-wrapper {
    padding: 0px;
  }
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .title-wrapper .zoom-section-title {
  margin-bottom: 1.5rem;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .title-wrapper .zoom-social-likns .zoom-iconfont {
  border-radius: 50px;
  border: 1px solid #fdfde1;
  color: #fdfde1;
  transition: all 300ms ease;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .title-wrapper .zoom-social-likns .zoom-iconfont:hover {
  color: #bff747;
  border-color: #bff747;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .title-wrapper .zoom-text {
  margin-bottom: 0;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form {
  width: 40%;
}
@media (max-width: 992px) {
  .YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form {
    width: 100%;
  }
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap {
  width: 100%;
}
@media (max-width: 768px) {
  .YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap {
    padding: 24px;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap {
    padding: 0px;
  }
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .zoom-section-title {
  margin-bottom: 20px !important;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .zoom-text {
  margin-bottom: 20px !important;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .form-group {
  margin-bottom: 16px !important;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .form-group .form-control {
  color: #000000;
  padding: 1.3rem 1.5rem;
  font-weight: 700;
  box-shadow: none;
  border-radius: 3rem !important;
  border: 1px solid #1b2e52 !important;
  background-color: #ffffff;
  transition: all 300ms ease;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .form-group .form-control:hover,
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .form-group .form-control:focus {
  border: 1px solid #ff934f !important;
  box-shadow: none;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #1b2e52;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .form-group textarea.form-control {
  min-height: 150px;
  border-radius: 1.3rem !important;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 1.7em;
  margin-bottom: 10px;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #1b2e52;
  border-color: #1b2e52;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .zoom-section-btn {
  margin-top: 6px;
}
.YDeTZC-uLnKIz5Ukv .content-wrapper .zoom-form .form-wrap .dragArea.row .zoom-section-btn .btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
}
.YDeTZC-uLnKIz5Ukv .zoom-form .form-conrol {
  color: #000000;
}
.YDeTZC-uLnKIz5Ukv .zoom-section-title {
  color: #ffffff;
}
.YDeTZC-uLnKIz5Ukv .zoom-text {
  color: #000000;
}
.YDeTZC-uLnKIz5Ukv label {
  color: #ffffff;
}
.YDeTZC-uLnKIz5Ukv .zoom-section-title,
.YDeTZC-uLnKIz5Ukv .zoom-section-btn {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLnKIz5Ukv .card-contacts {
  color: #bff747;
}
.YDeTZC-uLnLbntI6N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d3e4cc;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.YDeTZC-uLnLbntI6N .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLnLbntI6N .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLnLbntI6N .section-border-item {
  background-color: #1b2e52;
}
.YDeTZC-uLnLbntI6N .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .YDeTZC-uLnLbntI6N .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .YDeTZC-uLnLbntI6N .main-container {
    padding: 3rem 0;
  }
}
.YDeTZC-uLnLbntI6N .title-wrap {
  width: 100%;
}
.YDeTZC-uLnLbntI6N .title-box {
  width: 100%;
}
.YDeTZC-uLnLbntI6N .zoom-title {
  color: #000000;
  text-align: left;
}
.YDeTZC-uLnLbntI6N .zoom-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .YDeTZC-uLnLbntI6N .zoom-text {
    margin-top: 1.25rem;
  }
}
.YDeTZC-uLnLbntI6N .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #1b2e52;
  border-bottom: 1px solid #1b2e52;
}
@media (max-width: 991px) {
  .YDeTZC-uLnLbntI6N .card-row {
    flex-wrap: wrap;
  }
}
.YDeTZC-uLnLbntI6N .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .YDeTZC-uLnLbntI6N .card {
    width: 100%;
  }
}
.YDeTZC-uLnLbntI6N .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #1b2e52;
}
@media (max-width: 991px) {
  .YDeTZC-uLnLbntI6N .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
@media (min-width: 576px) {
  .YDeTZC-uLnLbntI6N .card:hover .card-bg {
    opacity: 1;
  }
}
.YDeTZC-uLnLbntI6N .card:hover .iconfont-hover-wrapper {
  opacity: 1;
}
.YDeTZC-uLnLbntI6N .card:hover .iconfont-hover-wrapper .iconfont-hover-box {
  transform: translate3d(0, 0, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.YDeTZC-uLnLbntI6N .card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 24px 40px;
}
@media (max-width: 991px) {
  .YDeTZC-uLnLbntI6N .card-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 32px;
    min-height: 188px;
  }
}
.YDeTZC-uLnLbntI6N .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(115deg, #0597ff, #fcdb42);
  opacity: 0;
  transition: .6s all;
}
.YDeTZC-uLnLbntI6N .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .YDeTZC-uLnLbntI6N .iconfont-wrapper {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
}
.YDeTZC-uLnLbntI6N .iconfont-wrapper .zoom-iconfont {
  display: block;
  font-size: 34px;
  color: #ff934f;
  margin-right: 0;
}
.YDeTZC-uLnLbntI6N .card-text-wrap {
  width: 100%;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .YDeTZC-uLnLbntI6N .card-text-wrap {
    width: 50%;
    flex-grow: 1;
    padding-right: .75rem;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .YDeTZC-uLnLbntI6N .card-text-wrap {
    margin-bottom: 12px;
  }
}
.YDeTZC-uLnLbntI6N .card-title {
  color: #000000;
  text-align: left;
}
.YDeTZC-uLnLbntI6N .card-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .YDeTZC-uLnLbntI6N .card-text {
    margin-top: 1rem;
  }
}
.YDeTZC-uLnLbntI6N .iconfont-hover-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  transition: 0.6s all;
  margin-top: auto;
}
@media (min-width: 576px) {
  .YDeTZC-uLnLbntI6N .iconfont-hover-wrapper {
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .YDeTZC-uLnLbntI6N .iconfont-hover-wrapper {
    width: fit-content;
    max-width: 50%;
    flex-shrink: 0;
    margin-left: auto;
  }
}
.YDeTZC-uLnLbntI6N .iconfont-hover-wrapper .iconfont-hover-box {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: 0.6s all;
}
@media (min-width: 576px) {
  .YDeTZC-uLnLbntI6N .iconfont-hover-wrapper .iconfont-hover-box {
    transform: translate3d(-2rem, 2rem, 0px) scale3d(0.8, 0.8, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.YDeTZC-uLnLbntI6N .iconfont-hover-wrapper .zoom-iconfont {
  display: block;
  font-size: 114px;
  color: #ffffff;
}
@media (max-width: 991px) {
  .YDeTZC-uLnLbntI6N .iconfont-hover-wrapper .zoom-iconfont {
    font-size: 74px !important;
  }
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  position: relative !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:before {
  font-family: preview2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.YDeTZC-uLow8nT9OF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover,
.YDeTZC-uLow8nT9OF .dropdown-item:focus {
  background: #ff934f !important;
  color: white !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover span {
  color: white;
}
.YDeTZC-uLow8nT9OF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.YDeTZC-uLow8nT9OF .nav-link {
  position: relative;
}
.YDeTZC-uLow8nT9OF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .container {
    flex-wrap: nowrap;
  }
}
.YDeTZC-uLow8nT9OF .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown-menu,
.YDeTZC-uLow8nT9OF .navbar.opened {
  background: #1b2e52 !important;
}
.YDeTZC-uLow8nT9OF .nav-item:focus,
.YDeTZC-uLow8nT9OF .nav-link:focus {
  outline: none;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.opened {
  transition: all 0.3s;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
  width: auto;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed {
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .YDeTZC-uLow8nT9OF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short {
  min-height: 60px;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.YDeTZC-uLow8nT9OF .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;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-brand {
    padding-right: 40px;
  }
}
.YDeTZC-uLow8nT9OF .dropdown-item.active,
.YDeTZC-uLow8nT9OF .dropdown-item:active {
  background-color: transparent;
}
.YDeTZC-uLow8nT9OF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.YDeTZC-uLow8nT9OF ul.navbar-nav {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff934f;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .YDeTZC-uLow8nT9OF .navbar-dropdown {
    padding: 0 1rem;
  }
}
.YDeTZC-uLow8nT9OF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .YDeTZC-uLow8nT9OF .navbar {
    height: 70px;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened {
    height: auto;
  }
  .YDeTZC-uLow8nT9OF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.YDeTZC-uLow8nT9OF .container,
.YDeTZC-uLow8nT9OF .container-fluid {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.YDeTZC-uLow8nT9OF .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.YDeTZC-uLow8nT9OF .contacts-menu .zoom-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .contacts-menu {
    display: none;
  }
}
.YDeTZC-uLow8nT9OF .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.YDeTZC-uLow8nT9OF .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ff934f;
  margin-right: 24px;
  transition: 0.3s all;
}
.YDeTZC-uLow8nT9OF .icon-box:hover {
  transform: scale(1.1);
}
.YDeTZC-uLow8nT9OF .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    margin-left: auto;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn-black {
  color: #ff934f !important;
}
@media (max-width: 577px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn {
    flex-grow: 1;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .nav-link:hover {
  color: #ff934f !important;
}
.YDeTZC-uLow8nT9OF .card-title {
  color: #ffffff;
}
.YDeTZC-uLow8nT9OF .card-text {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1b2e52;
}
.YDeTZC-uLowfE9AFS .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 30px;
  }
}
.YDeTZC-uLowfE9AFS .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS div > *:last-child {
    margin-top: 0 !important;
  }
}
.YDeTZC-uLowfE9AFS .copyright {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS .zoom-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .zoom-section-subtitle {
    margin-bottom: 10px;
  }
}
.YDeTZC-uLowfE9AFS .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .YDeTZC-uLowfE9AFS .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .YDeTZC-uLowfE9AFS .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .footer-logo {
    margin: 0 auto;
  }
}
.YDeTZC-uLoDthArqO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaf3f9;
}
.YDeTZC-uLoDthArqO .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLoDthArqO .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLoDthArqO .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .YDeTZC-uLoDthArqO .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .YDeTZC-uLoDthArqO .container {
    padding: 0 24px;
  }
}
.YDeTZC-uLoDthArqO .row {
  justify-content: center;
}
.YDeTZC-uLoDthArqO .content-wrapper {
  border-radius: 40px;
  background-color: #fdf2d0;
  padding: 64px;
}
@media (max-width: 992px) {
  .YDeTZC-uLoDthArqO .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .YDeTZC-uLoDthArqO .content-wrapper {
    padding: 32px;
  }
}
.YDeTZC-uLoDthArqO .content-wrapper .zoom-section-title {
  margin-bottom: 0;
}
.YDeTZC-uLoDthArqO .content-wrapper .zoom-text {
  margin: 16px 0 0;
}
.YDeTZC-uLoDthArqO .zoom-section-title {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLoDthArqO .zoom-text {
  color: #000000;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  position: relative !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:before {
  font-family: preview2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.YDeTZC-uLow8nT9OF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover,
.YDeTZC-uLow8nT9OF .dropdown-item:focus {
  background: #ff934f !important;
  color: white !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover span {
  color: white;
}
.YDeTZC-uLow8nT9OF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.YDeTZC-uLow8nT9OF .nav-link {
  position: relative;
}
.YDeTZC-uLow8nT9OF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .container {
    flex-wrap: nowrap;
  }
}
.YDeTZC-uLow8nT9OF .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown-menu,
.YDeTZC-uLow8nT9OF .navbar.opened {
  background: #1b2e52 !important;
}
.YDeTZC-uLow8nT9OF .nav-item:focus,
.YDeTZC-uLow8nT9OF .nav-link:focus {
  outline: none;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.opened {
  transition: all 0.3s;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
  width: auto;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed {
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .YDeTZC-uLow8nT9OF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short {
  min-height: 60px;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.YDeTZC-uLow8nT9OF .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;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-brand {
    padding-right: 40px;
  }
}
.YDeTZC-uLow8nT9OF .dropdown-item.active,
.YDeTZC-uLow8nT9OF .dropdown-item:active {
  background-color: transparent;
}
.YDeTZC-uLow8nT9OF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.YDeTZC-uLow8nT9OF ul.navbar-nav {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff934f;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .YDeTZC-uLow8nT9OF .navbar-dropdown {
    padding: 0 1rem;
  }
}
.YDeTZC-uLow8nT9OF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .YDeTZC-uLow8nT9OF .navbar {
    height: 70px;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened {
    height: auto;
  }
  .YDeTZC-uLow8nT9OF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.YDeTZC-uLow8nT9OF .container,
.YDeTZC-uLow8nT9OF .container-fluid {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.YDeTZC-uLow8nT9OF .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.YDeTZC-uLow8nT9OF .contacts-menu .zoom-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .contacts-menu {
    display: none;
  }
}
.YDeTZC-uLow8nT9OF .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.YDeTZC-uLow8nT9OF .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ff934f;
  margin-right: 24px;
  transition: 0.3s all;
}
.YDeTZC-uLow8nT9OF .icon-box:hover {
  transform: scale(1.1);
}
.YDeTZC-uLow8nT9OF .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    margin-left: auto;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn-black {
  color: #ff934f !important;
}
@media (max-width: 577px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn {
    flex-grow: 1;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .nav-link:hover {
  color: #ff934f !important;
}
.YDeTZC-uLow8nT9OF .card-title {
  color: #ffffff;
}
.YDeTZC-uLow8nT9OF .card-text {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1b2e52;
}
.YDeTZC-uLowfE9AFS .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 30px;
  }
}
.YDeTZC-uLowfE9AFS .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS div > *:last-child {
    margin-top: 0 !important;
  }
}
.YDeTZC-uLowfE9AFS .copyright {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS .zoom-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .zoom-section-subtitle {
    margin-bottom: 10px;
  }
}
.YDeTZC-uLowfE9AFS .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .YDeTZC-uLowfE9AFS .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .YDeTZC-uLowfE9AFS .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .footer-logo {
    margin: 0 auto;
  }
}
.YDeTZC-uLoEaxLnHg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaf3f9;
}
.YDeTZC-uLoEaxLnHg .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLoEaxLnHg .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLoEaxLnHg .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .YDeTZC-uLoEaxLnHg .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .YDeTZC-uLoEaxLnHg .container {
    padding: 0 24px;
  }
}
.YDeTZC-uLoEaxLnHg .row {
  justify-content: center;
}
.YDeTZC-uLoEaxLnHg .content-wrapper {
  border-radius: 40px;
  background-color: #fdf2d0;
  padding: 64px;
}
@media (max-width: 992px) {
  .YDeTZC-uLoEaxLnHg .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .YDeTZC-uLoEaxLnHg .content-wrapper {
    padding: 32px;
  }
}
.YDeTZC-uLoEaxLnHg .content-wrapper .zoom-section-title {
  margin-bottom: 0;
}
.YDeTZC-uLoEaxLnHg .content-wrapper .zoom-text {
  margin: 16px 0 0;
}
.YDeTZC-uLoEaxLnHg .zoom-section-title {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLoEaxLnHg .zoom-text {
  color: #000000;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  position: relative !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:before {
  font-family: preview2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.YDeTZC-uLow8nT9OF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover,
.YDeTZC-uLow8nT9OF .dropdown-item:focus {
  background: #ff934f !important;
  color: white !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover span {
  color: white;
}
.YDeTZC-uLow8nT9OF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.YDeTZC-uLow8nT9OF .nav-link {
  position: relative;
}
.YDeTZC-uLow8nT9OF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .container {
    flex-wrap: nowrap;
  }
}
.YDeTZC-uLow8nT9OF .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown-menu,
.YDeTZC-uLow8nT9OF .navbar.opened {
  background: #1b2e52 !important;
}
.YDeTZC-uLow8nT9OF .nav-item:focus,
.YDeTZC-uLow8nT9OF .nav-link:focus {
  outline: none;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.opened {
  transition: all 0.3s;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
  width: auto;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed {
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .YDeTZC-uLow8nT9OF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short {
  min-height: 60px;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.YDeTZC-uLow8nT9OF .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;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-brand {
    padding-right: 40px;
  }
}
.YDeTZC-uLow8nT9OF .dropdown-item.active,
.YDeTZC-uLow8nT9OF .dropdown-item:active {
  background-color: transparent;
}
.YDeTZC-uLow8nT9OF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.YDeTZC-uLow8nT9OF ul.navbar-nav {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff934f;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .YDeTZC-uLow8nT9OF .navbar-dropdown {
    padding: 0 1rem;
  }
}
.YDeTZC-uLow8nT9OF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .YDeTZC-uLow8nT9OF .navbar {
    height: 70px;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened {
    height: auto;
  }
  .YDeTZC-uLow8nT9OF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.YDeTZC-uLow8nT9OF .container,
.YDeTZC-uLow8nT9OF .container-fluid {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.YDeTZC-uLow8nT9OF .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.YDeTZC-uLow8nT9OF .contacts-menu .zoom-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .contacts-menu {
    display: none;
  }
}
.YDeTZC-uLow8nT9OF .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.YDeTZC-uLow8nT9OF .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ff934f;
  margin-right: 24px;
  transition: 0.3s all;
}
.YDeTZC-uLow8nT9OF .icon-box:hover {
  transform: scale(1.1);
}
.YDeTZC-uLow8nT9OF .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    margin-left: auto;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn-black {
  color: #ff934f !important;
}
@media (max-width: 577px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn {
    flex-grow: 1;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .nav-link:hover {
  color: #ff934f !important;
}
.YDeTZC-uLow8nT9OF .card-title {
  color: #ffffff;
}
.YDeTZC-uLow8nT9OF .card-text {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1b2e52;
}
.YDeTZC-uLowfE9AFS .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 30px;
  }
}
.YDeTZC-uLowfE9AFS .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS div > *:last-child {
    margin-top: 0 !important;
  }
}
.YDeTZC-uLowfE9AFS .copyright {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS .zoom-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .zoom-section-subtitle {
    margin-bottom: 10px;
  }
}
.YDeTZC-uLowfE9AFS .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .YDeTZC-uLowfE9AFS .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .YDeTZC-uLowfE9AFS .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .footer-logo {
    margin: 0 auto;
  }
}
.YDeTZC-uLoEy7esPm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaf3f9;
}
.YDeTZC-uLoEy7esPm .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLoEy7esPm .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLoEy7esPm .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .YDeTZC-uLoEy7esPm .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .YDeTZC-uLoEy7esPm .container {
    padding: 0 24px;
  }
}
.YDeTZC-uLoEy7esPm .row {
  justify-content: center;
}
.YDeTZC-uLoEy7esPm .content-wrapper {
  border-radius: 40px;
  background-color: #fdf2d0;
  padding: 64px;
}
@media (max-width: 992px) {
  .YDeTZC-uLoEy7esPm .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .YDeTZC-uLoEy7esPm .content-wrapper {
    padding: 32px;
  }
}
.YDeTZC-uLoEy7esPm .content-wrapper .zoom-section-title {
  margin-bottom: 0;
}
.YDeTZC-uLoEy7esPm .content-wrapper .zoom-text {
  margin: 16px 0 0;
}
.YDeTZC-uLoEy7esPm .zoom-section-title {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLoEy7esPm .zoom-text {
  color: #000000;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  position: relative !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:before {
  font-family: preview2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.YDeTZC-uLow8nT9OF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover,
.YDeTZC-uLow8nT9OF .dropdown-item:focus {
  background: #ff934f !important;
  color: white !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover span {
  color: white;
}
.YDeTZC-uLow8nT9OF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.YDeTZC-uLow8nT9OF .nav-link {
  position: relative;
}
.YDeTZC-uLow8nT9OF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .container {
    flex-wrap: nowrap;
  }
}
.YDeTZC-uLow8nT9OF .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown-menu,
.YDeTZC-uLow8nT9OF .navbar.opened {
  background: #1b2e52 !important;
}
.YDeTZC-uLow8nT9OF .nav-item:focus,
.YDeTZC-uLow8nT9OF .nav-link:focus {
  outline: none;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.opened {
  transition: all 0.3s;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
  width: auto;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed {
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .YDeTZC-uLow8nT9OF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short {
  min-height: 60px;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.YDeTZC-uLow8nT9OF .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;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-brand {
    padding-right: 40px;
  }
}
.YDeTZC-uLow8nT9OF .dropdown-item.active,
.YDeTZC-uLow8nT9OF .dropdown-item:active {
  background-color: transparent;
}
.YDeTZC-uLow8nT9OF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.YDeTZC-uLow8nT9OF ul.navbar-nav {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff934f;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .YDeTZC-uLow8nT9OF .navbar-dropdown {
    padding: 0 1rem;
  }
}
.YDeTZC-uLow8nT9OF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .YDeTZC-uLow8nT9OF .navbar {
    height: 70px;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened {
    height: auto;
  }
  .YDeTZC-uLow8nT9OF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.YDeTZC-uLow8nT9OF .container,
.YDeTZC-uLow8nT9OF .container-fluid {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.YDeTZC-uLow8nT9OF .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.YDeTZC-uLow8nT9OF .contacts-menu .zoom-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .contacts-menu {
    display: none;
  }
}
.YDeTZC-uLow8nT9OF .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.YDeTZC-uLow8nT9OF .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ff934f;
  margin-right: 24px;
  transition: 0.3s all;
}
.YDeTZC-uLow8nT9OF .icon-box:hover {
  transform: scale(1.1);
}
.YDeTZC-uLow8nT9OF .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    margin-left: auto;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn-black {
  color: #ff934f !important;
}
@media (max-width: 577px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn {
    flex-grow: 1;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .nav-link:hover {
  color: #ff934f !important;
}
.YDeTZC-uLow8nT9OF .card-title {
  color: #ffffff;
}
.YDeTZC-uLow8nT9OF .card-text {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1b2e52;
}
.YDeTZC-uLowfE9AFS .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 30px;
  }
}
.YDeTZC-uLowfE9AFS .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS div > *:last-child {
    margin-top: 0 !important;
  }
}
.YDeTZC-uLowfE9AFS .copyright {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS .zoom-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .zoom-section-subtitle {
    margin-bottom: 10px;
  }
}
.YDeTZC-uLowfE9AFS .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .YDeTZC-uLowfE9AFS .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .YDeTZC-uLowfE9AFS .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .footer-logo {
    margin: 0 auto;
  }
}
.YDeTZC-uLoEPL2ufz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaf3f9;
}
.YDeTZC-uLoEPL2ufz .zoom-fallback-image.disabled {
  display: none;
}
.YDeTZC-uLoEPL2ufz .zoom-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.YDeTZC-uLoEPL2ufz .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .YDeTZC-uLoEPL2ufz .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .YDeTZC-uLoEPL2ufz .container {
    padding: 0 24px;
  }
}
.YDeTZC-uLoEPL2ufz .row {
  justify-content: center;
}
.YDeTZC-uLoEPL2ufz .content-wrapper {
  border-radius: 40px;
  background-color: #fdf2d0;
  padding: 64px;
}
@media (max-width: 992px) {
  .YDeTZC-uLoEPL2ufz .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .YDeTZC-uLoEPL2ufz .content-wrapper {
    padding: 32px;
  }
}
.YDeTZC-uLoEPL2ufz .content-wrapper .zoom-section-title {
  margin-bottom: 0;
}
.YDeTZC-uLoEPL2ufz .content-wrapper .zoom-text {
  margin: 16px 0 0;
}
.YDeTZC-uLoEPL2ufz .zoom-section-title {
  color: #000000;
  text-align: center;
}
.YDeTZC-uLoEPL2ufz .zoom-text {
  color: #000000;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  position: relative !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:before {
  font-family: preview2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.YDeTZC-uLow8nT9OF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover,
.YDeTZC-uLow8nT9OF .dropdown-item:focus {
  background: #ff934f !important;
  color: white !important;
}
.YDeTZC-uLow8nT9OF .dropdown-item:hover span {
  color: white;
}
.YDeTZC-uLow8nT9OF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.YDeTZC-uLow8nT9OF .nav-link {
  position: relative;
}
.YDeTZC-uLow8nT9OF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .container {
    flex-wrap: nowrap;
  }
}
.YDeTZC-uLow8nT9OF .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown-menu,
.YDeTZC-uLow8nT9OF .navbar.opened {
  background: #1b2e52 !important;
}
.YDeTZC-uLow8nT9OF .nav-item:focus,
.YDeTZC-uLow8nT9OF .nav-link:focus {
  outline: none;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.YDeTZC-uLow8nT9OF .dropdown .dropdown-menu .dropdown-item .zoom-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.YDeTZC-uLow8nT9OF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.opened {
  transition: all 0.3s;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
  width: auto;
}
.YDeTZC-uLow8nT9OF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed {
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.YDeTZC-uLow8nT9OF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .YDeTZC-uLow8nT9OF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .YDeTZC-uLow8nT9OF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .YDeTZC-uLow8nT9OF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short {
  min-height: 60px;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.YDeTZC-uLow8nT9OF .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;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.YDeTZC-uLow8nT9OF .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-brand {
    padding-right: 40px;
  }
}
.YDeTZC-uLow8nT9OF .dropdown-item.active,
.YDeTZC-uLow8nT9OF .dropdown-item:active {
  background-color: transparent;
}
.YDeTZC-uLow8nT9OF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.YDeTZC-uLow8nT9OF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1b2e52;
}
.YDeTZC-uLow8nT9OF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.YDeTZC-uLow8nT9OF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.YDeTZC-uLow8nT9OF ul.navbar-nav {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff934f;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.YDeTZC-uLow8nT9OF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.YDeTZC-uLow8nT9OF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.YDeTZC-uLow8nT9OF .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .YDeTZC-uLow8nT9OF .navbar-dropdown {
    padding: 0 1rem;
  }
}
.YDeTZC-uLow8nT9OF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.YDeTZC-uLow8nT9OF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .YDeTZC-uLow8nT9OF .navbar {
    height: 70px;
  }
  .YDeTZC-uLow8nT9OF .navbar.opened {
    height: auto;
  }
  .YDeTZC-uLow8nT9OF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.YDeTZC-uLow8nT9OF .container,
.YDeTZC-uLow8nT9OF .container-fluid {
  flex-wrap: wrap;
}
.YDeTZC-uLow8nT9OF .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.YDeTZC-uLow8nT9OF .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.YDeTZC-uLow8nT9OF .contacts-menu .zoom-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .YDeTZC-uLow8nT9OF .contacts-menu {
    display: none;
  }
}
.YDeTZC-uLow8nT9OF .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.YDeTZC-uLow8nT9OF .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ff934f;
  margin-right: 24px;
  transition: 0.3s all;
}
.YDeTZC-uLow8nT9OF .icon-box:hover {
  transform: scale(1.1);
}
.YDeTZC-uLow8nT9OF .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    margin-left: auto;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn-black {
  color: #ff934f !important;
}
@media (max-width: 577px) {
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .YDeTZC-uLow8nT9OF .navbar-collapse .zoom-section-btn .btn {
    flex-grow: 1;
  }
}
.YDeTZC-uLow8nT9OF .navbar-collapse .nav-link:hover {
  color: #ff934f !important;
}
.YDeTZC-uLow8nT9OF .card-title {
  color: #ffffff;
}
.YDeTZC-uLow8nT9OF .card-text {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1b2e52;
}
.YDeTZC-uLowfE9AFS .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .list {
    margin-bottom: 30px;
  }
}
.YDeTZC-uLowfE9AFS .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .YDeTZC-uLowfE9AFS div > *:last-child {
    margin-top: 0 !important;
  }
}
.YDeTZC-uLowfE9AFS .copyright {
  color: #ffffff;
}
.YDeTZC-uLowfE9AFS .zoom-section-subtitle {
  color: #ffffff;
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .zoom-section-subtitle {
    margin-bottom: 10px;
  }
}
.YDeTZC-uLowfE9AFS .footer {
  padding-top: 66px;
  padding-bottom: 50px;
  border-top: 1px solid #868c90;
  border-bottom: 1px solid #868c90;
}
@media (max-width: 768px) {
  .YDeTZC-uLowfE9AFS .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .YDeTZC-uLowfE9AFS .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .YDeTZC-uLowfE9AFS .footer-logo {
    margin: 0 auto;
  }
}

/* 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-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;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
        bottom: 0;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cookie-btn {
        width: 100%;
        padding: 12px 0;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 8px;
        gap: 8px;
        font-size: 12px;
    }
    .cookie-banner img {
        width: 30px;
        height: 30px;
    }
    .cookie-buttons {
        gap: 5px;
    }
    .cookie-btn {
        padding: 10px 0;
        font-size: 12px;
    }
}

/* logoanimations */
@keyframes stretchX {
    0%, 100% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.2);
    }
}

.navbar-brand {
    animation: stretchX 1.5s ease-in-out 1;
}
/* endlogoanimations */

/* mainanimations */
/* Style 9: brightness filter */
a, button, .btn {
  transition: filter 0.1s ease;
}
a:active, button:active, .btn:active {
  filter: brightness(1.2);
}
/* endmainanimations */
