* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: #5A1CF0;
  color: #45E3EB;
}

html,
body {
  margin: 0px;
  padding: 0px;
}

html {
  min-width: 350px;
}

body {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  font-weight: 400;
  background: #45E3EB;
}

.container {
  position: relative;
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.container--hero {
  height: 100%;
}

h1 {
  font-family: "Baloo 2", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 150%;
  color: #FFFF05;
  margin: 0px 0px 25px;
  text-align: center;
}

h2 {
  font-family: "Baloo 2", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 150%;
  color: #000000;
  margin: 0px 0px 5px;
}

h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0px 0px 10px;
}

a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease-in-out 0s;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

p {
  margin: 0px 0px 20px;
}

ul, ol {
  margin: 0px 0px 20px;
}

figure {
  margin: 0px 0px 20px;
  padding: 0px;
  text-align: center;
}

img {
  vertical-align: top;
  max-width: 100%;
}

.btn {
  display: inline-block;
  border: 0px;
  cursor: pointer;
}
.btn--play {
  width: 243px;
  height: 70px;
  background: url(../images/google_play.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease-in-out 0s;
}
.btn--play:hover {
  transform: scale(1.05);
}

/*header*/
.header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease-in-out 0s;
}
.header--fixed {
  background: #45E3EB;
}
.header--static {
  background: #45E3EB;
}
.header__wrap {
  padding: 30px 0px;
}

.nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px;
  padding: 0px;
}
.nav__item {
  list-style-type: none;
}
.nav__link {
  color: #2E2E3A;
  text-decoration: none;
}
.nav__link:hover {
  color: #FFFF05;
}

.btn-menu {
  display: none;
  justify-content: flex-end;
  align-items: center;
  width: 36px;
  height: 24px;
  position: relative;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  border: none;
  padding: 0px;
}
.btn-menu__line {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  background: #2E2E3A;
}
.btn-menu__line:before, .btn-menu__line:after {
  display: block;
  position: absolute;
  height: 100%;
  background: #2E2E3A;
  content: "";
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0;
}
.btn-menu__line:before {
  right: 0px;
  width: 100%;
  top: -10px;
}
.btn-menu__line:after {
  right: 0px;
  width: 100%;
  bottom: -10px;
}
.btn-menu--active {
  z-index: 2;
}
.btn-menu--active .btn-menu__line {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.btn-menu--active .btn-menu__line:before {
  transform: translateY(10px) rotate(45deg);
}
.btn-menu--active .btn-menu__line:after {
  transform: translateY(-10px) rotate(-45deg);
}

/*main*/
.main--policy {
  padding: 100px 0px 50px;
}

section {
  padding: 80px 0px;
}

.hero {
  position: relative;
  height: 820px;
  padding: 0px;
  margin: 0px 0px 80px;
}
.hero__content {
  position: relative;
  padding: 120px 0px;
  max-width: 630px;
  width: 100%;
  text-align: center;
}
.hero__img-front {
  margin: 0px 0px 70px;
}
.hero__img-back {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  z-index: -1;
}

.about__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1065px;
  margin: 0 auto;
}
.about__content {
  max-width: 415px;
  width: 39%;
}
.about__decor {
  width: 20%;
}

.characters__item {
  width: 305px;
  text-align: center;
}
.characters__content {
  background: #FFFF05;
  padding: 22px 18px;
  border-radius: 16px;
}
.characters__img {
  margin: -30px 0px 0px;
}

.gallery__list {
  margin: 0px 0px 40px;
}
.gallery__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery .swiper-slide img {
  transform: scale(0.8);
  transition: all 0.3s ease-in-out 0s;
}
.gallery .swiper-slide-active img {
  transform: scale(1);
}
.gallery__arrows {
  display: flex;
  justify-content: center;
}
.gallery__arrow {
  width: 22px;
  height: 20px;
  background: url(../images/icon_arrow.png) no-repeat;
  background-size: 100% 100%;
  margin: 0px 15px;
  cursor: pointer;
  transition: all 0.3s ease-in-out 0s;
}
.gallery__arrow--prev {
  transform: rotate(180deg);
}

.features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.features__item {
  display: flex;
  justify-content: space-between;
}
.features__text {
  display: flex;
  align-items: center;
  width: calc(100% - 110px);
  padding: 14px;
  text-align: center;
  color: #2E2E3A;
  border-radius: 12px;
  border: 1px solid #FFFF05;
}
.features__icon {
  width: 102px;
}

