html {
  scroll-behavior: smooth;
}

body {
  display: block;
  position: relative;
  width: 100%;
  background: #0b0c21;

  font-family: "Poppins", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #ffffff;
  overflow-x: hidden;
}

.content {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1163px;
  overflow: hidden;
  border-radius: 20px;
  background: #1f2038;

  padding: 20px;
  margin: 0 auto 20px auto;
}

h1,
h2,
h3,
h4,
.title {
  display: block;
  position: relative;
  font-size: 43px;
  font-weight: 900;
  line-height: 60px;
  text-align: center;
  color: #ffffff;
}

h1,
.title.general {
  text-transform: uppercase;
}

h2,
.title.high {
  display: flex;

  justify-content: center;
  align-items: center;
  font-size: 38px;
  line-height: 56px;
  font-weight: 900;
  text-align: center;
  color: #ffd400;
  padding: 10px;
  margin-bottom: 16px;
}

h3,
title.medium {
  font-size: 28px;
  font-weight: 900;
  line-height: 32px;
  text-align: left;
}
h4,
title.mini {
  font-size: 28px;
  font-weight: 900;
  line-height: 32px;
  text-align: center;
  color: #ffd400;
}

article > *,
.article > *,
.desk > * {
  margin-top: 16px;
}

article > *:first-child,
.article > *:first-child,
.desk > *:first-child {
  margin-top: 0 !important;
}

article > h2,
.article > h2,
.desk > h2 {
  margin-top: 32px;
}

article > h3,
.article > h3,
.desk > h3 {
  margin-top: 16px;
}
article > h4,
.article > h4,
.desk > h4 {
  margin-top: 16px;
}

.button {
  position: relative;
  width: 264px;
  height: 78px;
  background: url(../images/button-register.svg) no-repeat center center /
    contain;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  cursor: pointer;
  margin: 0 auto;
  transition: all 0.5s;
}

a.button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button:hover {
  transform: scale(1.1);
}

.header__button {
  position: relative;
  min-width: 132px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
  margin: 0 auto;
  transition: all 0.5s;
}

.header__button-signin {
  background: #ffd400;
  color: #13151b;
  padding: 8px 38.5px;
  margin-left: auto;
  margin-right: 16px;
}

.header__button-signin:hover {
  background: none;
  border: 1px solid #ffd400;
  color: #ffffff;
}

.header__button-login {
  background: none;
  border: 1px solid #ffd400;
  color: #ffffff;
  padding: 8px 44.5px;
  margin-left: 0;
  margin-right: 16px;
}

.header__button-login:hover {
  background: #ffd400;
  color: #13151b;
}

.header,
.main,
.footer {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding: 20px;
  margin: 0 auto;
}

.background,
.hero__background {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.background img,
.hero__background img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.images img {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* -------------------HEADER---------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0b0c21;
  padding: 0;
  z-index: 100;
}

.header__content {
  display: flex;
  align-items: center;
  flex-direction: row;
  max-width: 1440px;
  max-height: 67px;
  border-radius: 0;
  background: #0b0c21;
  padding: 13.5px 20px;
  margin-bottom: 0;
}

.logo {
  display: block;
  position: relative;
  flex: 0 0 192px;
  margin-right: 68px;
  padding: 20px 0;
  transition: all 0.5s;
}

.logo:hover {
  transform: scale(1.2);
}

.logo img {
  display: block;
  position: relative;
  width: auto;
  max-height: 40px;
}

.header__menu {
  display: flex;
  white-space: nowrap;
  max-height: calc(100vh - 60px);
  overflow: auto;
}

.header__menu-list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  gap: 40px;
}

.header__menu-list li {
  display: block;
  text-align: left;
  text-transform: capitalize;
  line-height: 24px;
  transition: all 0.5s;
}

.header__menu-list li a {
  display: block;
  color: #ffffff;
  font-weight: 700;
  padding: 20px 0;
}

