* {
  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: "SF Pro Display";
  background: #F7F7F5;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  font-size: clamp(28px, 4vw, 44px);
  color: #000;
  font-weight: 700;
  line-height: 120%;
  border-radius: 38.095px 38.095px 38.095px 0;
  background: #D2BBFF;
  padding: 30px 70px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .title {
    padding: 30px 15px;
  }
}

[class*=__text] {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.btn {
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 15.873px;
  letter-spacing: 0.2px;
  border-radius: 79.365px;
  background: #4208B3;
  padding: 14px 60px;
}

.p-80 {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-80 {
    padding: 40px 0;
  }
}

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

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

@font-face {
  font-family: "SF Pro Display";
  src: url(/wp-content/themes/aeryndorfrost/assets/fonts/SFProDisplay-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url(/wp-content/themes/aeryndorfrost/assets/fonts/SFProDisplay-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url(/wp-content/themes/aeryndorfrost/assets/fonts/SFProDisplay-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #D2BBFF;
}
.header__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.2px;
}

@media (max-width: 767px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #000;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 767px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #D2BBFF;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 104px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
  }
}
.menu__link {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.footer {
  background: #D2BBFF;
  padding: 40px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer__address a,
.footer__address p {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 15.873px;
  letter-spacing: 0.16px;
  border-radius: 79px;
  background: #4208B3;
  padding: 14px 30px;
}
@media (max-width: 575px) {
  .footer__address a,
  .footer__address p {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer__address {
    flex-direction: column;
  }
}
.footer__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .footer__row {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin: 0;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.footer__menu a {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
@media (max-width: 575px) {
  .footer__menu {
    gap: 10px;
  }
}
@media (max-width: 429px) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer__text {
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  border-radius: 15.873px;
  background: #D2BBFF;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #1F392C;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.32px;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 429px) {
  .cookies__btns {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 429px) {
  .cookies__btn {
    width: 100%;
  }
}

.hero__row {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1005px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .hero__row {
    flex-direction: column;
  }
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 991px) {
  .hero__column {
    flex-direction: column-reverse;
  }
}
.hero__title {
  border-radius: 38.095px 38.095px 0 38.095px;
  background: #5816DA;
  padding: 20px;
  color: #fff;
  max-width: 417px;
  width: 100%;
  text-align: center;
}
@media (max-width: 575px) {
  .hero__title {
    padding: 20px 15px;
  }
}
.hero__text span {
  color: #4208B3;
}
.hero__text_top {
  max-width: 567px;
}
.hero__text_sub {
  max-width: 438px;
}
.hero__title-sub {
  padding: 20px 70px;
  margin-left: auto;
  text-align: center;
}
@media (max-width: 575px) {
  .hero__title-sub {
    padding: 20px 15px;
  }
}
.hero__subtitle {
  border-radius: 38.095px 38.095px 0 38.095px;
  background: #220065;
  padding: 20px 70px;
  color: #fff;
  text-align: center;
}
@media (max-width: 575px) {
  .hero__subtitle {
    padding: 20px 15px;
  }
}
.hero__subrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .hero__subrow {
    flex-direction: column;
    gap: 20px;
  }
}
.hero__link {
  margin: 0 auto;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .about__content {
    gap: 20px;
  }
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .about__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about__column {
  border-radius: 19.048px;
  border: 0.794px solid #E9E9E9;
  background: #FFF;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.about__num {
  color: #4208B3;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
}
.about__name {
  color: #000;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
}
.about__text_bg {
  border-radius: 25px;
  background: #F7F7F5;
  padding: 20px;
}

.choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .choose__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 15.873px;
  background: #FFF;
  padding: 20px;
}
.choose__card:nth-child(even) {
  background: #D2BBFF;
}
.choose__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.choose__name {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 25.397px;
}

.categories {
  position: relative;
}
.categories__content {
  align-items: center;
}
.categories__title {
  background: #D9D2F8;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 20px;
}
.categories__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.categories__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid #D0D0D0;
  position: relative;
}
.categories__item:first-child {
  border-top: 1px solid #D0D0D0;
}
@media (max-width: 767px) {
  .categories__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.categories__left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
}
.categories__number {
  border-radius: 79px;
  border: 1px solid #4208B3;
  width: 62px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4208B3;
  font-size: 19.048px;
  font-weight: 600;
  flex-shrink: 0;
}
.categories__name {
  color: #A4A4A4;
  font-size: 28px;
  font-weight: 500;
}
.categories__image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  flex-shrink: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .categories__image {
    position: static;
    transform: none;
  }
}
.categories__right {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 380px;
}
@media (max-width: 767px) {
  .categories__right {
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.categories__text {
  color: #A4A4A4;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.categories__dots {
  display: grid;
  grid-template-columns: repeat(2, 12px);
  gap: 4px;
  flex-shrink: 0;
}
.categories__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8B7BBF;
}
.categories__dots span:nth-child(4) {
  background: #C4BBE4;
}

.faq__content {
  align-items: center;
}
.faq__title {
  background: #D9D2F8;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 20px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.faq__item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  transition: background 0.3s, border-radius 0.3s;
}
.faq__item.active {
  background: #D9D2F8;
}
.faq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.faq__name {
  font-size: 18px;
  font-weight: 500;
  color: #1F392C;
}
.faq__toggle {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.faq__toggle span {
  position: absolute;
  background: #888;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}
.faq__toggle span:first-child {
  width: 18px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__toggle span:last-child {
  width: 2px;
  height: 18px;
  transform: translate(-50%, -50%);
}
.faq__item.active .faq__toggle span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}
.faq__item.active .faq__body {
  max-height: 300px;
  margin-top: 14px;
}
.faq__text {
  font-size: 15px;
  line-height: 150%;
  color: #4A4A4A;
}
@media (max-width: 768px) {
  .faq {
    padding: 50px 0;
  }
  .faq__content {
    gap: 30px;
    padding: 0 16px;
  }
  .faq__name {
    font-size: 16px;
  }
  .faq__item {
    padding: 16px 18px;
  }
  .faq__text {
    font-size: 14px;
  }
}

.catalog__content {
  align-items: center;
}
.catalog__grid {
  display: flex;
  gap: 28px;
}
@media (max-width: 767px) {
  .catalog__grid {
    flex-direction: column;
  }
}
.catalog__card {
  display: flex;
  flex-direction: column;
  gap: 31px;
}
.catalog__card:first-child {
  margin-top: 226px;
}
@media (max-width: 767px) {
  .catalog__card:first-child {
    margin: 0;
  }
}
.catalog__card:last-child {
  margin-top: 170px;
}
@media (max-width: 767px) {
  .catalog__card:last-child {
    margin: 0;
  }
}
.catalog__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.policy {
  margin: 92px 0 0;
}
@media (max-width: 767px) {
  .policy {
    margin: 100px 0 0;
  }
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.policy__title {
  margin: 0 auto;
}
.policy__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.policy ul li {
  margin-left: 20px;
  list-style: disc;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}