
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    background: #130404;
  }
  
  *,
  *::before,
  *::after {
    padding: 0;
    margin: 0;
    box-sizing: inherit;
    -webkit-tap-highlight-color: transparent;
  }
  * {
    scroll-behavior: smooth;
  }

  
  body {
    font-family: "Poppins", sans-serif;
    background: #130404;
    color: #FFFFFF;
}

.no-scroll {
  overflow-y: hidden;
}

  
  body.no-scroll {
    overflow-y: hidden;
  }
  
  a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s linear;
  }
  
  button {
    cursor: pointer;
    font-family: inherit;
  }
  
  ul, ol {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  ul li {
    position: relative;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    padding: 0;
    margin: 0;
  }
  
  img {
    display: block;
  }


.main {
    max-width: 1600px;
    margin: 0 auto;
    padding:  80px 30px 0 290px;
    position: relative;
}
.main.bonus-page {
  padding:  80px 30px 0 290px;
}


.container {
  width: 100%;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
  background: #2D0D0D;
  border-radius: 12px;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image-box {
  width: 100%;
  height: 100%;
  border-radius:12px;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;

}

.title {
  font-size: 34px;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  color: #FFF72E;
  max-width: 545px;
  text-transform: uppercase;
}


h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;  
  color: #FFF72E;
}


p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  
}


h2, .article h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  width: max-content;
  margin: 0 auto;
  color: #FFF72E;
  position: relative;

}

h2::after, .article h2::after {
  content: url('./img/title-right.svg');
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: auto;

}
h2::before, .article h2::before {
  content: url('./img/title-left.svg');
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: auto;
}

.article h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;  
  color: #FFF72E;
}

.article ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.article ul li {
  padding-left: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}

.article ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 5px;
  height: 1px;
  background-color: #FFF;
}
.article.list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article.list ul li {
  padding-left: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #FFF;
  position: relative;
}

.article.list ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #FFF;
}

.article ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: item;
}

.article ol li {
  color: #fff;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  counter-increment: item;
  position: relative;
  padding: 0px 0px 0px 24px;
}

.article ol li::before {
  content: counter(item) ".";
  color: #FFD400;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-right: 4px;
  position: absolute;
  left: 4px;
  top: 0;
  min-width: 20px;
}

.article p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}


.article p a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #FFF72E;
  
}



.button {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    max-width: max-content;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-align: left;
    padding: 13.5px 16px;
    color: #fff;
    background: #4CB63A;
    border: 1px solid #4CB63A;
    outline: none;
    transition: all 0.3s linear;
}
.burger-menu {
  display: none;
}

.button.center {
  margin: 0 auto;
}

.button:hover {
  background: transparent;

}

.button.register-button {
  min-width: 145px;
}

.button.login-button {
  border: 1px solid #FFF72E;
  color: #FFF72E;
  background: transparent;
  min-width: 115px;
}
.button.login-button:hover {
  background: #FFF72E;
  color: #130404;
}


header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color:  #130404;
  z-index: 103;
}
.header__container {
  max-width: 1600px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 80px;

}

.header__logo {
  width: 124px;
  height: auto;
  margin-right: 135px;
}
.header__logo img {
  width: 100%;
  height: 100%;
}


.header-menu__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.header-menu__list li a {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  transition: color 0.3s linear;
}
.header-menu__list li:not(:last-child) a::after {
  content: url(./img/header-icon.svg);
  position: absolute;
  top: 43%;
  transform: translateY(-76%);
  right: -40px;
  height: 12px;

}

.header-menu__list a:hover {
  color: #FFF72E;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: auto;
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}



.hero.container {
  position: relative;
  padding: 62px;
  width: calc(100% + 30px);
  margin-right: -30px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 2;
  background:linear-gradient(90deg, #2B1234 0%, rgba(255, 247, 46, 0.733333) 24.02%, #FFF72E 48.91%, #FFF72E 73.97%, #2B1234 100%, #292526 100%);
}

.hero__image img {
  width: 100% ;
  height: 100%;
  object-fit: cover;
}

.hero-content__rating {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: #fff;  
  display: flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  margin-bottom: 16px;
}


.hero-content__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 24px;
  color: #fff;
}

.hero-content__wrap {
  display: flex;
  flex-direction: column;
  max-width:545px;
  position: relative;
  z-index: 2;
}


