* {
  margin: 0;
  border: 0;
  padding: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  color: #2e2b2b;
  background: linear-gradient(135deg, #eace81 0%, #f5a9b4 100%), #fff;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

[class*=__container] {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

[class*=__text] {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.container-second {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: calc(768px - 1px)) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}

h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

p {
  font-size: 16px;
  line-height: 140%;
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 200px;
}

.btn {
  display: flex;
  height: 52px;
  padding: 14.5px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: linear-gradient(91deg, #fc0 0%, #fb7185 96%);
  box-shadow: 0 -3px 3px 0 #fb7185 inset;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  width: fit-content;
}

.btn-border {
  display: flex;
  height: 52px;
  padding: 14.5px 60px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: calc(768px - 1px)) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: calc(768px - 1px)) {
  .mobile {
    display: block;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  max-width: 800px;
  display: flex;
  padding: 50px 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background: #eace81;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cookies__title {
  color: #2e2b2b;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}
.cookies__text {
  margin-bottom: 15px;
}
.cookies__btns {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.cookies__btn {
  width: 100%;
}
@media (max-width: calc(576px - 1px)) {
  .cookies .btn, .cookies .btn-border {
    padding: 14px 30px;
    font-size: 16px;
  }
  .cookies__btns {
    flex-direction: column;
  }
}

.footer {
  padding-top: 80px;
  padding-bottom: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: #f5a9b4;
}
.footer__content-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-bottom: 20px;
}
.footer__content::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(153, 153, 153, 0) 0%, #2e2b2b 50%, rgba(153, 153, 153, 0) 100%);
}
.footer__address {
  display: flex;
  flex-direction: column;
}
.footer__address h4,
.footer__address a {
  font-size: 17px;
  line-height: 24px;
  color: #2e2b2b;
  font-weight: 400;
}
.footer__menu {
  display: flex;
  gap: 20px;
  font-size: 14px;
}
@media (max-width: calc(768px - 1px)) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__menu a {
  color: #fff;
}
@media (max-width: calc(576px - 1px)) {
  .footer__content-img {
    width: 100%;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom .footer__menu a,
.footer__bottom .footer__text {
  color: #2e2b2b;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: #EACE81;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}
.header__logo {
  color: #2e2b2b;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media (max-width: calc(576px - 1px)) {
  .header__logo {
    font-size: 20px;
  }
}

@media (max-width: calc(768px - 1px)) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #2E2B2B;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
    background: #2E2B2B;
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
    background: #2E2B2B;
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
    background: #2E2B2B;
  }
}
@media (max-width: calc(768px - 1px)) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    border-radius: 0 0 80px 80px;
    background: #fff;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
    border-radius: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: calc(768px - 1px)) {
  .menu__list {
    flex-direction: column;
    margin-bottom: 140px;
  }
}
.menu__link {
  color: #2E2B2B;
}

.hero {
  margin-top: 160px;
  margin-bottom: 160px;
}
@media (max-width: calc(576px - 1px)) {
  .hero {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: calc(576px - 1px)) {
  .hero img {
    width: 100%;
  }
}
.hero__contents {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__content {
  max-width: 643px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.origin {
  margin-bottom: 140px;
}
@media (max-width: calc(576px - 1px)) {
  .origin {
    margin-bottom: 80px;
  }
}
.origin__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.origin__img {
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(55, 65, 81, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
.origin__img img {
  width: 100%;
}
@media (max-width: calc(768px - 1px)) {
  .origin__img {
    padding: 20px;
  }
}

.back {
  margin-bottom: 140px;
}
@media (max-width: calc(576px - 1px)) {
  .back {
    margin-bottom: 80px;
  }
}
@media (max-width: calc(576px - 1px)) {
  .back img {
    width: 100%;
  }
}
.back__contents {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.back__content {
  max-width: 643px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.game {
  margin-bottom: 120px;
}
@media (max-width: calc(576px - 1px)) {
  .game {
    margin-bottom: 80px;
  }
}
.game__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.game__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.game__card {
  max-width: 255px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.fun {
  margin-bottom: 120px;
}
@media (max-width: calc(576px - 1px)) {
  .fun {
    margin-bottom: 80px;
  }
}
.fun__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.fun__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.fun__card {
  min-width: 346px;
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #fb7185;
  background: #ffe3c9;
}
@media (max-width: calc(576px - 1px)) {
  .fun__card {
    min-width: 100%;
  }
}

.user {
  margin-bottom: 60px;
}
.user__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.user__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.user__card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #fb7185;
  background: #ffe3c9;
  min-width: 530px;
  max-width: 530px;
}
@media (max-width: calc(576px - 1px)) {
  .user__card {
    max-width: none;
    min-width: 100%;
  }
}
.user__card-content {
  display: flex;
  gap: 16px;
  align-items: center;
}
.user__card-name {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.privacy {
  margin: 86px 0 0;
}
.privacy h2 {
  margin-bottom: 30px;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