.start {
  background: url(../images/bg_start.png) no-repeat;
  background-size: 100% 100%;
}
.start__wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
}
.start__content {
  width: 48%;
}
.start__img {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 42%;
  height: 100%;
}
.start__img-second {
  position: relative;
  margin-left: -75px;
  bottom: -60px;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reviews__list--mobile {
  display: none;
}
.reviews__item {
  max-width: 305px;
  display: flex;
  padding: 47px 0px 0px;
}
.reviews__item--decor {
  padding: 0px;
  justify-content: center;
  align-items: center;
}
.reviews__item-wrap {
  background: #FFFF05;
  padding: 32px 35px;
  border-radius: 18px;
}
.reviews__detail {
  display: flex;
  align-items: flex-end;
  margin: -80px 0px 0px;
  margin-bottom: 20px;
}
.reviews__icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0px 10px 0px 0px;
}
.reviews__name {
  font-size: 18px;
  line-height: 150%;
  font-weight: 700;
}

/*footer*/
.footer {
  background: #5A1CF0;
  color: #45E3EB;
  padding: 45px 0px 40px;
}
.footer__copyright {
  font-size: 12px;
  text-align: center;
}

.footer-nav {
  margin: 0px 0px 35px;
}
.footer-nav__list {
  display: flex;
  justify-content: space-between;
  padding: 0px;
  margin: 0px;
}
.footer-nav__item {
  list-style-type: none;
}
.footer-nav__link {
  font-family: "Baloo 2", sans-serif;
  font-size: 26px;
  line-height: 150%;
  font-weight: 700;
  color: #45E3EB;
  text-decoration: none;
}
.footer-nav__link:hover {
  color: #FFFF05;
}

/*cookis*/
.cookie {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #FFFF05;
  padding: 20px 0px;
  color: #2E2E3A;
  z-index: 1001;
}
.cookie__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie__text {
  max-width: 595px;
  text-align: center;
}
.cookie__btns {
  display: flex;
}
.cookie__btn {
  font-family: "Baloo 2", sans-serif;
  font-size: 18px;
  line-height: 150%;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid #2E2E3A;
  padding: 23px 50px;
  border-radius: 40px;
  margin: 0px 0px 0px 20px;
}
.cookie__btn--accept {
  color: #FFFF05;
  background: #2E2E3A;
}
.cookie__btn--decline {
  color: #2E2E3A;
  background: transparent;
}

@media (max-width: 1280px) {
  .features__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .start {
    background-size: cover;
  }
  .start__img {
    width: 48%;
  }
  .reviews__list {
    display: flex;
    gap: 0px;
  }
  .reviews__list--mobile {
    display: flex;
  }
  .reviews__list--desktop {
    display: none;
  }
}
@media (max-width: 992px) {
  /*header*/
  .header__wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .nav {
    display: none;
  }
  .nav--open {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 100px 0px;
    background: #45E3EB;
  }
  .nav__list {
    flex-direction: column;
  }
  .nav__item {
    margin: 0px 0px 30px;
  }
  .btn-menu {
    display: flex;
  }
  /*main*/
  .about__content {
    width: 49%;
  }
  .about__decor {
    display: none;
  }
  .features__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .start__wrap {
    flex-direction: column-reverse;
  }
  .start__img {
    max-width: 450px;
    width: 100%;
    margin: 0 auto 90px;
  }
  .start__content {
    width: 100%;
    text-align: center;
  }
  /*footer*/
  .footer {
    padding: 30px 0px 25px;
  }
  .footer__copyright {
    text-align: left;
  }
  .footer-nav {
    margin: 0px;
  }
  .footer-nav__list {
    flex-direction: column;
  }
  .footer-nav__item {
    margin: 0px 0px 5px;
  }
  /*cookie*/
  .cookie__wrap {
    flex-direction: column;
  }
  .cookie__text {
    margin: 0px 0px 20px;
  }
  .cookie__btns {
    flex-direction: column;
  }
  .cookie__btn {
    padding: 15px 30px;
    margin: 0px 0px 20px;
  }
  .cookie__btn--decline {
    margin: 0px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 40px 0px;
  }
  .hero {
    height: 800px;
    margin: 0px 0px 40px;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .hero__img-front {
    margin: 0px;
  }
  .hero__img-back {
    object-position: 68% 0%;
  }
  .about__wrap {
    flex-direction: column;
  }
  .about__content {
    width: 100%;
  }
  .about__content--right figure {
    display: none;
  }
  .start {
    padding: 80px 0px;
  }
  .start__img {
    justify-content: center;
  }
  .start__img-first {
    max-width: 254px;
  }
  .start__img-second {
    max-width: 140px;
  }
}/*# sourceMappingURL=style.css.map */