.features__box {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.features__list  {
  width: 50%;
}
.features__list tbody {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  background: linear-gradient(270deg, #130404 0%, #2D0D0D 100%);
  border: 1px solid #4D3535;
}

.features__list tr {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  overflow: hidden;
  padding: 12px 24px;
  gap: 16px;
}

.features__list.second tr {
  padding: 12px 24px;
}

.features__list.second tr td:nth-child(1) {
  width:184px;
}
.features__list.second tr td:nth-child(1) strong {
  font-weight: 700;
  color: #FFF;
}

.features__list tr td:nth-child(1) {
  flex-shrink: 0;
}



.banner {
  padding: 106px 100px;
  position: relative;
  background: transparent;
  border-radius: 12px;
  border: 1px solid #4D3535;
}
.banner__image {
  width: 100%;
  height: 100%;
  right: 0;
  left: auto;
  bottom: 0;
  top: auto;
  position: absolute;

}
.banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;

}
.banner__wrapper {
  position: relative;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.banner__wrapper-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  width: auto;
  text-align: center;
  text-transform: uppercase;
  color: #FFF72E;
  margin-bottom: 10px;
}
.banner__wrapper-title::after, .banner__wrapper-title::before {
  display: none;
}

.banner__wrapper-desc {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #FFF;
  text-align: center;
  margin-bottom: 30px;
}


.rating__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.rating__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content:space-between;
  padding: 20px 10px;
  align-items: center;
  border-radius: 12px;
  width: calc(33.33% - 10.66px);
  border: 2px solid #4D3535;
  background: linear-gradient(270deg, #2D0D0D 0%, #130404 100%);
}

.rating-item__info {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rating__item .rating-item__info p {
  color: #FFF72E;
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  text-align: center;
} 

.rating__item p {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
} 



.ac {
    width: 100%;
    margin-top: 0;
    border-radius: 12px;
    border: none;
    background: transparent;
    overflow: hidden;
    border: 2px solid #4D3535;
}

  .ac:not(:last-child) {
    margin-bottom: 16px;
  }
  .ac-header {
    width: 100%;
    border-radius: 12px;
 
  }
  .ac-header::after, .ac-header::before {
    display: none;
  }
  .ac .ac-trigger {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    text-align: left;
    text-transform: uppercase;
    background: transparent;
    color: #FFF72E;
    background: linear-gradient(270deg, #2D0D0D 0%, #130404 100%);
    
    padding: 15px 60px 15px 20px !important;
    border-radius: 12px;
  
  }
  .ac .ac-trigger:focus {
    color: #FFF72E;
  }

  .ac.is-active > .ac-header {
    color: #FFF72E;
  }
  .ac.is-active > .ac-header .ac-trigger {
    border-radius: 12px 12px 0 0;
    color: #FFF72E;
}
  .ac .ac-panel {
    padding: 0;
    background: transparent;

  }
  .ac .ac-panel p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #fff;
    padding: 0px 20px;
    margin: 13px 0;
  }
  
  .ac .ac-trigger::after {
    content: url('./img/arrow-up.svg');
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .ac.is-active > .ac-header .ac-trigger::after {
    content: url('./img/arrow-down.svg');
    width: 25px;
    height: 25px;
  }




  .content {
    flex-shrink: 1; 
    width: 100%;
  }


  .button-up {
    position: fixed; 
    bottom: 10px;    
    right: 20px;   
    cursor: pointer;
    display: flex;   
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background: transparent;
    display: none;  
    z-index: 102;   
    width: 42px;
    height: 42px;
  }
  
  .button-up img {
    width: 42px;
    height: 42px;
  }


  .footer {
    background: transparent;
  }

  .footer__container {
    max-width: 1600px;
    padding: 0px 30px 70px 290px;
    margin: 0 auto;
  }
  .footer__decor {
    width: 100%;
    max-width: 100%;
  }
  .footer__decor img {
    width: 100%;
    max-width: 100%;
  }
  .footer__line {
    background: linear-gradient(90deg, rgba(255, 247, 46, 0) 1.44%, #FFF72E 50.08%, rgba(255, 247, 46, 0) 98.72%);
    height: 2px;
    width: calc(100% - 64px);
    margin: 32px;
  }
  .footer__nav-list {
    display: flex;
    gap: 33px;
    margin-top: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__nav-list li a {
    color:#D8D3D3;
    font-size: 16px;
    line-height: 22.4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  .footer__nav-list li a:hover {
    color:#FFF72E;
  }
  .footer__nav-list li {
    position: relative;
  }
  .footer__nav-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 22px;
    background-color: #FFF72E;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .footer__card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .footer__card-list li img {
    width: 112px;
    height: 66px;
  }
  .footer__down {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 101px 0 88px;
  }
  .footer__down p {
    color: #D8D3D3;
    font-size: 14px;
    line-height: 21px;
  }


  .burger-button {
    display: none;
  }


  .sidebar {
    width: 240px;
    height: calc(100vh - 90px);
    position: fixed;
    top: 90px;
    left: 30px;
    overflow: auto;
    z-index: 100;
  }
  .sidebar::-webkit-scrollbar {
    display: none;
    width: 0;
  }
    
    
  @media screen and (min-width: 1600px) {
    .sidebar {
      left: calc((100% - 1600px) / 2 + 30px);
    }
  }
    
.aside__left.bonus-page {
  top: 0;
}
  
.aside__center > .content {
  margin-left: 0;
  margin-right: 0;
}
  
.aside__center > * + * {
  margin-top: 20px;
}
  
.aside-left__wrapper {
  position: sticky;
  border-radius: 12px;
}
.aside-left__wrap {
  overflow-y: auto;
  height: auto;
  background: #2D0D0D;

}

.aside-left__wrap::-webkit-scrollbar {
  width: 0;
}

    
.main-left-nav__desc {
  border-radius: 10px;
}
.main-left-nav__desc.active {
  border-radius: 6px;
}



.main-left-nav__list {
  display: none;
  height: 0;
  opacity: 0;
  transition: all 0.3s linear;
}
.main-left-nav__list.visible {
  display: flex;
  height: auto;
  opacity: 1;
}
.aside-left__wrap {
  display: flex;
  flex-direction: column;
  background: #2D0D0D;
  border-radius: 12px;

}
.aside-left-wrap__list li a {
  padding:0px 16px 0px 17px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  gap: 8px;
  display: flex;
  align-items: center;
  color: #fff;
  background: transparent;
  transition: all 0.3s linear;

}

.aside-left-wrap__list li a:hover {
  color: #FFF72E;
  font-weight: 700;

}

.main-left-nav__desc, .aside-left-nav__desc {
  border-radius: 6px;
}
.main-left-nav__desc.active, .aside-left-nav__desc.active {
  border-radius: 6px 6px 0 0;
}
.aside-left-nav__desc {
  display: flex;
  gap: 8px;
  position: relative;
  padding: 20px 44px 10px 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #FFF72E;
  position: relative;
  cursor: pointer;
  transition: all 0.3s linear;
}


.aside-left-nav__desc::after {
  content: url('./img/arrow-up.svg');
  position: absolute;
  top: 14px;
  right: 20px;
  transform-origin: center;
  width: 25px;
  height: 25px;
  transition: all 0.3s linear;
}
.aside-left-nav__desc.active::after{
  content: url('./img/arrow-down.svg');
}


.aside-left-nav__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.aside-left-wrap__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0 20px;
  position: relative;

}
.aside-left-wrap__list::after {
  content: url('./img/Line.svg');
  position: absolute;
  width: calc(100% - 32px);
  left: 16px;
  bottom: 20px;
  height:1px;
}


.aside-left-nav__list.visible {
  max-height: 1500px;
  padding-bottom: 18px;
  opacity: 1;
}

.aside-left-nav__list {
  display: flex;
  flex-direction: column;
}
.aside-left-nav__list li a {
  padding: 3px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  background: transparent;
  display: flex;
  position: relative;
  transition: all 0.3s linear;
}

.aside-left-nav__list li a:hover {
  color: #FFF72E;
  font-weight: 700;
  background: #FFF72E66;
}

.main-left {
  display: none;
}


@media screen  and (max-width: 1480px) {
  .rating__item {
    width: calc(50% - 10px);
  }
}
@media screen  and (max-width: 1400px) {
  .banner {
    padding: 106px 10px;
  }
}
@media screen  and (max-width: 1200px) {
  .aside-left-wrap__list {
    padding: 0;
    transition: all 0s linear;
  }
  .aside-left-wrap__list li:last-child {
    padding-bottom: 8px;
  }
  .aside-left-wrap__list::after {
    display: none;
  }
  .main-left {
    display: block;
  }
  .main-left.container {
    padding: 0;
  }
  .aside-left__nav {
    border-radius: 12px;
  } 
  .sidebar {
    display: none;
  }
  .hero__content {
    padding-left: 20px;
  }
  .footer__container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main {
    padding-left: 20px;
  }
  .button-up {
    right: 20px;
  }
  .content, .container {
    width: 100%;
    max-width: 100%;
  }

  .header__container {
    padding-left: 20px;
  }
  .hero__image img {
    right: 0px;
    width: 100%;
  }
  .hero.container {
    width: 100%;
    margin-right: 0px;
  }
  .aside-left-nav__desc {
    padding: 20px 44px 20px 16px;
  }
  .aside-left-wrap__list li a {
    font-size: 15px;
  }
}


@media screen and (max-width: 1120px) {
  .hero__image img {
    object-position: 80%;
  }
  .header__menu {
    display: none;
  }
  .header__container {
    padding-right: 20px;
    height: 60px;
  }
  .main {
    padding-top: 0px;
    margin-top: 60px;
  }
  .main.bonus-page {
    margin-top: 20px;
  }
  .hero.bonus-page {
    margin-top: 60px;

  }
  .header__buttons {
    display: none;
  }


  .burger-button {
    display: flex;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-around;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 2; 
  }
  .burger-button span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .burger-button.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .burger-button.open span:nth-child(2) {
    opacity: 0;
  }
  .burger-button.open span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
  .burger-menu {
    position: fixed;
    top: 60px;
    right: -100%; 
    width: 100%;
    height: 100%;
    padding: 0 10px;
    background: #130404;
    padding-bottom: 100px;
    transition: right 0.3s ease; 
    color: #fff;
    overflow-y: auto;
    display: block;
    z-index: 105;
  }
  .burger-menu.open {
    right: 0; 
    overflow-y: auto;

  }
  .burger-menu ul {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 16px;
    min-width: 300px;
  }
  .burger-menu ul li {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .burger-menu ul li a {
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    width: 300px;
    height: 46px;
    color: #FFF72E;
    border: 1px solid #FFF72E;
    border-radius: 12px;
  }
  .burger-menu__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    min-width: 300px;
    margin-top: 20px;
  }
  .burger-menu__buttons a {
    width: 300px;
  }
  .burger-menu .button.login-button {
    min-width: 300px;
    height: 46px;
  }
  .burger-menu .button.register-button {
    min-width: 300px;
    height: 46px;
  }
  .aside__right {
    display: none;
  }
  .main {
    padding-right: 20px;
  }
  .button-up {
    bottom: 20px;
  }
  .footer__down {
    padding: 0;
  } 
}

@media screen and (max-width: 1000px) {
   .hero-content__wrap {
    background: rgba(22, 24, 29, 0.7);
    padding: 20px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 950px) {
  .features__list tr {
    width: 100%;
  }
  .features__list.second tr td:nth-child(1) {
    width: calc(60% - 10px);
  }
}
@media screen and (max-width: 920px) {
  h2, .article h2 {
    width: calc(100% - 160px);
  }
  h2::after, .article h2::after {
    right: -80px;
  }
  h2::before, .article h2::before {
    left: -80px;
  }
}

@media screen and (max-width: 850px) {
  .rating__item {
    width: 100%;
  }
  .features__box {
    flex-direction: column;
  }
  .features__list {
    width: 100%;
  }
  .features__list tr, .features__list.second tr {
    padding: 12px;
  }
  .banner__image img {
    object-position: 25%;
  }
}
@media screen and (max-width: 768px) {
  .hero.container {
    padding: 42px;
  }
  .hero {
    padding: 48px 10px;
  }
  .footer {
    padding: 0;
  }

  .banner__wrapper {
    background: rgba(22, 24, 29, 0.7);
    padding: 20px;
    border-radius: 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .banner {
    padding: 20px;
  } 
}

@media screen and (max-width: 600px) {
  .hero-content__wrap {
    background: rgba(22, 24, 29, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin: 0 auto;
  }
  .banner__wrapper {
    background: rgba(22, 24, 29, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin: 0 auto;
  }

  .container.banner {
    padding: 40px 16px;
  }
  .container.hero {
    padding: 40px 10px;
  }
  .main {
    padding: 0px 10px;
  }

  .footer {
    padding-right: 10px;
    padding-left: 10px;
  }
  .title {
    font-size: 27px;
    line-height: 35px;
    text-align: center;
    margin: 0 auto ;
  }
  .hero-content__rating {
    justify-content: center;
  }
  .hero-content__subtitle {
    text-align: center;
  }
  .hero__button {
    margin: 0 auto;
  }
  h2, .article h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .ac .ac-trigger {
    padding: 12px 46px 12px 12px !important;
  }
  .ac .ac-trigger::after {
    right: 12px;
  }
  .header__logo {
    width: 110px;
    height: auto;
    margin-right: 0;
    margin-left: 0;
  }
  .header__logo img {
    width: 100%;
    height: auto;
  }
  h3, .article h3 {
    font-size: 16px;
    line-height: 22px;
  }
  .header__container {
    padding-right: 10px;
    padding-left: 10px;
  }
  .banner__wrapper-subtitle {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
  }
  .banner__wrapper-title {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
  }
  .button.banner__button {
    margin: 0 auto;
  }
  .banner__wrapper {
  align-items: center;
  }
  
  .hero-content__wrap {
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  h2, .article h2 {
    width: 100%;
  }
  h2::after, .article h2::after {
    display: none;
  }
  h2::before, .article h2::before {
    display: none;
  }
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .footer__nav-list li::after {
    display: none;
  }
  .footer__line {
    margin: 16px 0;
    width: 100%;
  }
  .footer__down {
    gap: 24px;
  }
  .footer__container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media screen and (max-width: 425px) {

  .banner__wrapper {
    width: 100%;
  }

  .button-up {
    right: 10px;
  }
  .footer__link {
    padding-right: 38px;
  }

  .container {
    padding: 20px 10px;
  }
  .rating-item__stars li img {
    width: 24px;
    height: auto;
  }
}





/* BONUS PAGE */
.bonus {
  margin-bottom: 20px;
}
.container.bonus {
  background: transparent;
  padding: 0;
}

.bonus__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.bonus-list__item {
  width: calc(50% - 10px);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  display: flex;
  border: 2px dashed #FFF72E;
}

.bonus-item__image {
  width: 100%;
  max-width: 262px;
  position: relative;
  flex-shrink: 0;
}

.bonus-item__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.bonus-item__wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 41px 23px;
  width: 100%;
  background: linear-gradient(270deg, #2D0D0D 0%, #130404 100%);
}

.bonus-item__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  color: #FFF72E;
  text-align: center;
  margin: 0 0 14px;
  width: 100%;
}
.bonus-item__title::after, .bonus-item__title::before {
  display: none;
}

.bonus-item__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #FFF;
  margin-bottom: 20px;
}
.button.bonus-button {
  min-width: 180px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 11px 20px;
}





.hero.container.bonus {
  position: relative;
  padding: 62px;
}
.breadcrumbs {
  display: flex;
  margin-bottom: 20px;
}
.breadcrumbs li {
  position: relative;
}
.breadcrumbs a {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #fff;
  transition: all 0.2s linear;
}
.breadcrumbs li:first-child::after {
  content: "|";
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  margin: 0 20px 0 20px;
}
.breadcrumbs li:last-child a {
  font-weight: 700;
}

@media screen and (max-width: 1380px) {
  .bonus-list__item {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .main.bonus-page {
    padding: 0px 20px;
  }
  .hero__content.bonus-page {
    padding: 0 20px;
  }
  .footer.bonus-page {
    padding: 0 20px;
  }
  .footer.bonus-page .footer-down__left {
    width: 100%;
  }

}


@media screen and (max-width: 600px) {
  .bonus-list__item {
    flex-direction: column;
  }
  .bonus-item__image {
    max-width: 100%;
  }
  .hero.container.bonus {
    position: relative;
    padding: 40px 10px;
  }
  .breadcrumbs {
    justify-content: center;
  } 
  .bonus-item__desc {
    font-size: 15px;
    line-height: 22px;
  }
  .bonus-item__title {
    font-size: 24px;
    line-height: 24px;
  }
  .bonus-item__wrap {
    padding: 20px 10px;
  }
}

@media screen and (max-width: 380px) {
  .button.bonus-button {
    min-width: 100%;
  }
}

                        

/* APP PAGE */

.app.container {
 padding: 23px 40px 23px 44px;
 border-radius: 12px;
 border: 2px dashed #FFF72E;
}
.app__image img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.app__content {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.app__wrap {
  display: flex;
  gap: 16px;
  flex-direction: column;
  max-width: max-content;
}

.app__button {
  display: flex;
  position: relative;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  background: #4CB63A;
  padding: 12px 30px;
  border: 2px solid #4CB63A;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s linear;
}


.app__button:hover {
  border: 2px solid #fff;
  background: transparent;
}
.app__button div {
  font-size: 16px;
  font-weight: 700;
  line-height: 128%;
  min-width: 128px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.app__button div span {
  display: block;
}

.app__link {
  width: 255px;
  height: auto;
  position: relative;
  overflow: hidden;
}
.app__link img  {
  width: 255px;
  height: 100%;
  margin-left: -1px;
}




@media screen and (max-width: 768px) {
  .app__content {
    flex-direction: column-reverse;
  }
  .container.app {
    padding: 20px 10px;
  }
}

@media screen and (max-width: 340px) {
  .app__button {
    min-width: 100%;
  }
}