.header__menu li a:hover {
  color: #ffd400;
}

.header__country {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.5s;
  padding: 20px 20px 20px 0;
}

.header__country span {
  display: inline-block;
}

.header__country:hover {
  color: #ffd400;
}

.header__country img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.header__btn {
  display: none;
}
/* -------------- header__btn-menu-----------*/

.header__btn-menu {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  background: #0b0c21;
  border: 1px solid #ffd400;
  padding: 12px;
  order: 3;
  transition: all 0.5s;
}

svg {
  position: relative;
  fill: #ffd400;
  line-height: 1;
  vertical-align: 1;
}

.header__btn-menu {
  display: none;
}

/* -------------main------------- */
.main {
  padding-top: 67px;
  padding-bottom: 0;
}

.content__wrapper {
  display: block;
  position: relative;
  flex: 1 1 100%;
  margin-left: 20px;
}

/* -------------sidebar--------- */

.sidebar-wrapper {
  display: block;
  position: relative;
  align-self: stretch;
  flex: 0 0 237px;
}
.sidebar {
  position: sticky;
  top: 67px;
  bottom: 20px;
  background: linear-gradient(180deg, #0b0c21 0%, #08091c 20.16%, #0b0c21 100%);
  padding: 16px;
  overflow: auto;
  height: calc(100vh - 100px);
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar__menu ul li{display: flex;}

.sidebar__menu ul li a {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #727489;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: all 0.5s;
  display: flex;
}

.sidebar__menu ul li:nth-child(3) a img{
 margin-right: 5px;
}

.sidebar__menu ul li:nth-child(3) a {
  align-items: flex-end;
}

.sidebar__menu ul li a:hover {
  color: #ffd400;
}
.sidebar__menu ul li + li {
  /* margin-top: 4px; */
}
.sidebar__menu li a img {
  min-width: 24px;
  min-height: 24px;
  margin: auto;
  margin-right: 12px;
  vertical-align: middle;
}

.sidebar__menu ul::after {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2b1234 0%,
    rgba(255, 247, 46, 0.733333) 24.02%,
    #fff72e 48.91%,
    #fff72e 73.97%,
    #2b1234 100%,
    #292526 100%
  );
  margin: 20px 0;
}

.sidebar__links-button {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #ffd400;
  text-align: left;
  line-height: 24px;
  background: none;
  white-space: normal;
  padding-right: 48px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.5s;
  transition: all 0.5s linear;
}

.sidebar__links-button::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background: url(../images/sidebar/plus.svg) no-repeat center center / contain;
  transition: all 0.5s;
}

.sidebar__links-button.active::after {
  background: url(../images/sidebar/minus.svg) no-repeat center center / contain;
  transition: all 0.5s;
}

.sidebar__links-list li a {
  display: block;
  color: #727489;
  transition: all 0.5s;
}


.sidebar__links-list li a:hover {
  color: #ffd400;
  background: #897d42;
}

.sidebar__links-list li + li {
  padding-top: 12px;
}

.page-nav-button {
  margin-bottom: 0;
}

.page-nav {
  display: none;
}

.sidebar__links-list,
.page-nav-list {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}

.sidebar__links-list.active,
.page-nav-list.active {
  display: block;
  max-height: 1000px;
}

.page-nav-list.active {
  margin-top: 20px;
}

/* -----------hero------ */

.hero {
  min-height: 447px;
  padding: 0;
  border-radius: 0;
  padding: 85px 40px;
}

.hero__data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  max-width: 850px;
  padding: 15px;
}

.hero__title {
  text-align: left;
  margin-bottom: 30px;
}

.hero__title span {
  color: #ffd400;
}

.hero__rating {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 16px;
}

.hero__rating p {
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 16px;
}
.hero__rating span {
  display: flex;
  align-items: center;
}

