@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Manrope:wght@200..800&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
  border-radius: 0;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ol {
  padding-left: 1.3em;
}

ul {
  padding-left: 1.5em;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

a {
  color: inherit;
}

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

input[type=tel]::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

input[type=tel]::-webkit-textfield-decoration-container {
  display: none;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-ms-clear {
  display: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 77px;
  }
}

body {
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.35;
  font-size: 22px;
  background: #F5F5F5;
  color: #000000;
  font-style: normal;
}

/* Масштабирование только на десктопе (ширина ≥ 1024px) */
@media (min-width: 1024px) {
  body {
    zoom: 0.8;
  }
  @supports not (zoom: 1) {
    body {
      transform: scale(0.8);
      transform-origin: top center;
      width: 125%;
    }
  }
}
@media (max-width: 1100px) {
  body {
    font-size: 20px;
  }
}
@media (max-width: 1023px) {
  body {
    font-size: 18px;
  }
  body.lock {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 14px;
  }
}

/* Utility classes for responsive display */
.only-desktop {
  display: block;
}
@media (max-width: 1023px) {
  .only-desktop {
    display: none;
  }
}

.only-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .only-mobile {
    display: block;
  }
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: clip;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

[class*=__container] {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 1023px) {
  [class*=__container] {
    padding: 0 15px;
  }
}

.header {
  color: #fff;
  padding: 47px 0 0px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 102;
  -webkit-transition: padding 0.3s ease 0s;
  transition: padding 0.3s ease 0s;
}
.header.show {
  padding: 25px 0;
  background-color: #000000;
}
@media (max-width: 1023px) {
  .header {
    padding: 30px 0 0px;
  }
  .header.show {
    padding: 25px 0;
  }
  .header:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    pointer-events: none;
    opacity: 0;
    top: 0;
    visibility: hidden;
    right: -100%;
    z-index: 7;
    background-color: #000000;
  }
  body.lock .header.show {
    padding: 30px 0 0;
  }
  body.lock .header:after {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    right: 0;
  }
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 226px;
          flex: 0 0 226px;
  width: 226px;
  position: relative;
  position: relative;
  z-index: 8;
}
.header__logo img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__logo img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%) scale(0);
          transform: translate(0, -50%) scale(0);
  width: 60px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1023px) {
  body.lock .header__logo img:first-child {
    -webkit-transform: scale(0);
            transform: scale(0);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
  body.lock .header__logo img:nth-child(2) {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, -50%) scale(1);
            transform: translate(0, -50%) scale(1);
  }
}
@media (max-width: 767px) {
  .header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    width: 160px;
  }
  .header__logo img:nth-child(2) {
    width: 42px;
  }
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
.header__menu {
  position: relative;
  font-size: 20px;
  font-weight: 400;
}
.header__menu p {
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1023px) {
  .header__menu {
    position: static;
  }
  .header__menu p {
    position: relative;
    z-index: 8;
  }
  .header__menu p:after {
    content: "";
    position: absolute;
    right: 0;
    top: 100%;
    width: 0;
    height: 0;
    border: 1px solid #fff;
    pointer-events: none;
    border-width: 1px 1px 0 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__menu p.active {
    color: #DBFFA9;
  }
  .header__menu p.active:after {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    width: 75px;
    height: 63px;
  }
}
@media (any-hover: hover) {
  .header__menu:hover p {
    color: #DBFFA9;
  }
}
.header__btn {
  padding: 5px 18px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  background-color: #fff;
  color: #000000;
  text-transform: uppercase;
  border-radius: 17px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1023px) {
  .header__btn {
    display: none;
  }
}
@media (any-hover: hover) {
  .header__btn:hover {
    background-color: #DBFFA9;
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  left: 0;
  top: 100%;
  width: 310px;
  padding: 40px 15px 25px;
  background-color: transparent;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header__menu:hover .menu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
}
.menu:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 61px;
  border: 1px solid #fff;
  pointer-events: none;
  border-width: 1px 0 0 1px;
}
@media (max-width: 1023px) {
  .menu {
    left: auto;
    right: -100%;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 6;
    background-color: #000000;
    padding: 122px 15px 45px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .menu:before {
    display: none;
  }
  .menu.open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    right: 0;
  }
}
.menu .header__btn {
  display: none;
}
@media (max-width: 1023px) {
  .menu .header__btn {
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 14px;
    width: 100%;
    border-radius: 52px;
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.menu__list a {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .menu__list a:hover {
    color: #DBFFA9;
  }
}
@media (max-width: 1023px) {
  .menu__list {
    padding-right: 11px;
    gap: 24px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
  }
  .menu__list a {
    font-size: 24px;
  }
}

.main {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 155px 0;
}
@media (max-height: 780px) and (min-width: 1023.1px) {
  .main {
    padding: 120px 0 60px;
  }
}
@media (max-width: 1023px) {
  .main {
    padding: 130px 0 110px;
  }
}
@media (max-width: 1023px) and (max-height: 680px) {
  .main {
    padding-bottom: 55px;
  }
}
.main__dec {
  position: absolute;
  top: 0;
  right: calc(250px + (100vw - 1380px) / 2);
  pointer-events: none;
  z-index: 0;
  width: 398px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
@media (max-width: 1380px) {
  .main__dec {
    right: 10%;
  }
}
@media (max-width: 1160px) {
  .main__dec {
    right: 5%;
  }
}
@media (max-width: 1023px) {
  .main__dec {
    width: 329px;
    right: -92px;
  }
}
.main__dec img {
  max-height: 90%;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .main__dec img {
    max-height: 88%;
  }
}
.main__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.main__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.main__container {
  position: relative;
  z-index: 2;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .main__container {
    gap: 20px;
  }
}
.main__container h1 {
  font-family: "Figtree", sans-serif;
  font-size: 82px;
  font-weight: 700;
  color: #DBFFA9;
  line-height: 1.1951219512;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .main__container h1 {
    font-size: 52px;
  }
}
@media (max-width: 500px) {
  .main__container h1 {
    font-size: 38px;
  }
}
.main__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (max-width: 767px) {
  .main__wrapper {
    gap: 12px;
  }
}
.main__subtitle {
  font-family: "Figtree", sans-serif;
  font-size: 50px;
  font-weight: 300;
  max-width: 682px;
}
@media (max-width: 767px) {
  .main__subtitle {
    font-size: 36px;
  }
}
@media (max-width: 500px) {
  .main__subtitle {
    font-size: 26px;
  }
}
.main__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.main__wrapper,
.main__bottom {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
@media (max-width: 1023px) {
  .main__bottom {
    display: block;
  }
}
.main__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1160px) {
  .main__buttons {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .main__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .main__buttons {
    grid-template-columns: 1fr;
  }
}
.main__btn {
  padding: 16px 37px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #DBFFA9;
  background-color: transparent;
  border: 1px solid #DBFFA9;
  border-radius: 52px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1160px) {
  .main__btn {
    padding: 12px 30px;
    font-weight: 700;
    font-size: 18px;
  }
}
@media (any-hover: hover) {
  .main__btn:hover {
    border-color: #fff;
    background-color: #fff;
    color: #000000;
  }
}
.main__button {
  padding: 16px 37px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  background: #DBFFA9;
  border-radius: 52px;
  text-transform: uppercase;
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1160px) {
  .main__button {
    padding: 13px 30px;
    font-weight: 700;
    font-size: 18px;
  }
}
@media (any-hover: hover) {
  .main__button:hover {
    background-color: #fff;
  }
}
.main__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  text-align: right;
  font-size: 20px;
  font-weight: 200;
}
@media (max-width: 1160px) {
  .main__right {
    font-size: 18px;
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .main__right {
    display: none;
  }
}
.main__right p {
  max-width: 307px;
}
.main__right img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 23px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.title {
  font-family: "Figtree", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .title {
    font-size: 36px;
  }
}
@media (max-width: 500px) {
  .title {
    font-size: 28px;
  }
}

.title-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1023px) {
  .title-top {
    display: block;
  }
}

.title-top .title {
  max-width: 682px;
  -ms-flex-item-align: center;
      align-self: center;
}

.title-top .link {
  white-space: nowrap;
}

.link {
  padding: 17px 38px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  background-color: #DBFFA9;
  border-radius: 52px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .link:hover {
    background-color: #000000;
    color: #fff;
  }
}
.link.only-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .link {
    font-size: 18px;
    font-weight: 700;
    padding: 12.5px;
  }
  .title-top .link {
    display: none;
  }
  .link.only-mobile {
    display: block;
  }
}

.benefits {
  padding: 155px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-height: 780px) and (min-width: 1023.1px) {
  .benefits {
    padding: 120px 0;
  }
}
@media (max-width: 1100px) {
  .benefits {
    padding: 120px 0;
  }
}
@media (max-width: 1023px) {
  .benefits {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .benefits {
    padding: 70px 0;
  }
}
.benefits__container {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1023px) {
  .benefits__container {
    gap: 45px;
  }
  .benefits__container .title-top {
    margin-bottom: 5px;
  }
}
.benefits__cards {
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media (max-width: 1023px) {
  .benefits__cards {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    row-gap: 20px;
  }
}
.benefits__card {
  min-height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1023px) {
  .benefits__card {
    display: block;
    min-height: 0;
  }
}
.benefits__wrapper {
  background-color: #E8E8E8;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding: 30px 40px 35px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  min-height: 370px;
}
.benefits__wrapper p {
  font-size: 36px;
  font-weight: 700;
  min-height: 97px;
}
.benefits__wrapper img {
  margin-top: auto;
  width: 50px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-filter: grayscale(1) invert(1);
          filter: grayscale(1) invert(1);
}
@media (max-width: 1023px) {
  .benefits__wrapper {
    padding: 20px;
    padding-top: 22px;
    gap: 15px;
    min-height: 242px;
    border-radius: 10px;
  }
  .benefits__wrapper img {
    width: 27px;
  }
  .benefits__wrapper p {
    font-size: 20px;
    min-height: 51px;
  }
}
@media (any-hover: hover) {
  .benefits__wrapper:hover {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    background-color: #000000;
    color: #fff;
  }
  .benefits__wrapper:hover img {
    width: 78px;
    -webkit-filter: grayscale(0) invert(0);
            filter: grayscale(0) invert(0);
  }
}

.for {
  position: relative;
  padding: 155px 0 140px;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .for {
    padding: 120px 0;
  }
}
@media (max-width: 1023px) {
  .for {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .for {
    padding: 70px 0 130px;
  }
}
.for__bg {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  height: 100%;
  z-index: 0;
  width: 100%;
  background: #e9eaec;
  overflow: hidden;
}
.for__bg-wrap {
  position: absolute;
  right: 0;
  top: 35%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.for__bg-wrap:before {
  content: "";
  left: -25px;
  width: 40px;
  height: 100%;
  position: absolute;
  background-color: #e9eaec;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.for__bg-wrap img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1300px) {
  .for__bg-wrap {
    top: 45%;
    -webkit-transform: translate(58%, -50%);
            transform: translate(58%, -50%);
  }
  .for__bg-wrap img {
    width: 881px;
  }
}
.for__container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 90px;
}
@media (max-width: 1023px) {
  .for__container {
    gap: 75px;
  }
}
.for__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 686px;
  padding-left: 40px;
}
@media (max-width: 1200px) {
  .for__items {
    padding-left: 0;
  }
}
@media (max-width: 1023px) {
  .for__items {
    gap: 32px;
  }
}
.for__item {
  min-height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1023px) {
  .for__item {
    min-height: 115px;
  }
}
.for__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.for__wrapper img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
  width: 48px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1023px) {
  .for__wrapper {
    gap: 28px;
  }
}
.for__wrapper p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
@media (max-width: 500px) {
  .for__wrapper p {
    gap: 5px;
  }
}
.for__wrapper p span {
  max-width: 392px;
}
@media (max-width: 1023px) {
  .for__wrapper p span {
    max-width: 100%;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}
@media (max-width: 500px) {
  .for__wrapper p span {
    max-width: 210px;
  }
}
.for__wrapper p b {
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 1100px) {
  .for__wrapper p b {
    font-size: 32px;
  }
}
@media (max-width: 1023px) {
  .for__wrapper p b {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .for__wrapper p b {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .for__wrapper p b {
    font-size: 20px;
    max-width: 200px;
    min-height: auto;
  }
}

.partners {
  padding: 90px 0 105px;
  background-color: #000000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1023.1px) {
  .partners {
    min-height: 100vh;
  }
}
@media (max-width: 1023px) {
  .partners {
    padding: 70px 0;
  }
}
.partners__container {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1023px) {
  .partners__container {
    gap: 40px;
  }
}
.partners__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 1032px;
  width: 85%;
  margin-left: auto;
  position: relative;
}
@media (max-width: 1023px) {
  .partners__items {
    margin: 0;
    padding-bottom: 54px;
    padding-top: 30px;
    width: 100%;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 45px;
  }
}
.partners__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
@media (max-width: 1023px) {
  .partners__item {
    position: relative;
    z-index: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
  .partners__item img {
    height: 70px;
  }
}
@media (max-width: 767px) {
  .partners__item {
    font-size: 18px;
  }
}
.partners__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.partners__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 2;
  padding-top: 120px;
}
.partners__wrapper .link {
  margin-top: 200px;
  color: #000000;
}
@media (any-hover: hover) {
  .partners__wrapper .link:hover {
    background-color: #fff;
    color: #000000;
  }
}
@media (max-width: 1023px) {
  .partners__wrapper {
    padding-top: 0;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .partners__wrapper .link {
    margin-top: 57px;
  }
}
.partners__title {
  font-family: "Figtree", sans-serif;
  font-size: 82px;
  font-weight: 700;
  color: #DBFFA9;
  line-height: 1.1951219512;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .partners__title {
    font-size: 52px;
  }
}
@media (max-width: 500px) {
  .partners__title {
    font-size: 38px;
  }
}
.partners__subtitle {
  font-family: "Figtree", sans-serif;
  font-size: 50px;
  font-weight: 300;
  max-width: 682px;
}
@media (max-width: 767px) {
  .partners__subtitle {
    font-size: 36px;
  }
}
@media (max-width: 500px) {
  .partners__subtitle {
    font-size: 26px;
  }
}
.partners__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 74%;
  height: 100%;
  display: none;
}
@media (max-width: 1023px) {
  .partners__img {
    display: block;
  }
}
.partners__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.partners__image {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  height: 100%;
  width: 85%;
  max-width: 1032px;
}
@media (max-width: 1023px) {
  .partners__image {
    display: none;
  }
}
.partners__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.support {
  background-color: #D4D4D4;
  padding: 150px 0 100px;
}
@media (max-width: 1100px) {
  .support {
    padding: 120px 0 90px;
  }
}
@media (max-width: 1023px) {
  .support {
    padding: 100px 0 130px;
  }
}
@media (max-width: 767px) {
  .support {
    padding: 70px 0 130px;
  }
}
.support__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 115px;
  position: relative;
}
.support__container .title-top {
  position: relative;
  z-index: 2;
}
@media (max-width: 1100px) {
  .support__container {
    gap: 100px;
  }
}
@media (max-width: 1023px) {
  .support__container {
    gap: 54px;
  }
  .support__container .link {
    position: relative;
    z-index: 2;
    margin-top: 190px;
  }
}
.support__dec {
  position: absolute;
  right: 0;
  top: -80px;
  pointer-events: none;
  max-width: 100%;
}
.support__dec img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
@media (max-width: 1160px) {
  .support__dec {
    right: -100px;
  }
}
@media (max-width: 1023px) {
  .support__dec {
    top: auto;
    right: auto;
    width: 80%;
    max-width: 400px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%) rotate(6deg);
            transform: translate(-50%, 0%) rotate(6deg);
    bottom: -130px;
  }
}
@media (max-width: 500px) {
  .support__dec {
    bottom: -80px;
  }
}
.support__items {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 686px;
  padding-left: 40px;
}
@media (max-width: 1200px) {
  .support__items {
    padding-left: 0;
  }
}
@media (max-width: 1023px) {
  .support__items {
    gap: 15px;
    margin-bottom: 200px;
  }
}
@media (max-width: 500px) {
  .support__items {
    margin-bottom: 150px;
  }
}
.support__item {
  min-height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1023px) {
  .support__item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 91px;
  }
}
.support__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.support__wrapper img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
  width: 48px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1023px) {
  .support__wrapper {
    gap: 28px;
  }
}
.support__wrapper p {
  max-width: 500px;
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .support__wrapper p {
    font-size: 32px;
  }
}
@media (max-width: 1023px) {
  .support__wrapper p {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .support__wrapper p {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .support__wrapper p {
    font-size: 20px;
    max-width: 210px;
  }
}

.premium {
  padding: 155px 0;
  color: #fff;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
}
@media (max-height: 780px) and (min-width: 1023.1px) {
  .premium {
    padding: 120px 0;
  }
}
@media (max-width: 1100px) {
  .premium {
    padding: 120px 0;
  }
}
@media (max-width: 1023px) {
  .premium {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .premium {
    padding: 70px 0;
  }
}
.premium__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.premium__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 500px) {
  .premium__bg img {
    -o-object-position: 30% 50%;
       object-position: 30% 50%;
  }
}
.premium__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  z-index: 2;
}
.premium__wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.premium__wrapper .main__buttons {
  margin-top: auto;
  padding-top: 78px;
}
@media (max-width: 1023px) {
  .premium__wrapper .main__buttons {
    margin-top: 0;
  }
}
@media (max-width: 1023px) {
  .premium__wrapper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .premium__wrapper {
    gap: 12px;
  }
}
.premium__title {
  font-family: "Figtree", sans-serif;
  font-size: 82px;
  font-weight: 700;
  color: #DBFFA9;
  line-height: 1.1951219512;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .premium__title {
    font-size: 52px;
  }
}
@media (max-width: 500px) {
  .premium__title {
    font-size: 38px;
  }
}
.premium__subtitle {
  font-family: "Figtree", sans-serif;
  font-size: 50px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .premium__subtitle {
    font-size: 36px;
  }
}
@media (max-width: 500px) {
  .premium__subtitle {
    font-size: 26px;
  }
}

.footer {
  background-color: #000000;
  color: #fff;
  padding: 105px 0 32px;
}
@media (max-width: 1120px) {
  .footer {
    padding: 90px 0 60px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 60px 0 50px;
  }
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  row-gap: 78px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 138px;
          flex: 0 0 138px;
  width: 138px;
}
.footer__logo img {
  width: 100%;
}
@media (max-width: 1120px) {
  .footer__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 165px;
            flex: 0 0 165px;
    width: 165px;
  }
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1200px) {
  .footer__list {
    gap: 20px;
  }
}
@media (max-width: 1120px) {
  .footer__list {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 12px;
  }
}
@media (max-width: 767px) {
  .footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.footer__list a {
  font-size: 14px;
  font-weight: 300;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .footer__list a {
    font-size: 20px;
  }
}
@media (any-hover: hover) {
  .footer__list a:hover {
    color: #DBFFA9;
  }
}
.footer__copyrights {
  font-size: 20px;
  font-weight: 400;
  color: #575757;
}

.contact {
  background-color: #fff;
  padding: 100px 0;
}
@media (max-width: 1023px) {
  .contact {
    padding: 50px 0 70px;
  }
}
@media (max-width: 500px) {
  .contact {
    padding-top: 40px;
  }
}
.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  position: relative;
}
@media (max-width: 1023px) {
  .contact__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }
}
.contact__ball {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 10%;
  pointer-events: none;
  width: 538px;
  z-index: 0;
}
.contact__ball img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1160px) {
  .contact__ball {
    right: -5%;
  }
}
@media (max-width: 1023px) {
  .contact__ball {
    position: static;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}
.contact__body {
  position: relative;
  z-index: 2;
  max-width: 566px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  width: 100%;
}
@media (max-width: 1023px) {
  .contact__body {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .contact__body {
    gap: 45px;
  }
}
.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .contact__form {
    gap: 18px;
  }
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
}
@media (max-width: 767px) {
  .contact__row {
    gap: 13px;
  }
}
.contact__input {
  position: relative;
}
.contact__input input,
.contact__input select {
  padding: 25px 0 5px;
  width: 100%;
  min-width: 0;
  font-size: inherit;
  border-bottom: 1px solid #000000;
  border-top: none;
  border-left: none;
  border-right: none;
  -webkit-transition: border-color 0.3s ease 0s;
  transition: border-color 0.3s ease 0s;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.contact__input select {
  padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000000' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px 8px;
}
.contact__input input::-webkit-input-placeholder {
  opacity: 0;
}
.contact__input input::-moz-placeholder {
  opacity: 0;
}
.contact__input input:-ms-input-placeholder {
  opacity: 0;
}
.contact__input input::-ms-input-placeholder {
  opacity: 0;
}
.contact__input input::placeholder {
  opacity: 0;
}
.contact__input input:not(:-moz-placeholder) ~ span {
  font-size: 0.7em;
  top: 5px;
}
.contact__input input:not(:-ms-input-placeholder) ~ span {
  font-size: 0.7em;
  top: 5px;
}
.contact__input input:focus ~ span,
.contact__input input:not(:placeholder-shown) ~ span,
.contact__input select:focus ~ span,
.contact__input select:valid:not([value=""]) ~ span,
.contact__input select.has-value ~ span {
  font-size: 0.7em;
  top: 5px;
}
.contact__input input:user-invalid,
.contact__input select:user-invalid {
  border-color: #FC0000;
}
.contact__input input:user-invalid ~ span,
.contact__input select:user-invalid ~ span {
  color: #FC0000;
}
@media (max-width: 767px) {
  .contact__input input,
  .contact__input select {
    padding: 15px 0 5px;
  }
  .contact__input input:not(:-moz-placeholder) ~ span,
  .contact__input select:valid:not([value=""]) ~ span {
    top: 2px;
  }
  .contact__input input:not(:-ms-input-placeholder) ~ span {
    top: 2px;
  }
  .contact__input input:focus ~ span,
  .contact__input input:not(:placeholder-shown) ~ span,
  .contact__input select:focus ~ span,
  .contact__input select:valid:not([value=""]) ~ span,
  .contact__input select.has-value ~ span {
    top: 2px;
  }
}
.contact__input span {
  position: absolute;
  top: 15px;
  left: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact__method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .contact__method {
    gap: 6px;
  }
}
.contact__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.contact__radios label {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 133px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 18px;
  border: 1px solid #000000;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 500px) {
  .contact__radios label {
    font-size: 11px;
    max-width: 100px;
  }
}
.contact__radios label input {
  display: none;
}
.contact__radios label:has(input:user-invalid) {
  border-color: #FC0000;
  color: #FC0000;
}
.contact__radios label:has(input:checked) {
  background-color: #000000;
  color: #fff;
}
.contact__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media (max-width: 767px) {
  .contact__links {
    margin-top: 30px;
  }
}
.contact__links a {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .contact__links a:hover {
    color: #a1e049;
  }
}
@media (max-width: 767px) {
  .contact__links a {
    font-size: 14px;
  }
  .contact__links a:first-child {
    max-width: 160px;
  }
}
.contact__btn {
  padding: 18.5px 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background-color: #000000;
  border-radius: 46px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .contact__btn {
    border-radius: 52px;
    padding: 12.5px 10px;
    font-weight: 700;
    margin-top: 14px;
  }
}
@media (any-hover: hover) {
  .contact__btn:hover {
    color: #000000;
    background-color: #DBFFA9;
  }
}

.contact__right {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media (max-width: 1023px) {
  .contact__right {
    margin-top: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contact__logo {
  width: 32px;
}
.contact__logo img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  .contact__logo {
    width: 21px;
  }
}
.contact__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: right;
}
.contact__contacts p {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 400;
}
.contact__contacts a {
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .contact__contacts a:hover {
    color: #DBFFA9;
  }
}
@media (max-width: 1023px) {
  .contact__contacts {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .contact__contacts {
    gap: 7px;
  }
  .contact__contacts p {
    font-size: 19px;
    margin-bottom: 8px;
  }
}
.contact__email {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .contact__email:hover {
    color: #DBFFA9;
  }
}
@media (max-width: 767px) {
  .contact__email {
    font-size: 19px;
  }
}

.players {
  padding: 155px 0 145px;
}
@media (max-height: 780px) and (min-width: 1023.1px) {
  .players {
    padding: 120px 0;
  }
}
@media (max-width: 1100px) {
  .players {
    padding: 120px 0;
  }
}
@media (max-width: 1023px) {
  .players {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .players {
    padding: 70px 0;
  }
}
.players__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .players__container {
    gap: 45px;
  }
  .players__container .link {
    margin-top: 15px;
  }
}

.players {
  overflow: hidden;
  position: relative;
}
.players .title-top {
  position: relative;
  z-index: 2;
}
.players__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.players__slider {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}
.players__slide {
  background-color: #D9D9D9;
  border-radius: 20px;
  padding: 40px 32px;
  height: auto;
  display: grid;
  grid-template-columns: 46fr 54fr;
  gap: 25px;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  opacity: 1;
}
.players__slide.swiper-slide-active {
  opacity: 1;
}
@media (max-width: 1023px) {
  .players__slide {
    padding: 22px;
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: 0 !important;
    height: 650px;
    opacity: 1;
  }
  .players__slide.swiper-slide-active {
    opacity: 1;
  }
}
.players__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  font-size: 12px;
  font-weight: 300;
}
@media (max-width: 1023px) {
  .players__wrapper {
    gap: 20px;
    height: 100%;
  }
}
.players__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  font-size: 18px;
  font-weight: 200;
}
.players__top p {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .players__top {
    gap: 3px;
    font-size: 14px;
  }
  .players__top p {
    font-size: 18px;
  }
}
.players__image {
  height: 445px;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .players__image {
    border-radius: 0;
    height: 300px;
    flex: none;
    margin-top: auto;
    overflow: hidden;
    max-height: 100%;
    width: 100%; /* Убираем расширение */
    margin-left: 0; /* Убираем отрицательный марджин */
    margin-right: 0; /* Убираем отрицательный марджин */
    align-self: stretch;
  }
}
.players__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Это уже есть, но проверьте */
}
@media (max-width: 1023px) {
  .players__image img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}

.players__bottom {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 30px;
}
@media (max-width: 1100px) {
  .players__bottom {
    padding: 0 90px;
  }
}
@media (max-width: 1023px) {
  .players__bottom {
    padding: 0;
  }
}
.players__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .players__pagination {
    gap: 6px;
    margin-top: 20px;
  }
}
.players__pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 16px;
  height: 16px;
  background-color: #D9D9D9;
  border-radius: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  opacity: 1;
}
.players__pagination .swiper-pagination-bullet-active {
  background-color: #000000;
  border-radius: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
@media (max-width: 1023px) {
  .players__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10px;
            flex: 0 0 10px;
  }
}
.players__navigation {
  /* Убираем абсолютное позиционирование */
  /* position: absolute; */
  /* right: 0; */
  /* top: 50%; */
  /* -webkit-transform: translateY(-50%); */
  /* transform: translateY(-50%); */

  /* Используем flex для горизонтального расположения */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;

  /* Помещаем кнопки вправо */
  margin-left: auto;
  padding-right: 25px; /* Добавляем отступ, чтобы кнопки не прилипали к краю */
}

