@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

.header-black {
  background-color: #410659;
}

.header {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  z-index: 10;
  background-color: black;
  /* Адаптивные стили */
}
.header__container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  align-items: center;
}
.header .header__logo__text {
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 450px) {
  .header .header__logo__text {
    font-size: 1.2rem;
  }
}
.header .header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
.header .header__burger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
}
.header .header__nav {
  display: flex;
  gap: 2rem;
}
.header .header__nav__link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem;
  transition: color 0.3s ease;
}
.header .header__nav__link:hover {
  color: #ff5722;
}
.header .cta-button {
  background-color: #fff;
  color: black;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.header .cta-button:hover {
  background-color: #222;
  color: #fff;
}
@media (max-width: 768px) {
  .header .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #222;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 50px;
    display: none;
  }
  .header .header__burger {
    display: flex;
  }
  .header .header__burger.active + .header__nav {
    display: flex;
  }
}

.hero-block9217 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #2D46B9, #FF6B6B);
  color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 740px) {
  .hero-block9217 {
    height: 600px;
  }
}
.hero-block9217__background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("/assets/img/69765.jpg") center/cover no-repeat;
  opacity: 0.1;
}
@media (max-width: 740px) {
  .hero-block9217__background {
    background: none;
  }
}
.hero-block9217__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 20px;
}
.hero-block9217__title {
  font-size: 3.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}
.hero-block9217__title:hover {
  color: #FFD166;
}
.hero-block9217__subtitle {
  font-size: 1.3rem;
  margin-top: 15px;
  opacity: 0.95;
}
.hero-block9217__cta {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #FF6B6B;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.hero-block9217__cta:hover {
  background: #2D46B9;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.5);
}
@media (max-width: 1024px) {
  .hero-block9217__title {
    font-size: 2.5rem;
  }
  .hero-block9217__subtitle {
    font-size: 1rem;
  }
  .hero-block9217__cta {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

.about-block9582 {
  background: #FFFFFF;
  color: #333;
  padding: 120px 10%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.about-block9582__content {
  max-width: 1000px;
  position: relative;
  z-index: 2;
  padding: 20px;
}
.about-block9582__title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #2D46B9;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 740px) {
  .about-block9582__title {
    font-size: 1.7rem;
  }
}
.about-block9582__title:hover {
  color: #FF6B6B;
}
.about-block9582__text {
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.85;
}
.about-block9582__image {
  position: relative;
  max-width: 450px;
  margin-top: -50px;
  z-index: 3;
}
.about-block9582__image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: rotate(-3deg);
  transition: transform 0.4s ease-in-out;
}
.about-block9582__image img:hover {
  transform: rotate(3deg) scale(1.05);
}
.about-block9582__decor {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(45, 70, 185, 0.1);
  border-radius: 50%;
  z-index: 1;
}
.about-block9582__decor--left {
  top: 10%;
  left: -5%;
}
.about-block9582__decor--right {
  bottom: 10%;
  right: -5%;
}
@media (max-width: 1024px) {
  .about-block9582__content {
    max-width: 100%;
  }
  .about-block9582__image {
    max-width: 90%;
    margin-top: 20px;
  }
  .about-block9582__decor {
    width: 100px;
    height: 100px;
  }
}

.howto-block5748 {
  background: #FFFFFF;
  color: #333;
  padding: 100px 10%;
  text-align: center;
}
.howto-block5748__title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 60px;
  color: #2D46B9;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 740px) {
  .howto-block5748__title {
    font-size: 1.7rem;
  }
}
.howto-block5748__title:hover {
  color: #FF6B6B;
}
.howto-block5748__steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.howto-block5748__step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  padding: 30px;
  background: #F8F9FA;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.howto-block5748__step:hover {
  transform: translateY(-5px);
}
.howto-block5748__step--reverse {
  flex-direction: row-reverse;
}
.howto-block5748__content {
  max-width: 50%;
  text-align: left;
}
.howto-block5748__step-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2D46B9;
  margin-bottom: 10px;
}
.howto-block5748__text {
  font-size: 1.2rem;
  opacity: 0.85;
  line-height: 1.6;
}
.howto-block5748__icon {
  max-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.howto-block5748__icon img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.howto-block5748__icon img:hover {
  transform: scale(1.1) rotate(5deg);
}
@media (max-width: 1024px) {
  .howto-block5748__step {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
  .howto-block5748__content {
    max-width: 100%;
  }
  .howto-block5748__icon {
    margin-top: 15px;
  }
}

.faq-block3816 {
  background: #FFFFFF;
  color: #333;
  padding: 100px 10%;
  text-align: center;
}
.faq-block3816__title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #2D46B9;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 740px) {
  .faq-block3816__title {
    font-size: 1.7rem;
  }
}
.faq-block3816__title:hover {
  color: #FF6B6B;
}
.faq-block3816__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-block3816__item {
  background: linear-gradient(135deg, #F8F9FA, #E3E8FF);
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.faq-block3816__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.faq-block3816__question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2D46B9;
  text-align: left;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease-in-out;
}
.faq-block3816__question:hover {
  color: #FF6B6B;
}
.faq-block3816__question::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 1.8rem;
  transition: transform 0.3s ease-in-out;
}
.faq-block3816__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  font-size: 1.2rem;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}
.faq-block3816__item.active .faq-block3816__answer {
  max-height: 150px;
  padding-top: 10px;
}
.faq-block3816__item.active .faq-block3816__question::after {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .faq-block3816__grid {
    grid-template-columns: 1fr;
  }
}

