@font-face {
  font-family: "Geologica-ExtraBold";
  font-weight: 800;
  font-display: swap;
  src: local("Geologica-ExtraBold"),
    url("../fonts/Geologica-ExtraBold.ttf");
}

@font-face {
  font-family: "Geologica-Bold";
  font-weight: 700;
  font-display: swap;
  src: local("Geologica-Bold"),
    url("../fonts/Geologica-Bold.ttf");
}

@font-face {
  font-family: "Geologica-Medium";
  font-weight: 500;
  font-display: swap;
  src: local("Geologica-Medium"),
    url("../fonts/Geologica-Medium.ttf");
}

@font-face {
  font-family: "Geologica-Regular";
  font-weight: 400;
  font-display: swap;
  src: local("Geologica-Regular"),
    url("../fonts/Geologica-Regular.ttf");
}

@font-face {
  font-family: "Geologica-Light";
  font-weight: 300;
  font-display: swap;
  src: local("Geologica-Light"),
    url("../fonts/Geologica-Light.ttf");
}

body {
  height: 100vh;
  background-color: #F2F2F2;
  color: #080D25;
  font-family: "Geologica-Light";
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

p {
  padding: 12px 0;
}

input[type="search"] {
  font-size: 14px;
  color: #111111;
  padding: 16px 16px 16px 40px;
  border: 1px solid #717587;
  border-radius: 24px;
  position: relative;
  width: 100%;
}

input[type="search"]::placeholder {
  color: #717587;
}

input[type="text"]:hover,
input[type="tel"]:hover {
  border-color: #111111;
}

input:focus {
  /* background-color: #F8F8F8; */
}


.link-btn {
  font-family: "Geologica-Regular";
  font-weight: 400;
  font-size: 14px;
  background-color: #3755FA;
  color: #FFFFFF;
  border-radius: 61px;
  padding: 12px 32px;
  display: inline-block;
}

.link-btn:hover {
  background-color: #334EE1;
}

.link-btn:active {
  background-color: #22359D;
}

.more-btn {
  border-radius: 61px;
  border: 2px solid #3755FA;
  font-family: "Geologica-Regular";
  font-weight: 400;
  font-size: 14px;
  padding: 16px 40px;
  color: #000;
}

.more-btn:hover {
  background-color: rgba(55, 85, 250, 0.1)
}

.more-btn:active {
  background-color: rgba(55, 85, 250, 1);
  color: #FFFFFF
}

.btn-slider {
  border-radius: 4px;
  background-color: #3755FA;
  padding: 12px 16px;
  min-width: 48px;
  height: 40px;
}

.btn-slider-left {
  background-image: url(../img/arrow-sl-left.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.btn-slider-right {
  background-image: url(../img/arrow-sl-right.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.btn-slider:hover {
  background-color: #334EE1
}

.btn-slider:active {
  background-color: #22359D
}

.top-btn {
  font-family: "Geologica-Medium";
  font-weight: 500;
  font-size: 14px;
  position: fixed;
  bottom: 35px;
  right: 10%;
  z-index: 99;
  font-size: 15px;
  background-color: #3755FA;
  color: #fff;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 4px;
  box-shadow: 0px 4px 16px 0px #3755FA;
}

.top-btn::after {
  content: url(../img/arrow-up.svg);
  margin-left: 12px;
  vertical-align: middle;
}

/*Burger menu*/

.burger {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #3755FA;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.burger-line {
  width: 13px;
  height: 1px;
  background-color: #FFFFFF;
  display: block;
  position: relative;
}

.burger-line::after {
  content: '';
  top: -5px;
  width: 13px;
  height: 1px;
  background-color: #FFFFFF;
  display: block;
  position: absolute;
}

.burger-line::before {
  content: '';
  top: 5px;
  width: 13px;
  height: 1px;
  background-color: #FFFFFF;
  display: block;
  position: absolute;
}

.burger-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.burger-menu {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 28px;
  right: 0;
  position: absolute;
  padding: 16px;
  width: 320px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 10;
}

.burger-menu--action {
  display: flex;
}

.burger-menu__title {
  font-family: "Geologica-Regular";
  font-weight: 400;
  font-size: 16px;
  color: #717587;
}

.burger-menu__link {
  display: block;
  font-family: "Geologica-Regular";
  font-weight: 400;
  font-size: 14px;
}

.burger-menu__title,
.burger-menu__link {
  padding: 12px;
}

.close-btn {
  background-image: url(../img/icon-close.svg);
  width: 24px;
  height: 24px;
}

/*Burger menu*/

.search__box {

  background: url(../img/icon-search.svg) no-repeat left;
  background-position: 16px;
}


.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  background-color: #FFFFFF;
  box-shadow: 0px 2px 2px 0px #211E1E14;
  box-shadow: 0px 4px 16px 0px #211E1E0A;

}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.logo__inner {
  display: flex;
}

.logo__link {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-menu__list {
  display: flex;
  gap: 32px;
}

.header__lang-search {
  display: flex;
  gap: 16px;
  align-items: center;
}

.logo {
  font-family: "Geologica-ExtraBold";
  font-weight: 800;
  font-size: 32px;
}

.menu__link {
  font-size: 14px;
}

.dropbtn {
  padding: 5px;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown:hover .dropdown-lang {
  display: block;
}



/* Banner */

.banner {
  max-width: 1200px;
  margin: clamp(1.25rem, 0.5rem + 3.333vw, 3rem) auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.banner-img img {
  object-fit: cover;
}

.banner-img__item {
  display: none;
  align-items: center;
  position: relative;
  border-radius: 8px;
  max-width: 1200px;
  width: 100%;
  height: 380px;
  background-position: center;
}

.banner-img__item:nth-child(1) {
  background-image: url(../img/banner/1_banner.webp);
}

.banner-img__item:nth-child(2) {
  background-image: url(../img/banner/2_banner.webp);
}
.banner-img__item:nth-child(3) {
  background-image: url(../img/banner/3_banner.webp);
}
.banner-img__item:nth-child(4) {
  background-image: url(../img/banner/4_banner.webp);
}

.banner__pagination {
  position: absolute;
  height: 3px;
  display: flex;
  gap: 2px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 0px;
}

.banner__text-inner {
  /* position: absolute; */
  padding-left: clamp(1.25rem, -11.652rem + 34.405vw, 19.313rem);
}

.banner__pagination-1,
.banner__pagination-2,.banner__pagination-3,.banner__pagination-4 {
  flex: 1 0 22%;
  border-radius: 28px;
  background-color: #E2E2E1;
}

.banner__pagination-1.active,
.banner__pagination-2.active,.banner__pagination-3.active,.banner__pagination-4.active {
  background-color: #D5812D;
}

.banner-img__list {
  margin: 0 auto;
  overflow: hidden;
  max-width: 1200px;
  height: 380px;
}

.banner-img__list li.active {
  display: flex;
}

.banner__text {
  max-width: 471px;
  font-family: "GolosText-Bold";
  font-weight: 700;
  font-size: clamp(1rem, 0.732rem + 1.19vw, 1.625rem);
  color: #fff;
}

@media(max-width:360px) {

  .banner-img__item,
  .banner-img__list {
    height: 140px;
  }

  .banner-img__item {
    background-size: cover;
    background-position: bottom 0px right -170px;
  }
}

/* Banner */

.banner-img {
  width: 100%;
  position: relative;
  height: 380px;
  overflow: hidden;
  background-repeat: no-repeat;
  border-radius: 16px;
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.banner-img__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.banner-img__item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-img__list li.active {
  opacity: 1;
}

.block-content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 2px 0px #211E1E14;
  box-shadow: 0px 4px 16px 0px #211E1E0A;

}

.events__inner {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.events__btn {
  display: none;
}

.events__list {
  display: flex;
}

.events__item {
  min-width: 150px;
  padding: 16px;
  border-radius: 8px;
}

.events__item:hover {
  background-color: #3755FA;
}

.events__item:hover .events__text {
  color: #FFFFFF;
}

.events__item:hover .events__icon {
  fill: #fff;
  width: 48px
}

.events__text {
  font-family: "Geologica-Medium";
  font-weight: 500;
  text-align: center;
  padding-top: 8px;
}

.events__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.events__icon {
  width: 40px;
  height: 40px;
  color: #080D25;
}

.content__inner {
  margin-top: 24px;
  padding: 24px;
}

.main-title,
.third-title {
  font-family: "Geologica-Medium";
  font-weight: 500;
  font-size: 22px;
}

.link-more {
  padding-top: 24px;
  font-family: "Geologica-Regular";
  font-weight: 400;
  display: inline-block;
}

.link-more::after {
  content: url(../img/arrow-down-blue.svg);
  margin-left: 8px;
  vertical-align: middle;
}

.articles__inner {
  margin-top: 16px;
  padding: 16px;
}

.articles__link {
  font-family: "Geologica-Regular";
  font-weight: 400;
  padding: 16px 12px;
  display: block;
  width: 100%;
}

.article__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 16px;
}

.article__item {
  flex: 0 1 50%
}

.title-post-1::before,
.title-post-2::before,
.title-post-3::before,
.title-post-4::before,
.title-post-5::before,
.title-post-6::before,
.title-post-7::before,
.title-post-8::before,
.title-post-9::before,
.title-post-10::before {
  margin-right: 8px;
  margin-left: 12px;
  vertical-align: middle;
}

.title-post-1::before {
  content: url(../img/icon-trophy.svg);
}

.title-post-2::before {
  content: url(../img/icon-prince.svg);
}

.title-post-3::before {
  content: url(../img/icon-briefcase.svg);
}

.title-post-4::before {
  content: url(../img/icon-unicorn.svg);
}

.title-post-5::before {
  content: url(../img/icon-1st-place.svg);
}

.title-post-6::before {
  content: url(../img/icon-technologist.svg);
}

.title-post-7::before {
  content: url(../img/icon-credite-cards.svg);
}

.title-post-8::before {
  content: url(../img/icon-star-structs.svg);
}

.title-post-9::before {
  content: url(../img/icon-laptop.svg);
}

.title-post-10::before {
  content: url(../img/icon-locked.svg);
}



.title__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-post {
  width: 90%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  /* padding: 16px 12px; */
}

.title-post:hover {
  background-color: #3755FA;
}

.title-post:hover .articles__link {
  color: #FFFFFF
}

.arrow-btn {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-block {
  background-image: url(../img/arrow-up-blue.svg);
}

.top-casino__inner {
  margin-top: 24px;
  padding: 24px;
}

.top-casino__name-mob {
  display: none;
}

.secondary-title {
  font-family: "Geologica-Bold";
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 24px;
  line-height: 40px;
}

.text-aling {
  text-align: center;
}

.name-casino {
  font-family: "Geologica-Medium";
  font-weight: 500;
  font-size: 20px;
}


.table-name__list {
  padding-top: 16px;
  display: flex;
}


.top-casino__item {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  padding: 16px 0;
}

ol.top-casino__list {
  list-style-type: none;
  counter-reset: num;
}

ol.top-casino__list li:before {
  content: counter(num);
  counter-increment: num;
  width: 50px;
  font-family: "Geologica-Medium";
  font-weight: 500;
  font-size: 20px;
}

.top-casino__block-name {
  display: flex;
  align-items: center;
  gap: 32px;
}

.table-name__list,
.top-casino__list {
  padding-left: 24px;
  padding-bottom: 16px;
}

.item-title__item:nth-child(1) {
  width: 50px;
}

.item-title__item:nth-child(2),
.top-casino__block-name {
  min-width: 320px;
}

.item-title__item:nth-child(3),
.top-casino__bonus {
  width: 60%;
}

.item-title__item:nth-child(4),
.top-casino__link {
  width: 150px;
}

.secondary-content__inner {
  margin-top: 24px;
  padding: 24px;
}


.name-column {
  font-family: "Geologica-Medium";
  font-weight: 500;
  font-size: 20px;
  color: #2B2F33;
}

.btn-style {
  margin: 0 auto;
  margin-top: 24px;
}

.secondary-content__list {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.secondary-content__item::before {
  content: url(../img/icon-trophy.svg);
  margin-right: 8px;
  vertical-align: middle;
}

.article__items--off {
  display: none;
}

.questions__inner,
.feedback__inner {
  margin-top: 24px;
}

.questions__list,
.feedback__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.questions__item,
.feedback__item {
  display: block;
  padding: 24px;
}

.block-questions,
.block-feedback {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.block-questions__text {
  font-family: "Geologica-Regular";
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  text-align: left;
}

.questions-1::before {
  content: url(../img/icon-777.svg);
  margin-right: 16px;
  vertical-align: middle;
}

.questions-2::before {
  content: url(../img/icon-locked.svg);
  margin-right: 16px;
  vertical-align: middle;
  width: 20px;
}

.questions-3::before {
  content: url(../img/icon-technologist.svg);
  margin-right: 16px;
  vertical-align: middle;
}

.questions-4::before {
  content: url(../img/icon-777.svg);
  margin-right: 16px;
  vertical-align: middle;
}

.questions-5::before {
  content: url(../img/icon-777.svg);
  margin-right: 16px;
  vertical-align: middle;
}

.questions__text {
  transition: 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
}

.questions__content {
  padding-top: 16px;
}

.feedback__text--off {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: .3s ease-in-out;
}

.questions__text--action,
.feedback__text--action {
  display: block;
}

.block-questions__img {
  margin-right: 16px;
  width: 20px;
  height: 20px;
}


.block-questions__btn--down,
.block-questions__btn--up,
.block-feedback__btn--down,
.block-feedback__btn--up {
  width: 16px;
  height: 16px;
}

.block-questions__btn--down,
.block-feedback__btn--down {
  background-image: url(../img/arrow-down-blue.svg);
}

.block-questions__btn--up,
.block-feedback__btn--up {
  background-image: url(../img/arrow-up-blue.svg);
}

.block-feedback__text {
  font-family: "Geologica-Light";
  font-weight: 300;
  font-size: 14px;
  color: #3755FA;
}

.feedback__text {
  padding-top: 8px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.pagination-text {
  text-align: center;
  width: 74px;
  font-family: "Geologica-Medium";
  font-weight: 500;
  font-size: 14px;
}

.footer__column-list {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__column-link {
  font-family: "Geologica-Regular";
  font-weight: 400;
  font-size: 16px;
  color: #717587;
}

.footer__row-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.footer__inner {
  border-top: 1px solid #DFE3E8;
  margin-top: 72px;
  margin-bottom: 24px;
  padding-top: 34px;
  display: flex;
  justify-content: space-between;
}

.footer__column-one {
  display: flex;
  gap: 120px;
}

.footer__column-two {
  width: 475px;
  margin-right: 68px;
}

.footer__text {
  font-family: "Geologica-Regular";
  font-weight: 400;
  padding-top: 24px;
  line-height: 26px;
}

.dropdown {
  font-family: "Geologica-Regular";
  font-weight: 400;
  font-size: 14px;
}

.flag-icon {
  border-radius: 50%;
  border: 1px solid #000;
  width: 36px;
  height: 36px;
  margin-right: 12px;
}

.dropbtn {
  display: flex;
  align-items: center;
}

.dropbtn:hover {
  background-color: rgba(55, 85, 250, 0.2);
}

.arrow-footer::after {
  content: url(../img/arrow-down.svg);
  margin-left: 25px;
}

.arrow-header::after {
  content: url(../img/arrow-down.svg);
}

.dropdown-lang {
  display: none;
  position: absolute;
  background-color: #080D25;
  border-radius: 8px;
  padding: 24px;
  z-index: 10;
}

.flag-icon-header,
.flag-icon-item {
  width: 28px;
  height: 28px;
}

.lang-link {
  font-family: "Geologica-Regular";
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}

.dropdown-lang__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/*text img*/

.text-block__img{
  width: 90%;
  margin: 0 auto;
}

.text__img{
  padding-top: 20px;
  max-width: 80%;
  height: auto;
  margin: 0 auto;
}

/*text img*/

/*Table*/
.table-scroll{
  max-width: 100%;
  overflow: auto;
}

.table {
	width: 100%;
	border: none;
	margin-bottom: 20px;
}
.table thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;
	background: #d8d8d8;
	font-size: 14px;
}
.table thead tr th:first-child {
	border-radius: 8px 0 0 8px;
}
.table thead tr th:last-child {
	border-radius: 0 8px 8px 0;
}
.table tbody td {
	text-align: left;
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}
.table tbody tr:nth-child(even){
	background: #f3f3f3;
}
.table tbody tr td:first-child {
	border-radius: 8px 0 0 8px;
}
.table tbody tr td:last-child {
	border-radius: 0 8px 8px 0;
}

/*end Table*/


/*404*/

.error-404 {
  display: flex;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 40px;
}

.error-404__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
  align-items: center;
}

.error-404__text {
  font-family: "Geologica-Medium";
  font-weight: 500;
  font-size: 34px;
}

.error-404__h1 {
  font-family: "Geologica-Bold";
  font-weight: 700;
  font-size: 290px;
  color: #3755FA;
  line-height: 250px;
}

.error-404__descriptopn {
  font-family: "Geologica-Light";
  font-weight: 300;
  font-size: 24px;
  width: 477px;
  text-align: center;
}

.error-404__chips {
  position: absolute;
}

.error-404__chips-13 {
  top: 100%;
  right: 0;
}

.error-404__chips-15 {
  top: 0;
  right: 0;
}

.error-404__chips-12 {
  top: 47%;
  left: 66%;
}

.error-404__chips-7 {
  top: 26%;
  left: 31%;
}

.error-404__chips-4 {
  top: 44%;
  left: 20%;
}

.error-404__chips-9 {
  top: 3%;
  left: 0;
}

.error-404__chips-11 {
  top: 70%;
  left: 0;
}

/*404*/






@media(max-width:1025px) {
  .container {
    padding: 0 8px;
  }

  .nav-menu__list {
    gap: 19px;
  }

  .events__btn {
    display: block;
  }

  .events__list {
    max-width: 865px;
    overflow-x: scroll;
  }

  .events__list::-webkit-scrollbar {
    display: none;
  }

  .footer__column-two {
    margin-right: 0;
  }

}

@media(max-width:669px) {

  .item-title__item:nth-child(2),
  .top-casino__block-name {
    min-width: 120px;
  }

  .top-casino__block-name{
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .top-casino__img img{
    width: 85px;
  }


  .nav-menu__list {
    display: none;
  }

  .article__list {
    align-items: center;
  }

  .title-post {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .title-post-1::before {
    display: block;
  }

  .mob__title {
    max-width: 470px;
    margin: 0 auto;
  }

  .top-casino__name-desc {
    display: none;
  }

  .top-casino__name-mob {
    display: block;
  }

  .top-casino__bonus-desc {
    max-width: 185px;
    display: block;
  }

  .footer__inner {
    flex-direction: column;
    gap: 34px;
  }

  .footer__column-one {
    justify-content: space-between;
  }
}

@media(max-width:485px) {

/*text img*/

.text-block__img{
  width: 100%;
}

.text__img{
  max-width: 100%;
}

/*text img*/




  .error-404__chips-11 {
    display: none;
  }

  .error-404__chips-12 {
    display: none;
  }

  .logo {
    font-size: 28px;
  }

  .header__lang-search {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header__inner {
    justify-content: center;
  }

  .logo__inner {
    margin: 0 auto;
  }

  .banner-img {
    margin-top: 16px;
    height: 240px;
  }

  .events__inner {
    margin-top: 20px;
  }

  .events__btn {
    display: none;
  }

  .events__text {
    font-size: 12px;
  }

  .events__icon {
    width: 28px;
    height: 28px;
  }

  .events__item {
    min-width: 104px;
    padding: 8px;
  }

  .events__item:hover .events__icon {
    fill: #fff;
    width: 30px
  }

  body {
    font-size: 14px;
  }

  p {
    padding: 10px 0;
  }

  .main-title,
  .third-title {
    font-size: 20px;
  }

  .link-more {
    padding-top: 16px;
  }

  .article__list {
    margin-top: 12px;
    flex-direction: column;
    align-items: start;
  }

  .articles__link {
    font-size: 16px;
  }

  .article__item,
  .footer__column-one,
  .secondary-content__item::before,
  .footer__row-logo .logo__inner,
  .top-casino__span-link {
    display: none;
  }

  .article__item:nth-child(1),
  .article__item:nth-child(2),
  .article__item:nth-child(3),
  .article__item:nth-child(4) {
    display: block;
  }

  .content__inner {
    margin-top: 20px;
  }

  .articles__inner {
    margin-top: 12px;
  }

  .top-casino__inner {
    margin-top: 16px;
    padding: 16px;
  }

  .top-casino__list {
    padding-left: 20px;
  }

  .secondary-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .table-name__list {
    display: none;
  }

  .secondary-content__inner {
    margin-top: 40px;
    padding: 16px;
  }

  .secondary-content__item {
    display: flex;
    align-items: center;
  }

  .feedback__inner {
    margin-top: 16px;
  }

  .footer__row-logo {
    justify-content: center;
  }

  .footer__inner {
    margin-top: 32px;
    padding-top: 28px;
  }

  .footer__text {
    display: flex;
    align-items: center;
    padding-top: 20px;
    margin: 0 20px;
  }

  .footer__text::before {
    content: url(../img/icon-18+.svg);
    margin-right: 16px;
    display: block;
  }

  .footer__column-two {
    width: 100%;
  }

  ol.top-casino__list li:before {
    content: counter(num)'.';
    font-size: 14px;
    width: 15px;
    margin-right: 8px;
  }

  .top-casino__block-name{
    flex-direction: row;
  }

  .top-casino__item-link {
    background-image: url(../img/arrow-sl-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 17px 27px !important;
    display: inline-block;
  }

  .link-btn {
    padding: 10px 20px;
  }

  .name-casino {
    font-size: 14px;
  }

  .top-casino__bonus {
    position: absolute;
    left: 104px;
    padding-right: 30px;
    top: 30px;
    line-height: 1;
  }

  .top-casino__img img {
    width: 75px;
  }

  .top-casino__bonus-desc {
    max-width: 100%;
    font-size: 12px;
  }

  .top-casino__item {
    flex-wrap: wrap;
    position: relative;
    padding: 8px 0;
  }

  .top-casino__list {
    padding-left: 0;
    padding-bottom: 0;
  }

  .top-casino__link {
    width: 50px;
    position: absolute;
    right: 0;
  }

  .banner-img img {
    height: 240px;
    max-width: 485px;
  }

  /*404*/

  .error-404 {
    padding-top: 16px;
  }

  .error-404__text {
    font-size: 26px;
  }

  .error-404__h1 {
    font-size: 120px;
    line-height: 50px;
  }

  .error-404__chips-15,
  .error-404__chips-13,
  .error-404__chips-9 {
    display: none;
  }

  .error-404__descriptopn {
    width: 284px;
    font-size: 16px;
  }

  .error-404__chips-7 {
    top: 14%;
    left: 14%;
  }

  .error-404__chips-7 img {
    width: 70px;
  }

  .error-404__chips-11 {
    top: 9%;
    left: 333px;
  }

  .error-404__chips-4 {
    top: 20%;
    left: -23%;
  }

  .error-404__chips-12 {
    top: 30%;
    left: 71%;
  }

  /*404*/
}

/* Text block */

.text-block__content {
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 2px 0px #211E1E14;
  box-shadow: 0px 4px 16px 0px #211E1E0A;
  margin-bottom: 24px;
}

.text-block__content p {
  margin: 6px 0;
  display: inline-block;
}

.text-block__content-button {
  font-size: 16px;
  color: #080D25;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.text-block__content-hidden {
  display: none;
}

.inline-display {
  display: inline;
}

.toggle-icon {
  transition: transform .3s ease-out;
}

.rotate--90 {
  margin-left: 4px;
  transform: rotate(180deg);
}

.text-blok{
  margin-top: 24px;
}

/* Text block */
@media (max-width: 450px) {
  .banner-img__item {
    height: 148px;
    background-size: cover;
  }
  .banner-img__item:nth-child(1) {
    background-image: url(../img/banner/banner1-mobile.png);
  }

  .banner-img__item:nth-child(2) {
    background-image: url(../img/banner/banner2-mobile.png);
  }
  .banner-img__item:nth-child(3) {
    background-image: url(../img/banner/banner3-mobile.png);
  }
  .banner-img__item:nth-child(4) {
    background-image: url(../img/banner/banner4-mobile.png);
  }
  .banner-img__list {
    height: 148px;
  }
}
․casino-box {
  display: grid !important;
  grid-template-columns: repeat(3, 354px);
}

.articles {
  margin-bottom: 24px;
}


.faq-content,
.review-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.faq-item,
.review-item {
  cursor: pointer;
  border-radius: 12px;
}

.review-item {
  border: 1px solid  #FFF;
  background:  #FFF;
  box-shadow: 0px 4px 16px 0px rgba(33, 30, 30, 0.04), 0px 2px 2px 0px rgba(33, 30, 30, 0.08)
}

.faq-item-header-wrapper,
.review-item-header-wrapper {
  transition: opacity .3s ease-out;
  padding: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
}
.faq {
  padding-top: 12px;
}
.faq-item__title {
  font-weight: 600;
  font-size: 16px;
  display: flex;
}
.faq_icon {
  margin-right:16px ;
}
.faq-item-content,
.review-item-content {
  padding: 12px 16px 16px;

}

.faq-item-content-hidden.open {
  display: block;
  border-radius: 8px;
  border: 1px solid  #FFF;

  background:#FFF;
  box-shadow: 0px 4px 16px 0px rgba(33, 30, 30, 0.04), 0px 2px 2px 0px rgba(33, 30, 30, 0.08);
}

.faq-item-content-hidden,
.review-item-content-hidden {
  display: none;
}

.rotate-180 {
  transform: rotate(180deg);
}

.faq-content {
  row-gap: 12px;
}

.faq-pagination,
.review-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-pagination-prev-button:disabled,
.faq-pagination-next-button:disabled,
.review-pagination-prev-button:disabled,
.review-pagination-next-button:disabled {
  cursor: not-allowed;
  opacity: .5;
}

.faq-pagination-prev-button,
.faq-pagination-next-button,
.review-pagination-prev-button,
.review-pagination-next-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background:  #3755FA;
  box-shadow: 0px 4px 16px 0px rgba(33, 30, 30, 0.04), 0px 2px 2px 0px rgba(33, 30, 30, 0.08);
}

.faq-pagination-prev-button img,
.review-pagination-prev-button img {
  z-index: 2;
  transform: rotate(90deg);
}

.faq-pagination-next-button img,
.review-pagination-next-button img {
  z-index: 2;
  transform: rotate(270deg);
}

.faq-pagination-label,
.review-pagination-label {
  font-weight: 700;
  font-size: 16px;
  width: 90px;
  text-align: center;
  line-height: 20px;
  letter-spacing: 0;
  color: #080D25;
}
.h2__title, .review__title {
  font-family: "Geologica-Bold";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
}
.block-title__user {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-item__title,
.review-item__data {
  color: #DDDDE3;
}

.review-item__data {
  font-family: "GolosText-Medium";
  font-weight: 500;
  font-size: 14px;
}

.review-content {
  row-gap: 8px;
}

.review-item__item {
  padding: 24px 16px;
}

.review-item__top-title,
.review-item__rating-list,
.review-item__block-title {
  display: flex;
}

.review-item__top-title {
  margin-bottom: 16px;
  justify-content: space-between;
}

.review-item__block-title {
  gap: 8px;
}

.review-item__btn-more {
  margin-top: 16px;
}
.faq .h2__title  {
  text-align: center;
}

.accordion .review-item {
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  padding:16px;
  margin-bottom: 16px;
}

.review-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-item-content-visible {
  display: block;
  color: #3755FA;
}
#block_big {
  padding-top: 24px;
}
.review-item-content-hidden {
  display: none;
  padding: 10px 0;
}

.review-item-content-hidden.open {
  display: block;
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.rotate-180 {
  transform: rotate(180deg);
}

/* Pagination styles */


button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.social-block {
  padding-top: 24px;
  display: flex;
  gap: 8px;
}

.social-block a {
  display: inline-block;
  width: 40px;
  height: 40px;
}

.social-block a img {
  width: 100%;
  height: auto;
}