.btn {
  border-width: 2px;
}
body {
  font-family: Hanken Grotesk;
}
.display-1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10rem;
  line-height: 1.1;
}
.display-1 > .repetition-iconfont {
  font-size: 12.5rem;
}
.display-2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-2 > .repetition-iconfont {
  font-size: 6.25rem;
}
.display-4 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .repetition-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 2.1rem;
  line-height: 1.5;
}
.display-5 > .repetition-iconfont {
  font-size: 2.625rem;
}
.display-7 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .repetition-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: 1600px) {
  .display-1 {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .display-1 {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 7rem;
    font-size: calc( 4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.68rem;
    font-size: calc( 1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 10px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #ffe161 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  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: #ffd10a !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: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #ffe161 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !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: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.repetition-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.repetition-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.repetition-plan-header.bg-primary .repetition-plan-subtitle,
.repetition-plan-header.bg-primary .repetition-plan-price-desc {
  color: #b3b3b3;
}
.repetition-plan-header.bg-success .repetition-plan-subtitle,
.repetition-plan-header.bg-success .repetition-plan-price-desc {
  color: #ffffff;
}
.repetition-plan-header.bg-info .repetition-plan-subtitle,
.repetition-plan-header.bg-info .repetition-plan-price-desc {
  color: #ffffff;
}
.repetition-plan-header.bg-warning .repetition-plan-subtitle,
.repetition-plan-header.bg-warning .repetition-plan-price-desc {
  color: #ffffff;
}
.repetition-plan-header.bg-danger .repetition-plan-subtitle,
.repetition-plan-header.bg-danger .repetition-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .repetition-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .repetition-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.xueFq-uQnTocyyEJ {
  background-color: #dce3e9;
  border: 18px solid #dce3e9;
}
@media (max-width: 768px) {
  .xueFq-uQnTocyyEJ {
    border: 8px solid #dce3e9;
  }
}
.xueFq-uQnTocyyEJ .navbar.navbar-dropdown {
  border-radius: 1.2em;
}
.xueFq-uQnTocyyEJ .navbar-dropdown {
  background-color: #f4a261 !important;
  padding: 0;
}
.xueFq-uQnTocyyEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f4a261 !important;
  background: #f4a261;
}
.xueFq-uQnTocyyEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .menu_box .navbar.opened,
  .xueFq-uQnTocyyEJ .menu_box .navbar-collapse {
    background-color: #f4a261 !important;
    transition: all 0s ease 0s;
  }
}
.xueFq-uQnTocyyEJ .navbar-dropdown {
  position: relative !important;
}
.xueFq-uQnTocyyEJ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main {
    margin-top: 1rem;
  }
}
.xueFq-uQnTocyyEJ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xueFq-uQnTocyyEJ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #111111;
  }
  .xueFq-uQnTocyyEJ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .xueFq-uQnTocyyEJ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body .repetition-text,
  .xueFq-uQnTocyyEJ .offcanvas-body .repetition-section-subtitle {
    margin-bottom: 32px;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .xueFq-uQnTocyyEJ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .xueFq-uQnTocyyEJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .xueFq-uQnTocyyEJ li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .xueFq-uQnTocyyEJ .lg_brand {
    margin: 0 1rem;
  }
}
.xueFq-uQnTocyyEJ .nav-item {
  margin: 4px 15px;
  position: relative;
  padding: 20px !important;
  border-radius: 15em;
}
@media (min-width: 1200px) {
  .xueFq-uQnTocyyEJ .nav-item {
    margin: 4px 5px;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .nav-item {
    margin: 4px 0 !important;
  }
}
.xueFq-uQnTocyyEJ .nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15em;
  background-color: #ffffff;
  opacity: .1;
}
.xueFq-uQnTocyyEJ .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.xueFq-uQnTocyyEJ .nav-item .nav-link:hover {
  color: #000000 !important;
}
.xueFq-uQnTocyyEJ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xueFq-uQnTocyyEJ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xueFq-uQnTocyyEJ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box {
    display: none;
  }
}
.xueFq-uQnTocyyEJ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xueFq-uQnTocyyEJ .container {
  display: flex;
  margin: auto;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper:hover {
  opacity: .5;
}
.xueFq-uQnTocyyEJ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .navbar-nav {
    margin: 0;
  }
}
.xueFq-uQnTocyyEJ .dropdown-menu,
.xueFq-uQnTocyyEJ .navbar.opened {
  background-color: false !important;
}
.xueFq-uQnTocyyEJ .nav-item:focus,
.xueFq-uQnTocyyEJ .nav-link:focus {
  outline: none;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item .repetition-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item .repetition-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnTocyyEJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xueFq-uQnTocyyEJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xueFq-uQnTocyyEJ .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnTocyyEJ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xueFq-uQnTocyyEJ .navbar.opened {
  transition: all 0.3s;
}
.xueFq-uQnTocyyEJ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xueFq-uQnTocyyEJ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: .5em;
}
.xueFq-uQnTocyyEJ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.xueFq-uQnTocyyEJ .navbar.collapsed {
  justify-content: center;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xueFq-uQnTocyyEJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xueFq-uQnTocyyEJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .navbar .nav-item {
    padding: .5rem 0;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .xueFq-uQnTocyyEJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xueFq-uQnTocyyEJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xueFq-uQnTocyyEJ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xueFq-uQnTocyyEJ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xueFq-uQnTocyyEJ .navbar .icons-menu {
    padding: 0;
  }
}
.xueFq-uQnTocyyEJ .navbar.navbar-short {
  min-height: 60px;
}
.xueFq-uQnTocyyEJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xueFq-uQnTocyyEJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xueFq-uQnTocyyEJ .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;
}
.xueFq-uQnTocyyEJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.xueFq-uQnTocyyEJ .navbar-brand .navbar-logo a {
  outline: none;
}
.xueFq-uQnTocyyEJ .dropdown-item.active,
.xueFq-uQnTocyyEJ .dropdown-item:active {
  background-color: transparent;
}
.xueFq-uQnTocyyEJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xueFq-uQnTocyyEJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xueFq-uQnTocyyEJ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xueFq-uQnTocyyEJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xueFq-uQnTocyyEJ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f4a261;
  background: #ffffff;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xueFq-uQnTocyyEJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xueFq-uQnTocyyEJ .navbar {
    height: 70px;
  }
  .xueFq-uQnTocyyEJ .navbar.opened {
    height: auto;
  }
  .xueFq-uQnTocyyEJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xueFq-uQnTocyyEJ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.xueFq-uQnTocyyEJ .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .container-fluid {
    padding-left: 34px;
    padding-right: 34px;
  }
}
.xueFq-uQnTocyyEJ .repetition-section-btn-main {
  padding-top: 5px;
}
.xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
    padding: 20px;
    margin-bottom: 14px;
  }
}
.xueFq-uQnTocyyEJ .navbar-caption:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xueFq-uQnTocyyEJ .text_widget {
  margin-bottom: 32px;
}
.xueFq-uQnTocyyEJ .text_widget a {
  transition: all 0.3s ease-out;
}
.xueFq-uQnTocyyEJ .text_widget a:hover {
  color: #000000 !important;
}
.xueFq-uQnTocyyEJ .repetition-section-subtitle {
  color: #ED2C03;
  text-align: left;
}
.xueFq-uQnTocyyEJ .repetition-text {
  color: #ffffff;
  text-align: left;
}
.xueFq-uQnTocyyEJ .repetition-section-subtitle,
.xueFq-uQnTocyyEJ .text_widget,
.xueFq-uQnTocyyEJ .repetition-section-btn {
  text-align: left;
}
.xueFq-uQnTocyyEJ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xueFq-uQnTGvVoiZ {
  align-items: flex-end;
  background-image: url("../../../assets/images/photo10.jpg");
}
.xueFq-uQnTGvVoiZ .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnTGvVoiZ .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnTGvVoiZ .card {
  justify-content: flex-end;
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  .xueFq-uQnTGvVoiZ .content-wrapper {
    margin-bottom: 10px;
  }
}
.xueFq-uQnTGvVoiZ .content-wrapper .repetition-section-title {
  margin-bottom: 16px;
}
.xueFq-uQnTGvVoiZ .content-wrapper .text-wrapper .repetition-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .xueFq-uQnTGvVoiZ .content-wrapper .text-wrapper .repetition-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnTGvVoiZ .content-wrapper .text-wrapper .repetition-text {
    width: 100%;
  }
}
.xueFq-uQnTGvVoiZ .content-wrapper .repetition-section-btn .btn {
  margin-bottom: 0;
}
.xueFq-uQnTGvVoiZ .items-wrapper .items-wrap {
  display: inline-flex;
  flex-direction: column;
}
.xueFq-uQnTGvVoiZ .items-wrapper .items-wrap .item {
  margin-bottom: 10px;
}
.xueFq-uQnTGvVoiZ .items-wrapper .items-wrap .item:last-child {
  margin-bottom: 0;
}
.xueFq-uQnTGvVoiZ .items-wrapper .items-wrap .item .item-wrapper {
  padding: 6px 26px 6px 6px;
  display: inline-flex;
  align-items: center;
  background-color: #d7d2d2;
}
.xueFq-uQnTGvVoiZ .items-wrapper .items-wrap .item .item-wrapper .item-img {
  margin-right: 10px;
}
.xueFq-uQnTGvVoiZ .items-wrapper .items-wrap .item .item-wrapper .item-img img {
  width: 70px;
  height: 70px;
  min-width: 70px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .xueFq-uQnTGvVoiZ .items-wrapper .items-wrap .item .item-wrapper .item-img img {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}
.xueFq-uQnTGvVoiZ .items-wrapper .items-wrap .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.xueFq-uQnTGvVoiZ .btn-wrapper {
  margin-top: -10%;
}
.xueFq-uQnTGvVoiZ .repetition-section-title {
  color: #f4f4f4;
}
.xueFq-uQnTGvVoiZ .repetition-text {
  color: #f4f4f4;
}
.xueFq-uQnTGvVoiZ .item-title {
  color: #58595b;
}
.xueFq-uQnTGvVoiZ .repetition-section-title,
.xueFq-uQnTGvVoiZ .repetition-section-btn {
  text-align: center;
  color: #ffffff;
}
.xueFq-uQnTGvVoiZ .repetition-text,
.xueFq-uQnTGvVoiZ .text-wrapper {
  text-align: center;
  color: #ffffff;
}
.xueFq-uQnTOIC41E {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #dce3e9;
}
.xueFq-uQnTOIC41E .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnTOIC41E .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnTOIC41E .card-wrapper {
  padding: 120px 80px;
  background-color: #fdfbf7;
}
@media (max-width: 1440px) {
  .xueFq-uQnTOIC41E .card-wrapper {
    padding: 60px 40px;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnTOIC41E .card-wrapper {
    padding: 40px 20px;
  }
}
.xueFq-uQnTOIC41E .card-wrapper .label-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .xueFq-uQnTOIC41E .card-wrapper .label-wrapper {
    margin-bottom: 20px;
  }
}
.xueFq-uQnTOIC41E .card-wrapper .label-wrapper .repetition-label {
  display: inline-block;
  padding: 6px 20px;
  background-color: #19171c;
  margin-bottom: 0;
}
.xueFq-uQnTOIC41E .card-wrapper .repetition-section-title {
  margin-bottom: 20px;
}
.xueFq-uQnTOIC41E .card-wrapper .text-wrapper .repetition-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .xueFq-uQnTOIC41E .card-wrapper .text-wrapper .repetition-text {
    width: 80%;
  }
}
.xueFq-uQnTOIC41E .repetition-section-title {
  color: #19171c;
}
.xueFq-uQnTOIC41E .repetition-label,
.xueFq-uQnTOIC41E .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.xueFq-uQnTOIC41E .repetition-text,
.xueFq-uQnTOIC41E .text-wrapper {
  color: #000000;
  text-align: center;
}
.xueFq-uQnTOIC41E .repetition-section-title,
.xueFq-uQnTOIC41E .repetition-section-btn {
  text-align: center;
  color: #000000;
}
.xueFq-uQnU3JltPn {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #fdfbf7;
}
.xueFq-uQnU3JltPn .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnU3JltPn .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnU3JltPn img {
  border-radius: 2rem;
}
.xueFq-uQnU3JltPn .repetition-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.xueFq-uQnU3JltPn .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #000000;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.xueFq-uQnU3JltPn .subtitle-wrap .repetition-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
}
.xueFq-uQnU3JltPn .repetition-section-title {
  color: #000000;
  text-align: center;
}
.xueFq-uQnU3JltPn .repetition-text,
.xueFq-uQnU3JltPn .repetition-section-btn {
  color: #000000;
}
.xueFq-uQnU3JltPn .repetition-section-subtitle,
.xueFq-uQnU3JltPn .align-wrapper {
  color: #000000;
}
.xueFq-uQnUzbSXzR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dce3e9;
}
.xueFq-uQnUzbSXzR .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnUzbSXzR .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnUzbSXzR .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .xueFq-uQnUzbSXzR .btn {
    padding: 1.5rem 3rem;
  }
}
.xueFq-uQnUzbSXzR .row {
  flex-direction: row-reverse;
}
.xueFq-uQnUzbSXzR .row {
  align-items: center;
}
.xueFq-uQnUzbSXzR img {
  border-radius: 2rem;
}
.xueFq-uQnUzbSXzR .image-wrapper {
  background: #fdfbf7;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .xueFq-uQnUzbSXzR .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .xueFq-uQnUzbSXzR .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .xueFq-uQnUzbSXzR .text-wrapper {
    padding: 0 2rem;
  }
}
.xueFq-uQnUzbSXzR .repetition-section-title {
  color: #000000;
  text-align: center;
}
.xueFq-uQnUzbSXzR .repetition-text,
.xueFq-uQnUzbSXzR .repetition-section-btn {
  color: #000000;
}
.xueFq-uQnUBEvCXy {
  background-color: #fdfbf7;
}
@media (max-width: 1400px) {
  .xueFq-uQnUBEvCXy .display-1 {
    font-size: 8rem;
  }
}
@media (max-width: 575px) {
  .xueFq-uQnUBEvCXy .row {
    text-align: center!important;
  }
}
.xueFq-uQnUBEvCXy .content-container {
  width: 100%;
  padding: 3.5rem 2.5rem;
  border-radius: 2rem;
  background-color: #dce3e9;
}
@media (max-width: 767px) {
  .xueFq-uQnUBEvCXy .content-container {
    padding: 1rem 0rem;
    padding-top: 2rem;
  }
}
.xueFq-uQnUBEvCXy img {
  border-radius: 2rem;
  height: 100%;
  object-fit: cover;
}
.xueFq-uQnUBEvCXy .repetition-section-title {
  color: #ffffff;
}
@media (max-width: 575px) {
  .xueFq-uQnUBEvCXy .repetition-section-title {
    text-align: center;
  }
}
.xueFq-uQnUBEvCXy .repetition-text {
  color: #000000;
}
.xueFq-uQnUBEvCXy .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnUBEvCXy .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnUBEvCXy .repetition-section-title,
.xueFq-uQnUBEvCXy .repetition-section-btn {
  color: #000000;
  text-align: center;
}
.xueFq-uQnUGJKaI5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dce3e9;
}
.xueFq-uQnUGJKaI5 .row {
  align-items: center;
  background-color: #fdfbf7;
  padding: 6.5rem;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 25px;
}
@media (max-width: 992px) {
  .xueFq-uQnUGJKaI5 .row {
    padding: 2.5rem;
  }
}
@media (max-width: 768px) {
  .xueFq-uQnUGJKaI5 .row {
    padding: 1rem;
  }
}
@media (max-width: 425px) {
  .xueFq-uQnUGJKaI5 .row {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnUGJKaI5 .image-wrapper {
    padding: 1rem;
  }
}
.xueFq-uQnUGJKaI5 .image-wrapper img {
  object-fit: cover;
  border-radius: 15px;
}
@media (min-width: 992px) {
  .xueFq-uQnUGJKaI5 .text-wrapper {
    padding: 0 2rem;
  }
}
.xueFq-uQnUGJKaI5 .repetition-section-title {
  margin-bottom: 3rem;
  color: #000000;
}
.xueFq-uQnUGJKaI5 .repetition-text {
  margin-bottom: 1.5rem;
  color: #e082c5;
}
.xueFq-uQnUGJKaI5 .btn {
  width: 200px;
  height: 55px;
  box-shadow: none;
}
.xueFq-uQnUGJKaI5 .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnUGJKaI5 .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnUGJKaI5 .repetition-text,
.xueFq-uQnUGJKaI5 .repetition-section-btn {
  color: #000000;
  text-align: left;
}
.xueFq-uQnUPzLrxA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdfbf7;
}
.xueFq-uQnUPzLrxA .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnUPzLrxA .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnUPzLrxA .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #dce3e9 -30%, #dce3e9 20%, #dce3e9 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .xueFq-uQnUPzLrxA .card-wrapper {
    padding: 16px;
  }
}
.xueFq-uQnUPzLrxA .card-wrapper .repetition-section-title {
  margin-bottom: 22px;
}
.xueFq-uQnUPzLrxA .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.xueFq-uQnUPzLrxA .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.xueFq-uQnUPzLrxA .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.xueFq-uQnUPzLrxA .repetition-section-title {
  color: #000000;
  text-align: center;
}
.xueFq-uQnUPzLrxA .list {
  color: #ffffff;
  text-align: center;
}
.xueFq-uQnUPzLrxA .list,
.xueFq-uQnUPzLrxA .item-wrap,
.xueFq-uQnUPzLrxA .tabs-wrapper {
  color: #000000;
}
.xueFq-uQnZK4jlMW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4a261;
  flex-direction: column;
  justify-content: center;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnZK4jlMW .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container {
    padding: 0 16px;
  }
}
.xueFq-uQnZK4jlMW .row {
  justify-content: center;
}
.xueFq-uQnZK4jlMW .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .logo-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.xueFq-uQnZK4jlMW .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .list {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:hover .repetition-iconfont,
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:focus .repetition-iconfont {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a .repetition-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.xueFq-uQnZK4jlMW .repetition-copy {
  margin-bottom: 0;
  color: #000000;
}
.xueFq-uQnZK4jlMW .list-title {
  color: #becdc2;
}
.xueFq-uQnZK4jlMW .list,
.xueFq-uQnZK4jlMW .item-wrap {
  color: #000000;
}
.xueFq-uQnZAtCjdt {
  background-color: #dce3e9;
  border: 18px solid #dce3e9;
}
@media (max-width: 768px) {
  .xueFq-uQnZAtCjdt {
    border: 8px solid #dce3e9;
  }
}
.xueFq-uQnZAtCjdt .navbar.navbar-dropdown {
  border-radius: 1.2em;
}
.xueFq-uQnZAtCjdt .navbar-dropdown {
  background-color: #f4a261 !important;
  padding: 0;
}
.xueFq-uQnZAtCjdt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f4a261 !important;
  background: #f4a261;
}
.xueFq-uQnZAtCjdt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .xueFq-uQnZAtCjdt .menu_box .navbar.opened,
  .xueFq-uQnZAtCjdt .menu_box .navbar-collapse {
    background-color: #f4a261 !important;
    transition: all 0s ease 0s;
  }
}
.xueFq-uQnZAtCjdt .navbar-dropdown {
  position: relative !important;
}
.xueFq-uQnZAtCjdt .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .xueFq-uQnZAtCjdt .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnZAtCjdt .repetition-section-btn-main {
    margin-top: 1rem;
  }
}
.xueFq-uQnZAtCjdt .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xueFq-uQnZAtCjdt .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .xueFq-uQnZAtCjdt .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #111111;
  }
  .xueFq-uQnZAtCjdt .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .xueFq-uQnZAtCjdt .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .xueFq-uQnZAtCjdt .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .xueFq-uQnZAtCjdt .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .xueFq-uQnZAtCjdt .offcanvas-body .repetition-text,
  .xueFq-uQnZAtCjdt .offcanvas-body .repetition-section-subtitle {
    margin-bottom: 32px;
  }
  .xueFq-uQnZAtCjdt .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .xueFq-uQnZAtCjdt .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .xueFq-uQnZAtCjdt .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .xueFq-uQnZAtCjdt .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .xueFq-uQnZAtCjdt .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .xueFq-uQnZAtCjdt .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .xueFq-uQnZAtCjdt .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .xueFq-uQnZAtCjdt ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .xueFq-uQnZAtCjdt .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnZAtCjdt .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .xueFq-uQnZAtCjdt .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .xueFq-uQnZAtCjdt li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .xueFq-uQnZAtCjdt .lg_brand {
    margin: 0 1rem;
  }
}
.xueFq-uQnZAtCjdt .nav-item {
  margin: 4px 15px;
  position: relative;
  padding: 20px !important;
  border-radius: 15em;
}
@media (min-width: 1200px) {
  .xueFq-uQnZAtCjdt .nav-item {
    margin: 4px 5px;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnZAtCjdt .nav-item {
    margin: 4px 0 !important;
  }
}
.xueFq-uQnZAtCjdt .nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15em;
  background-color: #ffffff;
  opacity: .1;
}
.xueFq-uQnZAtCjdt .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.xueFq-uQnZAtCjdt .nav-item .nav-link:hover {
  color: #000000 !important;
}
.xueFq-uQnZAtCjdt .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xueFq-uQnZAtCjdt .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xueFq-uQnZAtCjdt .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnZAtCjdt .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnZAtCjdt .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xueFq-uQnZAtCjdt .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xueFq-uQnZAtCjdt .offcanvas_box {
    display: none;
  }
}
.xueFq-uQnZAtCjdt .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xueFq-uQnZAtCjdt .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xueFq-uQnZAtCjdt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xueFq-uQnZAtCjdt .container {
  display: flex;
  margin: auto;
}
.xueFq-uQnZAtCjdt .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xueFq-uQnZAtCjdt .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xueFq-uQnZAtCjdt .iconfont-wrapper:hover {
  opacity: .5;
}
.xueFq-uQnZAtCjdt .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xueFq-uQnZAtCjdt .navbar-nav {
    margin: 0;
  }
}
.xueFq-uQnZAtCjdt .dropdown-menu,
.xueFq-uQnZAtCjdt .navbar.opened {
  background-color: false !important;
}
.xueFq-uQnZAtCjdt .nav-item:focus,
.xueFq-uQnZAtCjdt .nav-link:focus {
  outline: none;
}
.xueFq-uQnZAtCjdt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnZAtCjdt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xueFq-uQnZAtCjdt .dropdown .dropdown-menu .dropdown-item .repetition-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xueFq-uQnZAtCjdt .dropdown .dropdown-menu .dropdown-item .repetition-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnZAtCjdt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xueFq-uQnZAtCjdt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xueFq-uQnZAtCjdt .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnZAtCjdt .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xueFq-uQnZAtCjdt .navbar.opened {
  transition: all 0.3s;
}
.xueFq-uQnZAtCjdt .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xueFq-uQnZAtCjdt .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: .5em;
}
.xueFq-uQnZAtCjdt .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.xueFq-uQnZAtCjdt .navbar.collapsed {
  justify-content: center;
}
.xueFq-uQnZAtCjdt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xueFq-uQnZAtCjdt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xueFq-uQnZAtCjdt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xueFq-uQnZAtCjdt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xueFq-uQnZAtCjdt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xueFq-uQnZAtCjdt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xueFq-uQnZAtCjdt .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xueFq-uQnZAtCjdt .navbar .nav-item {
    padding: .5rem 0;
  }
  .xueFq-uQnZAtCjdt .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .xueFq-uQnZAtCjdt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xueFq-uQnZAtCjdt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xueFq-uQnZAtCjdt .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xueFq-uQnZAtCjdt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xueFq-uQnZAtCjdt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xueFq-uQnZAtCjdt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xueFq-uQnZAtCjdt .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xueFq-uQnZAtCjdt .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xueFq-uQnZAtCjdt .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xueFq-uQnZAtCjdt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xueFq-uQnZAtCjdt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xueFq-uQnZAtCjdt .navbar .icons-menu {
    padding: 0;
  }
}
.xueFq-uQnZAtCjdt .navbar.navbar-short {
  min-height: 60px;
}
.xueFq-uQnZAtCjdt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xueFq-uQnZAtCjdt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xueFq-uQnZAtCjdt .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;
}
.xueFq-uQnZAtCjdt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.xueFq-uQnZAtCjdt .navbar-brand .navbar-logo a {
  outline: none;
}
.xueFq-uQnZAtCjdt .dropdown-item.active,
.xueFq-uQnZAtCjdt .dropdown-item:active {
  background-color: transparent;
}
.xueFq-uQnZAtCjdt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xueFq-uQnZAtCjdt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xueFq-uQnZAtCjdt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xueFq-uQnZAtCjdt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xueFq-uQnZAtCjdt ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xueFq-uQnZAtCjdt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xueFq-uQnZAtCjdt button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f4a261;
  background: #ffffff;
}
.xueFq-uQnZAtCjdt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xueFq-uQnZAtCjdt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xueFq-uQnZAtCjdt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnZAtCjdt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnZAtCjdt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xueFq-uQnZAtCjdt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnZAtCjdt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xueFq-uQnZAtCjdt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xueFq-uQnZAtCjdt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnZAtCjdt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xueFq-uQnZAtCjdt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xueFq-uQnZAtCjdt .navbar {
    height: 70px;
  }
  .xueFq-uQnZAtCjdt .navbar.opened {
    height: auto;
  }
  .xueFq-uQnZAtCjdt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xueFq-uQnZAtCjdt .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.xueFq-uQnZAtCjdt .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .xueFq-uQnZAtCjdt .container-fluid {
    padding-left: 34px;
    padding-right: 34px;
  }
}
.xueFq-uQnZAtCjdt .repetition-section-btn-main {
  padding-top: 5px;
}
.xueFq-uQnZAtCjdt .repetition-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .xueFq-uQnZAtCjdt .repetition-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .xueFq-uQnZAtCjdt .repetition-section-btn-main .btn {
    padding: 20px;
    margin-bottom: 14px;
  }
}
.xueFq-uQnZAtCjdt .navbar-caption:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .xueFq-uQnZAtCjdt .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xueFq-uQnZAtCjdt .text_widget {
  margin-bottom: 32px;
}
.xueFq-uQnZAtCjdt .text_widget a {
  transition: all 0.3s ease-out;
}
.xueFq-uQnZAtCjdt .text_widget a:hover {
  color: #000000 !important;
}
.xueFq-uQnZAtCjdt .repetition-section-subtitle {
  color: #ED2C03;
  text-align: left;
}
.xueFq-uQnZAtCjdt .repetition-text {
  color: #ffffff;
  text-align: left;
}
.xueFq-uQnZAtCjdt .repetition-section-subtitle,
.xueFq-uQnZAtCjdt .text_widget,
.xueFq-uQnZAtCjdt .repetition-section-btn {
  text-align: left;
}
.xueFq-uQnZAtCjdt a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xueFq-uQnZAvUhxh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdfbf7;
}
.xueFq-uQnZAvUhxh blockquote {
  border-color: #f4a261;
  border-radius: 4px;
  background-color: #dce3e9;
}
.xueFq-uQnZAvUhxh .repetition-section-title {
  text-align: center;
  color: #000000;
}
.xueFq-uQnZAvUhxh .repetition-text {
  color: #000000;
  text-align: left;
}
.xueFq-uQnZK4jlMW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4a261;
  flex-direction: column;
  justify-content: center;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnZK4jlMW .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container {
    padding: 0 16px;
  }
}
.xueFq-uQnZK4jlMW .row {
  justify-content: center;
}
.xueFq-uQnZK4jlMW .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .logo-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.xueFq-uQnZK4jlMW .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .list {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:hover .repetition-iconfont,
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:focus .repetition-iconfont {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a .repetition-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.xueFq-uQnZK4jlMW .repetition-copy {
  margin-bottom: 0;
  color: #000000;
}
.xueFq-uQnZK4jlMW .list-title {
  color: #becdc2;
}
.xueFq-uQnZK4jlMW .list,
.xueFq-uQnZK4jlMW .item-wrap {
  color: #000000;
}
.xueFq-uQnZAfxBHi {
  background-color: #dce3e9;
  border: 18px solid #dce3e9;
}
@media (max-width: 768px) {
  .xueFq-uQnZAfxBHi {
    border: 8px solid #dce3e9;
  }
}
.xueFq-uQnZAfxBHi .navbar.navbar-dropdown {
  border-radius: 1.2em;
}
.xueFq-uQnZAfxBHi .navbar-dropdown {
  background-color: #f4a261 !important;
  padding: 0;
}
.xueFq-uQnZAfxBHi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f4a261 !important;
  background: #f4a261;
}
.xueFq-uQnZAfxBHi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .xueFq-uQnZAfxBHi .menu_box .navbar.opened,
  .xueFq-uQnZAfxBHi .menu_box .navbar-collapse {
    background-color: #f4a261 !important;
    transition: all 0s ease 0s;
  }
}
.xueFq-uQnZAfxBHi .navbar-dropdown {
  position: relative !important;
}
.xueFq-uQnZAfxBHi .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .xueFq-uQnZAfxBHi .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnZAfxBHi .repetition-section-btn-main {
    margin-top: 1rem;
  }
}
.xueFq-uQnZAfxBHi .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xueFq-uQnZAfxBHi .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .xueFq-uQnZAfxBHi .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #111111;
  }
  .xueFq-uQnZAfxBHi .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .xueFq-uQnZAfxBHi .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .xueFq-uQnZAfxBHi .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .xueFq-uQnZAfxBHi .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .xueFq-uQnZAfxBHi .offcanvas-body .repetition-text,
  .xueFq-uQnZAfxBHi .offcanvas-body .repetition-section-subtitle {
    margin-bottom: 32px;
  }
  .xueFq-uQnZAfxBHi .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .xueFq-uQnZAfxBHi .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .xueFq-uQnZAfxBHi .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .xueFq-uQnZAfxBHi .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .xueFq-uQnZAfxBHi .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .xueFq-uQnZAfxBHi .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .xueFq-uQnZAfxBHi .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .xueFq-uQnZAfxBHi ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .xueFq-uQnZAfxBHi .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnZAfxBHi .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .xueFq-uQnZAfxBHi .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .xueFq-uQnZAfxBHi li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .xueFq-uQnZAfxBHi .lg_brand {
    margin: 0 1rem;
  }
}
.xueFq-uQnZAfxBHi .nav-item {
  margin: 4px 15px;
  position: relative;
  padding: 20px !important;
  border-radius: 15em;
}
@media (min-width: 1200px) {
  .xueFq-uQnZAfxBHi .nav-item {
    margin: 4px 5px;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnZAfxBHi .nav-item {
    margin: 4px 0 !important;
  }
}
.xueFq-uQnZAfxBHi .nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15em;
  background-color: #ffffff;
  opacity: .1;
}
.xueFq-uQnZAfxBHi .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.xueFq-uQnZAfxBHi .nav-item .nav-link:hover {
  color: #000000 !important;
}
.xueFq-uQnZAfxBHi .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xueFq-uQnZAfxBHi .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xueFq-uQnZAfxBHi .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnZAfxBHi .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnZAfxBHi .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xueFq-uQnZAfxBHi .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xueFq-uQnZAfxBHi .offcanvas_box {
    display: none;
  }
}
.xueFq-uQnZAfxBHi .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xueFq-uQnZAfxBHi .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xueFq-uQnZAfxBHi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xueFq-uQnZAfxBHi .container {
  display: flex;
  margin: auto;
}
.xueFq-uQnZAfxBHi .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xueFq-uQnZAfxBHi .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xueFq-uQnZAfxBHi .iconfont-wrapper:hover {
  opacity: .5;
}
.xueFq-uQnZAfxBHi .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xueFq-uQnZAfxBHi .navbar-nav {
    margin: 0;
  }
}
.xueFq-uQnZAfxBHi .dropdown-menu,
.xueFq-uQnZAfxBHi .navbar.opened {
  background-color: false !important;
}
.xueFq-uQnZAfxBHi .nav-item:focus,
.xueFq-uQnZAfxBHi .nav-link:focus {
  outline: none;
}
.xueFq-uQnZAfxBHi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnZAfxBHi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xueFq-uQnZAfxBHi .dropdown .dropdown-menu .dropdown-item .repetition-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xueFq-uQnZAfxBHi .dropdown .dropdown-menu .dropdown-item .repetition-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnZAfxBHi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xueFq-uQnZAfxBHi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xueFq-uQnZAfxBHi .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnZAfxBHi .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xueFq-uQnZAfxBHi .navbar.opened {
  transition: all 0.3s;
}
.xueFq-uQnZAfxBHi .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xueFq-uQnZAfxBHi .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: .5em;
}
.xueFq-uQnZAfxBHi .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.xueFq-uQnZAfxBHi .navbar.collapsed {
  justify-content: center;
}
.xueFq-uQnZAfxBHi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xueFq-uQnZAfxBHi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xueFq-uQnZAfxBHi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xueFq-uQnZAfxBHi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xueFq-uQnZAfxBHi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xueFq-uQnZAfxBHi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xueFq-uQnZAfxBHi .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xueFq-uQnZAfxBHi .navbar .nav-item {
    padding: .5rem 0;
  }
  .xueFq-uQnZAfxBHi .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .xueFq-uQnZAfxBHi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xueFq-uQnZAfxBHi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xueFq-uQnZAfxBHi .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xueFq-uQnZAfxBHi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xueFq-uQnZAfxBHi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xueFq-uQnZAfxBHi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xueFq-uQnZAfxBHi .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xueFq-uQnZAfxBHi .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xueFq-uQnZAfxBHi .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xueFq-uQnZAfxBHi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xueFq-uQnZAfxBHi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xueFq-uQnZAfxBHi .navbar .icons-menu {
    padding: 0;
  }
}
.xueFq-uQnZAfxBHi .navbar.navbar-short {
  min-height: 60px;
}
.xueFq-uQnZAfxBHi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xueFq-uQnZAfxBHi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xueFq-uQnZAfxBHi .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;
}
.xueFq-uQnZAfxBHi .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.xueFq-uQnZAfxBHi .navbar-brand .navbar-logo a {
  outline: none;
}
.xueFq-uQnZAfxBHi .dropdown-item.active,
.xueFq-uQnZAfxBHi .dropdown-item:active {
  background-color: transparent;
}
.xueFq-uQnZAfxBHi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xueFq-uQnZAfxBHi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xueFq-uQnZAfxBHi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xueFq-uQnZAfxBHi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xueFq-uQnZAfxBHi ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xueFq-uQnZAfxBHi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xueFq-uQnZAfxBHi button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f4a261;
  background: #ffffff;
}
.xueFq-uQnZAfxBHi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xueFq-uQnZAfxBHi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xueFq-uQnZAfxBHi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnZAfxBHi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnZAfxBHi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xueFq-uQnZAfxBHi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnZAfxBHi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xueFq-uQnZAfxBHi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xueFq-uQnZAfxBHi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnZAfxBHi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xueFq-uQnZAfxBHi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xueFq-uQnZAfxBHi .navbar {
    height: 70px;
  }
  .xueFq-uQnZAfxBHi .navbar.opened {
    height: auto;
  }
  .xueFq-uQnZAfxBHi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xueFq-uQnZAfxBHi .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.xueFq-uQnZAfxBHi .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .xueFq-uQnZAfxBHi .container-fluid {
    padding-left: 34px;
    padding-right: 34px;
  }
}
.xueFq-uQnZAfxBHi .repetition-section-btn-main {
  padding-top: 5px;
}
.xueFq-uQnZAfxBHi .repetition-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .xueFq-uQnZAfxBHi .repetition-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .xueFq-uQnZAfxBHi .repetition-section-btn-main .btn {
    padding: 20px;
    margin-bottom: 14px;
  }
}
.xueFq-uQnZAfxBHi .navbar-caption:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .xueFq-uQnZAfxBHi .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xueFq-uQnZAfxBHi .text_widget {
  margin-bottom: 32px;
}
.xueFq-uQnZAfxBHi .text_widget a {
  transition: all 0.3s ease-out;
}
.xueFq-uQnZAfxBHi .text_widget a:hover {
  color: #000000 !important;
}
.xueFq-uQnZAfxBHi .repetition-section-subtitle {
  color: #ED2C03;
  text-align: left;
}
.xueFq-uQnZAfxBHi .repetition-text {
  color: #ffffff;
  text-align: left;
}
.xueFq-uQnZAfxBHi .repetition-section-subtitle,
.xueFq-uQnZAfxBHi .text_widget,
.xueFq-uQnZAfxBHi .repetition-section-btn {
  text-align: left;
}
.xueFq-uQnZAfxBHi a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xueFq-uQnZAgbspY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdfbf7;
}
.xueFq-uQnZAgbspY blockquote {
  border-color: #f4a261;
  border-radius: 4px;
  background-color: #dce3e9;
}
.xueFq-uQnZAgbspY .repetition-section-title {
  text-align: center;
  color: #000000;
}
.xueFq-uQnZAgbspY .repetition-text {
  color: #000000;
  text-align: left;
}
.xueFq-uQnZK4jlMW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4a261;
  flex-direction: column;
  justify-content: center;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnZK4jlMW .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container {
    padding: 0 16px;
  }
}
.xueFq-uQnZK4jlMW .row {
  justify-content: center;
}
.xueFq-uQnZK4jlMW .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .logo-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.xueFq-uQnZK4jlMW .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .list {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:hover .repetition-iconfont,
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:focus .repetition-iconfont {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a .repetition-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.xueFq-uQnZK4jlMW .repetition-copy {
  margin-bottom: 0;
  color: #000000;
}
.xueFq-uQnZK4jlMW .list-title {
  color: #becdc2;
}
.xueFq-uQnZK4jlMW .list,
.xueFq-uQnZK4jlMW .item-wrap {
  color: #000000;
}
.xueFq-uQnTocyyEJ {
  background-color: #dce3e9;
  border: 18px solid #dce3e9;
}
@media (max-width: 768px) {
  .xueFq-uQnTocyyEJ {
    border: 8px solid #dce3e9;
  }
}
.xueFq-uQnTocyyEJ .navbar.navbar-dropdown {
  border-radius: 1.2em;
}
.xueFq-uQnTocyyEJ .navbar-dropdown {
  background-color: #f4a261 !important;
  padding: 0;
}
.xueFq-uQnTocyyEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f4a261 !important;
  background: #f4a261;
}
.xueFq-uQnTocyyEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .menu_box .navbar.opened,
  .xueFq-uQnTocyyEJ .menu_box .navbar-collapse {
    background-color: #f4a261 !important;
    transition: all 0s ease 0s;
  }
}
.xueFq-uQnTocyyEJ .navbar-dropdown {
  position: relative !important;
}
.xueFq-uQnTocyyEJ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main {
    margin-top: 1rem;
  }
}
.xueFq-uQnTocyyEJ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xueFq-uQnTocyyEJ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #111111;
  }
  .xueFq-uQnTocyyEJ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .xueFq-uQnTocyyEJ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body .repetition-text,
  .xueFq-uQnTocyyEJ .offcanvas-body .repetition-section-subtitle {
    margin-bottom: 32px;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .xueFq-uQnTocyyEJ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .xueFq-uQnTocyyEJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .xueFq-uQnTocyyEJ li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .xueFq-uQnTocyyEJ .lg_brand {
    margin: 0 1rem;
  }
}
.xueFq-uQnTocyyEJ .nav-item {
  margin: 4px 15px;
  position: relative;
  padding: 20px !important;
  border-radius: 15em;
}
@media (min-width: 1200px) {
  .xueFq-uQnTocyyEJ .nav-item {
    margin: 4px 5px;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .nav-item {
    margin: 4px 0 !important;
  }
}
.xueFq-uQnTocyyEJ .nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15em;
  background-color: #ffffff;
  opacity: .1;
}
.xueFq-uQnTocyyEJ .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.xueFq-uQnTocyyEJ .nav-item .nav-link:hover {
  color: #000000 !important;
}
.xueFq-uQnTocyyEJ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xueFq-uQnTocyyEJ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xueFq-uQnTocyyEJ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box {
    display: none;
  }
}
.xueFq-uQnTocyyEJ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xueFq-uQnTocyyEJ .container {
  display: flex;
  margin: auto;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper:hover {
  opacity: .5;
}
.xueFq-uQnTocyyEJ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .navbar-nav {
    margin: 0;
  }
}
.xueFq-uQnTocyyEJ .dropdown-menu,
.xueFq-uQnTocyyEJ .navbar.opened {
  background-color: false !important;
}
.xueFq-uQnTocyyEJ .nav-item:focus,
.xueFq-uQnTocyyEJ .nav-link:focus {
  outline: none;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item .repetition-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item .repetition-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnTocyyEJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xueFq-uQnTocyyEJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xueFq-uQnTocyyEJ .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnTocyyEJ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xueFq-uQnTocyyEJ .navbar.opened {
  transition: all 0.3s;
}
.xueFq-uQnTocyyEJ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xueFq-uQnTocyyEJ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: .5em;
}
.xueFq-uQnTocyyEJ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.xueFq-uQnTocyyEJ .navbar.collapsed {
  justify-content: center;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xueFq-uQnTocyyEJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xueFq-uQnTocyyEJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .navbar .nav-item {
    padding: .5rem 0;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .xueFq-uQnTocyyEJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xueFq-uQnTocyyEJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xueFq-uQnTocyyEJ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xueFq-uQnTocyyEJ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xueFq-uQnTocyyEJ .navbar .icons-menu {
    padding: 0;
  }
}
.xueFq-uQnTocyyEJ .navbar.navbar-short {
  min-height: 60px;
}
.xueFq-uQnTocyyEJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xueFq-uQnTocyyEJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xueFq-uQnTocyyEJ .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;
}
.xueFq-uQnTocyyEJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.xueFq-uQnTocyyEJ .navbar-brand .navbar-logo a {
  outline: none;
}
.xueFq-uQnTocyyEJ .dropdown-item.active,
.xueFq-uQnTocyyEJ .dropdown-item:active {
  background-color: transparent;
}
.xueFq-uQnTocyyEJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xueFq-uQnTocyyEJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xueFq-uQnTocyyEJ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xueFq-uQnTocyyEJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xueFq-uQnTocyyEJ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f4a261;
  background: #ffffff;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xueFq-uQnTocyyEJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xueFq-uQnTocyyEJ .navbar {
    height: 70px;
  }
  .xueFq-uQnTocyyEJ .navbar.opened {
    height: auto;
  }
  .xueFq-uQnTocyyEJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xueFq-uQnTocyyEJ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.xueFq-uQnTocyyEJ .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .container-fluid {
    padding-left: 34px;
    padding-right: 34px;
  }
}
.xueFq-uQnTocyyEJ .repetition-section-btn-main {
  padding-top: 5px;
}
.xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
    padding: 20px;
    margin-bottom: 14px;
  }
}
.xueFq-uQnTocyyEJ .navbar-caption:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xueFq-uQnTocyyEJ .text_widget {
  margin-bottom: 32px;
}
.xueFq-uQnTocyyEJ .text_widget a {
  transition: all 0.3s ease-out;
}
.xueFq-uQnTocyyEJ .text_widget a:hover {
  color: #000000 !important;
}
.xueFq-uQnTocyyEJ .repetition-section-subtitle {
  color: #ED2C03;
  text-align: left;
}
.xueFq-uQnTocyyEJ .repetition-text {
  color: #ffffff;
  text-align: left;
}
.xueFq-uQnTocyyEJ .repetition-section-subtitle,
.xueFq-uQnTocyyEJ .text_widget,
.xueFq-uQnTocyyEJ .repetition-section-btn {
  text-align: left;
}
.xueFq-uQnTocyyEJ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xueFq-uQnXf0QqTD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdfbf7;
}
.xueFq-uQnXf0QqTD blockquote {
  border-color: #f4a261;
  border-radius: 4px;
  background-color: #dce3e9;
}
.xueFq-uQnXf0QqTD .repetition-section-title {
  text-align: center;
  color: #000000;
}
.xueFq-uQnXf0QqTD .repetition-text {
  color: #000000;
  text-align: left;
}
.xueFq-uQnZK4jlMW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4a261;
  flex-direction: column;
  justify-content: center;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnZK4jlMW .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container {
    padding: 0 16px;
  }
}
.xueFq-uQnZK4jlMW .row {
  justify-content: center;
}
.xueFq-uQnZK4jlMW .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .logo-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.xueFq-uQnZK4jlMW .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .list {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:hover .repetition-iconfont,
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:focus .repetition-iconfont {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a .repetition-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.xueFq-uQnZK4jlMW .repetition-copy {
  margin-bottom: 0;
  color: #000000;
}
.xueFq-uQnZK4jlMW .list-title {
  color: #becdc2;
}
.xueFq-uQnZK4jlMW .list,
.xueFq-uQnZK4jlMW .item-wrap {
  color: #000000;
}
.xueFq-uQnTocyyEJ {
  background-color: #dce3e9;
  border: 18px solid #dce3e9;
}
@media (max-width: 768px) {
  .xueFq-uQnTocyyEJ {
    border: 8px solid #dce3e9;
  }
}
.xueFq-uQnTocyyEJ .navbar.navbar-dropdown {
  border-radius: 1.2em;
}
.xueFq-uQnTocyyEJ .navbar-dropdown {
  background-color: #f4a261 !important;
  padding: 0;
}
.xueFq-uQnTocyyEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f4a261 !important;
  background: #f4a261;
}
.xueFq-uQnTocyyEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .menu_box .navbar.opened,
  .xueFq-uQnTocyyEJ .menu_box .navbar-collapse {
    background-color: #f4a261 !important;
    transition: all 0s ease 0s;
  }
}
.xueFq-uQnTocyyEJ .navbar-dropdown {
  position: relative !important;
}
.xueFq-uQnTocyyEJ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main {
    margin-top: 1rem;
  }
}
.xueFq-uQnTocyyEJ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xueFq-uQnTocyyEJ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #111111;
  }
  .xueFq-uQnTocyyEJ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .xueFq-uQnTocyyEJ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body .repetition-text,
  .xueFq-uQnTocyyEJ .offcanvas-body .repetition-section-subtitle {
    margin-bottom: 32px;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .xueFq-uQnTocyyEJ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .xueFq-uQnTocyyEJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .xueFq-uQnTocyyEJ li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .xueFq-uQnTocyyEJ .lg_brand {
    margin: 0 1rem;
  }
}
.xueFq-uQnTocyyEJ .nav-item {
  margin: 4px 15px;
  position: relative;
  padding: 20px !important;
  border-radius: 15em;
}
@media (min-width: 1200px) {
  .xueFq-uQnTocyyEJ .nav-item {
    margin: 4px 5px;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .nav-item {
    margin: 4px 0 !important;
  }
}
.xueFq-uQnTocyyEJ .nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15em;
  background-color: #ffffff;
  opacity: .1;
}
.xueFq-uQnTocyyEJ .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.xueFq-uQnTocyyEJ .nav-item .nav-link:hover {
  color: #000000 !important;
}
.xueFq-uQnTocyyEJ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xueFq-uQnTocyyEJ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xueFq-uQnTocyyEJ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box {
    display: none;
  }
}
.xueFq-uQnTocyyEJ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xueFq-uQnTocyyEJ .container {
  display: flex;
  margin: auto;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper:hover {
  opacity: .5;
}
.xueFq-uQnTocyyEJ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .navbar-nav {
    margin: 0;
  }
}
.xueFq-uQnTocyyEJ .dropdown-menu,
.xueFq-uQnTocyyEJ .navbar.opened {
  background-color: false !important;
}
.xueFq-uQnTocyyEJ .nav-item:focus,
.xueFq-uQnTocyyEJ .nav-link:focus {
  outline: none;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item .repetition-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item .repetition-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnTocyyEJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xueFq-uQnTocyyEJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xueFq-uQnTocyyEJ .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnTocyyEJ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xueFq-uQnTocyyEJ .navbar.opened {
  transition: all 0.3s;
}
.xueFq-uQnTocyyEJ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xueFq-uQnTocyyEJ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: .5em;
}
.xueFq-uQnTocyyEJ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.xueFq-uQnTocyyEJ .navbar.collapsed {
  justify-content: center;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xueFq-uQnTocyyEJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xueFq-uQnTocyyEJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .navbar .nav-item {
    padding: .5rem 0;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .xueFq-uQnTocyyEJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xueFq-uQnTocyyEJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xueFq-uQnTocyyEJ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xueFq-uQnTocyyEJ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xueFq-uQnTocyyEJ .navbar .icons-menu {
    padding: 0;
  }
}
.xueFq-uQnTocyyEJ .navbar.navbar-short {
  min-height: 60px;
}
.xueFq-uQnTocyyEJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xueFq-uQnTocyyEJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xueFq-uQnTocyyEJ .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;
}
.xueFq-uQnTocyyEJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.xueFq-uQnTocyyEJ .navbar-brand .navbar-logo a {
  outline: none;
}
.xueFq-uQnTocyyEJ .dropdown-item.active,
.xueFq-uQnTocyyEJ .dropdown-item:active {
  background-color: transparent;
}
.xueFq-uQnTocyyEJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xueFq-uQnTocyyEJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xueFq-uQnTocyyEJ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xueFq-uQnTocyyEJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xueFq-uQnTocyyEJ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f4a261;
  background: #ffffff;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xueFq-uQnTocyyEJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xueFq-uQnTocyyEJ .navbar {
    height: 70px;
  }
  .xueFq-uQnTocyyEJ .navbar.opened {
    height: auto;
  }
  .xueFq-uQnTocyyEJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xueFq-uQnTocyyEJ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.xueFq-uQnTocyyEJ .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .container-fluid {
    padding-left: 34px;
    padding-right: 34px;
  }
}
.xueFq-uQnTocyyEJ .repetition-section-btn-main {
  padding-top: 5px;
}
.xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
    padding: 20px;
    margin-bottom: 14px;
  }
}
.xueFq-uQnTocyyEJ .navbar-caption:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xueFq-uQnTocyyEJ .text_widget {
  margin-bottom: 32px;
}
.xueFq-uQnTocyyEJ .text_widget a {
  transition: all 0.3s ease-out;
}
.xueFq-uQnTocyyEJ .text_widget a:hover {
  color: #000000 !important;
}
.xueFq-uQnTocyyEJ .repetition-section-subtitle {
  color: #ED2C03;
  text-align: left;
}
.xueFq-uQnTocyyEJ .repetition-text {
  color: #ffffff;
  text-align: left;
}
.xueFq-uQnTocyyEJ .repetition-section-subtitle,
.xueFq-uQnTocyyEJ .text_widget,
.xueFq-uQnTocyyEJ .repetition-section-btn {
  text-align: left;
}
.xueFq-uQnTocyyEJ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xueFq-uQnXc6Ve8U {
  background-color: #fdfbf7;
}
.xueFq-uQnXc6Ve8U .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnXc6Ve8U .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnXc6Ve8U .content-wrapper {
  justify-content: flex-end;
}
.xueFq-uQnXc6Ve8U .card {
  justify-content: center;
}
.xueFq-uQnXc6Ve8U .title-wrapper {
  padding: 0 50px 0 12%;
}
@media (max-width: 992px) {
  .xueFq-uQnXc6Ve8U .title-wrapper {
    margin-bottom: 40px;
    padding: 0;
  }
}
.xueFq-uQnXc6Ve8U .title-wrapper .repetition-tag {
  margin-bottom: 16px;
}
.xueFq-uQnXc6Ve8U .title-wrapper .repetition-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .xueFq-uQnXc6Ve8U .title-wrapper .repetition-section-title {
    margin-bottom: 20px;
  }
}
.xueFq-uQnXc6Ve8U .title-wrapper .text-wrapper .repetition-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnXc6Ve8U .title-wrapper .text-wrapper .repetition-text {
    width: 100%;
  }
}
.xueFq-uQnXc6Ve8U .repetition-section-btn .btn {
  margin-bottom: 0;
}
.xueFq-uQnXc6Ve8U .repetition-section-btn .btn::after,
.xueFq-uQnXc6Ve8U .repetition-section-btn .btn::before {
  background-image: linear-gradient(90deg, #000000, #000000 150%);
}
.xueFq-uQnXc6Ve8U .repetition-section-btn .btn:hover,
.xueFq-uQnXc6Ve8U .repetition-section-btn .btn:focus {
  color: #000000 !important;
}
.xueFq-uQnXc6Ve8U .repetition-section-btn .btn:hover::after,
.xueFq-uQnXc6Ve8U .repetition-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #000000, #000000 150%);
  opacity: 1;
}
.xueFq-uQnXc6Ve8U .form-wrapper {
  padding: 110px 200px;
  background-color: #dce3e9;
}
@media (max-width: 1640px) {
  .xueFq-uQnXc6Ve8U .form-wrapper {
    padding: 110px;
  }
}
@media (max-width: 1440px) {
  .xueFq-uQnXc6Ve8U .form-wrapper {
    padding: 110px 40px;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnXc6Ve8U .form-wrapper {
    padding: 20px;
  }
}
.xueFq-uQnXc6Ve8U .form-wrapper .title-wrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .xueFq-uQnXc6Ve8U .form-wrapper .title-wrap {
    margin-bottom: 20px;
  }
}
.xueFq-uQnXc6Ve8U .form-wrapper .title-wrap .repetition-title {
  margin-bottom: 16px;
}
.xueFq-uQnXc6Ve8U .form-wrapper .title-wrap .form-text {
  margin-bottom: 0;
}
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row {
  margin: 0;
}
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row .form-group {
  margin-bottom: 0 !important;
  padding: 0;
}
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row .form-group .form-control-label {
  margin-bottom: 10px;
}
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row .form-group .form-control {
  background-color: transparent;
  padding: 16px 0;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #000000 !important;
  border-radius: 0 !important;
  margin-bottom: 16px;
}
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
}
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row .form-group .form-control:hover,
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #000000 !important;
}
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row .form-group textarea {
  min-height: 120px;
}
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
}
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row .repetition-section-btn {
  width: 100%;
  margin-top: 20px;
}
.xueFq-uQnXc6Ve8U .form-wrapper .form-wrap .dragArea.row .repetition-section-btn .btn {
  margin-left: 0;
}
.xueFq-uQnXc6Ve8U .repetition-section-title {
  color: #000000;
  text-align: center;
}
.xueFq-uQnXc6Ve8U .repetition-tag {
  color: #000000;
}
.xueFq-uQnXc6Ve8U .repetition-text {
  color: #ffffff;
}
.xueFq-uQnXc6Ve8U .repetition-title {
  color: #000000;
  text-align: center;
}
.xueFq-uQnXc6Ve8U .form-text {
  color: #000000;
}
.xueFq-uQnXc6Ve8U label {
  color: #121212;
}
.xueFq-uQnXc6Ve8U .repetition-text,
.xueFq-uQnXc6Ve8U .text-wrapper {
  color: #000000;
}
.xueFq-uQnZK4jlMW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4a261;
  flex-direction: column;
  justify-content: center;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnZK4jlMW .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container {
    padding: 0 16px;
  }
}
.xueFq-uQnZK4jlMW .row {
  justify-content: center;
}
.xueFq-uQnZK4jlMW .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .logo-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.xueFq-uQnZK4jlMW .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .list {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:hover .repetition-iconfont,
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:focus .repetition-iconfont {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a .repetition-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.xueFq-uQnZK4jlMW .repetition-copy {
  margin-bottom: 0;
  color: #000000;
}
.xueFq-uQnZK4jlMW .list-title {
  color: #becdc2;
}
.xueFq-uQnZK4jlMW .list,
.xueFq-uQnZK4jlMW .item-wrap {
  color: #000000;
}
.xueFq-uQnTocyyEJ {
  background-color: #dce3e9;
  border: 18px solid #dce3e9;
}
@media (max-width: 768px) {
  .xueFq-uQnTocyyEJ {
    border: 8px solid #dce3e9;
  }
}
.xueFq-uQnTocyyEJ .navbar.navbar-dropdown {
  border-radius: 1.2em;
}
.xueFq-uQnTocyyEJ .navbar-dropdown {
  background-color: #f4a261 !important;
  padding: 0;
}
.xueFq-uQnTocyyEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f4a261 !important;
  background: #f4a261;
}
.xueFq-uQnTocyyEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .menu_box .navbar.opened,
  .xueFq-uQnTocyyEJ .menu_box .navbar-collapse {
    background-color: #f4a261 !important;
    transition: all 0s ease 0s;
  }
}
.xueFq-uQnTocyyEJ .navbar-dropdown {
  position: relative !important;
}
.xueFq-uQnTocyyEJ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main {
    margin-top: 1rem;
  }
}
.xueFq-uQnTocyyEJ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xueFq-uQnTocyyEJ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #111111;
  }
  .xueFq-uQnTocyyEJ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .xueFq-uQnTocyyEJ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body .repetition-text,
  .xueFq-uQnTocyyEJ .offcanvas-body .repetition-section-subtitle {
    margin-bottom: 32px;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .xueFq-uQnTocyyEJ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .xueFq-uQnTocyyEJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .xueFq-uQnTocyyEJ li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .xueFq-uQnTocyyEJ .lg_brand {
    margin: 0 1rem;
  }
}
.xueFq-uQnTocyyEJ .nav-item {
  margin: 4px 15px;
  position: relative;
  padding: 20px !important;
  border-radius: 15em;
}
@media (min-width: 1200px) {
  .xueFq-uQnTocyyEJ .nav-item {
    margin: 4px 5px;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .nav-item {
    margin: 4px 0 !important;
  }
}
.xueFq-uQnTocyyEJ .nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15em;
  background-color: #ffffff;
  opacity: .1;
}
.xueFq-uQnTocyyEJ .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.xueFq-uQnTocyyEJ .nav-item .nav-link:hover {
  color: #000000 !important;
}
.xueFq-uQnTocyyEJ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xueFq-uQnTocyyEJ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xueFq-uQnTocyyEJ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box {
    display: none;
  }
}
.xueFq-uQnTocyyEJ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xueFq-uQnTocyyEJ .container {
  display: flex;
  margin: auto;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper:hover {
  opacity: .5;
}
.xueFq-uQnTocyyEJ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .navbar-nav {
    margin: 0;
  }
}
.xueFq-uQnTocyyEJ .dropdown-menu,
.xueFq-uQnTocyyEJ .navbar.opened {
  background-color: false !important;
}
.xueFq-uQnTocyyEJ .nav-item:focus,
.xueFq-uQnTocyyEJ .nav-link:focus {
  outline: none;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item .repetition-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item .repetition-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnTocyyEJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xueFq-uQnTocyyEJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xueFq-uQnTocyyEJ .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnTocyyEJ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xueFq-uQnTocyyEJ .navbar.opened {
  transition: all 0.3s;
}
.xueFq-uQnTocyyEJ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xueFq-uQnTocyyEJ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: .5em;
}
.xueFq-uQnTocyyEJ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.xueFq-uQnTocyyEJ .navbar.collapsed {
  justify-content: center;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xueFq-uQnTocyyEJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xueFq-uQnTocyyEJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .navbar .nav-item {
    padding: .5rem 0;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .xueFq-uQnTocyyEJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xueFq-uQnTocyyEJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xueFq-uQnTocyyEJ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xueFq-uQnTocyyEJ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xueFq-uQnTocyyEJ .navbar .icons-menu {
    padding: 0;
  }
}
.xueFq-uQnTocyyEJ .navbar.navbar-short {
  min-height: 60px;
}
.xueFq-uQnTocyyEJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xueFq-uQnTocyyEJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xueFq-uQnTocyyEJ .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;
}
.xueFq-uQnTocyyEJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.xueFq-uQnTocyyEJ .navbar-brand .navbar-logo a {
  outline: none;
}
.xueFq-uQnTocyyEJ .dropdown-item.active,
.xueFq-uQnTocyyEJ .dropdown-item:active {
  background-color: transparent;
}
.xueFq-uQnTocyyEJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xueFq-uQnTocyyEJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xueFq-uQnTocyyEJ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xueFq-uQnTocyyEJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xueFq-uQnTocyyEJ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f4a261;
  background: #ffffff;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xueFq-uQnTocyyEJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xueFq-uQnTocyyEJ .navbar {
    height: 70px;
  }
  .xueFq-uQnTocyyEJ .navbar.opened {
    height: auto;
  }
  .xueFq-uQnTocyyEJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xueFq-uQnTocyyEJ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.xueFq-uQnTocyyEJ .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .container-fluid {
    padding-left: 34px;
    padding-right: 34px;
  }
}
.xueFq-uQnTocyyEJ .repetition-section-btn-main {
  padding-top: 5px;
}
.xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
    padding: 20px;
    margin-bottom: 14px;
  }
}
.xueFq-uQnTocyyEJ .navbar-caption:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xueFq-uQnTocyyEJ .text_widget {
  margin-bottom: 32px;
}
.xueFq-uQnTocyyEJ .text_widget a {
  transition: all 0.3s ease-out;
}
.xueFq-uQnTocyyEJ .text_widget a:hover {
  color: #000000 !important;
}
.xueFq-uQnTocyyEJ .repetition-section-subtitle {
  color: #ED2C03;
  text-align: left;
}
.xueFq-uQnTocyyEJ .repetition-text {
  color: #ffffff;
  text-align: left;
}
.xueFq-uQnTocyyEJ .repetition-section-subtitle,
.xueFq-uQnTocyyEJ .text_widget,
.xueFq-uQnTocyyEJ .repetition-section-btn {
  text-align: left;
}
.xueFq-uQnTocyyEJ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xueFq-uQnWNkL5Nm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fdfbf7;
}
.xueFq-uQnWNkL5Nm .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnWNkL5Nm .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnWNkL5Nm .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .xueFq-uQnWNkL5Nm .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .xueFq-uQnWNkL5Nm .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnWNkL5Nm .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .xueFq-uQnWNkL5Nm .container {
    padding: 0 12px;
  }
}
.xueFq-uQnWNkL5Nm .row {
  justify-content: center;
}
.xueFq-uQnWNkL5Nm .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .xueFq-uQnWNkL5Nm .title-wrapper {
    margin-bottom: 56px;
  }
}
.xueFq-uQnWNkL5Nm .title-wrapper .repetition-section-title {
  margin-bottom: 22px;
}
.xueFq-uQnWNkL5Nm .title-wrapper .repetition-text {
  margin-bottom: 0;
}
.xueFq-uQnWNkL5Nm .item {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xueFq-uQnWNkL5Nm .item {
    margin-bottom: 16px;
  }
}
.xueFq-uQnWNkL5Nm .item .item-wrapper {
  width: 100%;
}
.xueFq-uQnWNkL5Nm .item .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .xueFq-uQnWNkL5Nm .item .item-wrapper .item-img img {
    min-height: auto;
    height: 350px;
  }
}
.xueFq-uQnWNkL5Nm .item .item-wrapper .card-box .desc-wrapper {
  margin-bottom: 16px;
}
.xueFq-uQnWNkL5Nm .item .item-wrapper .card-box .desc-wrapper .desc-wrap {
  padding: 8px 12px;
  border: 1px solid #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
}
.xueFq-uQnWNkL5Nm .item .item-wrapper .card-box .desc-wrapper .desc-wrap .repetition-iconfont {
  font-size: 16px;
  color: #000000;
  margin-right: 4px;
}
.xueFq-uQnWNkL5Nm .item .item-wrapper .card-box .desc-wrapper .desc-wrap .item-desc {
  margin-bottom: 0;
}
.xueFq-uQnWNkL5Nm .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.xueFq-uQnWNkL5Nm .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.xueFq-uQnWNkL5Nm .item.features-without-image .item-wrapper {
  padding: 48px;
  background-color: #dce3e9;
  border-radius: 32px;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .xueFq-uQnWNkL5Nm .item.features-without-image .item-wrapper {
    padding: 24px;
  }
}
.xueFq-uQnWNkL5Nm .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.xueFq-uQnWNkL5Nm .repetition-section-title {
  color: #000000;
  text-align: center;
}
.xueFq-uQnWNkL5Nm .repetition-text {
  color: #000000;
  text-align: center;
}
.xueFq-uQnWNkL5Nm .item-title {
  color: #000000;
  text-align: center;
}
.xueFq-uQnWNkL5Nm .item-desc {
  color: #1D1D1F;
}
.xueFq-uQnWNkL5Nm .item-text {
  color: #000000;
}
.xueFq-uQnWNkL5Nm .item-desc,
.xueFq-uQnWNkL5Nm .desc-wrapper {
  color: #000000;
}
.xueFq-uQnWUtsK8P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dce3e9;
}
.xueFq-uQnWUtsK8P .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnWUtsK8P .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnWUtsK8P .card-wrapper {
  background: #fdfbf7;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .xueFq-uQnWUtsK8P .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .xueFq-uQnWUtsK8P .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .xueFq-uQnWUtsK8P .card-wrapper {
    padding: 4rem;
  }
}
.xueFq-uQnWUtsK8P .repetition-text,
.xueFq-uQnWUtsK8P .repetition-section-btn {
  color: #000000;
  text-align: left;
}
.xueFq-uQnWUtsK8P .card-title,
.xueFq-uQnWUtsK8P .card-box {
  text-align: center;
  color: #000000;
}
.xueFq-uQnWXWRibV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdfbf7;
}
.xueFq-uQnWXWRibV .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnWXWRibV .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnWXWRibV .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .xueFq-uQnWXWRibV .content-wrapper {
    margin-bottom: 32px;
  }
}
.xueFq-uQnWXWRibV .content-wrapper .repetition-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .xueFq-uQnWXWRibV .content-wrapper .repetition-section-title {
    margin-bottom: 32px;
  }
}
.xueFq-uQnWXWRibV .content-wrapper .repetition-text {
  margin-bottom: 22px;
}
.xueFq-uQnWXWRibV .image-wrapper img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .xueFq-uQnWXWRibV .image-wrapper img {
    height: 350px;
  }
}
.xueFq-uQnWXWRibV .repetition-section-title {
  color: #ffffff;
}
.xueFq-uQnWXWRibV .repetition-text {
  color: #ffffff;
}
.xueFq-uQnWXWRibV .repetition-section-title,
.xueFq-uQnWXWRibV .repetition-section-btn {
  color: #000000;
  text-align: center;
}
.xueFq-uQnWXWRibV .repetition-text,
.xueFq-uQnWXWRibV .text-wrapper {
  color: #000000;
}
.xueFq-uQnX180Vgb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dce3e9;
}
.xueFq-uQnX180Vgb .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnX180Vgb .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnX180Vgb .items-wrapper {
  justify-content: flex-end;
}
.xueFq-uQnX180Vgb .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .xueFq-uQnX180Vgb .image-wrapper {
    margin-bottom: 32px;
  }
}
.xueFq-uQnX180Vgb .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .xueFq-uQnX180Vgb .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .xueFq-uQnX180Vgb .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .xueFq-uQnX180Vgb .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .xueFq-uQnX180Vgb .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.xueFq-uQnX180Vgb .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .xueFq-uQnX180Vgb .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnX180Vgb .content-wrapper {
    padding-left: 0;
  }
}
.xueFq-uQnX180Vgb .content-wrapper .repetition-desc {
  margin-bottom: 8px;
}
.xueFq-uQnX180Vgb .content-wrapper .repetition-section-title {
  margin-bottom: 24px;
}
.xueFq-uQnX180Vgb .content-wrapper .repetition-text {
  margin-bottom: 24px;
}
.xueFq-uQnX180Vgb .repetition-desc {
  color: #000000;
}
.xueFq-uQnX180Vgb .repetition-section-title {
  color: #272b2e;
}
.xueFq-uQnX180Vgb .repetition-text,
.xueFq-uQnX180Vgb .text-wrapper {
  color: #272b2e;
}
.xueFq-uQnX180Vgb .repetition-section-title,
.xueFq-uQnX180Vgb .repetition-section-btn {
  text-align: center;
  color: #000000;
}
.xueFq-uQnX180Vgb .repetition-text {
  color: #000000;
}
.xueFq-uQogxhrmwq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fdfbf7;
}
.xueFq-uQogxhrmwq .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQogxhrmwq .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQogxhrmwq .content-wrapper {
  background: #dce3e9;
}
@media (max-width: 991px) {
  .xueFq-uQogxhrmwq .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .xueFq-uQogxhrmwq .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .xueFq-uQogxhrmwq .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .xueFq-uQogxhrmwq .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .xueFq-uQogxhrmwq .content-wrapper {
    padding: 5rem 3rem;
  }
  .xueFq-uQogxhrmwq .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.xueFq-uQogxhrmwq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.xueFq-uQogxhrmwq .card-title {
  text-align: center;
  color: #000000;
}
.xueFq-uQogxhrmwq .repetition-text,
.xueFq-uQogxhrmwq .repetition-section-btn {
  color: #000000;
}
.xueFq-uQnZK4jlMW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4a261;
  flex-direction: column;
  justify-content: center;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnZK4jlMW .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container {
    padding: 0 16px;
  }
}
.xueFq-uQnZK4jlMW .row {
  justify-content: center;
}
.xueFq-uQnZK4jlMW .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .logo-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.xueFq-uQnZK4jlMW .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .list {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:hover .repetition-iconfont,
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:focus .repetition-iconfont {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a .repetition-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.xueFq-uQnZK4jlMW .repetition-copy {
  margin-bottom: 0;
  color: #000000;
}
.xueFq-uQnZK4jlMW .list-title {
  color: #becdc2;
}
.xueFq-uQnZK4jlMW .list,
.xueFq-uQnZK4jlMW .item-wrap {
  color: #000000;
}
.xueFq-uQnTocyyEJ {
  background-color: #dce3e9;
  border: 18px solid #dce3e9;
}
@media (max-width: 768px) {
  .xueFq-uQnTocyyEJ {
    border: 8px solid #dce3e9;
  }
}
.xueFq-uQnTocyyEJ .navbar.navbar-dropdown {
  border-radius: 1.2em;
}
.xueFq-uQnTocyyEJ .navbar-dropdown {
  background-color: #f4a261 !important;
  padding: 0;
}
.xueFq-uQnTocyyEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f4a261 !important;
  background: #f4a261;
}
.xueFq-uQnTocyyEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .menu_box .navbar.opened,
  .xueFq-uQnTocyyEJ .menu_box .navbar-collapse {
    background-color: #f4a261 !important;
    transition: all 0s ease 0s;
  }
}
.xueFq-uQnTocyyEJ .navbar-dropdown {
  position: relative !important;
}
.xueFq-uQnTocyyEJ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main {
    margin-top: 1rem;
  }
}
.xueFq-uQnTocyyEJ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xueFq-uQnTocyyEJ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #111111;
  }
  .xueFq-uQnTocyyEJ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .xueFq-uQnTocyyEJ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body .repetition-text,
  .xueFq-uQnTocyyEJ .offcanvas-body .repetition-section-subtitle {
    margin-bottom: 32px;
  }
  .xueFq-uQnTocyyEJ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .xueFq-uQnTocyyEJ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .xueFq-uQnTocyyEJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .xueFq-uQnTocyyEJ li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .xueFq-uQnTocyyEJ .lg_brand {
    margin: 0 1rem;
  }
}
.xueFq-uQnTocyyEJ .nav-item {
  margin: 4px 15px;
  position: relative;
  padding: 20px !important;
  border-radius: 15em;
}
@media (min-width: 1200px) {
  .xueFq-uQnTocyyEJ .nav-item {
    margin: 4px 5px;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .nav-item {
    margin: 4px 0 !important;
  }
}
.xueFq-uQnTocyyEJ .nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15em;
  background-color: #ffffff;
  opacity: .1;
}
.xueFq-uQnTocyyEJ .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.xueFq-uQnTocyyEJ .nav-item .nav-link:hover {
  color: #000000 !important;
}
.xueFq-uQnTocyyEJ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xueFq-uQnTocyyEJ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xueFq-uQnTocyyEJ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xueFq-uQnTocyyEJ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xueFq-uQnTocyyEJ .offcanvas_box {
    display: none;
  }
}
.xueFq-uQnTocyyEJ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xueFq-uQnTocyyEJ .container {
  display: flex;
  margin: auto;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xueFq-uQnTocyyEJ .iconfont-wrapper:hover {
  opacity: .5;
}
.xueFq-uQnTocyyEJ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .navbar-nav {
    margin: 0;
  }
}
.xueFq-uQnTocyyEJ .dropdown-menu,
.xueFq-uQnTocyyEJ .navbar.opened {
  background-color: false !important;
}
.xueFq-uQnTocyyEJ .nav-item:focus,
.xueFq-uQnTocyyEJ .nav-link:focus {
  outline: none;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item .repetition-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xueFq-uQnTocyyEJ .dropdown .dropdown-menu .dropdown-item .repetition-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xueFq-uQnTocyyEJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xueFq-uQnTocyyEJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xueFq-uQnTocyyEJ .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnTocyyEJ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xueFq-uQnTocyyEJ .navbar.opened {
  transition: all 0.3s;
}
.xueFq-uQnTocyyEJ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xueFq-uQnTocyyEJ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: .5em;
}
.xueFq-uQnTocyyEJ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.xueFq-uQnTocyyEJ .navbar.collapsed {
  justify-content: center;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xueFq-uQnTocyyEJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xueFq-uQnTocyyEJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xueFq-uQnTocyyEJ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xueFq-uQnTocyyEJ .navbar .nav-item {
    padding: .5rem 0;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .xueFq-uQnTocyyEJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xueFq-uQnTocyyEJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xueFq-uQnTocyyEJ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xueFq-uQnTocyyEJ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xueFq-uQnTocyyEJ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xueFq-uQnTocyyEJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xueFq-uQnTocyyEJ .navbar .icons-menu {
    padding: 0;
  }
}
.xueFq-uQnTocyyEJ .navbar.navbar-short {
  min-height: 60px;
}
.xueFq-uQnTocyyEJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xueFq-uQnTocyyEJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xueFq-uQnTocyyEJ .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;
}
.xueFq-uQnTocyyEJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.xueFq-uQnTocyyEJ .navbar-brand .navbar-logo a {
  outline: none;
}
.xueFq-uQnTocyyEJ .dropdown-item.active,
.xueFq-uQnTocyyEJ .dropdown-item:active {
  background-color: transparent;
}
.xueFq-uQnTocyyEJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xueFq-uQnTocyyEJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xueFq-uQnTocyyEJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xueFq-uQnTocyyEJ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xueFq-uQnTocyyEJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xueFq-uQnTocyyEJ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f4a261;
  background: #ffffff;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xueFq-uQnTocyyEJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xueFq-uQnTocyyEJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xueFq-uQnTocyyEJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xueFq-uQnTocyyEJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xueFq-uQnTocyyEJ .navbar {
    height: 70px;
  }
  .xueFq-uQnTocyyEJ .navbar.opened {
    height: auto;
  }
  .xueFq-uQnTocyyEJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xueFq-uQnTocyyEJ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.xueFq-uQnTocyyEJ .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .container-fluid {
    padding-left: 34px;
    padding-right: 34px;
  }
}
.xueFq-uQnTocyyEJ .repetition-section-btn-main {
  padding-top: 5px;
}
.xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .xueFq-uQnTocyyEJ .repetition-section-btn-main .btn {
    padding: 20px;
    margin-bottom: 14px;
  }
}
.xueFq-uQnTocyyEJ .navbar-caption:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .xueFq-uQnTocyyEJ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xueFq-uQnTocyyEJ .text_widget {
  margin-bottom: 32px;
}
.xueFq-uQnTocyyEJ .text_widget a {
  transition: all 0.3s ease-out;
}
.xueFq-uQnTocyyEJ .text_widget a:hover {
  color: #000000 !important;
}
.xueFq-uQnTocyyEJ .repetition-section-subtitle {
  color: #ED2C03;
  text-align: left;
}
.xueFq-uQnTocyyEJ .repetition-text {
  color: #ffffff;
  text-align: left;
}
.xueFq-uQnTocyyEJ .repetition-section-subtitle,
.xueFq-uQnTocyyEJ .text_widget,
.xueFq-uQnTocyyEJ .repetition-section-btn {
  text-align: left;
}
.xueFq-uQnTocyyEJ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xueFq-uQnUXkiSBO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdfbf7;
}
.xueFq-uQnUXkiSBO .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnUXkiSBO .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnUXkiSBO .title-wrapper .repetition-section-title {
  display: inline-block;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .xueFq-uQnUXkiSBO .title-wrapper .repetition-section-title {
    width: 60%;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnUXkiSBO .title-wrapper .repetition-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.xueFq-uQnUXkiSBO .items-wrapper {
  margin: 0 -5px;
}
.xueFq-uQnUXkiSBO .items-wrapper .item {
  padding: 0 5px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .xueFq-uQnUXkiSBO .items-wrapper .item {
    margin-bottom: 20px;
  }
}
.xueFq-uQnUXkiSBO .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #dce3e9;
}
.xueFq-uQnUXkiSBO .items-wrapper .item .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .xueFq-uQnUXkiSBO .items-wrapper .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.xueFq-uQnUXkiSBO .items-wrapper .item .item-wrapper .item-content {
  padding: 20px;
}
.xueFq-uQnUXkiSBO .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.xueFq-uQnUXkiSBO .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  display: inline-block;
  width: 90%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnUXkiSBO .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    width: 100%;
  }
}
.xueFq-uQnUXkiSBO .items-wrapper .item .item-wrapper .item-content .repetition-section-btn {
  margin-top: 20px;
}
.xueFq-uQnUXkiSBO .items-wrapper .item .item-wrapper .item-content .repetition-section-btn .btn {
  margin-bottom: 0;
}
.xueFq-uQnUXkiSBO .repetition-section-title {
  color: #093388;
}
.xueFq-uQnUXkiSBO .item-title {
  color: #093388;
}
.xueFq-uQnUXkiSBO .item-text {
  color: #58595b;
}
.xueFq-uQnUXkiSBO .item-title,
.xueFq-uQnUXkiSBO .repetition-section-btn,
.xueFq-uQnUXkiSBO .icon-wrapper {
  text-align: center;
  color: #000000;
}
.xueFq-uQnUXkiSBO .item-text,
.xueFq-uQnUXkiSBO .text-wrapper {
  color: #000000;
}
.xueFq-uQnVC2hi2p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dce3e9;
}
.xueFq-uQnVC2hi2p .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnVC2hi2p .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnVC2hi2p .row {
  justify-content: center;
  margin: 0 -13px;
}
.xueFq-uQnVC2hi2p .row .item {
  padding: 0 13px;
}
.xueFq-uQnVC2hi2p .item {
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .xueFq-uQnVC2hi2p .item {
    margin-bottom: 16px;
  }
}
.xueFq-uQnVC2hi2p .item .item-wrapper {
  height: 100%;
  background-color: #fdfbf7;
  padding: 54px;
}
@media (max-width: 1200px) {
  .xueFq-uQnVC2hi2p .item .item-wrapper {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnVC2hi2p .item .item-wrapper {
    padding: 30px 16px;
  }
}
.xueFq-uQnVC2hi2p .item .item-wrapper .card-box .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 30px;
  background-color: #000000;
}
.xueFq-uQnVC2hi2p .item .item-wrapper .card-box .label-wrapper .label-wrap .item-label {
  margin-bottom: 0;
}
.xueFq-uQnVC2hi2p .item .item-wrapper .card-box .label-wrapper .label-wrap .repetition-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #fff7ee;
}
.xueFq-uQnVC2hi2p .item .item-wrapper .card-box .item-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .xueFq-uQnVC2hi2p .item .item-wrapper .card-box .item-title {
    margin-bottom: 30px;
  }
}
.xueFq-uQnVC2hi2p .item .item-wrapper .card-box .text-wrap .item-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnVC2hi2p .item .item-wrapper .card-box .text-wrap .item-text {
    width: 100%;
  }
}
.xueFq-uQnVC2hi2p .item .item-wrapper .card-box .repetition-section-btn {
  margin-top: 20px;
}
.xueFq-uQnVC2hi2p .item-label {
  color: #fff7ee;
}
.xueFq-uQnVC2hi2p .item-title {
  color: #fff7ee;
}
.xueFq-uQnVC2hi2p .item-text {
  color: #fff7ee;
}
.xueFq-uQnVC2hi2p .item-text,
.xueFq-uQnVC2hi2p .text-wrap {
  color: #000000;
}
.xueFq-uQnVC2hi2p .item-title,
.xueFq-uQnVC2hi2p .repetition-section-btn {
  color: #000000;
  text-align: center;
}
.xueFq-uQnVC2hi2p .item-label,
.xueFq-uQnVC2hi2p .label-wrapper {
  color: #ffffff;
}
.xueFq-uQnWj7mK2P {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fdfbf7;
}
.xueFq-uQnWj7mK2P .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnWj7mK2P .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnWj7mK2P .row {
  align-items: center;
}
@media (max-width: 991px) {
  .xueFq-uQnWj7mK2P .row {
    flex-direction: column-reverse;
  }
  .xueFq-uQnWj7mK2P .image-wrapper {
    margin-bottom: 2rem;
  }
  .xueFq-uQnWj7mK2P .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .xueFq-uQnWj7mK2P .card-wrapper {
    padding-right: 2rem;
  }
}
.xueFq-uQnWj7mK2P .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.xueFq-uQnWj7mK2P .card-title {
  text-align: center;
  color: #000000;
}
.xueFq-uQnWj7mK2P .repetition-text,
.xueFq-uQnWj7mK2P .repetition-section-btn {
  color: #000000;
}
.xueFq-uQnVJwvoCi {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #dce3e9;
}
.xueFq-uQnVJwvoCi .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnVJwvoCi .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnVJwvoCi .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .xueFq-uQnVJwvoCi .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnVJwvoCi .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnVJwvoCi .container {
    padding: 0 16px;
  }
}
.xueFq-uQnVJwvoCi .content-wrapper .repetition-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .xueFq-uQnVJwvoCi .content-wrapper .repetition-section-title {
    margin-bottom: 48px;
  }
}
.xueFq-uQnVJwvoCi .item {
  margin-bottom: 32px;
}
.xueFq-uQnVJwvoCi .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .xueFq-uQnVJwvoCi .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.xueFq-uQnVJwvoCi .item .item-wrapper .card-box .title-wrapper .title-wrap .repetition-iconfont {
  font-size: 36px;
  color: #000000;
  margin-right: 12px;
}
.xueFq-uQnVJwvoCi .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.xueFq-uQnVJwvoCi .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.xueFq-uQnVJwvoCi .repetition-section-title {
  color: #000000;
  text-align: center;
}
.xueFq-uQnVJwvoCi .card-title {
  color: #f4f4f4;
}
.xueFq-uQnVJwvoCi .card-text {
  color: #c1c1c1;
}
.xueFq-uQnVJwvoCi .card-text,
.xueFq-uQnVJwvoCi .text-wrap {
  color: #000000;
}
.xueFq-uQnVJwvoCi .card-title,
.xueFq-uQnVJwvoCi .title-wrapper {
  color: #000000;
  text-align: left;
}
.xueFq-uQnWE4m5ZU {
  background-color: #fdfbf7;
}
.xueFq-uQnWE4m5ZU .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnWE4m5ZU .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnWE4m5ZU .content-wrapper .repetition-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .xueFq-uQnWE4m5ZU .content-wrapper .repetition-section-title {
    margin-bottom: 32px;
  }
}
.xueFq-uQnWE4m5ZU .content-wrapper .text-wrapper .repetition-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .xueFq-uQnWE4m5ZU .content-wrapper .text-wrapper .repetition-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnWE4m5ZU .content-wrapper .text-wrapper .repetition-text {
    width: 100%;
  }
}
.xueFq-uQnWE4m5ZU .content-wrapper .image-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .xueFq-uQnWE4m5ZU .content-wrapper .image-wrapper {
    margin-top: 32px;
  }
}
.xueFq-uQnWE4m5ZU .content-wrapper .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .xueFq-uQnWE4m5ZU .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.xueFq-uQnWE4m5ZU .content-wrapper .repetition-desc {
  margin-top: 32px;
  margin-bottom: 0;
}
.xueFq-uQnWE4m5ZU .content-wrapper .repetition-section-btn {
  margin-top: 32px;
}
.xueFq-uQnWE4m5ZU .repetition-section-title {
  color: #c10b02;
}
.xueFq-uQnWE4m5ZU .repetition-text,
.xueFq-uQnWE4m5ZU .text-wrapper {
  color: #000000;
  text-align: center;
}
.xueFq-uQnWE4m5ZU .repetition-desc {
  color: #4b4949;
  text-align: center;
}
.xueFq-uQnWE4m5ZU .repetition-section-title,
.xueFq-uQnWE4m5ZU .repetition-section-btn {
  text-align: center;
  color: #000000;
}
.xueFq-uQnZK4jlMW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4a261;
  flex-direction: column;
  justify-content: center;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image.disabled {
  display: none;
}
.xueFq-uQnZK4jlMW .repetition-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xueFq-uQnZK4jlMW .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .container {
    padding: 0 16px;
  }
}
.xueFq-uQnZK4jlMW .row {
  justify-content: center;
}
.xueFq-uQnZK4jlMW .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .logo-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.xueFq-uQnZK4jlMW .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .list {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .xueFq-uQnZK4jlMW .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:hover,
.xueFq-uQnZK4jlMW .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:hover .repetition-iconfont,
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a:focus .repetition-iconfont {
  color: #000000;
}
.xueFq-uQnZK4jlMW .social-wrapper .social-wrap .soc-item a .repetition-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.xueFq-uQnZK4jlMW .repetition-copy {
  margin-bottom: 0;
  color: #000000;
}
.xueFq-uQnZK4jlMW .list-title {
  color: #becdc2;
}
.xueFq-uQnZK4jlMW .list,
.xueFq-uQnZK4jlMW .item-wrap {
  color: #000000;
}

/* Base Cookie Banner */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #424a4d;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #424a4d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    all: unset;
    padding: 18px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    display: inline-block;
}

