@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.for-pc {
  display: block;
}
@media (max-width: 600px) {
  .for-pc {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #434343;
  border-radius: 10px;
  border: 2px solid #000000;
}
::-webkit-scrollbar-thumb:hover {
  background: #6a6a6a;
}
::-webkit-scrollbar-thumb:active {
  background: #434343;
}

html {
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #434343 #000000;
}

body {
  font-family: "Gilroy", sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 136%;
  letter-spacing: -0.01em;
  background: #000000;
  width: 100%;
  max-width: 100vw;
  scrollbar-width: thin;
  scrollbar-color: #434343 #000000;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  body {
    font-size: 18px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 0;
  font-size: 0;
}

a,
button {
  cursor: pointer;
  font-family: inherit;
  display: block;
  text-decoration: none;
  color: inherit;
  border: none;
  background: transparent;
}

@media (max-width: 768px) {
  section:first-child {
    padding-top: 500px;
  }
}
@media (max-width: 500px) {
  section:first-child {
    padding-top: 300px;
  }
}
@media (min-width: 1024px) {
  section:first-child {
    padding-top: 430px;
  }
}
@media (min-width: 1920px) {
  section:first-child {
    padding-top: 580px;
  }
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: 375px;
}
@media (max-width: 1024px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding: 0 24px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
    padding: 0 40px;
  }
}
@media (min-width: 1368px) {
  .container {
    max-width: 1368px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1920px;
  }
}

.h1 {
  font-weight: 800;
  font-size: 32px;
  line-height: 90%;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media (min-width: 430px) {
  .h1 {
    font-size: 40px;
  }
}
@media (min-width: 1280px) {
  .h1 {
    font-size: 60px;
  }
}
@media (min-width: 1920px) {
  .h1 {
    font-size: 80px;
  }
}

.h2 {
  font-weight: 800;
  font-size: 42px;
  line-height: 90%;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media (min-width: 430px) {
  .h2 {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .h2 {
    font-size: 60px;
  }
}
@media (min-width: 1280px) {
  .h2 {
    font-size: 80px;
  }
}
@media (min-width: 1440px) {
  .h2 {
    font-size: 100px;
  }
}
@media (min-width: 1920px) {
  .h2 {
    font-size: 120px;
  }
}

.h3 {
  text-transform: uppercase;
  font-weight: 1000;
  font-size: 38px;
  line-height: 90%;
  letter-spacing: 1%;
  font-style: italic;
  font-weight: 1000;
}
@media (min-width: 1280px) {
  .h3 {
    font-size: 42px;
  }
}

.link {
  transition: all 350ms ease-in-out;
}
.link:hover,
.link:focus {
  transform: scale(1.02);
  color: #6ad742;
  opacity: 1;
  -webkit-text-fill-color: #6ad742; /* $accent */
}
.link:active {
  transform: scale(0.98);
  color: #33932d;
}

.btn {
  position: relative;
  font-family: inherit;
  width: 100%;
  max-width: 384px;
  padding: 12px 14px;
  border-top: 1px solid rgba(106, 215, 66, 0.6);
  border-bottom: 1px solid rgba(106, 215, 66, 0.6);
  cursor: pointer;
  transition: all 350ms ease-in-out;
}
.btn::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 32px;
  height: 32px;
  pointer-events: none;
  border-bottom: 4px solid #6ad742;
  border-left: 4px solid #6ad742;
  transition: all 350ms ease-in-out;
}
.btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 32px;
  height: 32px;
  pointer-events: none;
  border-bottom: 4px solid #6ad742;
  border-right: 4px solid #6ad742;
  transition: all 350ms ease-in-out;
}
.btn span {
  display: block;
  padding: 18px 30px;
  background: linear-gradient(270deg, #6ad742 0%, #33932d 100%);
  width: 100%;
  font-weight: 800;
  font-size: 26px;
  line-height: 116%;
  letter-spacing: -0.01em;
  text-align: center;
}
.btn span::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 32px;
  height: 32px;
  pointer-events: none;
  border-top: 4px solid #6ad742;
  border-left: 4px solid #6ad742;
  transition: all 350ms ease-in-out;
}
.btn span::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 32px;
  height: 32px;
  pointer-events: none;
  border-top: 4px solid #6ad742;
  border-right: 4px solid #6ad742;
  transition: all 350ms ease-in-out;
}
@media (min-width: 430px) {
  .btn span {
    padding: 20px 34px;
    font-size: 34px;
  }
}
@media (min-width: 1024px) {
  .btn {
    padding: 12px 18px;
  }
}
.btn:hover,
.btn:focus {
  transform: scale(1.01);
}
.btn:hover::before,
.btn:focus::before {
  box-shadow: -3px 3px 4px 1px #6ad742;
}
.btn:hover::after,
.btn:focus::after {
  box-shadow: 3px 3px 4px 1px #6ad742;
}
.btn:hover span::before,
.btn:focus span::before {
  box-shadow: -3px -3px 4px 1px #6ad742;
}
.btn:hover span::after,
.btn:focus span::after {
  box-shadow: 3px -3px 4px 1px #6ad742;
}
.btn:active {
  transform: scale(0.98);
}