.hero__rating span:nth-child(1),
.hero__rating span:nth-child(2) {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.hero__button{
  margin-left: 0;
}
/* ------------features----------- */
.features__link {
  color: #fdcd0b;
}
.features p + p {
  margin-top: 16px;
}

.features__table table {
  width: 100%;
  overflow: hidden;
  margin-top: 16px;
  margin-bottom: 16px;
}

.features__table table tbody {
  display: block;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #32334b;
  overflow: hidden;
  background: #14152d;
}

table tr:first-child td,
.features__list .features__subtitle {
  font-size: 24px;
  font-weight: 900;
  line-height: 28.8px;
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  color: #fdcd0b;
  padding: 7.5px;
}

table tr {
  width: 100%;
}

table tr td {
  width: 50%;
  font-size: 15px;
  white-space: normal;
  text-align: center;
  border: 1px solid #32334b;
  padding: 10px;
}

tr:first-child td {
  white-space: nowrap;
}

.features__list {
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #32334b;
  overflow: hidden;
  background: #14152d;
}

.features__info {
  position: relative;
  width: 50%;
  border: 1px solid #32334b;
}

.features__list .features__subtitle {
  border-bottom: 1px solid #32334b;

  margin-bottom: 0;
}

.features__info ul li {
  position: relative;
  font-size: 15px;

  padding: 16px 24px 16px 72px;
}

.features__list-positive li::before,
.features__list-negative li::before {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/main/plus-features.svg) no-repeat center center /
    contain;
}

.features__list-negative li::before {
  background: url(../images/main/minus-features.svg) no-repeat center center /
    contain;
}
/* -----------article------- */
.article {
  position: relative;
}
.article__title,
.faq__title,
.review__title,
.ratings__title {
  border-radius: 20px;
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  text-align: center;
}

.article div {
  border: 1px solid #32334b;
  border-radius: 20px;
  overflow: hidden;
}
.article h3 {
  color: #ffd400;
  text-align: center;
  border-bottom: 1px solid #32334b;
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  padding: 8px;
}

.article ol {
  counter-reset: ol;
  position: relative;
  background: #14152d;
  padding: 16px;
}

.article ol li {
  counter-increment: ol;
  position: relative;
  padding-left: 20px;
}

.article ol li::before {
  content: counter(ol) ".";
  display: inline-block;
  position: absolute;
  font: inherit;
  font-weight: 900;
  color: #ffd400;
  left: 0;
  top: 0;
}

.article ol li + li {
  margin-top: 8px;
}

.article__banner {
  border: 1px solid #ffd400;
  padding: 0;
}

.article__wrap {
  position: relative;
  padding: 20px;
  margin: 0;
  z-index: 10;
}

.article__ios {
  margin-top: 16px;
  margin-bottom: 16px;
}

.article__ios,
.article__android {
  max-width: 807px;
  min-height: 272px;
}

.article__ios p,
.article__android p {
  background: #14152d;
  padding: 16px 16px 0 16px;
}

.article__android p {
  padding: 0 16px 16px 16px;
}

.article .article__wrapper {
  background: #14152d;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 16px;
}

.article__wrapper ul li,
.article__vip ul li,
.article__desk ul li,
.article__list li {
  position: relative;
  padding-left: 20px;
  margin-top: 8px;
}

.article__wrapper ul li span,
.article__vip ul span {
  color: #ffd400;
  font-weight: 700;
}

.article__wrapper ul li::before,
.article__wrapper-last ul li::before,
.article__vip ul li::before,
.article__desk ul li::before,
.article__list li::before,
.article__content ul li::before,
.article .article__label-list li::before {
  content: "";
  display: block;
  position: absolute;
  width: 11px;
  height: 11px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ffd400;
  border-radius: 50%;
}

.article__wrapper-last ul li::before,
.article__vip ul li::before,
.article .article__label-list li.article__label-item::before {
  top: 12px;
}

.article .image,
.article .article__vip {
  border: none;
}

