/* Header */
.header {
  background: rgba(177, 22, 45, 1);
}

.header__wrapper {
  padding: 6px clamp(16px, 26px, 40px);
}

.header__inner {
  max-width: 1443px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: inline-block;
  background: url("../assets/images/Logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 168px;
  min-height: 68px;
}

.nav {
  max-width: 683px;
  display: flex;
  align-items: center;
  gap: 175px;
}

.nav__items {
  display: flex;
  gap: 40px;
}

.nav__item:last-child {
  display: flex;
  align-items: center;
  padding-left: 74px;
}

.nav__link {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
  color: rgba(254, 233, 245, 1);
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background-color: rgba(255, 184, 53, 1);
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: rgba(255, 184, 53, 1);
}

.nav__link.active {
  color: rgba(255, 184, 53, 1);
}

.nav__link.active::after {
  width: 100%;
  background-color: rgba(255, 184, 53, 1);
}

.signUp__icon {
  background-image: url("../assets/images/signUp_icon.png");
  width: 19px;
  height: 17px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mob__nav {
  display: flex;
  align-items: center;
  gap: 5px;
  display: none;
  pointer-events: none;
}

/* Intro-section */
.intro {
  background-image: url("../assets/images/block1_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  min-height: 973px;
  position: relative;
  transition: background-position 0.3s ease;
}

.intro__wrapper {
  padding: 0 clamp(16px, 5vw, 40px);
}

.container {
  max-width: 1443px;
  margin: 0 auto;
}

.intro__content {
  padding-top: 227px;
}

.intro__title {
  max-width: 795px;
  font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-size: 56px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  line-height: 62px;
}

.intro__title span {
  color: rgb(255, 184, 53);
}

.intro__text {
  max-width: 786px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: rgb(255, 255, 255);
  margin-top: 34px;
  line-height: 43px;
}

.intro__text span {
  font-weight: 600;
  color: rgb(255, 237, 189);
}

.btn {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: rgb(255, 255, 255);
  border-radius: 37px;
  box-shadow: 0 4px 14px -7px rgba(255, 0, 0, 0.88);
  background: linear-gradient(149deg, #ee4540 0%, #ad0b0b 100%);
  padding: 15px 72px;
  border: none;
  cursor: pointer;
  margin-top: 52px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(25deg);
  pointer-events: none;
  transition: all 0.5s ease;
}

.btn:hover::before {
  left: 125%;
  transition: all 0.75s ease-in-out;
}

.btn__link {
  text-decoration: none;
}

.top__img {
  position: absolute;
  top: 66%;
  right: 226px;
  z-index: 10;
}

.seeMore__btn {
  position: absolute;
  top: 82%;
  left: 50%;
  transform: translateX(-50%);
  background: url("../assets/images/SeeMore_btn.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 90px;
  min-height: 75px;
  z-index: 11;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.seeMore__btn:hover {
  animation: pulse 1.1s infinite;
  transform: translateX(-50%);
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

.decor {
  position: absolute;
  top: 75%;
  left: 119px;
  background: url("../assets/images/decoration/Decor.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 104px;
  min-height: 340px;
  z-index: 12;
}

/* Traffic-section */

.traffic {
  background-image: url("../assets/images/block2_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  min-height: 973px;
  position: relative;
  transition: background-position 0.3s ease;
}

.traffic__wrapper {
  padding: 0 clamp(16px, 5vw, 40px);
}

.traffic__title {
  max-width: 949px;
  font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  color: rgb(255, 255, 255);
  line-height: 62px;
}

.traffic__title span {
  color: rgb(88, 214, 243);
}

.traffic__text {
  max-width: 1149px;
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  text-align: center;
  font-weight: 400;
  margin-top: 35px;
  color: rgb(255, 255, 255);
  line-height: 42px;
}

.traffic__text span {
  font-weight: 600;
  color: rgb(180, 241, 255);
}

.traffic__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 57px;
}

.traffic__advantages {
  max-width: 1442px;
  margin-top: 95px;
  display: flex;
  gap: 41px;
}

.advantages__item {
  position: relative;
  border-radius: 0 55px 55px 55px;
  backdrop-filter: blur(20px);
  box-shadow: inset 0 10px 10px 0 rgba(255, 255, 255, 0.15),
    inset 0 -10px 10px 0 rgba(254, 81, 150, 0.15);
  background: linear-gradient(
    90deg,
    rgba(251, 131, 131, 0.1) 0%,
    rgba(254, 81, 150, 0.1) 100%
  );
  padding: 0 55px 40px;
}

.advantages__item.second {
  border-radius: 55px;
}

.advantages__item.third {
  border-radius: 55px 0 55px 55px;
}

.advantages__icon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 13;
  background: url("../assets/images/advantages_icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 150px;
  min-height: 158px;
}

.advantages__icon.second {
  background: url("../assets/images/advantages_icon1.png");
  min-width: 166px;
  min-height: 158px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.advantages__icon.third {
  background: url("../assets/images/advantages_icon2.png");
  min-width: 158px;
  min-height: 158px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.advantages__title {
  max-width: 268px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: rgb(255, 255, 255);
  padding-top: 170px;
  margin: 0 auto;
}

.advantages__text {
  max-width: 375px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin: 20px auto;
}

.advantages__decor {
  position: absolute;
  top: 22%;
  right: 145px;
  background: url(../assets/images/decoration/Decor1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 116px;
  min-height: 116px;
  z-index: 14;
}

/* Popular section */

.popular {
  width: 100%;
  min-height: 837px;
  position: relative;
  background: url("../assets/images/Group26.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 12%);
  top: -214px;
  z-index: 15;
}

.popular::before {
  content: "";
  width: 100%;
  min-height: 769px;
  position: absolute;
  background: linear-gradient(180deg, #b0162d 0%, #831525 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 18%);
  top: 68px;
  left: 0;
  z-index: 16;
}

.popular__wrapper {
  position: relative;
  padding: 0 clamp(16px, 5vw, 40px);
  z-index: 20;
}

.popular__title {
  font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-size: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.popular__title span {
  color: #ffb835;
}

.popular__content {
  padding-top: 232px;
}

.games__video_container {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
}

.video__item__img,
.video__item_pics {
  border-radius: 25px;
}

.video__item_link {
  max-width: 458px;
  border-radius: 25px;
  background: #510a31;
  position: relative;
  transition: 0.2s linear;
}

.video__item_link:hover {
  transform: scale(1.1) !important;
}

.video__item_link:hover::before {
  transform: translate(-39%, -50%) scale(1.5);
}

.video__item_link::before {
  content: "";
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-39%, -50%);
  background: url("../assets/images/Play_icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 44px;
  height: 49px;
  transition: 0.2s linear;
}

.video__item_title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  text-align: center;
  margin: 29px 0;
}

.video__item_link {
  text-decoration: none;
  display: inline-block;
}

.popular__decor {
  position: absolute;
  top: 29%;
  left: 85px;
  background: url(../assets/images/decoration/Decor2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 114px;
  min-height: 114px;
  z-index: 20;
}

/* Partners section */

.partners {
  background: rgb(45, 19, 44);
  margin-top: -214px;
  padding: 99px 0 141px;
  position: relative;
}

.partners__wrapper {
  padding: 0 clamp(16px, 5vw, 40px);
}

.partners__title {
  font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-size: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.partners__logo_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 70px;
}

.partners__logo_item {
  background: url("../assets/images/partners_images/1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 291px;
  height: 62px;
}

.partners__logo_item.second {
  background: url("../assets/images/partners_images/2.png");
  width: 302px;
  height: 302px;
}

.partners__logo_item.third {
  background: url("../assets/images/partners_images/3.png");
  width: 298px;
  height: 88px;
}

.partners__logo_item.fourth {
  background: url("../assets/images/partners_images/4.png");
  width: 248px;
  height: 166px;
}

.partners__decor {
  position: absolute;
  top: 13%;
  right: 159px;
  background: url(../assets/images/decoration/Decor3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 166px;
  min-height: 112px;
  z-index: 21;
}

/* Question section */

.question {
  background-image: linear-gradient(
      rgba(45, 19, 44, 0.88),
      rgba(45, 19, 44, 0.88)
    ),
    url("../assets/images/block3_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% center;
  width: 100%;
  min-height: 1250px;
  margin-top: -10px;
  position: relative;
  transition: background-position 0.3s ease;
  overflow: hidden;
}

.question__svg {
  position: absolute;
  bottom: -160px;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.question__wrapper {
  padding: 0 20px clamp(16px, 5vw, 40px);
}

.question__content {
  padding-top: 150px;
}

.question__title {
  font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-size: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.question__title span {
  color: #ffb835;
}

.question__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 67px;
  gap: 40px;
}

.question__item {
  width: 100%;
  max-width: 735px;
  margin: 0 auto;
}

.question__item__header {
  max-width: 735px;
  width: 100%;
  background: #5b0e39;
  border-radius: 0 25px 25px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 41px;
  cursor: pointer;
}

.question__item__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #fff;
}

.question__item_icon {
  background: url("../assets/images/active__icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.question__item__content {
  width: 100%;
  max-width: 735px;
  backdrop-filter: blur(20px);
  box-shadow: inset 0 10px 10px 0 rgba(255, 255, 255, 0.15),
    inset 0 -10px 10px 0 rgba(254, 81, 150, 0.15);
  background: linear-gradient(
    90deg,
    rgba(251, 131, 131, 0.1) 0%,
    rgba(254, 81, 150, 0.1) 100%
  );
  padding: 60px 30px 60px;
  border-radius: 0 0 25px 25px;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transition: all 0.7s ease;
}

/* Активный класс */
.question__item.active .question__item__content {
  max-height: 500px;
  padding-top: 60px;
  padding-bottom: 60px;
  opacity: 1;
}

.question__item.active .question__item__header {
  border-radius: 0 25px 0 0;
}

.question__item.active .question__item_icon {
  background-image: url("../assets/images/close_icon.png");
}

.question__item__content span {
  max-width: 679px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  line-height: 35px;
}

.question__decoration {
  position: absolute;
  top: 12%;
  right: 90px;
  background: url(../assets/images/decoration/Decor4.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 114px;
  min-height: 214px;
  z-index: 22;
}

.question__decoration1 {
  position: absolute;
  top: 57%;
  left: 36px;
  background: url(../assets/images/decoration/Decor5.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 290px;
  height: 541px;
  z-index: 22;
}

.question__decoration2 {
  position: absolute;
  top: 47%;
  left: 144px;
  background: url(../assets/images/decoration/Decor6.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 78px;
  min-height: 77px;
  z-index: 22;
}

/* Footer section */

.footer {
  background: #b0162d;
  position: relative;
  z-index: 16;
}

.footer__wrapper {
  padding: 0 clamp(16px, 5vw, 40px);
}

.footer__content {
  max-width: 1436px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 0 90px;
}

.footer__logo {
  display: inline-block;
  background: url("../assets/images/Footer_logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 360px;
  min-height: 145px;
}

.info__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

.info__list {
  margin-top: 23px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list__link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.list__link:hover {
  color: #ffb835;
}

.footer__info {
  display: flex;
  gap: 84px;
}

.footer__end {
  border-top: 2px solid #9c1f1f;
}

.footer__end_wrapper {
  padding: 0 clamp(16px, 5vw, 40px);
}

.footer__end_content {
  max-width: 1436px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0 50px;
}

.text__right,
.link__left {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #000;
}

.link__left {
  text-decoration: none;
}

/* Адаптив */
@media (max-width: 1600px) {
  .popular::before {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 16%);
    top: 80px;
  }
}

@media (max-width: 1500px) {
  .top__img {
    top: 65%;
    right: 90px;
  }

  .advantages__decor {
    right: 120px;
  }

  .popular::before {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    top: 85px;
  }
}

@media (max-width: 1440px) {
  .intro {
    background-position: 60% center;
  }

  .advantages__decor {
    right: 78px;
  }

  .popular::before {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 14%);
    top: 85px;
  }

  .popular__decor {
    top: 27%;
  }

  .video__item_link {
    max-width: 410px;
  }

  .question__decoration {
    top: 28%;
  }

  .question__decoration1 {
    min-width: 240px;
    height: 450px;
  }
}

@media (max-width: 1300px) {
  .advantages__decor {
    top: 13%;
    min-height: 95px;
    min-width: 95px;
  }

  .advantages__icon {
    min-width: 115px;
    min-height: 125px;
  }

  .advantages__icon.second {
    min-width: 130px;
    min-height: 128px;
  }

  .advantages__icon.third {
    min-width: 130px;
    min-height: 128px;
  }

  .advantages__title {
    font-size: 21px;
    padding-top: 140px;
  }

  .advantages__text {
    font-size: 14px;
  }

  .popular::before {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 13%);
  }

  .video__item_link {
    max-width: 385px;
  }

  .question__decoration {
    top: 22%;
  }

  .question__item.active .question__item__content {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .question__item__content span {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .intro {
    background-position: 72% center;
  }

  .intro__title {
    font-size: 52px;
  }

  .intro__text {
    max-width: 687px;
    font-size: 28px;
  }

  .top__img {
    right: 75px;
  }

  .seeMore__btn {
    top: 87%;
  }

  .decor {
    min-width: 91px;
    min-height: 300px;
    left: 95px;
  }

  .traffic__title {
    font-size: 52px;
  }

  .traffic__text {
    font-size: 28px;
  }

  .popular::before {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 12%);
    top: 95px;
  }

  .video__item_link {
    max-width: 350px;
  }

  .question__decoration {
    top: 31%;
  }

  .question__content {
    padding-top: 100px;
  }
}

@media (max-width: 1100px) {
  .intro__title {
    max-width: 585px;
    font-size: 45px;
  }

  .intro__text {
    max-width: 600px;
    font-size: 26px;
  }

  .top__img {
    right: 60px;
  }

  .traffic__title {
    font-size: 45px;
  }

  .traffic__text {
    font-size: 26px;
  }

  .advantages__icon {
    min-width: 100px;
    min-height: 110px;
  }

  .advantages__icon.second {
    min-width: 110px;
    min-height: 107px;
  }
  .advantages__icon.third {
    min-width: 110px;
    min-height: 107px;
  }

  .advantages__title {
    font-size: 18px;
    padding-top: 130px;
  }

  .popular::before {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 11%);
    top: 100px;
  }

  .popular__title {
    font-size: 50px;
  }

  .video__item_link {
    max-width: 320px;
  }

  .popular__decor {
    top: 26%;
  }

  .partners__logo_container {
    justify-content: center;
    gap: 45px;
  }

  .question__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .partners__title {
    font-size: 50px;
  }

  .question__title {
    font-size: 50px;
  }

  .question__decoration {
    min-width: 90px;
    min-height: 173px;
    right: 80px;
  }

  .question__decoration2 {
    left: 75px;
    top: 38%;
  }

  .question__decoration1 {
    min-width: 150px;
    height: 277px;
    top: 70%;
  }

  .question__item__header,
  .question__item__content {
    max-width: 600px;
  }

  .question__item__text {
    font-size: 21px;
  }

  .question__item__content span {
    font-size: 15px;
  }

  .question__item.active .question__item__content {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

@media (max-width: 1024px) {
  .video__item_link {
    max-width: 300px;
  }

  .footer__logo {
    min-width: 325px;
    min-height: 125px;
  }
}

@media (max-width: 440px) {
  .nav {
    display: none;
  }

  .mob__nav {
    display: flex;
    pointer-events: auto;
  }

  .header__logo {
    min-width: 125px;
    min-height: 50px;
  }

  .header__wrapper {
    padding: 13px clamp(16px, 5vw, 40px);
  }

  .intro__title {
    max-width: 388px;
    font-size: 30px;
    text-align: center;
    line-height: 35px;
  }

  .intro__text {
    max-width: 388px;
    font-size: 20px;
    text-align: center;
    line-height: 27px;
    margin-top: 19px;
  }

  .intro__content {
    padding-top: 59px;
  }

  .btn {
    max-width: 218px;
    font-size: 24px;
    padding: 11.7px 55px;
    margin: 24px auto 0;
    display: block;
  }

  .top__img {
    max-width: 136px;
    left: 43px;
    top: 74%;
  }

  .decor {
    min-width: 67px;
    min-height: 218px;
    left: 10px;
    top: 41%;
  }

  .intro {
    background-image: url("../assets/images/mobile/block1_mob_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    width: 100%;
    min-height: 788px;
    position: relative;
    transition: background-position 0.3s ease;
  }

  .traffic__advantages {
    flex-direction: column;
  }

  .games__video_container {
    flex-direction: column;
    align-items: center;
    margin-top: 55px;
    gap: 24.4px;
  }

  .footer__info {
    flex-wrap: wrap;
  }

  .footer__logo {
    min-width: 208px;
    min-height: 84px;
  }

  .seeMore__btn {
    top: 95%;
    min-width: 84px;
    min-height: 72px;
  }

  .traffic__title {
    max-width: 388px;
    font-size: 30px;
    text-align: center;
    line-height: 36px;
  }

  .traffic__content {
    padding-top: 65px;
  }

  .traffic__text {
    max-width: 388px;
    font-size: 20px;
    text-align: center;
    line-height: 25px;
    margin-top: 20px;
  }

  .advantages__decor {
    top: 26.2%;
    min-height: 116px;
    min-width: 116px;
    right: -11px;
    z-index: 1;
  }

  .advantages__item {
    z-index: 2;
    border-radius: 55px;
    padding: 0 32px 40px;
  }

  .advantages__item.second {
    z-index: 2;
    border-radius: 55px;
    padding: 0 32px 40px;
  }

  .advantages__item.third {
    z-index: 2;
    border-radius: 55px;
    padding: 0 32px 40px;
  }

  .popular {
    background: none;
    z-index: 1;
    padding-bottom: 102px;
  }

  .traffic__advantages {
    margin-top: 83px;
  }

  .advantages__icon {
    min-width: 150px;
    min-height: 158px;
    top: -28px;
  }

  .advantages__icon.second,
  .advantages__icon.third {
    min-width: 166px;
    min-height: 158px;
    top: -34px;
  }

  .advantages__title {
    font-size: 20px;
    padding-top: 145px;
  }

  .advantages__text {
    font-size: 20px;
    line-height: 25px;
  }

  .popular::before {
    min-height: 1299px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 5%);
    top: 88px;
  }

  .popular__title {
    max-width: 388px;
    font-size: 35px;
    text-align: center;
  }

  .popular__decor {
    top: 15.5%;
    left: -66px;
  }

  .video__item_link {
    max-width: 388px;
  }

  .video__item_title {
    margin: 18px 0;
  }

  .partners__decor {
    display: none;
  }

  .partners__title {
    font-size: 35px;
  }

  .partners {
    padding: 60px 0 60px;
  }

  .question__title {
    max-width: 388px;
    font-size: 30px;
    text-align: center;
  }

  .question__content {
    padding-top: 80px;
  }

  .question__decoration2 {
    left: 30px;
    top: -3%;
  }

  .question__decoration {
    top: 87%;
    right: 20px;
  }

  .question__item__header {
    padding: 20px 41px;
  }

  .question__item__header,
  .question__item__content {
    max-width: 388px;
  }

  .question__item.active .question__item__content {
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .question__item__text {
    font-size: 14px;
  }

  .question__list {
    gap: 20px;
  }

  .question {
    background: rgba(36, 7, 35, 0.93)
      url("../assets/images/mobile/block5_mob_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    width: 100%;
    min-height: 870px;
    margin-top: -10px;
    position: relative;
    transition: background-position 0.3s ease;
    overflow: visible;
  }

  .question__decoration1 {
    display: none;
  }

  .footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer__end_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .traffic {
    background-image: url("../assets/images/mobile/block2_mob_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    width: 100%;
    min-height: 973px;
    position: relative;
    transition: background-position 0.3s ease;
    overflow: hidden;
  }

  .question__svg {
    display: none;
  }
}

@media (hover: none) {
  .video__item_link:hover {
    transform: none;
  }

  .video__item_link:hover::before {
    transform: translate(-39%, -50%) scale(1);
  }

  .seeMore__btn:hover {
    animation: none;
    transform: translateX(-50%);
  }

  .btn:hover::before {
    background: none;
  }
}
