/* =================================================================
  Basic
================================================================= */
.section-title {
    color: #696E7C;
    font-variant-numeric: lining-nums proportional-nums;
    font-feature-settings: "salt" on;
    font-family: "Raleway";
    font-size: 6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 0.95;
    text-transform: uppercase;
    margin: 0px 0px 0px 0px;
  }
  @media (max-width: 767.98px) {
    .section-title {
      font-size: 3rem;
    }
  }
  
  * {
    /* ползунок скроллбара */
    scrollbar-color: #696E7C transparent;
    /* «цвет ползунка» «цвет полосы скроллбара» */
    scrollbar-width: thin;
  }
  *::-webkit-scrollbar {
    height: 3px;
    background-color: transparent;
    width: 3px;
  }
  *::-webkit-scrollbar-track {
    margin-right: 2px;
  }
  *::-webkit-scrollbar-thumb {
    background-color: #696E7C;
    border-radius: 30px;
  }
  
  html {
    font-size: 62.5%;
  }
  
  body {
    font-feature-settings: "pnum" on, "lnum" on;
    color: #333333;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Raleway";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
    --scroll: 0;
    cursor: none;
  }
  body a{
    cursor: none;
  }
  body textarea,
  body input,
  body button,
  body label {
      cursor: none;
  }
  body.lock {
    overflow: hidden;
  }
  
  .cursor {
    width: 40px;
    height: 40px;
    background: url("/images/cursor.png") center/40px 40px no-repeat;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 220000;
  }
  @media (max-width: 767.98px) {
    .cursor {
      display: none;
    }
  }
  .cursor.hover {
    background: url("/images/cursor-hover.png") center/40px 40px no-repeat;
  }
  
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow-x: clip;
    background: url("/images/wrapper-bg.png") 0px center/cover no-repeat;
  }
  @media (max-width: 1500px) {
    .wrapper {
      background: url("/images/wrapper-bg_1440.png") 0px center/cover no-repeat;
    }
  }
  @media (max-width: 991.98px) {
    .wrapper {
      background: url("/images/wrapper-bg_992.png") 0px center/cover no-repeat;
    }
  }
  @media (max-width: 767.98px) {
    .wrapper {
      background: url("/images/wrapper-bg_768.png") 0px center/cover no-repeat;
    }
  }
  .wrapper.lk {
    background-color: #F3F4F5;
  }
  
  ._container {
    max-width: 1408px;
    margin: 0 auto;
    padding: 0px 24px;
    height: 100%;
  }
  @media (max-width: 767.98px) {
    ._container {
      padding: 0px 15px;
    }
  }
  main{
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
  }
  .page {
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
  }
  
  .overlay {
    background: rgba(31, 55, 113, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease 0s;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  img {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }
  
  .btn {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    transition: all 0.2s ease 0s;
    border: 0px;
    border-radius: 100px;
    padding: 12px 50px 10px 50px;
    box-shadow: none;
    outline: none !important;
    white-space: normal;
    cursor: none;
  }
  .btn:hover{
    cursor: none;
  }
  .btn.btn-default {
    background-color: #FF9061;
    color: #FFFFFF;
  }
  .btn.btn-default:hover {
    background-color: #FF7F48;
    color: #FFFFFF;
  }
  .btn.btn-default:active {
    background-color: #e67341;
    color: #FFFFFF;
    box-shadow: none;
  }
  .btn.btn-negative-default {
    background-color: #1F3771;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
  }
  .btn.btn-negative-default:hover {
    background-color: #696E7C;
    color: #FFFFFF;
    border: 1px solid #696E7C;
  }
  .btn.btn-negative-default:active {
    background-color: #72caa3;
    color: #FFFFFF;
    border: 1px solid #72caa3;
    box-shadow: none;
  }
  .btn.btn-primary {
    background-color: #696E7C;
  }
  .btn.btn-primary:hover {
    background-color: #47aa7e;
    color: #FFFFFF;
  }
  .btn.btn-primary:active {
    background-color: #72caa3;
    color: #FFFFFF;
    box-shadow: none;
  }
  .btn.btn-secondary {
    background-color: #eef9f4;
    color: #696E7C;
  }
  .btn.btn-secondary:hover {
    background-color: #47aa7e;
    color: #FFFFFF;
  }
  .btn.btn-secondary:active {
    background-color: #72caa3;
    color: #FFFFFF;
    box-shadow: none;
  }
  .btn.btn-white {
    border: 1px solid #FFFFFF;
    background-color: transparent;
    padding: 10px 30px;
  }
  .btn.btn-white:focus {
    color: #FFFFFF;
  }
  .btn.btn-white:hover {
    background-color: #696E7C;
    border: 1px solid #696E7C;
    color: #FFFFFF;
  }
  .btn.btn-white:active {
    background-color: #72caa3;
    color: #FFFFFF;
    box-shadow: none;
  }
  
  select {
    display: none;
  }
  
  .select.select--default + .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__rendered {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.011em;
    color: #333333;
    display: inline-block;
    width: 100%;
    height: 100%;
    border: 1px solid #CFD5DD;
    border-radius: 7px;
    padding: 24px 40px 8px 16px;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 5;
    background-color: #EEF0F3;
  }
  .select.select--default + .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__rendered:hover {
    background-color: #E1E5EA;
  }
  .select.select--default + .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__arrow {
    background-image: url("/images/icons/arrow-down-select.svg");
    background-position: center;
    background-size: 14px 8px;
    background-repeat: no-repeat;
    width: 14px;
    height: 8px;
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    transition: all 0.2s ease 0s;
    cursor: pointer;
    z-index: 5;
  }
  .select.select--default + .select2-container.select2-container--default.select2-container--open .select2-selection.select2-selection--single .select2-selection__rendered {
    background-color: #FFFFFF;
  }
  .select.select--white + .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__rendered {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.011em;
    color: #333333;
    display: inline-block;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(98, 53, 140, 0.15);
    border-radius: 7px;
    padding: 24px 40px 8px 16px;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 5;
    background-color: #fff;
  }
  .select.select--white + .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__arrow {
    background-image: url("/images/icons/arrow-down-select.svg");
    background-position: center;
    background-size: 14px 8px;
    background-repeat: no-repeat;
    width: 14px;
    height: 8px;
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    transition: all 0.2s ease 0s;
    cursor: pointer;
    z-index: 5;
  }
  .select.select--dark + .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__rendered {
    background-color: #383E47;
    letter-spacing: -0.011em;
    color: #FFFFFF;
    border: 1px solid #383E47;
  }
  .select.select--dark + .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__rendered:hover {
    background-color: #505967;
  }
  .select.select--dark + .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__rendered {
    background-color: transparent;
  }
  .select.select--dark + .select2-container.select2-container--default.select2-container--open .select2-selection.select2-selection--single .select2-selection__rendered {
    background-color: transparent;
  }
  .select.select--dark + .select2-container.select2-container--default + .select2-container.select2-container--default.select2-container--open .select2-dropdown {
    border: 1px solid #464A53;
    box-shadow: 0px 19px 50px -14px rgba(0, 0, 0, 0.29);
    background-color: #292C31;
  }
  .select.select--dark + .select2-container.select2-container--default + .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results {
    /* ползунок скроллбара */
    scrollbar-color: #464A53 transparent;
    /* «цвет ползунка» «цвет полосы скроллбара» */
    scrollbar-width: thin;
  }
  .select.select--dark + .select2-container.select2-container--default + .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results::-webkit-scrollbar {
    height: 4px;
    background-color: transparent;
    width: 5px;
  }
  .select.select--dark + .select2-container.select2-container--default + .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results::-webkit-scrollbar-track {
    margin-right: 2px;
  }
  .select.select--dark + .select2-container.select2-container--default + .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results::-webkit-scrollbar-thumb {
    background-color: #464A53;
    border-radius: 30px;
  }
  .select.select--dark + .select2-container.select2-container--default + .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results .select2-results__options .select2-results__option {
    color: #FFFFFF;
  }
  .select.select--dark + .select2-container.select2-container--default + .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results .select2-results__options .select2-results__option--highlighted {
    background-color: #464A53;
    color: #FFFFFF;
  }
  
  .select2-container.select2-container--default {
    display: block;
  }
  .select2-container.select2-container--default .select2-selection.select2-selection--single {
    height: 56px;
    position: relative;
    display: block;
  }
  .select2-container.select2-container--default .select2-selection.select2-selection--single[aria-expanded=true] .select2-selection__arrow {
    transform: rotate(180deg);
  }
  .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__rendered {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    display: inline-block;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(98, 53, 140, 0.15);
    border-radius: 7px;
    padding: 24px 40px 8px 16px;
    user-select: none;
    position: relative;
    z-index: 5;
    background-color: #fff;
    transition: all 0.2s ease 0s;
  }
  .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__arrow {
    background-image: url("/images/icons/arrow-down-select.svg");
    background-position: center;
    background-size: 14px 8px;
    background-repeat: no-repeat;
    width: 14px;
    height: 8px;
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    transition: all 0.2s ease 0s;
    z-index: 5;
  }
  .select2-container.select2-container--default.select2-container--open {
    width: 100%;
    top: calc(100% + 12px) !important;
    z-index: 10;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown {
    width: 100%;
    display: block;
    background-color: #fff;
    border: 1px solid #F2F2F4;
    box-shadow: 0px 19px 50px -14px rgba(0, 0, 0, 0.29);
    border-radius: 8px;
    padding: 24px 24px 32px 16px;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-search {
    width: 100%;
    display: block;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-search.select2-search--hide .select2-search__field {
    display: none;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-search input {
    width: 100%;
    padding: 3px 5px;
    height: 25px;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results {
    display: block;
    max-height: 184px;
    overflow: auto;
    /* ползунок скроллбара */
    scrollbar-color: #EDEEF0 transparent;
    /* «цвет ползунка» «цвет полосы скроллбара» */
    scrollbar-width: thin;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results::-webkit-scrollbar {
    height: 4px;
    background-color: transparent;
    width: 5px;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results::-webkit-scrollbar-track {
    margin-right: 2px;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results::-webkit-scrollbar-thumb {
    background-color: #EDEEF0;
    border-radius: 30px;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results .select2-results__options {
    margin: 0;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results .select2-results__options .select2-results__option {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.011em;
    color: #333333;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.2s ease 0s;
    margin: 0px 0px 8px 0px;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results .select2-results__options .select2-results__option:last-child {
    margin: 0px 0px 0px 0px;
  }
  .select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results .select2-results__options .select2-results__option--highlighted {
    color: #fff;
    background-color: #F3F4F5;
  }
  
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-button-prev-unique,
  .swiper-button-next-unique {
    margin: 0;
    pointer-events: auto;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: auto;
    bottom: 0;
    z-index: 5;
    transition: all 0.2s ease 0s;
    background: #FFFFFF;
  }
  .swiper-button-next.swiper-button-lock,
  .swiper-button-prev.swiper-button-lock,
  .swiper-button-prev-unique.swiper-button-lock,
  .swiper-button-next-unique.swiper-button-lock {
    display: none;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after,
  .swiper-button-prev-unique::after,
  .swiper-button-next-unique::after {
    display: none;
  }
  .swiper-button-next svg,
  .swiper-button-prev svg,
  .swiper-button-prev-unique svg,
  .swiper-button-next-unique svg {
    transition: all 0.2s ease 0s;
    stroke: #696E7C;
    width: 12px;
    height: 13px;
  }
  
  .swiper-button-prev,
  .swiper-button-prev-unique {
    right: 40px;
    left: auto;
  }
  @media (max-width: 1199.98px) {
    .swiper-button-prev,
    .swiper-button-prev-unique {
      right: auto;
      left: 0;
    }
  }
  .swiper-button-prev svg,
  .swiper-button-prev-unique svg {
    transform: rotate(180deg);
  }
  
  .swiper-button-next,
  .swiper-button-next-unique {
    right: 0;
    left: auto;
  }
  @media (max-width: 1199.98px) {
    .swiper-button-next,
    .swiper-button-next-unique {
      right: auto;
      left: 40px;
    }
  }
  
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -33px;
  }
  
  .swiper-pagination {
    font-size: 8px;
    line-height: 8px;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    font-size: 8px;
    line-height: 8px;
    opacity: 1;
    transition: all 0.2s ease 0s;
    background-color: #E1E5EA;
  }
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
  }
  
  .custom-checkbox {
    position: relative;
  }
  .custom-checkbox input[type=checkbox],
  .custom-checkbox input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .custom-checkbox input[type=checkbox] + label,
  .custom-checkbox input[type=radio] + label {
    position: relative;
    padding: 0 0 0 2.571em;
    margin-bottom: 0;
    user-select: none;
  }
  .custom-checkbox input[type=checkbox] + label:before,
  .custom-checkbox input[type=radio] + label:before {
    content: "";
    position: absolute;
    top: 0em;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #1F3771;
    border-radius: 2px;
    background: transparent;
    text-align: center;
    transition: all 0.2s ease 0s;
  }
  .custom-checkbox input[type=checkbox] + label:after,
  .custom-checkbox input[type=radio] + label:after {
    content: "";
    position: absolute;
    transform: scale(0);
    transition: all 0.2s ease 0s;
  }
  .custom-checkbox input[type=checkbox] + label:hover:before, .custom-checkbox input[type=checkbox] + label:focus:before,
  .custom-checkbox input[type=radio] + label:hover:before,
  .custom-checkbox input[type=radio] + label:focus:before {
    border-color: #333333;
  }
  .custom-checkbox input[type=checkbox] + label:after,
  .custom-checkbox input[type=radio] + label:after {
    background-color: transparent;
    content: "";
    display: block;
    position: absolute;
    left: 0.6em;
    top: 0.3em;
    width: 0.39em;
    height: 0.63em;
    opacity: 0;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    transition: all 0.2s ease 0s;
  }
  .custom-checkbox input[type=checkbox]:checked + label:before,
  .custom-checkbox input[type=radio]:checked + label:before {
    border-color: #1F3771;
    background-color: #1F3771;
    content: "";
  }
  .custom-checkbox input[type=checkbox]:checked + label:after,
  .custom-checkbox input[type=radio]:checked + label:after {
    content: "";
    opacity: 1;
  }
  
  .modal-backdrop.background-backdrop {
    background: rgba(0, 0, 0, 0.06);
    filter: blur(25px);
  }
  
  .error-page {
    padding: 60px 0px;
  }
  .error-page__title {
    font-family: "Raleway";
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0px 0px 25px 0px;
  }
  .error-page__text {
    font-family: "Raleway";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0px 0px 30px 0px;
  }
  .success-page {
    padding: 60px 0px;
  }
  .success-page__title {
    font-family: "Raleway";
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0px 0px 25px 0px;
  }
  .success-page__text {
    font-family: "Raleway";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0px 0px 30px 0px;
  }
  .default {
    padding: 60px 0px;
    font-family: "Raleway";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
  }
  .default p {
    font-family: "Raleway";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0px 0px 15px 0px;
  }
  .default p:last-of-type {
    margin: 0px 0px 0px 0px;
  }
  
  .swiper-slider-default {
    position: relative;
  }
  @media (min-width: 992px) {
    .swiper-slider-default .swiper-pagination {
      display: none;
    }
  }
  
  @media (min-width: 992px) {
    .swiper-slider-default-wrapper {
      display: flex;
      flex-wrap: wrap;
      margin: 0px -16px;
    }
  }
  
  @media (min-width: 992px) {
    .swiper-slider-default-slide {
      padding: 0px 16px;
      flex: 0 1 33.333%;
      margin: 0px 0px 32px 0px;
    }
    .swiper-slider-default-slide.swiper-slider-default-slide--big {
      flex: 0 1 50%;
    }
  }
  .swiper-slider-default-slide.swiper-slide {
    height: auto;
  }
  
  .breadcrumbs-main {
    margin: 0px 0px 8px 0px;
  }
  @media (max-width: 767.98px) {
    .breadcrumbs-main {
      margin: 0px 0px 24px 0px;
    }
  }
  .breadcrumbs-main .breadcrumbs-wrapper .breadcrumb.breadcrumbs-ol {
    background: transparent;
    margin: 0;
    padding: 0;
    border-radius: 0px;
  }
  .breadcrumbs-main .breadcrumbs-wrapper .breadcrumb.breadcrumbs-ol > li {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: -0.006em;
    color: #333333;
  }
  .breadcrumbs-main .breadcrumbs-wrapper .breadcrumb.breadcrumbs-ol > li a {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: -0.006em;
    color: #333333;
    text-decoration: none;
  }
  .breadcrumbs-main .breadcrumbs-wrapper .breadcrumb.breadcrumbs-ol > li a:hover, .breadcrumbs-main .breadcrumbs-wrapper .breadcrumb.breadcrumbs-ol > li a:active, .breadcrumbs-main .breadcrumbs-wrapper .breadcrumb.breadcrumbs-ol > li a:focus {
    text-decoration: none;
  }
  .breadcrumbs-main .breadcrumbs-wrapper .breadcrumb.breadcrumbs-ol > li.active {
    color: #A0A8B0;
  }
  .breadcrumbs-main .breadcrumbs-wrapper .breadcrumb.breadcrumbs-ol > li + li::before {
    padding: 0px 1px;
    color: #333333;
  }
  
  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover,
  textarea:-webkit-autofill:focus,
  select:-webkit-autofill,
  select:-webkit-autofill:hover,
  select:-webkit-autofill:focus {
    -webkit-text-fill-color: #000 !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
  }
  
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
  }
  
  input[type=number] {
    -moz-appearance: textfield !important;
  }
  
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
  }
  
  input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
  }
  
  .arrow-slide {
    width: max(80px, 8rem);
    height: max(80px, 8rem);
    display: block;
    position: absolute;
    top: 50%;
    left: 60%;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    border: max(1px, 0.1rem) solid #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    transform: translate(0, -50%);
    transition: all 0.5s ease 0s;
  }
  .arrow-slide svg {
    width: max(14px, 2rem);
    height: max(14px, 2rem);
    stroke: #FFFFFF;
  }
  .arrow-slide:hover {
    background: #696E7C;
  }
  .arrow-slide:active {
    background: #72caa3;
    border: 1px solid #FFFFFF !important;
  }
  .arrow-slide.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  input[type=text],
  input[type=email],
  textarea {
    min-height: 50px;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 15px 20px;
    width: 100%;
    color: #333333;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Raleway";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
    resize: none;
  }
  input[type=text]::placeholder,
  input[type=email]::placeholder,
  textarea::placeholder {
    color: rgba(51, 51, 51, 0.6);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Raleway";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
  }
  
  textarea {
    max-height: 50px;
  }
  
  .input-validate-wrapper .input-validate {
    border: 2px solid transparent;
    transition: all 0.3s ease 0s;
  }
  .input-validate-wrapper.input-validate_process .input-validate {
    border: 2px solid #1F3771;
  }
  .input-validate-wrapper.input-validate_error .input-validate {
    border: 2px solid #FF9061;
  }
  .input-validate-wrapper.input-validate_error .error-message {
    display: block;
  }
  
  .error-message {
    display: none;
    margin: 5px 0px 0px 0px;
    color: #FF9061;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Raleway";
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.45;
  }
  
  .input-agreement-wrapper .input-agreement:checked + label + .error-message {
    display: none;
  }
  .input-agreement-wrapper .input-agreement.input-agreement--start + label + .error-message {
    display: none;
  }
  .input-agreement-wrapper .error-message {
    display: block;
  }
  
  .modal {
    text-align: center;
  }
  
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
  
  .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }
  @media (max-width: 767.98px) {
    .modal-dialog {
      width: calc(100% - 26px);
    }
  }
  
  .modal-header {
    padding: 0;
    border: none;
    margin: 0px 0px 30px 0px;
  }
  .modal-header .close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: none;
  }
  .modal-header .close:hover {
    cursor: none;
  }
  
  .modal-content {
    padding: 40px;
    border-radius: 15px;
  }
  @media (max-width: 767.98px) {
    .modal-content {
      padding: 30px 20px;
    }
  }
  
  .modal-title {
    font-family: "Raleway";
    font-size: 40px;
    line-height: 1.1;
    text-align: center;
    margin: 0px 0px 10px 0px;
  }
  
  .modal-subtitle {
    font-family: "Raleway";
    font-size: 22px;
    line-height: 1.1;
    text-align: center;
  }
  
  .modal-body {
    padding: 0px 0px 0px 0px;
  }
  
  .modal-form__item {
    margin: 0px 0px 10px 0px;
  }
  .modal-form__item:last-child {
    margin: 20px 0px 0px 0px;
  }
  .modal-form__item.input-validate-wrapper input.input-validate {
    border: 1px solid #e4e4e4;
  }
  .modal-form__item.input-validate-wrapper.input-validate_error input.input-validate {
    border: 1px solid #FF9061;
  }
  .modal-form__item textarea {
    border: 1px solid #e4e4e4;
    min-height: 100px;
  }
  .modal-form__item button {
    width: 100%;
  }
  .fancybox-button {
    cursor: none;
  }
  .swiper-button-next,
  .swiper-button-prev{
    cursor: none;
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover{
    cursor: none;
  }
  .default-page{
    padding: 40px 0px;
  }
  @media (max-width: 767.98px){
    .default-page h1{
        font-size: 30px;
    }
  }
  @media (max-width: 374.98px){
    .default-page h1{
        font-size: 26px;
    }
  }
  