* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  font-family: inherit;
  cursor: pointer;
  color: inherit;
}

body {
  position: relative;
  width: 100%;
  height: 100%;

  background-color: #0b0b0d;
  color: #fff;

  font-family: "Montserrat", sans-serif;
}

section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  z-index: 100;
}

.header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 720px;
  width: 100%;
  z-index: -1;
  margin-top: 80px;
}

.nav a {
  margin-right: 20px;
}

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

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

.logo {
  display: flex;
  gap: 8px;
}

.logo img {
  min-width: 50px;
}

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

.logo_text h1 {
  font-size: 24px;
  text-transform: uppercase;
}

.hero {
  background-image: url("../images/hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 720px;
  width: 100%;
}

@media (max-width: 714px) {
  .logo_text h1 {
    font-size: 18px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.offers-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.casino-item {
  position: relative;

  max-width: 100%;
  border-radius: 8px;
  border: 2px solid #8f8f8f;
  display: flex;
  background: linear-gradient(to right, #363550, #020027);
  justify-content: space-between;
  overflow: hidden;
  min-width: 100%;
  /*max-width: 1200px;*/
  /*z-index: -1;*/
}

.casino-item.item-vip {
  position: relative;

  max-width: 100%;
  border-radius: 8px;
  border: 2px solid #8f8f8f;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background: linear-gradient(to right, #00afc9, #5e00ff);
}

.best {
  position: absolute;
  left: 45px;
  top: -20px;
  z-index: 5;
}

.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: rgba(11, 11, 13, 0.7);
  min-height: 100%;
}

.item-vip .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: rgba(11, 11, 13, 0.7);
  min-height: 220px;
}

.yellow {
  color: #fff500;
  font-weight: bold;
}

.for_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.for_text p {
  font-size: 16px;
  font-weight: 600;
}

.for_text span {
  font-size: 12px;
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  margin-right: 40px;

  min-width: 300px;
  order: 2;
}

.grey-title {
  font-size: 23px;
  color: rgba(255, 255, 255, 0.7);
}

.price-block h1 {
  font-size: 36px;
  color: #fff;
  margin-top: 8px;
  margin-bottom: 8px;
}

.price-block h2 {
  font-size: 24px;
  color: #fff;
}

.deals-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 40px;

  order: 3;
}

.deals-list {
  display: flex;
  flex-direction: column;
}

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

.middle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.block1 {
  gap: 10px;
}

.block1 img {
  max-width: 50px;
  height: auto;
}

.right-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 15px 30px;
}

.main_button {
  border: none;
  border-radius: 8px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(to bottom, #fff500, #ffa800);

  padding: 15px 30px;
}

.payments {
  max-width: 230px;
}

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

.payment-title {
  display: none;
}

@media (max-width: 714px) {
  ul,
  li {
    margin: 0;
    padding: 0;
  }

  .best {
    left: 15px;
  }
  .casino-item {
    flex-direction: column;
    min-width: 100%;
  }

  .casino-item.item-vip {
    flex-direction: column;
    min-width: 100%;
  }

  .item-vip .left {
    min-height: 100%;
    flex-direction: row;
  }

  .left {
    flex-direction: row;
    padding: 10px;
  }

  .for_img {
    min-width: 100px;
  }

  .for_img img {
    min-width: 100%;
  }

  .for_text {
    align-items: center;
    justify-content: space-around;
  }

  .for_text p {
    font-size: 13px;
  }
  .for_text span {
    font-size: 10px;
  }

  .middle-wrapper {
    padding: 10px 3px;
    align-items: flex-start;
    justify-content: space-between;
  }

  .price-block {
    order: 3;
    margin-left: 0;
    margin-right: 10px;
    margin-top: 15px;

    min-width: 80px;
  }

  .price-block h1 {
    font-size: 26px;
  }

  .price-block h2 {
    text-align: center;
    font-size: 14px;
  }

  .grey-title {
    font-size: 17px;
  }

  .deals-block {
    order: 2;
    margin: 0;
    padding: 0;
  }

  .list__item span {
    font-size: 14px;
    margin: 0;
    padding: 0;
  }

  .payment-title {
    display: flex;
    font-size: 13px;
    margin-left: 10px;
    margin-bottom: 10px;
  }

  .payments {
    position: absolute;
    bottom: 10px;
    left: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    flex-wrap: wrap;
    max-width: 50%;
  }

  .button-wrapper {
    margin-bottom: 20px;
  }

  .main_button {
    padding: 16px 34px;
  }

  .verified span {
    font-size: 13px;
  }

  .right-block {
    align-items: flex-end;
    margin: 0 10px -20px 10px;
  }
}

.block1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.logo_text--think {
  font-size: 22px;
  font-weight: 300;
}

.about {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 49%;
}

.about-description {
  font-size: 16px;
}

.about-list {
  max-width: 49%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 4px solid #fff;
  border-radius: 8px;
  max-width: 45%;
  padding: 18px;
}

.item-main-title {
  font-weight: 700;
  font-size: 30px;
}

.item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.item-title {
  font-size: 14px;
  font-weight: 700;
}

.about-title {
  color: #00deff;
  font-size: 35px;
  line-height: 100%;
}

.documentation h1,
.documentation h2,
.documentation h3 {
  margin-top: 20px;
}

@media (max-width: 714px) {
  .about {
    flex-direction: column;
    justify-content: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-list {
    max-width: 100%;
    margin-top: 20px;
  }

  .about-list-item {
    max-width: 100%;
  }
}

.divider {
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer {
  background-color: #151521;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  gap: 20px;
}

.footer-icons ul {
  display: flex;
  align-items: center;
  gap: 50px;
}

.footer-icon img {
  max-height: 50px;
  width: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

.footer-bottom .logo img {
  min-width: 30px;
}

.footer-bottom .logo_text h1 {
  font-size: 16px;
}

@media (max-width: 714px) {
  .for_text p {
    /*margin-top: 20px;*/
  }

  .inherit_title {
   	padding-top: 80px
	}

  .offers-list {
    margin-top: 70px;
  }

  .footer {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .footer-icon img {
    max-height: 30px;
    width: auto;
  }

  .footer-icons ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-bottom {
    justify-content: center;
  }

  .footer-bottom .copyright {
    display: none;
  }
  .logos_section {
  padding-top: 40px; /* Adjust the value as needed */
}

}