.subscribe-block7264 {
  padding: 10px 10%;
  background: #FFFFFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subscribe-block7264__container {
  background: #F8F9FA;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}
.subscribe-block7264__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2D46B9;
  margin-bottom: 15px;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 740px) {
  .subscribe-block7264__title {
    font-size: 1.7rem;
  }
}
.subscribe-block7264__title:hover {
  color: #FF6B6B;
}
.subscribe-block7264__text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}
.subscribe-block7264__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.subscribe-block7264__input {
  padding: 12px;
  border: 2px solid #2D46B9;
  border-radius: 12px;
  font-size: 1rem;
  background: #FFF;
  color: #333;
  transition: border-color 0.3s ease-in-out;
}
.subscribe-block7264__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.subscribe-block7264__input:focus {
  border-color: #FF6B6B;
  outline: none;
}
.subscribe-block7264__btn {
  padding: 12px 20px;
  background: #2D46B9;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.subscribe-block7264__btn:hover {
  background: #FF6B6B;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}
@media (max-width: 768px) {
  .subscribe-block7264__container {
    padding: 40px;
  }
  .subscribe-block7264__title {
    font-size: 2rem;
  }
  .subscribe-block7264__text {
    font-size: 1rem;
  }
  .subscribe-block7264__btn {
    font-size: 1rem;
    padding: 12px 18px;
  }
}

.popup-block7264 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  z-index: 20;
}
.popup-block7264__content {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #333;
}
.popup-block7264__message {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.popup-block7264__close {
  background: #2D46B9;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.popup-block7264__close:hover {
  background: #FF6B6B;
  transform: scale(1.1);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #ff5722;
  padding-bottom: 20px;
  color: #fff;
  background-color: #333;
}
.footer__container {
  display: flex;
  justify-content: space-around;
  width: 80%;
}
@media (max-width: 740px) {
  .footer__container {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__disclaimer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 600px;
  gap: 10px;
}
@media (max-width: 740px) {
  .footer__disclaimer {
    width: 90%;
  }
}
.footer__disclaimer__info {
  font-weight: bold;
}
.footer__disclaimer__age {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
.footer__disclaimer__block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
}
.footer__disclaimer__block__img {
  width: 200px;
  height: 60px;
  border-radius: 20px;
}
@media (max-width: 514px) {
  .footer__disclaimer__block__img {
    width: 100%;
  }
}
.footer__block {
  display: flex;
  gap: 10px;
  color: #fff;
  flex-direction: column;
}
.footer__block__link {
  transition: color 0.3s ease;
}
.footer__block__link:hover {
  color: #ff5722;
}
.footer__rights {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 80%;
  padding: 10px;
}
@media (max-width: 740px) {
  .footer__rights {
    gap: 20px;
    flex-direction: column;
  }
}
.footer__rights__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
}
.footer__rights__links__item {
  transition: color 0.3s ease;
}
.footer__rights__links__item:hover {
  color: #ff5722;
}

.privacy__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
  gap: 20px;
  margin-bottom: 100px;
}
.privacy__container__title {
  font-size: 22px;
  color: #000;
  width: 80%;
}
.privacy__container__text {
  font-size: 16px;
  color: #000;
  width: 80%;
}

.hero-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  font-size: 52px;
  font-weight: 900;
  text-align: center;
  color: #000;
}

@font-face {
  font-family: "Montserrat";
  src: url("/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Montserrat";
}

.main {
  flex: 1 1 auto;
}

.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/*# sourceMappingURL=main.css.map */