.btn-clear {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(270deg, #6ad742 0%, #33932d 100%);
  padding: 20px 34px;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  transition: all 350ms ease-in-out;
}
.btn-clear:hover,
.btn-clear:focus {
  box-shadow:
    0 0 2px 0 #22c55e,
    0 0 12px 0 #22c55e,
    0 0 2px 0 #22c55e;
}
.btn-clear:active {
  box-shadow:
    0 0 2px 0 #33932d,
    0 0 12px 0 #33932d,
    0 0 2px 0 #33932d;
}

.text-grad {
  background: linear-gradient(
    166deg,
    rgba(255, 255, 255, 0.67) 16.15%,
    rgba(255, 255, 255, 0.95) 40.1%,
    rgba(255, 255, 255, 0.74) 73.44%,
    rgba(255, 255, 255, 0.34) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-grad--accent {
  background: linear-gradient(90deg, #6ad742 0%, #33932d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo {
  position: relative;
  z-index: 11;
}

.hidden {
  display: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  line-height: 0;
  font-size: 0;
}

.header {
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 11;
  width: 100%;
  height: 1px;
}
@media (min-width: 1024px) {
  .header {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
  display: none;
  z-index: 10;
  background: #000000;
}
.header__nav.open {
  display: flex;
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    width: auto;
    height: auto;
    top: auto;
    left: auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background: none;
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .header__nav {
    gap: 40px;
  }
}
.header__link {
  font-weight: 600;
  font-size: 18px;
  line-height: 116%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: justify;
  color: #fff;
  opacity: 0.6;
}
.header__lang-block {
  position: relative;
}
.header__lang-btn-current {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.header__lang-btn-current:hover {
  opacity: 1;
}
.header__lang-btn-current svg {
  transition: transform 0.3s ease;
}
.header__lang-btn-current.active svg {
  transform: rotate(180deg);
}
.header__lang-wrapper {
  position: absolute;
  bottom: -100px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}
@media (min-width: 1280px) {
  .header__lang-wrapper {
    gap: 6px;
    bottom: -60px;
  }
}
.header__lang-wrapper.active {
  max-height: 100px;
  opacity: 1;
  pointer-events: auto;
}
.header__lang-wrapper button {
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.header__lang-wrapper button:hover {
  opacity: 1 !important;
}

.menu-btn {
  padding: 4px;
  width: 100%;
  max-width: 30px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
}
@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

.hero {
  padding-top: 500px;
  margin-bottom: 100px;
}
@media (min-width: 1024px) {
  .hero {
    margin-bottom: 160px;
  }
}
@media (min-width: 1280px) {
  .hero {
    margin-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .hero {
    margin-bottom: 120px;
  }
}
.hero {
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  padding-top: 150px;
}

/* UA (дефолт) */
@media (max-width: 1024px) {
  .hero--ua::before {
    background-image: url("./../img/hero-sm_ua.png");
  }
}

@media (max-width: 768px) {
  .hero--ua::before {
    background-position: center top;
  }
}

@media (max-width: 500px) {
  .hero--ua::before {
    background-image: url("./../img/hero-sm_ua.png");
    background-size: contain;
  }
}
@media (min-width: 1024px) {
  .hero--ua::before {
    background-image: url("./../img/hero_ua.webp");
  }
}
@media (min-width: 1280px) {
  .hero--ua::before {
    background-image: url("./../img/hero-xl_ua.webp");
  }
}

/* RU */
@media (max-width: 1024px) {
  .hero--ru::before {
    background-image: url("./../img/hero-sm_ru.png");
  }
}

@media (max-width: 768px) {
  .hero--ru::before {
    background-position: center top;
  }
}

@media (max-width: 500px) {
  .hero--ru::before {
    background-image: url("./../img/hero-sm_ru.png");
    background-size: contain;
  }
}
@media (min-width: 1024px) {
  .hero--ru::before {
    background-image: url("./../img/hero_ru.png");
  }
}
@media (min-width: 1280px) {
  .hero--ru::before {
    background-image: url("./../img/hero-xl_ru.png");
  }
}
@media (min-width: 1920px) {
  .hero::before {
    background-size: cover;
  }
}
.hero .container {
  height: 100%;
  position: relative;
  z-index: 1;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  height: 100%;
}
.hero__title {
  margin-bottom: 16px;
  padding: 10px 0;
  opacity: 0;
}
@media (min-width: 1280px) {
  .hero__title {
    margin-bottom: 24px;
  }
}
@media (min-width: 1920px) {
  .hero__title {
    margin-bottom: 32px;
  }
}
.hero__subtitle {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 24px;
  line-height: 136%;
  letter-spacing: -0.01em;
  text-align: center;
  opacity: 0;
}
.hero__btn {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}
@media (min-width: 430px) {
  .hero__btn {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .hero__btn {
    margin-top: 0;
    margin-bottom: 71px;
  }
}

.mentor {
  position: relative;
  margin-bottom: 120px;
}
.mentor__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.mentor__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .mentor__img-wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 200%;
    left: 0;
    background-image: url("./../img/smoke.webp");
    z-index: 1;
    background-position: center;
    background-size: cover;
  }
}
@media (min-width: 1024px) {
  .mentor__img-wrap {
    position: absolute;
    bottom: 0;
    left: -50px;
    z-index: 0;
    width: 100%;
    max-width: 45vw;
  }
}
@media (min-width: 1280px) {
  .mentor__img-wrap {
    left: 0;
    margin-bottom: -50px;
    max-width: 40vw;
  }
}
@media (min-width: 1920px) {
  .mentor__img-wrap {
    max-width: 900px;
  }
}
.mentor__img-wrap img {
  width: 100%;
}
.mentor__img-wrap::before {
  content: "";
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.mentor__smoke {
  position: absolute;
  bottom: -10%;
  z-index: 1;
}
@media (max-width: 1024px) {
  .mentor__smoke {
    display: none;
  }
}
.mentor__title-block {
  position: relative;
  width: 100%;
  max-width: 668px;
  margin-left: auto;
  z-index: 1;
}
@media (min-width: 1920px) {
  .mentor__title-block {
    max-width: 860px;
  }
}
.mentor__title {
  margin-bottom: 16px;
  padding-top: 20px;
}
@media (min-width: 1024px) {
  .mentor__title {
    margin-bottom: 24px;
    font-size: 80px;
  }
}
.mentor__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 720px;
}
@media (min-width: 1280px) {
  .mentor__subtitle {
    font-size: 20px;
  }
}
.mentor__grid-block {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 668px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background-color: #000;
}
@media (min-width: 430px) {
  .mentor__grid-block {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1920px) {
  .mentor__grid-block {
    max-width: 860px;
  }
}
.mentor__grid-item {
  border: 1px solid #434343;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 430px) {
  .mentor__grid-item {
    padding: 12px;
  }
}
@media (min-width: 1024px) {
  .mentor__grid-item {
    align-items: flex-start;
    text-align: left;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 1366px) {
  .mentor__grid-item {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.mentor__grid-item__title {
  font-weight: 600;
  font-size: 70px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 1024px) {
  .mentor__grid-item__title {
    font-size: 80px;
  }
}
@media (min-width: 1280px) {
  .mentor__grid-item__title {
    font-size: 98px;
  }
}
.mentor__grid-item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 300px;
}

.work {
  margin-bottom: 80px;
}
@media (min-width: 1280px) {
  .work {
    margin-bottom: 120px;
  }
}
.work__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.work__title {
  font-weight: 1000;
  font-size: 40px;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .work__title {
    font-size: 42px;
  }
}
@media (max-width: 500px) {
  .work__title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .work__title {
    font-size: 80px;
  }
}
.work__text {
  font-size: 16px;
  line-height: 130%;
  text-align: center;
}
@media (min-width: 1024px) {
  .work__text {
    font-size: 20px;
  }
}
@media (min-width: 1280px) {
  .work__text {
    font-size: 24px;
  }
}
.work__inner {
  margin-top: 32px;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (max-width: 1024px) {
  .work__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .work__inner {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .work__inner {
    display: flex;
    gap: 0;
  }
}
.work__item {
  max-width: 100%;
  width: 100%;
  position: relative;
  cursor: pointer;
  min-height: 650px;
  height: auto;
  transform-style: preserve-3d;
  perspective: 800px;
}
@media (max-width: 600px) {
  .work__item {
    min-height: 460px;
  }
}
@media (min-width: 1024px) {
  .work__item {
    max-width: 460px;
  }
}
@media (min-width: 1920px) {
  .work__item {
    min-height: 660px;
  }
}
.work__item.active .work__item__up {
  transform: rotateY(180deg);
  opacity: 0;
}
.work__item .work__item__down {
  transform: rotateY(0deg);
  opacity: 1;
}
.work__item__up {
  position: absolute;
  inset: 0;
  background: #000000;
  border: 1px solid #434343;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backface-visibility: hidden;
}
@media (max-width: 768px) {
  .work__item__up {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.work__item__down {
  position: absolute;
  inset: 0;
  background: #000;
  border: 1px solid #434343;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
  .work__item__down {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.work__item__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.work__item-text {
  font-weight: 900;
  line-height: 90%;
  letter-spacing: 1%;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.3;
  font-size: 100px;
}
@media (min-width: 1280px) {
  .work__item-text {
    font-size: 100px;
  }
}
@media (min-width: 1920px) {
  .work__item-text {
    font-size: 300px;
  }
}
.work__item-link {
  background: linear-gradient(90deg, #6ad742 0%, #33932d 100%);
  padding: 20px 34px;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
.work__item-link-top {
  margin-top: auto;
  font-family: "Gilroy", sans-serif;
  font-weight: 800;
  font-size: 35px;
  line-height: 115%;
  letter-spacing: -1%;
  background-color: #404040;
  padding: 20px 34px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .work__item-link-top {
    font-size: 24px;
  }
}
.work__item__down-title {
  font-weight: 900;
  line-height: 90%;
  letter-spacing: 1%;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-top: 10px;
}
@media (min-width: 1280px) {
  .work__item__down-title {
    font-size: 22px;
  }
}
@media (min-width: 1920px) {
  .work__item__down-title {
    font-size: 42px;
  }
}
.work__item__down-text {
  flex: 1;
  font-weight: 700;
  font-size: 13px;
  line-height: 130%;
  text-transform: uppercase;
  overflow-y: auto;
}
@media (min-width: 1280px) {
  .work__item__down-text {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .work__item__down-text {
    font-size: 16px;
  }
}
@media (min-width: 1920px) {
  .work__item__down-text {
    font-size: 16px;
  }
}

.cards .container {
  position: relative;
}

.cards {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background-image: url("./../img/cards-smoke.webp");
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 120px !important;
}
.cards .container {
  display: flex;
  flex-direction: column;
}
.cards__content {
  position: relative;
  width: 100%;
}
.cards__title {
  font-weight: 900;
  font-size: 26px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  color: #3d3d3d;
}
.cards__title .char {
  display: inline-block;
}
@media (min-width: 430px) {
  .cards__title {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .cards__title {
    font-size: 46px;
  }
}
@media (min-width: 1280px) {
  .cards__title {
    font-size: 50px;
  }
}
@media (min-width: 1920px) {
  .cards__title {
    font-size: 50px;
    max-width: 1562px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cards__animated-monet-block {
  position: relative;
  width: 100%;
  height: 450px;
  margin-top: auto;
  flex-shrink: 0;
}
.cards__animated-monet-block img {
  position: absolute;
}
.cards__animated-monet-block img.c-7 {
  top: 0;
  right: 0;
}
.cards__animated-monet-block img.c-6 {
  bottom: 0;
  right: 0;
}
.cards__animated-monet-block img.c-5 {
  bottom: 0;
  right: 320px;
}
.cards__animated-monet-block img.c-4 {
  top: 0;
  right: 360px;
}
.cards__animated-monet-block img.c-3 {
  bottom: 64px;
  right: 660px;
}
.cards__animated-monet-block img.c-2 {
  top: 130px;
  left: 123px;
}
.cards__animated-monet-block img.c-1 {
  bottom: 60px;
  left: 0px;
}

.formats {
  margin-bottom: 100px;
}
@media (min-width: 1024px) {
  .formats {
    margin-bottom: 120px;
  }
}
@media (min-width: 1280px) {
  .formats {
    margin-top: 120px;
  }
}
@media (min-width: 1440px) {
  .formats {
    margin-bottom: 140px;
  }
}
@media (min-width: 1920px) {
  .formats {
    margin-bottom: 200px;
  }
}
@media (min-width: 1024px) {
  .formats__content {
    overflow: hidden;
  }
}
.formats__pagination {
  margin-bottom: 20px;
  display: none;
}
@media (max-width: 1440px) {
  .formats__pagination {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
  }
}
.formats__pagination-btn {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.formats__pagination-btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(157, 255, 0, 0.3);
}
.formats__pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.formats__pagination-btn .arrow-left {
  transform: rotate(180deg);
}
.formats__title {
  margin-bottom: 40px;
  text-align: left;
}
@media (min-width: 1024px) {
  .formats__title {
    text-align: center;
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) {
  .formats__title {
    font-size: 60px;
  }
}
@media (min-width: 1440px) {
  .formats__title {
    margin-bottom: 72px;
  }
}
@media (min-width: 1440px) {
  .formats__slider {
    overflow: visible !important;
  }
}
.formats__list {
  padding-left: 0;
  list-style: none;
}
@media (min-width: 1440px) {
  .formats__list {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 14px;
    transform: none !important;
  }
}
@media (min-width: 1920px) {
  .formats__list {
    gap: 20px;
  }
}
.formats__item {
  padding: 24px 16px;
  background: rgba(217, 217, 217, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: auto;
}
.formats__item.accent {
  background: linear-gradient(90deg, rgba(106, 215, 66, 0.35) 0%, rgba(51, 147, 45, 0.35) 100%);
}
@media (min-width: 1280px) {
  .formats__item {
    gap: 32px;
  }
}
@media (min-width: 1366px) {
  .formats__item {
    padding: 32px 24px;
  }
}
@media (min-width: 1440px) {
  .formats__item {
    gap: 40px;
  }
}
@media (min-width: 1920px) {
  .formats__item {
    padding: 48px 48px 40px;
  }
}
.formats__item-hr {
  border-bottom: 1px solid #6a6a6a;
}
.formats__item-upper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.formats__item-suptitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 102%;
  text-transform: uppercase;
  text-align: right;
}
.formats__item-prefs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1280px) {
  .formats__item-prefs {
    gap: 32px;
  }
}
.formats__item-prefs__block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
.formats__item-text {
  font-weight: 500;
  font-size: 22px;
  line-height: 102%;
  text-transform: uppercase;
}
.formats__item-label {
  position: relative;
  padding: 18px 16px 18px 42px;
  background: rgba(255, 255, 255, 0.1);
}
.formats__item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(270deg, #6ad742 0%, #33932d 100%);
}
@media (min-width: 430px) {
  .formats__item-label {
    padding: 26px 16px 26px 42px;
  }
}
@media (min-width: 1366px) {
  .formats__item-label {
    padding: 34px 16px 34px 42px;
  }
}
.formats__item-lower {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 1280px) {
  .formats__item-lower {
    align-items: center;
  }
}
.formats__item-price__old {
  position: relative;
  font-weight: 500;
  font-size: 24px;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 9px;
  opacity: 0.5;
  max-width: 75px;
}
.formats__item-price__old::before {
  content: "";
  position: absolute;
  top: 45%;
  left: -2px;
  transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background: #fff;
}
@media (min-width: 1920px) {
  .formats__item-price__old {
    font-size: 27px;
  }
}
.formats__item-price {
  font-weight: 800;
  font-size: 58px;
  line-height: 90%;
  text-transform: uppercase;
}
@media (min-width: 1366px) {
  .formats__item-price {
    font-size: 52px;
  }
}
@media (min-width: 1440px) {
  .formats__item-price {
    font-size: 60px;
  }
}
@media (min-width: 1920px) {
  .formats__item-price {
    font-size: 72px;
  }
}

.formats__item-lower a {
  margin-top: 60px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  padding: 30px 0;
}

.carier {
  background-image: url("./../img/carier-bg.png");
  background-position: top left bottom;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (min-width: 1280px) {
  .carier {
    margin-bottom: 120px;
  }
}
.carier__animated-monet-block {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 300px;
}
.carier__animated-monet-block img {
  position: absolute;
}
.carier__animated-monet-block img.car-1 {
  top: 0;
  left: 0;
}
.carier__animated-monet-block img.car-2 {
  bottom: 0;
  left: 40%;
}
.carier__animated-monet-block img.car-3 {
  top: 30px;
  right: 0;
}
.carier__content {
  position: relative;
}
.carier__title-block {
  margin-bottom: 65px;
}
@media (min-width: 430px) {
  .carier__title-block {
    margin-bottom: 75px;
  }
}
@media (min-width: 1024px) {
  .carier__title-block {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.carier__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .carier__subtitle {
    font-weight: 700;
    font-size: 20px;
    margin-top: 25px;
  }
}
@media (min-width: 1280px) {
  .carier__subtitle {
    font-size: 24px;
    margin-top: 28px;
  }
}
.carier__grid {
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .carier__grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    width: 100%;
    max-width: 796px;
  }
}
@media (min-width: 1280px) {
  .carier__grid {
    max-width: 960px;
  }
}
@media (min-width: 1920px) {
  .carier__grid {
    max-width: 1200px;
  }
}
.carier__item {
  min-height: 200px;
}
.carier__item:nth-child(1),
.carier__item:nth-child(2),
.carier__item:nth-child(4),
.carier__item:nth-child(6),
.carier__item:nth-child(8) {
  opacity: 0;
  visibility: hidden;
  cursor: initial;
  padding: 0;
  min-height: 0;
}
@media (min-width: 1024px) {
  .carier__item {
    aspect-ratio: 1/1;
  }
  .carier__item:nth-child(5) .carier__item__up::before,
  .carier__item:nth-child(7) .carier__item__up::before {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    width: 15px;
    height: 15px;
    background-image: url("./../img/plus.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
  }
  .carier__item:nth-child(9) .carier__item__up::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    width: 15px;
    height: 15px;
    background-image: url("./../img/plus.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
  }
}
.carier__item__up {
  background: #000000;
  border: 1px solid #434343;
  padding: 14px;
  position: relative;
  transform-style: preserve-3d;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 75px;
  height: 100%;
  backface-visibility: hidden;
  z-index: 0;
}
.carier__item__block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.carier__item-text {
  font-weight: 800;
  font-size: 16px;
  line-height: 110%;
  text-transform: uppercase;
  color: #d9d9d9;
}
@media (min-width: 1280px) {
  .carier__item-text {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  .carier__item-text {
    font-size: 24px;
  }
}
.carier__item-arrow {
  transform: rotate(-45deg);
  width: 11px;
  height: 11px;
}
@media (min-width: 1280px) {
  .carier__item-arrow {
    width: 13px;
    height: 13px;
  }
}
@media (min-width: 1920px) {
  .carier__item-arrow {
    width: 16px;
    height: 16px;
  }
}
.carier__item-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .carier__item-title {
    font-size: 40px;
  }
}
@media (min-width: 1920px) {
  .carier__item-title {
    font-size: 50px;
  }
}
.carier__item__down {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #434343;
  padding: 14px;
  position: relative;
  transform-style: preserve-3d;
  cursor: pointer;
  display: flex;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 0;
}
.carier__item__down-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.carier__item__down-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .carier__item__down-text {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .carier__item__down-text {
    font-size: 24px;
  }
}

.qa {
  padding-bottom: 140px;
}
.qa__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.qa__title {
  font-weight: 1000;
  font-size: 120px;
  line-height: 90%;
  text-transform: uppercase;
}
.qa__inner {
  display: grid;
  padding: 0;
  list-style: none;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1440px) {
  .qa__inner {
    grid-template-columns: 1fr;
  }
}
.qa__item {
  padding: 24px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qa__item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #6ad742 0%, #33932d 100%);
}
@media (max-width: 768px) {
  .qa__item {
    padding: 24px;
  }
}
.qa__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
}
.qa__heading img {
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
}
.qa__heading-title {
  font-weight: 900;
  font-size: 42px;
  line-height: 90%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  .qa__heading-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .qa__heading-title {
    font-size: 22px;
  }
}
.qa__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  overflow: hidden;
}

.cta {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 600px;
  background-image: url("./../img/cta.webp");
  background-position: center center;
  background-size: 700px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 430px) {
  .cta {
    margin-top: 0;
    margin-bottom: 0;
    min-height: 100vh;
  }
}
@media (min-width: 1024px) {
  .cta {
    background-size: 1124px;
  }
}
@media (min-width: 1280px) {
  .cta {
    background-size: 1349px;
    margin-bottom: 200px;
    background-image: url("./../img/cta-xl.webp");
  }
}
@media (min-width: 1366px) {
  .cta {
    background-size: 1366px;
  }
}
@media (min-width: 1440px) {
  .cta {
    background-size: 1440px;
  }
}
@media (min-width: 1920px) {
  .cta {
    background-size: 1920px;
  }
}
.cta .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: relative;
  width: 100%;
}
@media (min-width: 430px) {
  .cta__content {
    gap: 85px;
  }
}
.cta__title {
  position: absolute;
  top: -200px;
  width: 100%;
  max-width: 1362px;
  font-weight: 700;
  font-size: 32px;
  line-height: 90%;
  text-transform: uppercase;
  text-align: center;
  padding-top: 15px;
}
@media (min-width: 430px) {
  .cta__title {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .cta__title {
    top: -270px;
    font-size: 50px;
  }
}
@media (min-width: 1280px) {
  .cta__title {
    font-size: 64px;
  }
}
.cta__btn {
  position: relative;
  top: 16px;
  border-radius: 100%;
  background: linear-gradient(270deg, #6ad742 0%, #33932d 100%);
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-weight: 900;
  font-size: 18px;
  line-height: 90%;
  text-transform: uppercase;
  text-align: center;
  box-shadow:
    0 39px 57px 0 rgba(0, 0, 0, 0.25),
    0 0 0 0 rgba(157, 255, 0, 0.9);
  animation: heartbeat 1.3s ease-in-out infinite;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cta__btn:hover,
.cta__btn:focus {
  animation-play-state: paused;
  transform: scale(1.08);
  box-shadow:
    0 50px 75px 0 rgba(0, 0, 0, 0.4),
    0 0 50px 30px rgba(157, 255, 0, 0.8);
}
.cta__btn:active {
  animation-play-state: paused;
  transform: scale(0.92);
  box-shadow:
    0 30px 45px 0 rgba(0, 0, 0, 0.2),
    0 0 30px 12px rgba(157, 255, 0, 0.5);
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease;
}
@media (min-width: 430px) {
  .cta__btn {
    top: 17px;
  }
}
@media (min-width: 1024px) {
  .cta__btn {
    top: 28px;
    font-size: 26px;
  }
}
@media (min-width: 1280px) {
  .cta__btn {
    width: 192px;
    height: 192px;
  }
}
@media (min-width: 1440px) {
  .cta__btn {
    width: 205px;
    height: 205px;
  }
}
@media (min-width: 1920px) {
  .cta__btn {
    top: 44px;
    width: 256px;
    height: 256px;
    font-size: 36px;
  }
}
.cta__btn span {
  padding: 10px 0;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
    box-shadow:
      0 39px 57px 0 rgba(0, 0, 0, 0.25),
      0 0 0 0 rgba(157, 255, 0, 0.9);
  }
  11% {
    transform: scale(1.08);
    box-shadow:
      0 50px 75px 0 rgba(0, 0, 0, 0.4),
      0 0 50px 30px rgba(157, 255, 0, 0.8);
  }
  23% {
    transform: scale(0.98);
    box-shadow:
      0 30px 45px 0 rgba(0, 0, 0, 0.2),
      0 0 30px 12px rgba(157, 255, 0, 0.5);
  }
  34% {
    transform: scale(1.04);
    box-shadow:
      0 45px 65px 0 rgba(0, 0, 0, 0.35),
      0 0 60px 25px rgba(157, 255, 0, 0.75);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 39px 57px 0 rgba(0, 0, 0, 0.25),
      0 0 0 0 rgba(157, 255, 0, 0.9);
  }
}
.reviews {
  margin-bottom: 120px;
}
.reviews .container {
  overflow-x: hidden;
}
@media (min-width: 1280px) {
  .reviews .container {
    overflow-x: visible;
  }
}
.reviews__content {
  position: relative;
}
.reviews__title-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 46px;
}
@media (min-width: 1024px) {
  .reviews__title-block {
    margin-bottom: 60px;
  }
}
.reviews__pagination {
  display: none;
}
@media (min-width: 1024px) {
  .reviews__pagination {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
  }
}
.reviews__pagination-btn {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.reviews__pagination-btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(157, 255, 0, 0.3);
}
.reviews__pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.reviews__pagination-btn .arrow-left {
  transform: rotate(180deg);
}
@media (min-width: 1024px) {
  .reviews .swiper__slide {
    width: 556px;
  }
}
@media (min-width: 1280px) {
  .reviews .swiper__slide {
    width: 556px;
  }
}
@media (min-width: 1440px) {
  .reviews .swiper__slide {
    width: 636px;
  }
}
.reviews__slide {
  position: relative;
  padding: 6px;
  border: 1px solid #434343;
  height: 280px;
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 21px;
}
@media (min-width: 430px) {
  .reviews__slide {
    height: 334px;
    grid-template-columns: 200px 1fr;
  }
}
@media (min-width: 1024px) {
  .reviews__slide {
    gap: 20px;
    padding: 17px;
    grid-template-columns: 278px 1fr;
    height: 469px;
  }
}
@media (min-width: 1440px) {
  .reviews__slide {
    height: 500px;
    grid-template-columns: 318px 1fr;
  }
}
.reviews__slide::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 15px;
  height: 15px;
  background-image: url("./../img/plus.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.6;
}
.reviews__image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.reviews__image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.reviews__image-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media (min-width: 1280px) {
  .reviews__image-btn {
    display: none;
  }
}
.reviews__slide-content {
  max-height: 100%;
  overflow-y: auto;
}
@media (min-width: 1280px) {
  .reviews__slide-content {
    /* Приховування скролбара */
  }
  .reviews__slide-content::-webkit-scrollbar {
    display: none;
  }
  .reviews__slide-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}
.reviews__name {
  font-weight: 900;
  font-size: 20px;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 7px;
}
@media (min-width: 430px) {
  .reviews__name {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .reviews__name {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .reviews__name {
    font-size: 42px;
  }
}
.reviews__role {
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .reviews__role {
    font-size: 20px;
    margin-bottom: 34px;
  }
}
@media (min-width: 1440px) {
  .reviews__role {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.reviews__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 90%;
}
@media (min-width: 1024px) {
  .reviews__text {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .reviews__text {
    font-size: 22px;
  }
}

.contacts {
  position: relative;
}
@media (max-width: 1024px) {
  .contacts {
    padding-bottom: 400px;
  }
}
.contacts__bg-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./../img/cloudes.webp");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 918px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 1024px) {
  .contacts__bg-overlay {
    background-size: cover;
    background-position: bottom -100px center;
  }
}
@media (min-width: 1440px) {
  .contacts__bg-overlay {
    background-position: bottom -130px center;
  }
}
@media (min-width: 1920px) {
  .contacts__bg-overlay {
    background-position: bottom -220px center;
    background-size: 1940px 1330px;
  }
}
.contacts__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .contacts__content {
    gap: 46px;
    align-items: center;
    justify-content: space-between;
    min-height: 850px;
  }
}
.contacts__title-block {
  margin-bottom: 32px;
  position: relative;
  z-index: 6;
}
@media (max-width: 1024px) {
  .contacts__title-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .contacts__title-block {
    margin-bottom: 24px;
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1280px) {
  .contacts__title-block {
    margin-bottom: auto;
    margin-left: 0;
    margin-right: 0;
    order: 2;
  }
}
@media (min-width: 1440px) {
  .contacts__title-block {
    max-width: 640px;
  }
}
@media (min-width: 1440px) {
  .contacts__title-block {
    max-width: 670px;
  }
}
.contacts__title {
  margin-bottom: 16px;
  padding: 10px 0;
}
@media (max-width: 1600px) {
  .contacts__title {
    font-size: 80px;
  }
}
@media (max-width: 600px) {
  .contacts__title {
    font-size: 36px;
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .contacts__title {
    text-align: left;
  }
}
@media (min-width: 1600px) {
  .contacts__title {
    font-size: 120px;
  }
}
.contacts__subtitle {
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (min-width: 430px) {
  .contacts__subtitle {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contacts__subtitle {
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .contacts__subtitle {
    text-align: left;
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  .contacts__subtitle {
    font-size: 32px;
  }
}
.contacts__quiz-block {
  position: relative;
  z-index: 6;
  padding: 20px;
}
@media (max-width: 600px) {
  .contacts__quiz-block {
    padding: 0;
  }
}
@media (min-width: 1366px) {
  .contacts__quiz-block {
    padding: 42px;
  }
}
@media (min-width: 1440px) {
  .contacts__quiz-block {
    margin-top: auto;
    margin-bottom: 50px;
  }
}
.contacts__slide {
  position: relative;
  display: none;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  background-color: #000;
  padding: 42px;
  flex-direction: column;
  gap: 24px;
}
.contacts__slide.active {
  display: flex;
}
.contacts__slide-title {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 900;
  font-size: 24px;
  line-height: 90%;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .contacts__slide-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .contacts__slide-title {
    font-size: 43px;
  }
}
.contacts__slide-title span {
  padding: 10px 0;
}
.contacts__questions-block {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.contacts__question {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.contacts__question:hover {
  opacity: 0.8;
}
.contacts__question.checked {
  opacity: 1;
}
.contacts__question::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("./../img/select-bg.webp");
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.contacts__question.checked::before {
  background-image: url("./../img/pin.svg");
}
@media (min-width: 1024px) {
  .contacts__question {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .contacts__question {
    font-size: 24px;
  }
}
.contacts__question {
  position: relative;
}
.contacts__question__progress {
  margin-top: auto;
  position: relative;
  z-index: 1;
  height: 2px;
  border-radius: 10px;
  background: #434343;
  width: 100%;
  transition: width 0.3s ease;
}
.contacts__question__progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(270deg, #6ad742 0%, #33932d 100%);
  box-shadow: 0px 0px 3px 1px #6ad742;
}
.contacts__question__progress.fifty::before {
  width: 50%;
}
.contacts__question__progress.seven-five::before {
  width: 75%;
}
.contacts__question__progress.full::before {
  width: 100%;
}
.contacts__animated-monet-block {
  position: absolute;
  width: 340px;
  height: 340px;
  bottom: -400px;
  right: 0;
  z-index: 2;
}
.contacts__animated-monet-block img {
  position: absolute;
}
.contacts__animated-monet-block img.c-7 {
  top: 0;
  right: 0;
}
.contacts__animated-monet-block img.c-6 {
  bottom: 0;
  right: 0;
}
.contacts__animated-monet-block img.c-5 {
  bottom: 0;
  right: 320px;
}
.contacts__animated-monet-block img.c-4 {
  top: 0;
  right: 360px;
}
@media (max-width: 1024px) {
  .contacts__animated-monet-block {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .contacts__animated-monet-block {
    width: 480px;
    bottom: 120px;
    right: 0;
  }
}
@media (min-width: 1280px) {
  .contacts__animated-monet-block {
    width: 520px;
    height: 440px;
    bottom: 290px;
    right: -30px;
  }
}
@media (min-width: 1440px) {
  .contacts__animated-monet-block {
    bottom: 40px;
    right: 60px;
  }
}
@media (min-width: 1440px) {
  .contacts__animated-monet-block {
    width: 560px;
    height: 480px;
    bottom: 40px;
    right: 60px;
  }
}
@media (min-width: 1920px) {
  .contacts__animated-monet-block {
    bottom: -40px;
  }
}

.contacts__cloud {
  width: 920px;
  height: 398px;
  max-width: none;
}
@media (min-width: 1024px) {
  .contacts__cloud {
    width: 1200px;
    height: 500px;
  }
}
@media (min-width: 1280px) {
  .contacts__cloud {
    width: 1300px;
    height: 640px;
  }
}
@media (min-width: 1440px) {
  .contacts__cloud {
    width: 1500px;
    height: 820px;
  }
}

.monet-g {
  position: absolute;
  top: 110px;
  left: -10px;
  width: 142px;
  height: 142px;
  z-index: 3;
}
@media (min-width: 1280px) {
  .monet-g {
    width: 202px;
    height: 202px;
  }
}

.monet-f-one {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 142px;
  height: 138px;
  z-index: 2;
}
@media (min-width: 1280px) {
  .monet-f-one {
    width: 202px;
    height: 197px;
  }
}

.monet-f-two {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 100px;
  height: 98px;
  z-index: 1;
}
@media (min-width: 1280px) {
  .monet-f-two {
    width: 144px;
    height: 140px;
  }
}
@media (min-width: 1440px) {
  .monet-f-two {
    bottom: 70px;
    right: 140px;
  }
}

.modal-form {
  display: none;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 100dvh;
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 16px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.0117647059);
  backdrop-filter: blur(12px);
}
.modal-form.is-open {
  display: flex;
}
.modal-form__close {
  position: absolute;
  top: 14px;
  right: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  z-index: 10;
  flex-shrink: 0;
}
.modal-form__close:hover {
  opacity: 1;
}
@media (max-width: 1240px) {
  .modal-form__close {
    top: -50px;
    right: 14px;
  }
}
@media (min-width: 1024px) {
  .modal-form {
    padding: 20px;
  }
}
.modal-form__title {
  font-weight: 900;
  font-size: 42px;
  line-height: 110%;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .modal-form__title {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .modal-form__title {
    font-size: 22px;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal-form .form {
  gap: clamp(16px, 2.4vh, 40px);
}
@media (min-width: 1024px) {
  .form {
    gap: 44px;
  }
  .modal-form .form {
    gap: clamp(20px, 2.4vh, 44px);
  }
}
@media (min-width: 1280px) {
  .form {
    gap: 60px;
  }
}
@media (min-width: 1920px) {
  .form {
    gap: 80px;
  }
  .modal-form .form {
    gap: clamp(24px, 2.4vh, 56px);
  }
}
.form-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 350ms ease-in-out;
  font-weight: 600;
  font-size: 18px;
  line-height: 90%;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .form-label {
    font-size: 24px;
  }
}
.form-label-text {
  padding-left: 20px;
}
.form-input {
  width: 100%;
  padding: 10px 20px;
  border: none;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  color: #fff;
  background:
    linear-gradient(#fff, #fff) bottom center/100% 1px no-repeat,
    linear-gradient(#fff, #fff) left bottom/1px 20px no-repeat,
    linear-gradient(#fff, #fff) right bottom/1px 20px no-repeat;
  /* правая */
}
.form-input:hover,
.form-input:focus,
.form-input:active {
  background:
    linear-gradient(#6ad742, #6ad742) bottom center/100% 1px no-repeat,
    linear-gradient(#6ad742, #6ad742) left bottom/1px 20px no-repeat,
    linear-gradient(#6ad742, #6ad742) right bottom/1px 20px no-repeat;
  /* правая */
}
.form-input.textarea {
  resize: none;
  min-height: 70px;
}
.form-text {
  margin-top: 10px;
  font-weight: inherit;
  font-size: 16px;
  line-height: inherit;
  text-transform: uppercase;
}
.form-phone {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0;
  position: relative;
  background:
    linear-gradient(#fff, #fff) bottom center/100% 1px no-repeat,
    linear-gradient(#fff, #fff) left bottom/1px 20px no-repeat,
    linear-gradient(#fff, #fff) right bottom/1px 20px no-repeat;
}
.form-phone:has(.form-input:hover),
.form-phone:has(.form-input:focus) {
  background:
    linear-gradient(#6ad742, #6ad742) bottom center/100% 1px no-repeat,
    linear-gradient(#6ad742, #6ad742) left bottom/1px 20px no-repeat,
    linear-gradient(#6ad742, #6ad742) right bottom/1px 20px no-repeat;
}
.form-phone__select {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  padding: 10px 10px 10px 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.form-phone__selected {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.form-phone__code {
  font-weight: 600;
  font-size: 18px;
  line-height: 90%;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .form-phone__code {
    font-size: 24px;
  }
}
.form-phone__arrow {
  transition: transform 0.2s ease;
  opacity: 0.6;
}
.form-phone__select.open .form-phone__arrow {
  transform: rotate(180deg);
}
.form-phone__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #111;
  border: 1px solid #434343;
  min-width: 120px;
}
.form-phone__option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  line-height: 90%;
}
@media (min-width: 1280px) {
  .form-phone__option {
    font-size: 24px;
  }
}
.form-phone__option:hover {
  background: rgba(255, 255, 255, 0.05);
}
.form-phone__input {
  flex: 1;
  background: transparent !important;
  padding-left: 8px;
}
.form-phone__flag {
  display: block;
}

.form-phone__select.open .form-phone__dropdown {
  display: block;
}

.modal-form .contacts__slide {
  position: relative;
  display: flex;
  max-width: 1140px;
  width: 100%;
  margin: auto;
  padding: 24px;
  gap: clamp(16px, 3vh, 40px);
}
@media (max-width: 600px) {
  .modal-form .contacts__slide {
    padding: 16px;
  }
}

.footer {
  position: relative;
  padding-top: 50px;
  padding-bottom: 20px;
  overflow: hidden;
  background-image:
    radial-gradient(
      circle,
      #050505 0%,
      #040404 40%,
      rgba(4, 4, 4, 0.6) 50%,
      rgba(3, 3, 3, 0) 60%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("./../img/footer.webp");
  background-position:
    bottom -80px center,
    bottom 0 center;
  background-size: 430px, 510px;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .footer {
    background-size: 100%, 920px;
    background-position:
      bottom -90px center,
      bottom -140px center;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding-bottom: 32px;
    background-size: 100%, 1228px;
    background-image:
      radial-gradient(
        circle,
        #050505 0%,
        #040404 10%,
        rgba(4, 4, 4, 0.6) 40%,
        rgba(3, 3, 3, 0) 80%,
        rgba(0, 0, 0, 0) 100%
      ),
      url("./../img/footer.webp");
    background-position:
      bottom -20px center,
      bottom -200px center;
  }
}
@media (min-width: 1280px) {
  .footer {
    background-image:
      radial-gradient(
        circle,
        rgb(5, 5, 5) 0%,
        rgb(4, 4, 4) 79%,
        rgba(4, 4, 4, 0.29) 83%,
        rgba(3, 3, 3, 0) 88%,
        rgba(0, 0, 0, 0) 100%
      ),
      url("./../img/footer.webp");
    background-size:
      100% 2640px,
      1536px;
    background-position:
      bottom 30px center,
      bottom -260px center;
  }
}
@media (min-width: 1366px) {
  .footer {
    padding-bottom: 60px;
    background-size:
      100% 2540px,
      1640px;
    background-position:
      bottom 90px center,
      bottom -260px center;
  }
}
@media (min-width: 1440px) {
  .footer {
    background-size:
      1440px 2540px,
      1728px;
    background-position:
      bottom 120px center,
      bottom -260px center;
  }
}
@media (min-width: 1920px) {
  .footer {
    background-size:
      1920px 4310px,
      2260px;
    background-position:
      bottom 10px center,
      bottom -350px center;
  }
}
.footer .logo {
  z-index: 1;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1280px) {
  .footer__content {
    gap: 42px;
  }
}
.footer__center {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
@media (min-width: 1024px) {
  .footer__center {
    grid-template-columns: 1.2fr 0.7fr 0.5fr 0.7fr;
    justify-content: space-between;
    gap: 40px;
  }
}
@media (min-width: 1280px) {
  .footer__center {
    gap: 70px;
  }
}
.footer__text-block,
.footer__nav,
.footer__social,
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__text {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .footer__text {
    font-size: 18px;
  }
}
@media (min-width: 1366px) {
  .footer__text {
    font-size: 24px;
  }
}
.footer__link {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .footer__link {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .footer__link {
    font-size: 20px;
  }
}
.footer__coppy {
  margin-top: 120px;
  font-weight: 600;
  font-size: 14px;
  line-height: 90%;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__coppy {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  .footer__coppy {
    margin-top: 200px;
  }
}
@media (min-width: 1440px) {
  .footer__coppy {
    margin-top: 230px;
  }
}

.footer__heartbeat-svg {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 120%;
  height: auto;
  animation: svgHeartbeat 1.3s ease-in-out infinite;
  transform-origin: center center;
  pointer-events: none;
}
@media (min-width: 430px) {
  .footer__heartbeat-svg {
    bottom: 18px;
    max-width: 430px;
  }
}
@media (min-width: 768px) {
  .footer__heartbeat-svg {
    bottom: -100px;
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .footer__heartbeat-svg {
    bottom: -170px;
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .footer__heartbeat-svg {
    max-width: 1280px;
  }
}
@media (min-width: 1366px) {
  .footer__heartbeat-svg {
    max-width: 1366px;
  }
}
@media (min-width: 1440px) {
  .footer__heartbeat-svg {
    max-width: 1440px;
  }
}
@media (min-width: 1920px) {
  .footer__heartbeat-svg {
    bottom: -210px;
    max-width: 1920px;
  }
}

@keyframes svgHeartbeat {
  0% {
    transform: translate(-50%, -50%) scaleY(1);
    opacity: 0.7;
  }
  11% {
    transform: translate(-50%, -50%) scaleY(1.15);
    opacity: 1;
  }
  23% {
    transform: translate(-50%, -50%) scaleY(0.9);
    opacity: 0.5;
  }
  34% {
    transform: translate(-50%, -50%) scaleY(1.08);
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scaleY(1);
    opacity: 0.7;
  }
}
.legal {
  padding: 120px 0 80px;
  min-height: 100vh;
  color: #fff;
}

.legal__header {
  margin-bottom: 32px;
}

.legal__title {
  margin-bottom: 16px;
}

.legal__date {
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}
@media (min-width: 1280px) {
  .legal__date {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .legal__date {
    font-size: 24px;
  }
}

.legal__body h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: 0.02em;
  margin: 32px 0 16px;
}
@media (min-width: 1280px) {
  .legal__body h3 {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .legal__body h3 {
    font-size: 42px;
  }
}

.legal__body p {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 12px;
}
@media (min-width: 1280px) {
  .legal__body p {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .legal__body p {
    font-size: 24px;
  }
}

.legal__body ul {
  list-style: disc;
  padding: 0;
  padding-left: 20px;
  margin: 0 0 16px;
}

.legal__body ul li {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 6px;
  background: linear-gradient(
    166deg,
    rgba(255, 255, 255, 0.64) 16.15%,
    rgba(255, 255, 255, 0.7) 40.1%,
    rgba(255, 255, 255, 0.84) 73.44%,
    rgba(255, 255, 255, 0.49) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1280px) {
  .legal__body ul li {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .legal__body ul li {
    font-size: 24px;
  }
}

.legal__body a {
  display: inline-block;
  color: #fff;
  -webkit-text-fill-color: #fff;
  transition: all 350ms ease-in-out;
}

.legal__body a:hover {
  color: #6ad742;
  -webkit-text-fill-color: #6ad742;
}

.cookie-modal {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  max-width: 650px;
  width: 100%;
}

.cookie-modal__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.cookie-modal__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 32px;
}

.cookie-modal__buttons {
  display: flex;
  gap: 12px;
}

.cookie-modal__button {
  width: 100%;
  max-width: 215px;
  transition: all 350ms ease-in-out;
  text-transform: initial;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .cookie-modal__button {
    font-size: 20px;
  }
}

.cookie-modal__button--reject {
  background: transparent;
  color: #fff;
}

.cookie-modal__button--reject:hover {
  color: #6ad742;
}

@media (max-width: 480px) {
  .cookie-modal__buttons {
    gap: 0;
  }
  .cookie-modal__button {
    width: 100%;
  }
} /*# sourceMappingURL=styles.css.map */