.cookie-btn.Accept {
    background-color: #28a745 !important;
}

.cookie-btn.ignore {
    background-color: #dc3545 !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cookie-btn {
        width: 100%;
        padding: 10px 0;
    }
}
/* Finish Cookie Banner */
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.8);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
    box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.3), inset -4px -4px 6px rgba(255, 255, 255, 0.9);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 600px;
  width: calc(100% - 32px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.cookie-banner.hide {
  animation: fadeOut 0.3s ease-in-out forwards;
  pointer-events: none;
}

#cookieBanner button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.8);
  transform: scale(1);
}

#cookieAcceptBtn {
  background: linear-gradient(145deg, #007bff, #0056b3);
  color: white;
}

#cookieAcceptBtn:hover {
  background: linear-gradient(145deg, #0056b3, #004494);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.3), inset -4px -4px 6px rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

#cookieRejectBtn {
  background: linear-gradient(145deg, #f8f9fa, #e0e0e0);
  color: #333;
  border: 1px solid #ccc;
}

#cookieRejectBtn:hover {
  background: linear-gradient(145deg, #e0e0e0, #d6d6d6);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.2), inset -4px -4px 6px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
    padding: 15px;
  }
  #cookieBanner button {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    width: calc(100% - 16px);
    left: 8px;
    bottom: 16px;
    padding: 10px;
  }
  #cookieBanner button {
    padding: 8px;
    font-size: 12px;
  }
}

/* logoanimations */
@keyframes colorChange {
    0% {
        color: red;
    }
    50% {
        color: blue;
    }
    100% {
        color: green;
    }
}

.navbar-brand {
    animation: colorChange 3s alternate;
}
/* endlogoanimations */

/* mainanimations */
/* Style 7: rotate slight */
a, button, .btn {
  transition: transform 0.1s ease;
}
a:active, button:active, .btn:active {
  transform: rotate(-3deg);
}
/* endmainanimations */
