/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  font-family: Roboto, sans-serif;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

a {
  text-decoration: none;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Make sure textarea without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

.body {
  position: relative;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1360px;
}

.body {
  background-color: #f8cd18;
}

.header {
  background: #7227c8;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
@media (max-width: 650px) {
  .header {
    padding: 8px 0;
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  max-width: 80px;
  display: block;
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 650px) {
  .header__nav {
    position: fixed;
    z-index: 99;
    top: 0;
    left: -100%;
    background: #fff;
    color: #000;
    height: 100%;
    transition: 0.2s ease;
  }
  .header__nav.active-menu {
    left: 0;
  }
}
.header__nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 650px) {
  .header__nav ul {
    flex-direction: column;
    align-items: start;
  }
}
.header__nav ul li a {
  padding: 15px;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
}
.header__nav ul li a::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  transform: scaleX(0);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 0.9, 0.7, 1);
  transform-origin: 50%;
  border-radius: 3px;
}
@media (any-hover: hover) {
  .header__nav ul li a:hover::before {
    transform: scaleX(1);
  }
}

.main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(181deg, rgb(110, 74, 185) 0%, rgb(110, 74, 185) 6.67%, rgb(109, 73, 185) 13.34%, rgb(108, 72, 184) 20.01%, rgb(107, 70, 184) 26.68%, rgb(106, 69, 183) 33.35%, rgb(104, 67, 182) 40.02%, rgb(103, 65, 181) 46.69%, rgb(101, 62, 181) 53.36%, rgb(100, 60, 180) 60.03%, rgb(98, 58, 179) 66.7%, rgb(97, 57, 178) 73.37%, rgb(96, 55, 178) 80.04%, rgb(95, 54, 177) 86.71%, rgb(94, 53, 177) 93.38%, rgb(94, 53, 177) 100%);
  font-size: 18px;
  box-shadow: rgb(70, 29, 125) 0px 5px 20px 0px;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  max-width: 260px;
  padding: 10px 40px;
}

.second-btn {
  background: #7227c8;
  color: #fff;
  border: 1px solid #7227c8;
  border-radius: 6px;
  padding: 8px 25px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
}

.main {
  width: calc(100% - 10px);
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}
@media (min-width: 600px) {
  .main {
    width: calc(100% - 30px);
  }
}