/* Оставляем медиазапрос для мобильных устройств */
@media (max-width: 1023px) {
  .players__navigation {
    display: none;
  }
}
.players__prev {
  background: #D9D9D9;
  width: 60px;
  height: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.players__prev img {
  width: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (any-hover: hover) {
  .players__prev:hover {
    background-color: #DBFFA9;
  }
}
.players__next {
  background-color: #D9D9D9;
  width: 60px;
  height: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.players__next img {
  width: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (any-hover: hover) {
  .players__next:hover {
    background-color: #DBFFA9;
  }
}

.catalog {
  background-color: #000000;
  color: #fff;
  padding: 155px 0;
}
@media (max-height: 780px) and (min-width: 1023.1px) {
  .catalog {
    padding: 120px 0;
  }
}
@media (max-width: 1100px) {
  .catalog {
    padding: 120px 0;
  }
}
@media (max-width: 1023px) {
  .catalog {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .catalog {
    padding: 70px 0;
  }
}
.catalog__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.catalog__container .title {
  margin-bottom: 16px;
}
@media (max-width: 1023px) {
  .catalog__container {
    gap: 25px;
    padding-left: 0;
    padding-right: 0;
  }
  .catalog__container .title {
    margin-bottom: 25px;
  }
}
.catalog__bottom {
  height: 61px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.catalog__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: absolute;
  left: 50%;
}
@media (max-width: 1023px) {
  .catalog__pagination {
    gap: 6px;
  }
}
.catalog__pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  opacity: 1;
}
.catalog__pagination .swiper-pagination-bullet-active {
  background-color: #DBFFA9;
  border-radius: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
@media (max-width: 1023px) {
  .catalog__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10px;
            flex: 0 0 10px;
  }
}
.catalog__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .catalog__navigation {
    display: none;
  }
}
.catalog__prev {
  background: #1A1A1A;
  width: 60px;
  height: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.catalog__prev img {
  width: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .catalog__prev:hover img {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
}
.catalog__next {
  background-color: #1A1A1A;
  width: 60px;
  height: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.catalog__next img {
  width: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .catalog__next:hover {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
}

.catalog__slider {
  overflow: visible;
  max-width: 100%;
  min-width: 0;
}
.catalog__slide {
  /* aspect-ratio: 1; */
  border-radius: 0;
  overflow: hidden;
  position: relative;
  flex-direction: column;
  display: flex;
  padding: 0;
  margin: auto 0;
  transition: opacity 0.3s ease 0s;
  opacity: 1;
  transform: translateZ(0);
  /* Добавляем height: auto для адаптивной высоты */
  height: auto;
  /* Или min-height, если нужно минимальное значение */
  min-height: 300px; /* Пример, можно изменить */
.catalog__slide.swiper-slide-active {
  opacity: 1;
  z-index: 3;
}
@media (max-width: 767px) {
  .catalog__slide {
    opacity: 1;
    padding: 0;
    border-radius: 0;
  }
  .catalog__slide.swiper-slide-active {
    opacity: 1;
  }
}
.catalog__image {
  position: relative;
  width: 100%;
  /* Убираем flex: 1, чтобы высота определялась контентом */
  /* flex: 1; */
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateZ(0);
  /* Добавляем max-height, чтобы изображения не были слишком большими */
  max-height: 650px; /* Или другое значение */
  /* Или min-height, если нужно минимальное значение */
  min-height: 300px;
}
.catalog__image img {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  height: 100%;
  /* УБЕРИТЕ ЭТО: object-fit: cover; */
  /* ОСТАВЬТЕ ЭТО: */
  object-fit: contain;
}
.catalog__wrapper {
  position: relative;
  z-index: 2;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 15px;
  gap: 5px;
  border-radius: 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  min-height: auto;
  pointer-events: none;
}
.catalog__wrapper p {
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}
.catalog__wrapper p:first-child {
  font-size: 18px;
  font-weight: 500;
}
.catalog__wrapper p:last-child {
  font-size: 18px;
  font-weight: 500;
  color: #888888; /* ИЛИ #999999 */
}
@media (max-width: 767px) {
  .catalog__wrapper {
    padding: 12px;
    font-size: 14px;
  }
  .catalog__wrapper p {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .catalog__wrapper p:first-child {
    font-size: 14px;
  }
  .catalog__wrapper p:last-child {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .catalog__wrapper {
    padding: 10px;
    font-size: 12px;
  }
  .catalog__wrapper p {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .catalog__wrapper p:first-child {
    font-size: 12px;
  }
  .catalog__wrapper p:last-child {
    font-size: 12px;
  }
}

/* Modal styles */
.modal {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 99999 !important;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
  pointer-events: none;
}
.modal.active {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  pointer-events: auto;
}
.modal__overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 99998;
}
.modal__content {
  position: relative;
  background: #fff;
  border-radius: 52px;
  padding: 60px 80px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  z-index: 99999 !important;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  transition: transform 0.3s ease 0s;
  margin: auto;
}
.modal.active .modal__content {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
@media (max-width: 767px) {
  .modal__content {
    padding: 40px 30px;
    border-radius: 46px;
    max-width: 90%;
  }
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  color: #000000;
  transition: color 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (any-hover: hover) {
  .modal__close:hover {
    color: #DBFFA9;
  }
}
@media (max-width: 767px) {
  .modal__close {
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    font-size: 28px;
  }
}
.modal__message {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .modal__message {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .modal__message {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.modal__btn {
  padding: 16px 50px;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  background: #DBFFA9;
  border-radius: 52px;
  text-transform: uppercase;
  color: #000000;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .modal__btn:hover {
    background: #000000;
    color: #DBFFA9;
  }
}
@media (max-width: 767px) {
  .modal__btn {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 46px;
  }
}
.modal__content--catalogue {
  width: min(1200px, 90vw);
  max-width: none;
  padding: 60px 70px;
}
@media (max-width: 767px) {
  .modal__content--catalogue {
    padding: 40px 30px;
    width: 95%;
  }
}
.modal__title {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .modal__title {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
.modal__catalogues {
  max-height: 60vh;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (max-width: 767px) {
  .modal__catalogues {
    max-height: 50vh;
    gap: 12px;
  }
}
.modal__catalogue-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 0;
}
.modal__catalogue-item:first-child {
  padding-top: 0;
}
.modal__catalogue-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.modal__catalogue-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  text-decoration: none;
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .modal__catalogue-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 18px;
  }
}
@media (any-hover: hover) {
  .modal__catalogue-link:hover {
    color: #DBFFA9;
  }
  .modal__catalogue-link:hover .modal__catalogue-name {
    text-decoration: underline;
  }
}
.modal__catalogue-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .modal__catalogue-details {
    text-align: left;
  }
}
.modal__catalogue-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .modal__catalogue-name {
    font-size: 16px;
  }
}
.modal__catalogue-info {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 767px) {
  .modal__catalogue-info {
    font-size: 12px;
  }
}
.modal__catalogue-preview {
  position: relative;
  width: 140px;
  height: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .modal__catalogue-preview {
    width: 120px;
    height: 100px;
    border-radius: 20px;
  }
}
.modal__catalogue-preview--placeholder img {
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.75;
}
.modal__catalogue-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  background: #fff;
  padding: 6px;
}
.modal__catalogue-preview-loading {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  text-align: center;
}
.modal__loading {
  text-align: center;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  padding: 40px 0;
}
@media (max-width: 767px) {
  .modal__loading {
    font-size: 16px;
    padding: 30px 0;
  }
}

.contact__input--phone input {
  padding-left: 18px;
}
.contact__input--phone .contact__phone-prefix {
  position: absolute;
  bottom: 5px;
  left: 0;
  font-size: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.contact__input--phone:focus-within .contact__phone-prefix,
.contact__input--phone.has-value .contact__phone-prefix {
  opacity: 1;
}
}