.article .image img {
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  object-position: bottom;
  object-fit: contain;
}

.article__vip {
  display: flex;
}

.article__text {
  margin-top: 16px;
}
.article__banner .article__wrap-vip {
  padding-bottom: 0;
}

.article__vip ul {
  max-width: 706px;
  background: #14152d;
  border-radius: 20px;
  border: 1px solid #32334b;
  padding: 0 16px 16px 16px;
  margin-left: 23px;
  margin-top: 16px;
  margin-bottom: 20px;
}

.article__vip ul li + li {
  margin-top: 16px;
}

.article__desk {
  max-width: 604px;
  background: #14152d;
  border-radius: 20px;
  padding: 16px;
}

.article__btn-game {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.article__btn-game li {
  transition: all 0.5s;
}

.article__btn-game li:hover {
  transform: scale(1.05);
}

.article__btn-game li a {
  display: block;
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  border-radius: 20px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffd400;
  padding: 12px 20px;
}

.article .article__subtitle {
  background: none;
  margin-bottom: 16px;
  border-bottom: 0;
}

.article__statistic {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.article__statistic tbody {
  width: 100%;
  border: 1px solid #32334b;
  overflow: hidden;
}

.article__statistic tr {
  width: 100%;
  background: #14152d;
}

.article__statistic tr th {
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  color: #ffd400;
  border: 1px solid #32334b;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  width: 20%;
  padding: 10px;
}

.article__statistic tr td {
  width: 20%;
}

.article__statistic tr td {
  border: none;
}
.article__statistic tr td {
  border-right: 1px solid #32334b;
}

.article__statistic tr td:last-child {
  border-right: none;
}
.article__betting {
  display: flex;
  margin-bottom: 16px;
  gap: 16px;
  overflow: hidden;
  margin-top: 16px;
}

.article__betting li {
  border: 1px solid #32334b;
  border-radius: 20px;
  flex: 1 1 calc(50% - 16px);
  overflow: hidden;
}

.article__betting-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  padding: 10px;
}
.article__betting .article__betting-img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.article__betting-img span {
  font-weight: 900;
  font-size: 28px;
  line-height: 32px;
  color: #ffd400;
  margin-top: 8px;
}

.article__betting-img img {
  display: block;
  width: 44px;
  height: 44px;
}

.article__betting .article__betting-label {
  background: #14152d;
  padding: 16px 24px;
}
.article .article__betting-text {
  background: #14152d;
  border-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  min-height: 264px;
  min-height: 100%;
  width: 100%;
  padding: 16px 24px;
  border: none;
}

.article__betting .article__betting-text p + p {
  margin-top: 16px;
}

.article__betting p:last-child {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  min-height: 100%;
}

.article__game-category {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  white-space: normal;
}

.article__game-category li {
  border: 1px solid #32334b;
  border-radius: 20px;
  flex: 1 1 calc(20% - 16px);

  height: 210px;
  display: flex;
  overflow: hidden;
}

.article__game-category h4 {
  font-weight: 900;
  font-size: 28px;
  line-height: 32px;
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  color: #ffd400;
  text-align: center;
  border: 1px solid #32334b;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  white-space: normal;
  padding: 8px;
}

.article__game-category p {
  background: #14152d;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  color: #ffffff;
  padding: 16px 24px;
  flex-grow: 1;
}

.article__game-category li a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article__wrap .article__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border: none;
  padding-left: 100px;
}

.article__info-text {
  max-width: 636px;
  background: #14152d;
  padding: 16px;
}
.article__info-text p + p {
  margin-top: 16px;
}

.article__info .article__button-wrap {
  padding-top: 80px;
  border: none;
}

/* ---------faq--------- */
.faq__subtitle {
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #ffd400;
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  border: 1px solid #32334b;
  border-radius: 20px;
  border-top-right-radius: 20px;
  cursor: pointer;
  padding: 16px 40px 16px 16px;
}

