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

::selection {
  background: #83A1F4;
  color: #1E1E1E;
}

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

body {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 150%;
  color: #1E1E1E;
  font-weight: 400;
  background: #83A1F4;
}

.container {
  max-width: 1336px;
  padding: 0px 20px;
  margin: 0 auto;
}
.container--hero {
  height: 100%;
}

h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: 48px;
  line-height: 150%;
  font-weight: 700;
  color: #1E1E1E;
  margin: 0px 0px 25px;
}

h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 48px;
  line-height: 150%;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  text-shadow: -4px -4px #4B005C, -4px 4px #4B005C, 4px -4px #4B005C, 4px 4px #4B005C;
  margin: 0px 0px 25px;
}

h3 {
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
  color: #1E1E1E;
  margin: 0px 0px 25px;
}

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

P {
  margin: 0px 0px 15px;
}

ul, ol {
  margin: 0px 0px 15px;
  padding: 0px 0px 0px 25px;
}

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

.btn {
  display: inline-block;
  cursor: pointer;
  border: 0px;
  transition: all 0.3s ease-in-out 0s;
  background: transparent;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}
.btn--primary {
  width: 210px;
  height: 66px;
  background: url(../images/google_play.png) no-repeat;
  background-size: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.btn--primary:hover {
  transform: scale(1.05);
}
.btn--back {
  position: relative;
  padding: 8px 35px 8px 60px;
  background: linear-gradient(180deg, #CF01FF, #4B005C);
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  margin: 0px 0px 30px;
}
.btn--back:before {
  position: absolute;
  top: 50%;
  left: 35px;
  width: 8px;
  height: 12px;
  margin-top: -7px;
  background: url(../images/arrow_back.png);
  background-size: 100%;
  content: "";
}

/*header*/
.header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background: linear-gradient(to bottom, #2DFFFF, #1DD2F2);
  z-index: 1000;
}
.header__wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 50px;
}
.header__logo {
  position: absolute;
  left: 0px;
  width: 48px;
  height: 48px;
  border-radius: 11px;
  overflow: hidden;
}

.nav__list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0px;
  padding: 0px;
}
.nav__item {
  list-style-type: none;
  margin: 0px 3vw;
}
.nav__link {
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  text-decoration: none;
}

.btn-menu {
  display: none;
}

/*main*/
.main--landing {
  background: linear-gradient(to bottom, #9750E9, #7DD4F9, #895DED);
}
.main--page {
  padding: 80px 0px;
}

section {
  padding: 50px 0px;
}

.hero {
  position: relative;
  height: 900px;
  padding: 80px 0px 40px;
}
.hero__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__content {
  max-width: 636px;
  padding: 48px 24px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  color: #00141E;
  text-align: center;
  border: 4px solid #FFFFFF;
  z-index: 1;
}

.about__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about__content {
  width: 58%;
}
.about__img {
  width: 40%;
}

.gallery {
  background: url(../images/bg_decor.png) no-repeat;
  background-size: cover;
}
.gallery__list {
  margin: 0px 0px 20px;
}
.gallery__img {
  border-radius: 10px;
  overflow: hidden;
  transform: scale(0.98);
  transition: all 0.3s ease-in-out 0s;
}
.gallery__img:hover {
  transform: scale(1);
}
.gallery__nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery__nav-item {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom, #2DFFFF, #1DD2F2);
  margin: 0px 10px;
  border: 1px solid #1E1E1E;
  border-radius: 50%;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
}
.gallery__nav-item:before {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: 7px 10px;
  background-position: 50% 50%;
  content: "";
}
.gallery__nav-item--next:before {
  transform: rotate(180deg);
}
.gallery__nav-item.swiper-button-disabled {
  filter: grayscale(1);
  cursor: auto;
}

.features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin: 0px 0px 30px;
}
.features__item {
  position: relative;
  padding: 16px 25px;
  text-align: center;
}
.features__item:after {
  position: absolute;
  right: -60px;
  top: 50%;
  margin: -24px 0px 0px;
  display: block;
  width: 57px;
  height: 49px;
  background: url(../images/arrow_features.png) no-repeat;
  background-size: 100%;
  content: "";
}
.features__item:nth-child(2):after {
  transform: rotateX(180deg);
}
.features__item:nth-child(3):after {
  top: 100%;
  right: 0px;
  margin: 0px;
  transform: rotateY(180deg);
}
.features__item:nth-child(4):after {
  transform: rotateY(180deg);
}
.features__item:nth-child(5):after {
  transform: rotateY(180deg);
}
.features__item:nth-child(6):after {
  display: none;
}
.features__wrap {
  text-align: center;
}

