@charset "UTF-8";
/*кодировка*/
/*обнуление стандартных отступов*/
* {
  margin: 0;
  padding: 0;
}

/*общие стили для страницы*/
body {
  font-family: "Montserrat", sans-serif;
}

.centering {
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
}

/*шапка*/
.head {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 710px;
  background-color: #E1FF8F;
  justify-content: center;
}

.head__h {
  width: 769px;
  font-size: 64px;
  font-weight: 700;
}

.head__description {
  width: 720px;
  font-size: 24px;
}

.head__big-img {
  position: absolute;
  z-index: 1;
  right: 0;
  height: 100%;
}

.head__big-img-mobile {
  display: none;
}

.head__top-star1 {
  position: absolute;
  z-index: 2;
  left: 63px;
  top: 94px;
}

.head__top-star2 {
  position: absolute;
  z-index: 2;
  left: 156px;
  top: 69px;
}

.head__top-star1-mobile {
  display: none;
}

.head__top-star2-mobile {
  display: none;
}

.head__button, .games__dsc button {
  display: block;
  text-align: center;
  margin-top: 24px;
  width: 247px;
  background-color: black;
  border: 1px solid black;
  border-radius: 60px;
  color: white;
  font-size: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  text-decoration: none;
}
.head__button:hover, .games__dsc button:hover {
  background-color: white;
  color: black;
  transition: 0.25s;
}

.head__bottom-star1 {
  position: absolute;
  z-index: 2;
  top: 568px;
  right: 344px;
}

.head__bottom-star2 {
  position: absolute;
  z-index: 2;
  top: 538px;
  right: 455px;
}

.head__bottom-star1-mobile {
  display: none;
}

.head__bottom-star2-mobile {
  display: none;
}

/*анимированная строка*/
.running-string {
  background-color: #BCEC30;
}

.running-string span {
  font-weight: 700;
  font-style: bold;
  font-size: 30px;
}

.running-string__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 51px;
  width: 100%;
  height: 90px;
  overflow: hidden;
}

.running-string__games_1 {
  display: flex;
  align-items: center;
  gap: 51px;
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
  height: 100%;
}

.running-string__games_2 {
  display: flex;
  align-items: center;
  gap: 51px;
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
  height: 100%;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-102%);
  }
}
/*блок Об играх*/
.about-games, .games {
  background-color: #202027;
  color: white;
  padding-top: 94px;
  padding-bottom: 96px;
  position: relative;
}

.about-games__big-star {
  position: absolute;
  z-index: 1;
  top: 100px;
  right: 0;
}

.about-games__side-small-star {
  position: absolute;
  z-index: 1;
  top: 770px;
  left: 25px;
}

.about-games__side-mid-star {
  position: absolute;
  z-index: 1;
  top: 822px;
  left: 40px;
}

h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-games__description {
  width: 788px;
  font-size: 24px;
}

.about-games__games {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 33%);
  gap: 32px;
  margin-top: 72px;
  height: 1056px;
}

.about-games__games div {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-games__game {
  display: block;
  border-radius: 30px;
  background-color: white;
  color: black;
  padding-bottom: 36px;
  text-decoration: none;
}
.about-games__game:hover {
  transform: scale(1.1);
  transition: 0.25s;
}

.about-games__column {
  height: 100%;
}

.about-games__img, .games__img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  width: 100%;
}

.about-games__game-dsc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  margin-left: 32px;
  margin-right: 32px;
}
.about-games__game-dsc p {
  width: 110px;
  background-color: #F7F7F7;
  border-radius: 50px;
  font-size: 16px;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 10px;
}
.about-games__game-dsc h3 {
  font-size: 32px;
  font-weight: 700;
}

.games__bottom-small-star {
  position: absolute;
  z-index: 1;
  bottom: 45px;
  right: 150px;
}

.games__bottom-mid-star {
  position: absolute;
  z-index: 1;
  bottom: 65px;
  right: 52px;
}

/*блок Мини-игры*/
.games {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.games__container-tb {
  display: none;
}

.games__game {
  display: grid;
  grid-template-columns: 50% 50%;
  border-radius: 50px;
  background-color: white;
}

.games__dsc {
  grid-column: 50%;
  margin-top: 48px;
  margin-left: 48px;
  margin-right: 48px;
  color: black;
}
.games__dsc h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  width: 450px;
}
.games__dsc p {
  font-size: 24px;
  font-weight: 400;
  width: 457px;
}
.games__img {
  grid-column: 50%;
}

