@charset "UTF-8";
/* Document */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections */
body {
  margin: 0;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

/* Text-level semantics */
abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp, pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Embedded content */
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

/* Forms */
button, input, select, textarea {
  font: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.wrapper {
  display: flex;
  width: 100%;
  overflow-x: hidden;
  padding: 100px 0;
}

.ycont {
  width: 100%;
  max-width: 1240px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.indents-tb {
  padding: 60px 0;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

@media screen and (max-width: 870px) {
  .indents-tb {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .ycont {
    padding: 0 16px;
  }
  .wrapper {
    padding: 80px 0;
  }
}
.button {
  display: flex;
  align-items: center;
  border-radius: 2px;
  background: #DBFB37;
  border: none;
  padding: 8px 19px;
  cursor: pointer;
}
.button:hover {
  background: #caf008;
}
.button:hover svg {
  transform: translateX(9px);
}
.button span {
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-right: 10px;
}
.button__whatsapp {
  background: none;
  border-radius: 2px;
  border: 1.5px solid #DBFB37;
  text-decoration: none;
  position: relative;
}
.button__whatsapp span {
  color: #DBFB37;
}
.button__whatsapp::after {
  content: "Get a consultation in 5 min";
  position: absolute;
  bottom: -24px;
  left: 0;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  text-align: center;
}
.button__whatsapp:hover {
  background: #DBFB37;
}
.button__whatsapp:hover span {
  color: #002746;
}
.button__whatsapp:hover svg {
  transform: none;
}
.button__whatsapp:hover svg path {
  fill: #002746;
}
.button svg {
  width: 13px;
  height: 13px;
  min-width: 13px;
  position: relative;
  top: -2px;
}

.swiper-arrow {
  width: 32px;
  height: 32px;
  background: #DBFB37;
  transform: rotate(45deg);
  outline: none;
  border: none;
  cursor: pointer;
}
.swiper-arrow svg {
  transform: rotate(-45deg);
}
.swiper-arrow:hover {
  transform: scale(1.1) rotate(45deg);
}

.lang__select {
  position: absolute;
  top: 2px;
  left: 12px;
  display: flex;
  flex-direction: column;
  padding: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  max-height: 40px;
  transition: all ease-in-out 0.23s;
}
.lang__select-row {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.lang__select_hide {
  opacity: 0;
  visibility: hidden;
  margin-top: 10px;
  transform: translateY(-30px);
}
.lang__select.active {
  max-height: 70px;
}
.lang__select.active .lang__select_hide {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang__select.active .lang__select_hide span {
  color: rgba(255, 255, 255, 0.7);
}
.lang__select.active .lang__select-arrow {
  transform: rotate(180deg);
}
.lang__select.active .lang__select-arrow path {
  stroke: rgba(255, 255, 255, 0.7);
}
.lang__select.active span {
  color: rgba(255, 255, 255, 0.7);
}
.lang__select-item {
  transition: all ease-in-out 0.23s;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.lang__select-item span {
  font-family: "Lato Regular", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 6px;
}
.lang__select_active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.lang__select-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.lang__wrapper {
  position: relative;
  width: 90px;
  display: flex;
  align-items: flex-start;
  height: 40px;
}

.lang__select-arrow path {
  stroke: #fff;
}

.modal-overlay {
  background: #002746;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
  overflow-y: auto;
  padding: 60px 0;
}
.modal-overlay.active {
  display: flex;
}

.modal__container {
  width: 100%;
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.modal__title {
  color: #fff;
  margin-bottom: 40px;
}
.modal-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.modal__prev {
  position: absolute;
  top: calc(50% - 16px);
  left: 17px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__next {
  position: absolute;
  top: calc(50% - 16px);
  right: 17px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.courtSwiper {
  position: relative;
  height: 380px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 24px;
}

.close-btn {
  position: absolute;
  right: 25px;
  top: 25px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  width: 110px;
  gap: 8px;
  position: sticky;
  top: 0;
}

.left-section {
  position: sticky;
  top: 0;
}

.thumbnail {
  height: 140px;
  background: rgb(49, 81, 106);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
}
.thumbnail.active {
  border-radius: 5px;
  border: 1px solid #DBFB37;
  backdrop-filter: blur(3.5px);
}
.thumbnail img {
  max-width: 100%;
  object-fit: cover;
}
.thumbnail img.my-thumbnail-special {
  height: 100%;
}

.left-section {
  width: 100%;
  color: #fff;
  max-width: 574px;
}
.left-section p {
  color: #fff;
}
.left-section li {
  color: #fff;
}
.left-section .swiper-slide {
  background: rgb(49, 81, 106);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.left-section .swiper-slide img {
  max-width: 100%;
}

.court-info h3 {
  font-size: 32px;
  font-weight: 400;
}
.court-info p {
  opacity: 0.9;
}
.court-info h4 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 24px;
}
.court-info ul {
  list-style: none;
  padding: 0;
}
.court-info ul li {
  font-size: 16px;
  font-weight: 400;
  padding-left: 10px;
  border-left: 1.5px solid #DBFB37;
  margin-bottom: 12px;
}

.right-section {
  width: 40%;
  max-width: 496px;
  border-radius: 5px;
  background: rgba(217, 217, 217, 0.12);
  padding: 40px;
  color: #fff;
}
.right-section h3 {
  margin-bottom: 30px;
}
.right-section .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.right-section .form-group label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.right-section .form-group input {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  padding: 18px 20px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.right-section .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

select {
  border-radius: 5px;
  background: url(../img/arrow-down.svg) no-repeat 97% center, rgba(255, 255, 255, 0.15);
  border: none;
  appearance: none;
  padding: 20px;
  color: #fff;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

input[type=number] {
  width: 100%;
  padding: 12px 50px 12px 16px;
  background-color: #3d5a73;
  color: #ffffff;
  border: 2px solid #4a6b88;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: text;
  transition: all 0.3s ease;
}

input[type=number]:hover {
  background-color: #445f77;
  border-color: #5a7b98;
}

input[type=number]:focus {
  outline: none;
  background-color: #445f77;
  border-color: #6b8fb3;
  box-shadow: 0 0 0 3px rgba(107, 143, 179, 0.2);
}

/* Скрываем стандартные стрелки */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.spinner-buttons {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 2px;
  background: #1A3C58;
}

button.spinner-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5px 4.5px;
  cursor: pointer;
}

button.spinner-btn:hover {
  background-color: #5a7b98;
  color: #c8e8ff;
}

button.spinner-btn:active {
  background-color: #6b8fb3;
}

button.spinner-btn:first-child {
  border-radius: 3px 3px 0 0;
}

button.spinner-btn:last-child {
  border-radius: 0 0 3px 3px;
}

.button-group {
  display: flex;
  gap: 8px;
}
.button-group label {
  margin: 0 !important;
}

input[type=radio] {
  display: none;
}

.radio-label {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  width: calc(50% - 4px);
  height: 59px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px;
}

.radio-label:hover {
  background-color: rgba(68, 95, 119, 0.7);
  color: #d0dce8;
}

/* Стиль для выбранной кнопки */
input[type=radio]:checked + .radio-label {
  border-radius: 5px;
  border: 1px solid #DBFB37;
  background: rgba(255, 255, 255, 0.15);
}

.form__block-hide {
  display: none;
}

.form__block-hide.active {
  display: block;
}

.additional-questions svg {
  transition: transform 0.3s ease;
}

.additional-questions.active svg {
  transform: rotate(180deg);
}

.additional-questions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
}
.additional-questions span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
}
.additional-questions:hover {
  cursor: pointer;
}
.additional-questions:hover span {
  text-decoration: none;
}

.select2-container--default .select2-selection--single {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  height: 59px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-selection__rendered {
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.select2-container .select2-selection--single {
  display: flex;
  align-items: center;
  border: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 20px;
}

.select2-search--dropdown {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background: url(../img/arrow-down.svg) no-repeat bottom center/100%;
  right: 20px;
  top: 13px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-selection__arrow {
  height: 52px;
}

.select2-dropdown {
  border: none;
  padding: 10px;
  border-radius: 5px;
  background: #3C5971;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}

.select2-results__option {
  color: #fff;
  font-weight: 600;
  padding: 8px 27px;
  border-radius: 5px;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 230px;
}

.select2-container--default .select2-results > .select2-results__options:hover .select2-results__option--selected {
  background: url(../img/check_icon-w.svg) no-repeat 5px center !important;
  color: #fff !important;
}
.select2-container--default .select2-results > .select2-results__options:hover .select2-results__option:hover {
  background: #DBFB37;
  color: #002746;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: unset;
}

.select2-results__option--selected {
  background: #DBFB37 url(../img/check_icon.svg) no-repeat 5px center !important;
  color: #002746 !important;
}

.form__checkbox-block {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.form__checkbox-block label {
  padding: 8px 10px 8px 34px;
  display: flex;
  margin-bottom: 4px !important;
}
.form__checkbox-block label input:checked + p::after {
  opacity: 1 !important;
}
.form__checkbox-block label p {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  position: relative;
  cursor: pointer;
}
.form__checkbox-block label p::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1.5px solid #FFF;
  position: absolute;
  left: -24px;
  top: 2px;
}
.form__checkbox-block label p::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: #fff;
  position: absolute;
  left: -19px;
  top: 7px;
  opacity: 0;
}
.form__checkbox-block label:last-child {
  margin-bottom: 0;
}

textarea {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  border: none;
  padding: 18px 20px;
  color: #fff;
  outline: none;
  resize: both;
  margin-bottom: 20px;
}

.form-group {
  position: relative;
}
.form-group textarea + svg {
  position: absolute;
  right: 3px;
  bottom: 23px;
}

.modal__whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  border: 2px solid #3BC828;
  gap: 5px;
  padding: 10px 16px;
  text-decoration: none;
  height: 54px;
}
.modal__whatsapp span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  color: #3BC828;
  line-height: 1.1;
  position: relative;
  top: 2px;
}

.button__submit {
  width: 100%;
  justify-content: center;
  height: 54px;
  margin-bottom: 20px;
}

.consultation-text {
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin: 12px 0 0 0;
}

@media screen and (max-width: 1240px) {
  .modal-content {
    gap: 20px;
  }
}
@media screen and (max-width: 1140px) {
  .thumbnails {
    display: none;
  }
  .left-section {
    max-width: unset;
    width: 50%;
  }
  .right-section {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 786px) {
  .modal-content {
    gap: 0;
    flex-direction: column;
  }
  .left-section {
    width: 100%;
    position: relative;
    padding: 0 16px;
  }
  .right-section {
    width: 100%;
    background: none;
    padding: 24px 16px;
    border-top: 1px solid rgba(219, 251, 55, 0.2);
  }
  .courtSwiper {
    height: 44px;
    width: 80px;
    border-radius: 2px;
    margin-left: 0;
  }
  .courtSwiper .swiper-arrow {
    display: none;
  }
  .court-info h3 {
    position: absolute;
    top: 0;
    left: 100px;
    font-size: 20px;
    border-radius: 2px 0 0 2px;
    background: rgba(217, 217, 217, 0.15);
    padding: 10px;
    width: calc(100% - 100px);
  }
  .modal__container {
    padding: 0;
  }
  .modal__title {
    padding: 0 16px;
  }
  .court-info {
    padding-right: 20px;
    border-right: 3px solid rgba(217, 217, 217, 0.2);
    margin-bottom: 24px;
    margin-top: 20px;
  }
  .court-info p {
    margin: 0;
    font-size: 14px;
  }
  .modal-overlay {
    padding: 30px 0;
  }
  .close-btn {
    top: 10px;
    right: 10px;
  }
  .court-info h4,
  .court-info ul {
    display: none;
  }
}
.tabs__content {
  position: relative;
  padding-top: 20px;
}

.tabs__block {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.tabs__block.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
  z-index: 2;
}

.tabs__nav {
  display: flex;
  align-items: center;
}
.tabs__link {
  color: #002746;
  font-family: "Lato Regular", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.8px;
  border-radius: 90px;
  border: 1px solid #D1D0D0;
  background: none;
  margin: 0 8px;
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
}
.tabs__link:last-child {
  margin-right: 0;
}
.tabs__link.active {
  background: #DBFB37;
  color: #fff;
}
.tabs__link.active:hover {
  color: #fff;
  cursor: default;
}
.tabs__link:hover {
  background: #002746;
  color: #fff;
}

.tabs__dropdown-menu {
  display: none;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  width: 344px;
  max-width: 100%;
  background: #F5F5F7;
  padding: 30px;
}
.tabs__dropdown-menu button {
  background: none;
  border: none;
  font-size: 18px;
  margin-bottom: 25px;
  color: #002746;
}
.tabs__dropdown-menu button:last-child {
  margin-bottom: 0;
}

.tabs__dropdown.open .tabs__dropdown-menu {
  display: flex;
}

.tabs__dropdown {
  position: relative;
  z-index: 5;
}
.tabs__dropdown-toggle {
  background: #DBFB37;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 5px;
  margin: 30px auto;
  font-family: "Lato Semi Bold", sans-serif;
  font-size: 18px;
  width: 343px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .tabs__content {
    padding-top: 0;
  }
}
.wrapper--header {
  border-bottom: 1px solid rgba(162, 170, 191, 0.2);
  background: rgba(0, 39, 70, 0.1);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 18px 0;
}
.wrapper--header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #002746;
}

.header {
  display: flex;
}
.header__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}
.header__list a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
}
.header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.header__whatsapp {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: 30px;
}
.header__whatsapp span {
  color: #3BC828;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  margin-left: 5px;
}

.burger {
  display: none;
}

.mobile-header {
  display: none;
}

@media screen and (max-width: 970px) {
  .header__list {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  .header__right {
    display: none;
  }
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: none;
    border: none;
  }
  .mobile-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    right: 0;
    top: 0;
    width: 90%;
    height: 100%;
    background: #002746;
    z-index: 99;
    padding: 30px 15px;
    transform: translateX(150%);
    opacity: 0;
    visibility: visible;
  }
  .mobile-header.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-header__close {
    background: none;
    position: absolute;
    right: 15px;
    top: 15px;
    border: none;
  }
  .mobile-header .logo {
    margin-bottom: 30px;
  }
  .mobile-header .header__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-header .header__list a {
    margin-left: 0;
    margin-bottom: 10px;
    display: inline-block;
  }
  .mobile-header .header__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    margin-top: 30px;
  }
  .mobile-header .header__right .button {
    margin-bottom: 30px;
  }
  .mobile-header .header__right .header__whatsapp {
    margin-left: 0;
  }
}
.wrapper--first {
  background: black;
  padding: 0;
}
.wrapper--first .swiper-arrow {
  position: absolute;
  top: calc(50% - 16px);
  z-index: 10;
}

.first__swiper {
  height: 70vh;
  min-height: 597px;
  width: 100%;
}
.first__prev {
  left: 15vw;
}
.first__next {
  right: 15vw;
}
.first__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8vh;
}
.first__slide-img {
  display: none;
}
.first__content {
  position: relative;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.first__title {
  width: 100%;
  max-width: 693px;
  font-size: 52px;
}
.first__descript {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  max-width: 400px;
  margin: 28px 0 30px;
}
.first__button {
  padding: 11px 16px;
}
.first__button span {
  letter-spacing: 0.2px;
  font-size: 20px;
}

@media screen and (max-width: 1700px) {
  .first__prev {
    left: 12vw;
  }
  .first__next {
    right: 12vw;
  }
}
@media screen and (max-width: 1500px) {
  .first__prev {
    left: 8vw;
  }
  .first__next {
    right: 8vw;
  }
}
@media screen and (max-width: 1340px) {
  .first__prev {
    left: 30px;
  }
  .first__next {
    right: 30px;
  }
}
@media screen and (max-width: 1340px) {
  .first__prev {
    left: 0;
  }
  .first__next {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .wrapper--first .swiper-arrow {
    width: 48px;
    height: 48px;
    top: 200px;
  }
  .first__slide-img {
    height: 354px;
  }
  .first__slide-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .first__prev {
    left: -24px;
  }
  .first__prev svg {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 19px;
    height: 19px;
  }
  .first__next {
    right: -24px;
  }
  .first__next svg {
    position: absolute;
    left: 5px;
    right: unset;
    width: 19px;
    height: 19px;
  }
  .first__slide {
    display: flex;
    flex-direction: column;
  }
  .first__slide .cover-bg {
    display: none;
  }
  .first__slide-img {
    display: block;
  }
  .first__content {
    display: flex;
    width: 100%;
    padding: 20px 16px 40px 16px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    background: #002746;
  }
  .first__swiper {
    height: unset;
  }
  .first__title {
    font-size: 33px;
  }
  .first__descript {
    margin: 20px 0 24px;
    font-size: 16px;
  }
}
.wrapper--whois {
  background: #F5FAFE;
}

.whois {
  display: flex;
  gap: 30px;
}
.whois__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 44px;
}
.whois__descript {
  max-width: 540px;
  width: 100%;
  margin: 0 0 0 40px;
  opacity: 0.8;
}
.whois__item {
  border-radius: 5px;
  border: 1px solid #C5CAD5;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.whois__item b {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 70px;
}
.whois__item strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
}
.whois__item p {
  margin: 0;
  opacity: 0.8;
}

@media screen and (max-width: 920px) {
  .whois__header {
    flex-direction: column;
  }
  .whois__descript {
    margin-left: 0;
  }
  .whois__title {
    margin-bottom: 30px;
  }
  .whois {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .whois__item b {
    margin-bottom: 30px;
  }
  .whois__item strong {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .whois__header {
    margin-bottom: 20px;
  }
  .whois__item b {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .whois__item {
    padding: 16px;
  }
}
.wrapper--catalog {
  background: #002746;
  color: #fff;
}

.catalog {
  display: flex;
  gap: 30px;
  margin-top: 44px;
}
.catalog__tabs {
  min-width: 380px;
  width: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.catalog__tabs-item {
  width: 100%;
  height: 135px;
  position: relative;
  border-radius: 5px;
  opacity: 0.8;
  backdrop-filter: blur(3.5px);
  background: rgb(49, 81, 106);
  box-sizing: border-box;
  border: 1px solid rgba(217, 217, 217, 0.12);
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.catalog__tabs-item strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  font-weight: 400;
  position: absolute;
  bottom: 24px;
  left: 20px;
}
.catalog__tabs-item img {
  height: 100%;
  object-fit: cover;
}
.catalog__tabs-item.active {
  opacity: 1;
  border-color: #DBFB37;
}
.catalog__tabs-item.active strong {
  color: #DBFB37;
}
.catalog__tabs-item:hover {
  opacity: 1;
  cursor: pointer;
}
.catalog__content {
  display: none;
  border-radius: 5px;
  background: rgba(217, 217, 217, 0.1);
  backdrop-filter: blur(3.5px);
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.catalog__content::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  background: #DBFB37;
  border-radius: 50%;
  position: absolute;
  top: 28.5px;
  left: 22.5px;
}
.catalog__content::after {
  content: "Selected";
  font-size: 14px;
  color: #DBFB37;
  position: absolute;
  top: 23px;
  left: 38.5px;
  font-weight: 500;
}
.catalog__content.active {
  display: flex;
}
.catalog__content-img {
  width: 100%;
}
.catalog__content-img img {
  width: 100%;
}
.catalog__content-block {
  padding: 30px;
}
.catalog__content-block p {
  color: #fff;
}
.catalog__content-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 24px 0;
}
.catalog__content-descript {
  opacity: 0.8;
}
.catalog__content .button {
  margin: 0 auto;
}
.catalog__params {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.catalog__params-item {
  display: flex;
  padding: 15px 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.59px;
  border-radius: 4px;
  background: rgba(217, 217, 217, 0.12);
  backdrop-filter: blur(3.5039999485px);
  width: calc((100% - 16px) / 3);
  height: 72px;
}
.catalog__params-type {
  opacity: 0.7;
}
.catalog__params span {
  color: #fff;
}

@media screen and (max-width: 1230px) {
  .catalog__tabs-item strong {
    bottom: 10px;
    left: 10px;
  }
  .catalog__tabs {
    min-width: 240px;
    width: 240px;
  }
}
@media screen and (max-width: 1090px) {
  .catalog__params-item {
    width: calc((100% - 16px) / 2);
  }
}
@media screen and (max-width: 900px) {
  .catalog__params-item {
    width: 100%;
  }
  .catalog__content-block {
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .catalog {
    flex-direction: column;
    margin-top: 30px;
    gap: 20px;
  }
  .catalog__tabs {
    display: flex;
    min-width: 100%;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }
  .catalog__tabs-item {
    background: none;
    border: none;
    width: unset;
    height: unset;
    margin-bottom: 10px;
  }
  .catalog__tabs-item strong {
    color: #fff;
    position: relative;
    bottom: 0;
    left: 0;
    font-size: 20px;
  }
  .catalog__tabs-item img {
    display: none;
  }
  .catalog__tabs-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.4);
    margin: 0 16px;
  }
  .catalog__tabs-item:first-child::before {
    display: none;
  }
  .catalog__title {
    text-align: center;
  }
  .catalog__params-item {
    width: calc((100% - 8px) / 2);
    text-align: center;
    height: unset;
    padding: 10px;
  }
  .catalog__params-item span {
    font-size: 15px;
  }
  .catalog__content-block {
    padding: 24px 10px 30px;
  }
}
.wrapper--trend {
  background: #fff;
}

.trend {
  display: flex;
  align-items: center;
}
.trend__content {
  width: 50%;
  max-width: 566px;
  padding-right: 20px;
}
.trend__img {
  width: 50%;
  max-width: 484px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 70px;
}
.trend__img img:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: -99px;
  border-radius: 5px;
}
.trend__title {
  margin-bottom: 40px;
}
.trend__descript {
  max-width: 490px;
  line-height: 1.2;
  margin: 30px 0;
}
.trend__list {
  display: flex;
  gap: 20px;
}
.trend__item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-top: 10px;
}
.trend__item-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  margin: 0 0 12px 0;
  border-bottom: 1px solid #C5CAD5;
}
.trend__item-title span {
  font-size: 24px;
  margin-left: 4px;
}
.trend__item-text {
  margin: 0;
}

@media screen and (max-width: 1220px) {
  .trend__content {
    width: 45%;
  }
  .trend__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1060px) {
  .trend {
    flex-direction: column;
  }
  .trend__content {
    width: 100%;
    padding-right: 0;
    max-width: 100%;
  }
  .trend__img {
    width: 100%;
    max-width: unset;
    padding-bottom: 0;
    padding-top: 80px;
    justify-content: center;
  }
  .trend__img img:nth-child(2) {
    right: 65%;
    top: 30px;
    bottom: unset;
    left: unset;
  }
}
@media screen and (max-width: 800px) {
  .trend__img {
    justify-content: flex-end;
  }
  .trend__img img:nth-child(2) {
    left: 0;
    right: unset;
  }
}
@media screen and (max-width: 768px) {
  .trend__item-title {
    font-size: 33px;
  }
  .trend__title {
    margin-bottom: 30px;
  }
  .trend__item-title span {
    font-size: 24px;
  }
  .trend__item-text {
    font-size: 15px;
  }
  .trend__img img:first-child {
    width: 70%;
  }
  .trend__img img:last-child {
    width: 45%;
  }
  .trend__descript {
    font-size: 15px;
  }
  .trend__item {
    width: 100%;
    margin-top: 0;
  }
}
.wrapper--construction {
  background: #002746;
  color: #fff;
}

.construction {
  background: #F5FAFE;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  margin: 44px 0;
  padding: 30px 0;
}
.construction__img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.construction__num {
  position: absolute;
  display: flex;
  width: 32px;
  height: 32px;
  transform: rotate(135deg);
  padding: 6px 7px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border: none;
  background: #002746;
}
.construction__num.active {
  border: 1px solid #DBFB37;
}
.construction__num:hover {
  background: #DBFB37;
  cursor: pointer;
}
.construction__num:hover span {
  color: #002746;
}
.construction__num span {
  transform: rotate(-135deg);
  color: #DBFB37;
  font-size: 20px;
  font-weight: 500;
}
.construction__num_1 {
  left: 358px;
  top: 120px;
}
.construction__num_2 {
  left: 480px;
  top: 180px;
}
.construction__num_3 {
  left: 455px;
  top: 285px;
}
.construction__num_4 {
  right: 328px;
  top: 85px;
}
.construction__num_5 {
  right: 305px;
  top: 210px;
}
.construction__wrapp {
  position: absolute;
  border-radius: 5px;
  background: rgba(0, 39, 70, 0.5);
  backdrop-filter: blur(25px);
  width: 260px;
  padding: 14px;
}
.construction__wrapp .tooltip__close {
  display: none;
}
.construction__wrapp strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  font-weight: 400;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.construction__wrapp p {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  color: #fff;
  margin: 0;
}
.construction__wrapp_1 {
  left: 83px;
  top: 50px;
}
.construction__wrapp_2 {
  left: 200px;
  top: 95px;
}
.construction__wrapp_3 {
  left: 170px;
  bottom: 115px;
}
.construction__wrapp_4 {
  right: 380px;
  top: 20px;
}
.construction__wrapp_5 {
  right: 354px;
  top: 150px;
}
.construction__list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.construction__item {
  color: #002746;
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.construction__item::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(135deg);
  border: 1px solid #C5CAD5;
  background: #DBFB37;
  margin: 0 15px 6px;
}
.construction__item:first-child::before {
  display: none;
}
.construction__button-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.construction__button-row .button {
  width: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.construction__button-row .button span {
  margin: 0;
}

.tooltip {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s;
}

.tooltip.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tooltip__close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}

@media screen and (max-width: 1280px) {
  .construction {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .construction__num_1 {
    left: 250px;
  }
  .construction__wrapp_1 {
    left: 0;
  }
  .construction__num_2 {
    left: 380px;
  }
  .construction__wrapp_2 {
    left: 100px;
  }
  .construction__num_3 {
    left: 355px;
  }
  .construction__wrapp_3 {
    left: 70px;
  }
  .construction__num_4 {
    right: 240px;
  }
  .construction__wrapp_4 {
    right: 290px;
  }
  .construction__num_5 {
    right: 205px;
  }
  .construction__wrapp_5 {
    right: 260px;
  }
  .construction__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1074px) {
  .construction {
    width: 100%;
    background: none;
    margin-bottom: 0;
  }
  .construction__img {
    width: 700px;
    background: #fff;
    padding: 50px 0 40px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  .construction__item {
    color: #fff;
  }
  .construction__item:first-child::before {
    display: block;
  }
  .construction__list {
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
  .construction__num_1 {
    left: 120px;
  }
  .construction__num_2 {
    left: 220px;
  }
  .construction__num_3 {
    left: 220px;
  }
  .construction__num_4 {
    right: 120px;
    top: 100px;
  }
  .construction__num_5 {
    right: 90px;
    top: unset;
    bottom: 170px;
  }
  .construction__title {
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .construction__wrapp {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 260px;
    width: 100%;
    max-width: 343px;
  }
  .construction__wrapp .tooltip__close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    transform: rotate(135deg);
    padding: 6px 7px;
    background: #002746;
    border: none;
    right: 14px;
    top: 14px;
  }
  .construction__wrapp .tooltip__close svg {
    transform: rotate(-135deg);
  }
  .construction__wrapp .tooltip__close:hover {
    background: #DBFB37;
  }
  .construction__wrapp .tooltip__close:hover svg path {
    stroke: #002746;
  }
}
@media screen and (max-width: 768px) {
  .construction__img {
    width: 100%;
  }
  .construction__num {
    width: 24px;
    height: 24px;
  }
  .construction__num span {
    font-size: 12px;
  }
  .construction__num_1 {
    left: 15vw;
  }
  .construction__num_2 {
    left: 33vw;
    top: 210px;
  }
  .construction__num_3 {
    left: 30vw;
  }
  .construction__num_4 {
    right: 16vw;
    top: 100px;
  }
  .construction__num_5 {
    right: 15vw;
    top: unset;
    bottom: 170px;
  }
  .construction__item {
    font-size: 24px;
    font-weight: 400;
    color: #F5FAFE;
  }
}
@media screen and (max-width: 690px) {
  .construction__num_2 {
    top: 180px;
  }
  .construction__num_3 {
    top: 280px;
  }
  .construction__button-row {
    flex-direction: column;
  }
  .construction__button-row .button {
    width: 100%;
  }
  .button__whatsapp::after {
    bottom: -30px;
  }
  .construction {
    padding: 0;
    margin-top: 30px;
  }
  .construction__list {
    margin: 30px 0;
  }
  .construction__wrapp p {
    text-align: center;
  }
}
@media screen and (max-width: 615px) {
  .construction__num_2 {
    top: 160px;
  }
  .construction__num_3 {
    top: 230px;
  }
}
@media screen and (max-width: 540px) {
  .construction__num_2 {
    top: 140px;
  }
  .construction__num_3 {
    top: 210px;
  }
  .construction__num_4 {
    top: 85px;
  }
  .construction__num_5 {
    top: 230px;
  }
}
@media screen and (max-width: 480px) {
  .construction__num_1 {
    top: 20vw;
  }
  .construction__num_2 {
    top: 27vw;
  }
  .construction__num_3 {
    top: 40vw;
  }
  .construction__num_4 {
    top: 17vw;
  }
  .construction__num_5 {
    top: 40vw;
  }
}
@media screen and (max-width: 400px) {
  .construction__num_1 {
    top: 23vw;
  }
  .construction__num_2 {
    top: 29vw;
  }
  .construction__num_3 {
    top: 42vw;
  }
  .construction__num_4 {
    top: 19vw;
  }
  .construction__num_5 {
    top: 45vw;
  }
}
@media screen and (max-width: 350px) {
  .construction__num_4 {
    top: 21vw;
  }
}
.wrapper--faq {
  background: #F5FAFE;
}

.faq {
  display: flex;
  gap: 32px;
}
.faq__col {
  width: calc((100% - 16px) / 2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__descript {
  max-width: 580px;
  width: 100%;
  margin: 40px 0;
}
.faq-item {
  border-radius: 5px;
  border: 1px solid #C5CAD5;
  background: #fff;
}
.faq-item.active .faq-content {
  max-height: unset;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.faq-content-inner {
  font-weight: 400;
}
.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
}
.faq-icon {
  font-size: 30px;
  line-height: 0.8;
  font-weight: 300;
  position: relative;
  top: -3px;
}
.faq-question {
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .faq__descript {
    font-size: 15px;
    margin: 30px 0 20px;
  }
  .faq {
    flex-direction: column;
    gap: 20px;
  }
  .faq__col {
    width: 100%;
  }
  .faq-question {
    font-size: 16px;
  }
  .faq-content-inner {
    font-size: 15px;
  }
  .faq-header {
    padding: 16px;
  }
  .faq-item.active .faq-content {
    padding: 0 16px 16px;
  }
}
.wrapper--projects {
  background: #002746;
  color: #fff;
  flex-direction: column;
}

.projects__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}
.projects__arrow {
  display: flex;
  gap: 27px;
}
.projects__swiper {
  height: 690px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 50px;
}
.projects__slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
}
.projects__slide-title {
  position: relative;
  margin-top: auto;
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  font-weight: 400;
  margin-bottom: 20px;
}
.projects__slide-descript {
  position: relative;
  color: #fff;
  margin: 0 0 30px;
  max-width: 390px;
  width: 100%;
  font-weight: 500;
}
.projects__slide .button {
  position: relative;
}

.ticker {
  display: flex;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-size: 46px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.ticker-item .separator {
  border: 1px solid rgba(0, 0, 0, 0);
  color: #DBFB37;
  font-size: 30px;
  position: relative;
  top: -4px;
  margin: 0 15px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker:hover {
  animation-play-state: paused;
}

@media screen and (max-width: 768px) {
  .ticker-item {
    font-size: 33px;
  }
  .ticker-item .highlight {
    font-size: 14px;
  }
  .projects__header {
    margin-bottom: 30px;
  }
  .swiper-arrow {
    width: 24px;
    height: 24px;
  }
  .projects__arrow {
    gap: 15px;
  }
  .projects__slide {
    padding: 20px 16px;
  }
  .projects__slide-title {
    font-size: 38px;
    margin-bottom: 10px;
  }
  .projects__slide-descript {
    margin: 0 0 30px;
  }
  .projects__swiper {
    margin-bottom: 40px;
    height: 560px;
  }
}
.wrapper--about {
  background: #fff;
}

.about__img {
  width: 100%;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
}
.about__img img {
  width: 100%;
}
.about__row {
  display: flex;
  gap: 40px;
}
.about__column {
  width: calc((100% - 20px) / 2);
}
.about__text {
  margin: 0;
  opacity: 0.8;
  line-height: 1.2;
}
.about__title {
  margin-bottom: 44px;
}

@media screen and (max-width: 768px) {
  .about__title {
    margin-bottom: 30px;
  }
  .about__img {
    margin-bottom: 20px;
  }
  .about__row {
    flex-direction: column;
    gap: 20px;
  }
  .about__column {
    width: 100%;
  }
}
.wrapper--footer {
  background: #002746;
  color: #fff;
  padding-bottom: 50px;
}

.footer {
  display: flex;
}
.footer__order {
  width: 50%;
  max-width: 435px;
}
.footer__title {
  margin-bottom: 40px;
}
.footer__button {
  width: 100%;
  max-width: 411px;
}
.footer__button span {
  margin: 0 auto;
}
.footer__links {
  display: flex;
  gap: 70px;
  margin-left: auto;
}
.footer__links-col {
  display: flex;
  flex-direction: column;
}
.footer__links-col a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.18px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer__links-col a:hover {
  text-decoration: underline;
}
.footer__links-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}
.footer__social {
  display: flex;
  gap: 15px;
}
.footer__social a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #fff;
}
.footer__social a:hover {
  transform: scale(1.1);
}
.footer__link-button {
  background: none;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid #DBFB37;
  background: #002746;
  margin-bottom: 40px;
}
.footer__link-button span {
  color: #DBFB37;
}
.footer__link-button:hover {
  background: #DBFB37;
}
.footer__link-button:hover span {
  color: #002746;
}
.footer__link-button:hover svg path {
  stroke: #002746;
}
.footer__other {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.copyright {
  background: #fff;
}
.copyright__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.copyright__flex p {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.18px;
}
.copyright__links {
  display: flex;
  align-items: center;
  gap: 50px;
}
.copyright__links a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.18px;
  color: #002746;
  text-decoration: none;
}
.copyright__links a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 980px) {
  .footer__links {
    gap: 30px;
  }
}
@media screen and (max-width: 920px) {
  .footer {
    flex-direction: column;
    gap: 40px;
  }
  .footer__links {
    width: 100%;
  }
  .footer__order {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer__title {
    margin-bottom: 30px;
  }
  .footer__links {
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer__links-col {
    width: 40%;
  }
  .footer__other img {
    display: none;
  }
  .footer__links-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .footer__links-col a {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .footer__link-button {
    margin-bottom: 0;
  }
  .copyright__flex {
    flex-direction: column;
    height: unset;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
  .copyright__flex p {
    font-size: 15px;
  }
  .copyright__links a {
    font-size: 15px;
    font-weight: 500;
  }
  .copyright {
    padding: 30px 0;
  }
  .copyright__flex p {
    margin: 0;
    opacity: 0.6;
  }
  .copyright__links {
    gap: 20px;
  }
}
* {
  transition: all ease-in-out 0.24s;
}

body {
  font-family: "Inter", sans-serif;
  background: #FEFEFE;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", sans-serif;
}

h1 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

h4 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

body, p, li, span {
  font-size: 16px;
  line-height: 1.4;
  color: #002746;
}

p {
  margin: 20px 0;
}

.descript {
  font-size: clamp(16px, 1.8vw, 18px);
}

.title {
  margin: 20px 0;
}

.mobile-block {
  display: none;
}

label .iti__flag.iti__ae {
  background: url(../img/ae.svg) no-repeat center/100% 100%;
  height: 13px;
  width: 18px;
}

.iti__arrow--up {
  border-bottom: unset !important;
}

.main-anhor {
  position: fixed;
  right: 50px;
  bottom: 120px;
  z-index: 20;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  transform: translateY(100%);
  visibility: hidden;
  transition: all ease-in-out 0.24s;
  opacity: 0;
}
.main-anhor.active {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
}
.main-anhor rect {
  fill: #002746;
  opacity: 0.3;
}
.main-anhor:hover rect {
  fill: #DBFB37;
  opacity: 1;
}

textarea {
  resize: vertical;
}

.cover-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
  transform: translateY(-50%);
  margin-top: 0;
  top: 50%;
}
.swiper-button-next rect, .swiper-button-prev rect {
  fill: #DBFB37;
  fill-opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #DBFB37;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@media screen and (max-width: 870px) {
  .mobile-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mobile-block button {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    max-width: 343px;
    margin-bottom: 10px;
  }
  .descript {
    margin: 10px 0;
  }
  .main-anhor {
    right: 16px;
    bottom: 70px;
  }
  .main-anhor rect {
    fill: #DBFB37;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
  .title {
    margin: 0;
    margin-bottom: 15px;
  }
}