.faq {
  background: url(../images/bg_decor.png) no-repeat;
  background-size: cover;
}
.faq__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.faq__list {
  width: 58%;
}
.faq__img {
  width: 40%;
}
.faq__item {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 7px;
  padding: 0px;
  margin: 0px 0px 30px;
  transition: all 0.3s ease-in-out 0s;
}
.faq__item-question {
  position: relative;
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
  color: #FFFFFF;
  padding: 2px;
  background: linear-gradient(to bottom, #CF01FF, #4B005C);
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s ease-in-out 0s;
}
.faq__item-decor {
  width: 100%;
  padding: 10px 28px 10px 12px;
  background: linear-gradient(to bottom, #CF01FF, #4B005C);
  border-radius: 7px;
}
.faq__item-plus {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  transition: all 0.3s ease-in-out 0s;
}
.faq__item-plus:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0px;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  content: "";
}
.faq__item-plus:after {
  position: absolute;
  top: 0px;
  left: calc(50% - 1px);
  width: 2px;
  height: 100%;
  background: #FFFFFF;
  transition: all 0.3s ease-in-out 0s;
  content: "";
}
.faq__item-answer {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
  padding: 0px 16px;
  font-size: 18px;
  line-height: 150%;
}
.faq__item--opened {
  padding: 0px 0px 12px;
}
.faq__item--opened .faq__item-question {
  background: linear-gradient(to bottom, #00FFB2, #005BFF);
}
.faq__item--opened .faq__item-plus {
  transform: rotate(45deg);
}
.faq__item--opened .faq__item-answer {
  margin: 12px 0px 0px;
}

.article-policy h2 {
  color: #1E1E1E;
  font-size: 32px;
  text-align: left;
  text-shadow: none;
  margin: 0px 0px 25px;
}
.article-policy p {
  margin: 0px 0px 30px;
}
.article-policy ul, .article-policy ol {
  margin: 0px 0px 30px;
}

/*footer*/
.footer {
  background: linear-gradient(to bottom, #2DFFFF, #1DD2F2);
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
}
.footer__wrap {
  padding: 24px 0px;
}
.footer__copyright {
  text-align: center;
}

.nav-policy {
  margin: 0px 0px 30px;
}
.nav-policy__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0px;
  padding: 0px;
}
.nav-policy__item {
  position: relative;
  list-style-type: none;
  margin: 0px 0px 0px 10px;
}
.nav-policy__item:before {
  margin: 0px 10px 0px 0px;
  content: "/";
}
.nav-policy__item:first-child {
  margin: 0px;
}
.nav-policy__item:first-child:before {
  display: none;
}
.nav-policy__link {
  text-decoration: none;
}
.nav-policy__link:hover {
  text-decoration: underline;
}

/*cookie*/
.cookie {
  position: fixed;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  max-width: 900px;
  width: 100%;
  background: #83A1F4;
  color: #1E1E1E;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  z-index: 1001;
  padding: 30px 0px;
}
.cookie__wrap {
  position: relative;
  padding: 40px 0px;
}
.cookie__btns {
  display: flex;
  justify-content: flex-end;
}
.cookie__btn {
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  background: linear-gradient(180deg, #CF01FF, #4B005C);
  padding: 18px 25px;
  margin: 0px 0px 0px 30px;
}
.cookie__btn--decline {
  color: #1E1E1E;
  border: 3px solid #1E1E1E;
  background: transparent;
}
.cookie__btn:first-child {
  margin: 0px;
}
.cookie__close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 21px;
  height: 21px;
  background: url(../images/icon_close.png) no-repeat;
  background-size: 100%;
}

@media (max-width: 992px) {
  body {
    font-size: 16px;
    line-height: 150%;
  }
  h1 {
    font-size: 32px;
    margin: 0px 0px 15px;
  }
  h2 {
    font-size: 32px;
    line-height: 150%;
    text-shadow: -2px -2px #4B005C, -2px 2px #4B005C, 2px -2px #4B005C, 2px 2px #4B005C;
    margin: 0px 0px 15px;
  }
  h3 {
    font-size: 18px;
    line-height: 150%;
    margin: 0px 0px 15px;
  }
  /*header*/
  .header__wrap {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
  }
  .header__logo {
    position: relative;
    width: 36px;
    height: 36px;
  }
  .btn-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 24px;
    height: 16px;
    position: relative;
    padding: 0px;
    z-index: 2;
  }
  .btn-menu__line {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 3px;
    background: #1E1E1E;
  }
  .btn-menu__line:before, .btn-menu__line:after {
    display: block;
    position: absolute;
    height: 100%;
    background: #1E1E1E;
    content: "";
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0;
  }
  .btn-menu__line:before {
    right: 0px;
    width: 100%;
    top: -7px;
  }
  .btn-menu__line:after {
    right: 0px;
    width: 100%;
    bottom: -7px;
  }
  .btn-menu--active .btn-menu__line {
    background-color: rgba(0, 0, 0, 0);
  }
  .btn-menu--active .btn-menu__line:before {
    transform: translateY(7px) rotate(45deg);
  }
  .btn-menu--active .btn-menu__line:after {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    display: none;
  }
  .nav--open {
    display: block;
    min-width: 264px;
    position: fixed;
    top: 0px;
    right: 0px;
    background: linear-gradient(to bottom, #2DFFFF, #1DD2F2);
    padding: 80px 35px 35px 40px;
    border-radius: 30px 0px 0px 30px;
    box-shadow: -6px 8px 4px rgba(16, 0, 78, 0.25);
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav__item {
    margin: 0px 0px 20px;
  }
  .nav__item:last-child {
    margin: 0px;
  }
  /*main*/
  .hero__content {
    font-size: 18px;
    line-height: 150%;
  }
  .hero__img-clock {
    width: 18px;
  }
  .about__wrap {
    flex-direction: column;
  }
  .about__content {
    width: 100%;
    text-align: center;
    margin: 0px 0px 30px;
  }
  .about__img {
    width: 100%;
    text-align: center;
  }
  .features__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .features__item:nth-child(1):after, .features__item:nth-child(3):after, .features__item:nth-child(5):after {
    top: 100%;
    left: 0px;
    margin: 0px;
    transform: rotateY(0deg);
  }
  .features__item:nth-child(2):after, .features__item:nth-child(4):after {
    top: 100%;
    right: 0px;
    margin: 0px;
    transform: rotateX(0deg) rotateY(180deg);
  }
  .faq__wrap {
    flex-direction: column;
  }
  .faq__list {
    width: 100%;
    margin: 0px 0px 30px;
  }
  .faq__item {
    margin: 0px 0px 20px;
  }
  .faq__item-question {
    font-size: 16px;
    line-height: 150%;
  }
  .faq__item-answer {
    font-size: 14px;
    line-height: 150%;
  }
  .faq__img {
    width: 100%;
    text-align: center;
  }
  .article-policy h2 {
    font-size: 24px;
    margin: 0px 0px 10px;
  }
  .article-policy p {
    margin: 0px 0px 15px;
  }
  .article-policy ul, .article-policy ol {
    margin: 0px 0px 15px;
  }
  /*footer*/
  .footer__wrap {
    padding: 16px 0px;
  }
  .nav-policy {
    margin: 0px;
  }
  .nav-policy__list {
    flex-direction: column;
    align-items: center;
  }
  .nav-policy__item {
    margin: 0px 0px 10px;
  }
  .nav-policy__item:before {
    display: none;
  }
  .nav-policy__item:first-child {
    margin: 0px 0px 10px;
  }
  /*cookie*/
  .cookie {
    font-size: 16px;
    padding: 30px 0px 0px;
  }
  .cookie__btns {
    justify-content: center;
  }
  .cookie__btn {
    font-size: 12px;
    font-weight: 400;
    padding: 3px 5px;
    margin: 0px 0px 0px 10px;
  }
  .cookie__btn--decline {
    border-width: 2px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0px;
  }
  .hero {
    padding: 56px 0px 20px;
    height: 793px;
  }
  .gallery__item {
    width: 190px;
  }
}