.faq__subtitle.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq__subtitle::after {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../images/faq-plus.svg) no-repeat center center / contain;
  transition: all 0.5s;
}

.faq__subtitle.active::after {
  background: url(../images/faq-minus.svg) no-repeat center center / contain;
  transition: all 0.5s ease-in-out;
}
.faq__answer {
  position: relative;
  background: #14152d;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 16px;
  overflow: hidden;
  
}

.faq__item + .faq__item {
  margin-top: 16px;
}



.js-expand-content {
  display: none;
  overflow: hidden;
}


.js-expand-content.expanded {
  
  height: 100%;
}

/* -------review----- */

.review__wrapper {
  border-radius: 20px;
  border: 1px solid #32334b;
  background: #14152d;
  padding: 14px 20px;
}

.review__photo {
  display: block;
  width: 60px;
  height: 60px;
}

.review ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
}
.review ul li {
  display: flex;
  flex: 1 1 calc(50% - 16px);
}

.review__wrapp {
  display: flex;
  flex-direction: column;
}

.review__wrapp h3 {
  font-size: 16px;
  color: #ffd400;
}

.review__wrapp img {
  width: 16px;
  height: 16px;
}
.review__cards {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}
/* ------------ratings----------- */
.ratings {
  position: relative;
  border: 1px solid #ffd400;
}

.ratings p {
  position: relative;
  margin-bottom: 16px;
}

.ratings__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.ratings__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #32334b;
  background: #14152d;
  text-align: center;
  flex: 1 1 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  padding: 16px;
}

.ratings__img {
  display: flex;
  justify-content: center;

  align-items: center;
  border-radius: 20px;
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  max-width: 141px;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 12px;
}

.ratings__img img {
  width: 30px;
  height: 28px;
}

.ratings__img span {
  font-size: 26px;
  font-weight: 700;
  line-height: 31.2px;
  color: #ffd400;
}

.ratings__list li h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #ffd400;
  margin-bottom: 12px;
}
/* ---------main__arrow------ */
.main__arrow {
  display: block;
  position: fixed;
  width: 42px;
  height: 42px;
  right: 20px;
  bottom: 20px;
  background: url(../images/arrowUp.svg) no-repeat center center / contain;
  z-index: 100;
}
/* ------------footer------------- */
.footer {
  padding: 0 20px 0 270px;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  gap: 32px;
}

.footer__logo {
  display: flex;
  max-height: 40px;
  flex: 0 0 152px;
  padding: 0;
  margin: 0 auto;
}

.footer__logo img {
  display: block;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #ffffff1a;
  padding: 4px 32px;
}

.footer__menu li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff80;
  padding: 4px 16px;
  transition: all 0.5s;
}

.footer__menu li a:hover {
  border-radius: 20px;
  background: #ffd400;
  color: #13151b;
  padding: 4px 16px;
}

.footer__country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer__country-list li {
  border-radius: 8px;
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  transition: all 0.5s;
}

.footer__country-list li a {
  display: block;
  padding: 12px;
}

.footer__country-list li:hover {
  transform: scale(1.1);
}

.footer__country-item span {
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
}
.footer__country-item img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__wrap img {
  display: block;
  width: 64px;
  height: 56px;
}

/* ---------BONUS PAGE-------------- */
.breadcrumbs {
  display: flex;
  text-align: center;
  justify-content: flex-start;
  margin-bottom: 16px;
  white-space: nowrap;
}

.breadcrumbs li:not(:last-child) a {
  padding-left: 0;
}

.breadcrumbs li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.8;
  text-transform: uppercase;
  padding: 10px;
}

.breadcrumbs li:first-child a:hover {
  color: #ffd400;
}

.breadcrumbs li:last-child a {
  opacity: 1;
}

.breadcrumbs > li:not(:last-child):after {
  content: "|";
  position: relative;
}

.hero__bonus,
.hero__mobile {
  padding: 38px 40px;
}

.hero__data-bonus,
.hero__data-mobile {
  bottom: 0;
}

.hero__data-bonus h1 {
  margin-bottom: 10px;
}

.hero__data-bonus p {
  margin-bottom: 30px;
  text-align: left;
}

.background__article {
  position: relative;
  width: 100%;
  min-height: 304px;
}

.background__article img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  z-index: 0;
}

.article__list-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.article__list-item + .article__list-item {
  margin-top: 16px;
}

.article__list-item h3 {
  position: absolute;
  top: 16px;
  left: 16px;
  top: 0;
  left: 0;
  width: 100%;
  color: #ffd700;
  border: 1px solid #32334b;
  font-size: 28px;
  font-weight: 900;
  line-height: 32px;
  z-index: 2;
}

.article .article__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 60px 403px 20px 16px;
}

.article .article__content ul {
  margin: 8px 0;
}

.article .article__content ul li {
  position: relative;
  padding-left: 20px;
}

.article .article__content ul li + li {
  margin-top: 8px;
}

.article .article__content-para {
  padding: 76px 403px 36px 16px;
}
.article .article__content-para p + p {
  margin-top: 16px;
}

.article .article__content-nossa {
  padding: 80px 403px 40px 16px;
}
.article .article__content-dicas {
  padding: 120px 403px 80px 16px;
}
.article__banner-limitado {
  min-height: 397px;
}
.article__info-bonus {
  margin-left: 467px;
}
.article__wrap .article__info-casino {
  padding-left: 0;
  justify-content: flex-start;
}

.article__info-text-casino {
  margin-right: 94px;
  max-width: 706px;
}

.article__info .article__button-wrap-bonus {
  padding-top: 0;
}

/* -------MOBILE PAGE--------- */
.article .article__download {
  background: none;
  padding: 0;
}
.banner {
  border: 1px solid #ffd400;
  min-height: 212px;
  padding: 74px 100px 74px 60px;
}
.banner__data {
  position: relative;
  display: flex;
  flex-direction: row;
  max-width: 490px;
  text-align: center;
  z-index: 2;
  gap: 10px;
}

.banner__button {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
}

.banner__button-ios,
.banner__button-android {
  display: flex;
  justify-content: center;
  min-width: 240px;
  height: 64px;
  border-radius: 8px;
  background: #fdcd0a99;
  box-shadow: 0px -1px 20px 0px #fdcd0a99;
  border: 1px solid #ffd400;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  white-space: normal;
  padding: 16px 39px 16px 32px;
  margin-right: 0;
  margin-left: 0;
  z-index: 3;
  transition: all 0.5s;
}
.banner__button-android {
  padding: 16px 38px;
}

.banner__button-ios:hover,
.banner__button-android:hover {
  background: #ffd400;
  border: 1px solid #ffffff;
}

.banner__button-ios::before,
.banner__button-android::before {
  content: "";
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  right: 16px;
  background: url(../images/mobile/apple.svg) no-repeat center center / contain;
}

.banner__button-android::before {
  background: url(../images/mobile/android.svg) no-repeat center center /
    contain;
}

.article__text-mobile {
  padding: 16px;
  background: #14152d;
}
.banner__mobile-last {
  min-height: 321px;
}

.banner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner__logo {
  flex: 0 0 276px;
  padding: 0;
  margin-right: 0;
}

.banner__logo img {
  max-height: 73px;
}

.article .article__label {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: 1px solid #32334b;
}

.article .article__label-list {
  position: relative;
  background: #14152d;

  min-height: 156px;

  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 16px;
}

.article .article__label-list li {
  position: relative;
  padding-left: 20px;
}

.article__list-mobile {
  display: flex;
  gap: 16px;
  max-width: 100%;
  height: 100%;
}

.article__list-item-mobile {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(50% - 16px);
  min-width: calc(50% - 16px);
}