.games__game:nth-child(2n+1) .games__img {
  order: -1;
}

/*подвал*/
footer {
  background-color: #BDED35;
  text-align: center;
}
footer p {
  font-size: 24px;
  font-weight: 600;
  padding-top: 60px;
  padding-bottom: 60px;
}

/*подключение стилей для мобильной версии*/
@media (max-width: 1279px) {
  .centering {
    padding-left: calc(50% - 393px);
    padding-right: calc(50% - 393px);
  }
  .head__h {
    width: 85%;
    font-size: 54px;
    text-align: center;
  }
  .head__big-img {
    display: none;
  }
  .head__big-img-mobile {
    display: block;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
  }
  .head__bottom-star1 {
    right: 69px;
  }
  .head__bottom-star2 {
    right: 180px;
  }
  /*игры*/
  .about-games, .games {
    display: none;
  }
  .games {
    display: flex;
    flex-direction: column;
    background-color: #202027;
    color: white;
    padding-top: 48px;
    padding-bottom: 10px;
    position: relative;
    gap: 24px;
    padding-bottom: 24px;
  }
  .games__img {
    max-width: 100%;
  }
  .games__dsc {
    grid-column: 0;
    max-width: -moz-fit-content;
    max-width: fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 30px;
  }
  .games__dsc h3 {
    font-size: 32px;
    width: 100%;
  }
  .games__dsc p {
    font-size: 16px;
    width: 90%;
  }
  .games__dsc button {
    width: 100%;
    margin-bottom: 32px;
  }
  .games__bottom-small-star {
    display: none;
  }
  .games__bottom-mid-star {
    display: none;
  }
}
@media (max-width: 767px) {
  .centering {
    padding-left: calc(50% - 172px);
    padding-right: calc(50% - 172px);
  }
  .head {
    align-items: center;
    height: 650px;
  }
  .head__top-star1 {
    display: none;
  }
  .head__top-star2 {
    display: none;
  }
  .head__top-star1-mobile {
    display: block;
    position: absolute;
    z-index: 2;
    left: 37px;
    top: 97px;
  }
  .head__top-star2-mobile {
    display: block;
    position: absolute;
    z-index: 2;
    left: 91px;
    top: 64px;
  }
  .head__h {
    width: 85%;
    font-size: 40px;
    text-align: center;
  }
  .head__description {
    width: 90%;
    font-size: 16px;
    text-align: center;
  }
  .head__big-img {
    display: none;
  }
  .head__big-img-mobile {
    display: block;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
  }
  .head__button, .games__dsc button {
    width: 285px;
    font-size: 16px;
  }
  .head__bottom-star1 {
    display: none;
  }
  .head__bottom-star2 {
    display: none;
  }
  .head__bottom-star2-mobile {
    display: block;
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 28px;
  }
  .head__bottom-star1-mobile {
    display: block;
    position: absolute;
    z-index: 2;
    right: 86px;
    bottom: 74px;
  }
  /*бегущая строка*/
  .running-string span {
    font-size: 16px;
  }
  .running-string__container {
    height: 51px;
  }
  /*игры*/
  .about-games, .games {
    display: none;
  }
  .games {
    display: flex;
    flex-direction: column;
    background-color: #202027;
    color: white;
    padding-top: 48px;
    padding-bottom: 10px;
    position: relative;
    gap: 24px;
  }
  h2 {
    font-size: 40px;
  }
  .games__container-tb {
    display: none;
  }
  .games .games__game {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .games .games__container-tb {
    display: none;
  }
  .games__container-tb .games__game {
    display: none;
  }
  .games__img {
    order: -1;
  }
  .games__dsc {
    grid-column: 0;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 30px;
    padding-bottom: 32px;
  }
  .games__dsc h3 {
    font-size: 32px;
    width: 60%;
  }
  .games__dsc p {
    font-size: 16px;
    width: 90%;
  }
  .games__dsc button {
    width: 100%;
  }
  .games__bottom-small-star {
    display: none;
  }
  .games__bottom-mid-star {
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */