@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

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

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

button {
  cursor: pointer;
  background: transparent;
}

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

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

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  font-family: "Inter", sans-serif;
  background: #0D0D0D;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #0D0D0D;
}

[class*=__container] {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

.title {
  font-size: clamp(34px, 7vw, 84px);
  color: #FFF;
  font-weight: 700;
  text-transform: uppercase;
}

[class*=__text] {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.btn {
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  border-radius: 15px;
  background: linear-gradient(270deg, #C9339F 0%, #6100F3 100%);
  padding: 20px 50px;
}

.p-60 {
  padding: 60px 0;
}

.pb-60 {
  padding-bottom: 60px;
}

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

section {
  scroll-margin-top: 260px;
}

.footer {
  padding-bottom: 20px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__text {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 767px) {
  .footer .header__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 500px;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 30px;
  background: #2A2A2A;
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookies__title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.cookies__text a {
  color: #fff;
  text-decoration: underline;
}
.cookies__btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.cookies__btn {
  width: 100%;
}
.cookies__btn:last-child {
  color: #FFF;
  border: 2px solid #FFF;
  background: transparent;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #0D0D0D;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.hero {
  position: relative;
  padding-bottom: 320px;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero {
    padding-bottom: 60px;
  }
}
.hero__title {
  color: #FFF;
  font-size: clamp(38px, 10vw, 140px);
  font-weight: 700;
  text-transform: uppercase;
}
.hero__img {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
@media (max-width: 991px) {
  .hero__img {
    position: static;
  }
  .hero__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero__img {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.hero .policy__content {
  max-width: 350px;
}
@media (max-width: 991px) {
  .hero .policy__content {
    margin-bottom: 30px;
  }
}

.about__row {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .about__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.about__column {
  max-width: 470px;
  margin-right: 150px;
}
@media (max-width: 1439px) {
  .about__column {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .about__column {
    max-width: 100%;
  }
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 575px) {
  .about__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about__card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 30px;
  border: 2px solid #C9339F;
}
.about__name {
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
}

.choose__row {
  display: flex;
  align-items: center;
  gap: 90px;
}
@media (max-width: 1023px) {
  .choose__row {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .choose__row {
    flex-direction: column;
  }
}
.choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .choose__grid {
    gap: 15px;
  }
}
.choose__card {
  width: 200px;
}
.choose__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.choose__card {
  position: relative;
}
.choose__card a {
  position: absolute;
  inset: 0;
}
@media (max-width: 575px) {
  .choose__card {
    max-width: 200px;
    width: 100%;
  }
}

.faq .policy__content {
  max-width: 865px;
  margin: 0 auto;
}
.faq__item {
  display: flex;
  padding: 20px;
  border-radius: 22px;
  border: 2px solid #C9339F;
  cursor: pointer;
  align-items: flex-start;
}
.faq__item.active .faq__text {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}
.faq__item.active .faq__arrow img {
  transform: rotate(180deg);
}
.faq__body {
  flex: 1;
}
.faq__name {
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
}
.faq__text {
  color: #FFF;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.faq__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 15px;
}
.faq__arrow img {
  transition: transform 0.3s ease;
}

.contact__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .contact__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .contact__img {
    width: 287px;
    height: 352px;
  }
  .contact__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.contact__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__address {
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  padding: 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 15px;
  background: linear-gradient(270deg, #C9339F 0%, #6100F3 100%);
}

.product__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.product__row {
  display: flex;
  align-items: center;
  gap: 90px;
}
@media (max-width: 991px) {
  .product__row {
    flex-direction: column;
    gap: 30px;
  }
}
.product__arrow {
  margin-left: auto;
}
@media (max-width: 991px) {
  .product__arrow {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .product .contact__subimg {
    width: -moz-fit-content;
    width: fit-content;
  }
  .product .contact__subimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.product .contact__content {
  align-items: center;
}

.policy {
  margin: 70px 0 0;
}
@media (max-width: 575px) {
  .policy {
    margin: 107px 0 0;
  }
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.policy__content_center {
  align-items: center;
}