.burger-btn {
  width: 30px;
  height: 24px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 650px) {
  .burger-btn {
    display: none;
  }
}
.burger-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.burger-btn span:nth-child(1) {
  top: 0px;
}
.burger-btn span:nth-child(2) {
  top: 11px;
}
.burger-btn span:nth-child(3) {
  top: 21px;
}
.burger-btn.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.burger-btn.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.hero {
  padding-top: 80px;
}
.hero .hero__swiper-slide {
  padding: 250px 0;
}
@media (max-width: 768px) {
  .hero .hero__swiper-slide {
    padding: 80px 0;
    height: 500px;
  }
}
.hero .hero__swiper-slide_1 {
  background: url("../img/bg-1.jpg") no-repeat center/cover;
}
.hero .hero__swiper-slide_2 {
  background: url("../img/bg-2.jpg") no-repeat center/cover;
}
.hero_aboniment .hero__swiper-slide_1 {
  background: url("../img/bg-3.jpg") no-repeat center/cover !important;
}
.hero_bbe .hero__swiper-slide_1 {
  background: url("../img/bg-4.jpg") no-repeat center/cover !important;
}
.hero_fav .hero__swiper-slide_1 {
  background: url("../img/bg-3.jpg") no-repeat center/cover !important;
}
@media (max-width: 768px) {
  .hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
  }
}
.hero__title {
  max-width: 50%;
  font-size: 43px;
  font-weight: 500;
  color: #100e33;
}
@media (max-width: 768px) {
  .hero__title {
    max-width: 100%;
    color: #fff;
    text-align: center;
    position: relative;
  }
  .hero__title::before {
    content: "";
    display: block;
    background: rgba(114, 39, 200, 0.7);
    width: 100%;
    height: 110%;
    position: absolute;
    z-index: -1;
    border-radius: 15px;
    top: -5%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
@media (max-width: 650px) {
  .hero__title {
    font-size: 33px;
  }
}
.hero__btn {
  margin-top: 40px;
}

.footer {
  background: #7227c8;
  color: #fff;
  padding: 30px 0;
}
.footer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 805px) {
  .footer__header {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__logo {
  max-width: 80px;
  display: block;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__help {
  display: flex;
  align-items: center;
}
@media (max-width: 805px) {
  .footer__help {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
.footer__item {
  max-height: 80px;
  max-width: 150px;
}
.footer__item:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 805px) {
  .footer__item:not(:last-child) {
    margin-right: 0;
  }
}
.footer__item a {
  display: block;
  width: auto;
}
.footer__item img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}
.footer__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 805px) {
  .footer__footer {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__nav ul {
  margin: 0;
  padding: 0;
}
@media (max-width: 805px) {
  .footer__nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
}
.footer__nav ul li:not(:last-child) {
  margin-bottom: 20px;
}
.footer__nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
}
.footer__text {
  max-width: 70%;
}
@media (max-width: 805px) {
  .footer__text {
    max-width: 100%;
    text-align: center;
  }
}
.footer__end {
  margin-top: 30px;
}
.footer__copy {
  text-align: center;
}

.welcome__section {
  padding: 40px 0;
}
.welcome__section .container {
  display: flex;
  gap: 30px;
}
@media (max-width: 920px) {
  .welcome__section .container {
    flex-direction: column;
  }
}
.welcome__title {
  margin-bottom: 20px;
}
.welcome__text {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .welcome__content {
    flex: 1 1 70%;
  }
}

.second-title {
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  color: #3c4858;
}

.par {
  color: #3c4858;
  font-size: 18px;
  line-height: 1.618;
}

.games {
  display: grid;
  gap: 5px;
}
@media (min-width: 480px) {
  .games {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (min-width: 1200px) {
  .games {
    grid-template-columns: repeat(3, 1fr);
  }
}
.games__item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px;
}
.games__item::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(252, 207, 20, 0.92);
}
.games__image {
  position: relative;
  z-index: 4;
  width: 75%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  border: 15px solid rgba(255, 255, 255, 0.7);
}
.games__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
}
.games__title {
  margin-top: 15px;
  color: #100e33;
  font-size: 24px;
  text-align: center;
  position: relative;
  z-index: 4;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}

.sidebar {
  background: #7227c8;
  border-radius: 20px;
  padding: 30px 50px;
  flex: 1 1 30%;
  height: fit-content;
}
@media (max-width: 920px) {
  .sidebar {
    padding: 30px;
  }
}
@media (max-width: 920px) {
  .sidebar__games {
    display: flex;
    gap: 30px;
    width: fit-content;
    overflow: scroll;
  }
}
.sidebar__title {
  text-align: center;
  color: #fff;
  font-size: 25px;
  margin-bottom: 20px;
}
.sidebar__wrapper {
  overflow: scroll;
}
.sidebar .games__item {
  position: relative;
  display: block;
}
.sidebar .games__item:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 920px) {
  .sidebar .games__item:last-child {
    margin-right: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 920px) {
  .sidebar .games__item .games__image {
    width: 200px;
  }
}

.offer__section {
  padding: 40px 0;
  text-align: center;
}
.offer__wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .offer__wrapper {
    flex-direction: column-reverse;
  }
}
.offer__image {
  flex: 1 1 30%;
}
@media (max-width: 768px) {
  .offer__image {
    margin-left: auto;
    margin-right: auto;
  }
}
.offer__content {
  flex: 1 1 70%;
}
.offer__title {
  margin-bottom: 30px;
}
.offer__par {
  text-align: left !important;
}
.offer__btn {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.offer__btn span {
  display: block;
}

.aboniment .welcome__section .container {
  display: block;
}
@media (min-width: 992px) {
  .aboniment .welcome__content {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

.aboniment-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 620px) {
  .aboniment-form {
    width: 100%;
  }
}
.aboniment-form input,
.aboniment-form textarea {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid gray;
  position: relative;
}
.aboniment-form input::before,
.aboniment-form textarea::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  background-color: red;
  transition: all 0.3s cubic-bezier(0.34, 0.9, 0.7, 1);
  transform-origin: 50%;
  border-radius: 3px;
}
.aboniment-form input:focus::before,
.aboniment-form textarea:focus::before {
  transform: scaleX(1);
}
.aboniment-form input {
  height: 55px;
  margin-bottom: 30px;
}
.aboniment-form textarea {
  margin-bottom: 40px;
}
.aboniment-form button {
  box-shadow: 0 2px 2px 0 rgba(233, 30, 99, 0.14), 0 3px 1px -2px rgba(233, 30, 99, 0.2), 0 1px 5px 0 rgba(233, 30, 99, 0.12);
  background: #e91e63;
  color: #555;
  height: auto;
  cursor: pointer;
  background: 0 0;
  box-shadow: none;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.5;
  padding: 10px 15px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background-color: #f7f7f7;
  display: block;
  width: 100%;
  color: #7227C8 !important;
  font-weight: bold !important;
  border-radius: 10px;
  outline: 0 !important;
}

.contact__form {
  margin-left: 0;
}

.docs {
  margin-top: 150px;
}

.main_game {
  margin-bottom: 50px;
}

.game-frame {
  width: 100%;
  height: 600px;
  margin-top: 25px;
}

.popup-age {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.popup-age.confirm-age {
  display: flex;
}

.popup-body {
  background: #7227c8;
  padding: 50px;
}

.popup-img {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.popup__text {
  font-size: 30px;
  color: #fdd118;
  max-width: 75%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.popup-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}
.popup-buttons button {
  background: #ee4037;
  outline: none;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 12px 34px;
}

.header__alert {
  background: #fff;
  color: #ee4037;
  padding: 10px 0;
  font-weight: 500;
  animation: changeColor 2s infinite alternate;
}
.header__alert .container {
  display: flex;
  justify-content: space-between;
}
.header__alert .container a {
  color: #7227c8;
}

@keyframes changeColor {
  0% {
    background-color: #fff;
  }
  100% {
    background-color: #fbce19;
  }
}
.message {
  position: fixed;
  right: 10px;
  bottom: 10px;
  color: #fff;
  background: #5dce7f;
  padding: 12px 18px;
  border: 1px solid #79e99a;
  z-index: 9999999999999;
}
.message_error {
  background: #ff440c;
  border: 1px solid #ff815a;
}

.cookie-block {
  position: fixed;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  width: 100%;
  display: none;
  z-index: 99999999999;
  color: #fff;
  padding: 12px 0;
}

.cookie-block.show-cookie {
  display: block;
}

.coocie-text {
  margin-bottom: 0;
  max-width: 80%;
}

.cookie-wrapper {
  position: relative;
}

.popup-confirm {
  margin-top: 15px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #ee4037;
  border-radius: 3px;
  color: #ee4037;
  font-size: 18px;
  background: transparent;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */