:root {
  --clr-accent-1: #E0F64B;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 520px) {
  html {
    font-size: 1.923vw;
  }
}

html, body {
  height: 100%;
}

.container {
  max-width: 160rem;
  padding: 0 1rem;
  margin: 0 auto;
}

.body--scroll-disabled {
  overflow: hidden;
}

section {
  padding: 3rem 0;
}

.clr1 {
  color: var(--clr-accent-1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  /*   border: 2px solid red; */
}

body {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  border-style: none;
}

ul {
  list-style: none;
  text-decoration: none;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
  -webkit-appearance: button;
  outline: none;
  border: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #000000;
  font-size: 2rem;
  line-height: 2.6rem;
  cursor: default;
  display: flex;
  flex-direction: column;
}

a {
  font-weight: 600;
}
a:hover {
  text-decoration: underline;
}

* {
  transition: all 0.3s;
}

h1 {
  font-size: 4rem;
  line-height: 6rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 3.4rem;
    line-height: 4rem;
  }
}

.pop-up-age {
  display: none;
  padding: 1rem;
}

.pop-up-age--active {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9998;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-animation: pop-up--in 0.4s forwards;
  animation: pop-up--in 0.4s forwards;
}

.pop-up-age__title {
  color: #fff;
  background: #F01A1A;
  border-radius: 1rem;
  text-align: center;
  line-height: 7rem;
  font-size: 6.2rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  width: fit-content;
  margin: 0 auto 1rem;
}

.pop-up-age__modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 5rem;
  border-radius: 2.5rem;
  background: #fff;
  color: #474747;
  max-width: 74rem;
  width: 100%;
  line-height: 2.6rem;
  font-size: 2rem;
  -webkit-animation: pop-up__modal--in 0.4s forwards;
  animation: pop-up__modal--in 0.4s forwards;
}
@media (max-width: 767px) {
  .pop-up-age__modal {
    padding: 2rem 3rem;
  }
}

.pop-up-age__list p {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pop-up-age__list ul {
  margin-left: 2rem;
}
.pop-up-age__list ul li {
  list-style: disc;
}
.pop-up-age__list ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.pop-up-age__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pop-up-age__buttons .btn {
  font-size: 2.6rem;
  line-height: 3rem;
  text-transform: capitalize;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  color: #fff;
  max-width: unset;
  font-weight: 700;
  cursor: pointer;
}

.pop-up-age__buttons .pop-up-age__btn--yes {
  background: #15D525;
}
.pop-up-age__buttons .pop-up-age__btn--yes:hover {
  background: #10a31c;
}

.pop-up-age__buttons .pop-up-age__btn--no {
  background: #F01A1A;
}
.pop-up-age__buttons .pop-up-age__btn--no:hover {
  background: #bb1515;
}

.pop-up-restrict {
  display: none;
}

.pop-up-restrict--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-animation: pop-up--in 0.4s forwards;
  animation: pop-up--in 0.4s forwards;
}

.pop-up-restrict__desc {
  font-size: 3.2rem;
  padding: 5rem;
  background-color: #000000;
  color: #fff;
  font-weight: 700;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #fff;
  white-space: nowrap;
  -webkit-animation: pop-up__modal--in 0.4s forwards;
  animation: pop-up__modal--in 0.4s forwards;
}

@-webkit-keyframes pop-up--in {
  0% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    backdrop-filter: blur(0) opacity(0);
  }
  100% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
  }
}
@keyframes pop-up--in {
  0% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    background: transparent;
    backdrop-filter: blur(0) opacity(0);
  }
  100% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
    background: rgba(0, 0, 0, 0.6);
  }
}
@-webkit-keyframes pop-up--out {
  0% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
    background: rgba(0, 0, 0, 0.6);
  }
  100% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    backdrop-filter: blur(0) opacity(0);
    background: transparent;
    display: none;
  }
}
@keyframes pop-up--out {
  0% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
  }
  100% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    backdrop-filter: blur(0) opacity(0);
    display: none;
  }
}
@-webkit-keyframes pop-up__modal--in {
  0% {
    scale: 0;
  }
  100% {
    scale: 1;
  }
}
@keyframes pop-up__modal--in {
  0% {
    scale: 0;
  }
  100% {
    scale: 1;
  }
}
@-webkit-keyframes pop-up__modal--out {
  0% {
    scale: 1;
    opacity: 1;
  }
  100% {
    scale: 0;
    opacity: 0;
  }
}
@keyframes pop-up__modal--out {
  0% {
    scale: 1;
    opacity: 1;
  }
  100% {
    scale: 0;
    opacity: 0;
  }
}
.body--scroll-disabled {
  overflow: hidden;
}

.pop-up--out {
  -webkit-animation: pop-up--out 0.2s forwards;
  animation: pop-up--out 0.2s forwards;
}

.pop-up__modal--out {
  -webkit-animation: pop-up__modal--out 0.2s forwards;
  animation: pop-up__modal--out 0.2s forwards;
}

.cookie {
  position: fixed;
  max-width: 50rem;
  right: -100%;
  bottom: 3rem;
  background: #fff;
  border-radius: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
  padding: 2rem 4rem;
  opacity: 0;
  font-size: 1.6rem;
  line-height: 1.8rem;
  color: #474747;
  text-align: center;
  box-shadow: 1px 0px 13px rgba(0, 0, 0, 0.4);
}
.cookie--visible {
  animation: cookie-show 0.6s 0.5s ease-out forwards;
}
@media screen and (max-width: 820px) {
  .cookie--visible {
    animation: cookie-show--mobile 0.5s ease-out forwards;
  }
}
.cookie--hidden {
  animation: cookie-hide 0.5s ease-out forwards;
}
@media screen and (max-width: 560px) {
  .cookie--hidden {
    animation: cookie-hide--mobile 0.5s ease-out forwards;
  }
}
.cookie__buttons {
  display: flex;
  gap: 1.5rem;
}
.cookie__btn {
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: 500;
  max-width: unset;
  width: 100%;
  background: transparent;
  border: 0.2rem solid #000;
  text-transform: none;
  cursor: pointer;
  color: #000;
  border-radius: 0.8rem;
}
.cookie__btn:hover, .cookie__btn:active {
  background: #000;
  color: #fff;
}
.cookie__btn--accept {
  background: #000;
  color: #fff;
}
.cookie__btn--accept:hover, .cookie__btn--accept:active {
  background: transparent;
  color: #000;
}

@keyframes cookie-show {
  0% {
    right: -100%;
    opacity: 0;
  }
  100% {
    right: 2rem;
    opacity: 1;
  }
}
@keyframes cookie-show--mobile {
  0% {
    right: -100%;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@keyframes cookie-hide {
  0% {
    right: 2rem;
    opacity: 1;
  }
  100% {
    right: -100%;
    opacity: 0;
  }
}
@keyframes cookie-hide--mobile {
  0% {
    right: 0;
    opacity: 1;
  }
  100% {
    right: -100%;
    opacity: 0;
  }
}
.logo {
  font-size: 3rem;
  color: #000000;
  font-weight: 500;
  position: relative;
}
@media (max-width: 768px) {
  .logo {
    font-size: 2.6rem;
  }
}
.logo:before {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  background: var(--clr-accent-1);
  border-radius: 100px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .logo:before {
    width: 46px;
    height: 46px;
  }
}
.logo:hover {
  text-decoration: none;
}
.logo span {
  position: relative;
  z-index: 2;
}

.header {
  z-index: 100;
  width: 100%;
}
@media (max-width: 768px) {
  .header {
    padding: 1.5rem 0;
    position: fixed;
    background: #fff;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5rem 1rem;
}
@media screen and (max-width: 768px) {
  .header .container {
    max-width: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
  }
}
.header::before {
  content: "";
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  transition: all 0.2s;
}
.header--active::before {
  visibility: visible;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  z-index: 99;
}
.header--active .logo {
  color: #fff;
}
.header .logo {
  z-index: 999;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
}
@media screen and (max-width: 768px) {
  .header__nav {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 12rem 2rem 6rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.6705882353);
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  .header__nav--active {
    max-height: 60rem;
    height: fit-content;
    padding: 8rem 1rem 4rem;
  }
}
.header__nav .nav__link {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.8rem 2rem;
  color: #000;
  border-radius: 10rem;
  background: #fff;
  white-space: nowrap;
  text-transform: capitalize;
}
@media (max-width: 1200px) {
  .header__nav .nav__link {
    font-size: 1.6rem;
    padding: 0.6rem 1rem;
  }
}
@media (max-width: 768px) {
  .header__nav .nav__link {
    background: none;
    color: #fff;
  }
}
.header__nav .nav__link:hover, .header__nav .nav__link--active {
  background: #F1F1F1;
  color: #000;
  text-decoration: none;
}

.burger {
  display: none;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .burger {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
  }
}
.burger__top, .burger__middle, .burger__bottom {
  width: 100%;
  height: 0.4rem;
  background-color: #000;
  border-radius: 1rem;
  transition: all 0.2s;
  position: relative;
}

.burger.burger--active {
  align-items: center;
}
.burger.burger--active * {
  background-color: #fff;
}
.burger.burger--active .burger__top {
  rotate: 45deg;
  top: 0.4rem;
}
.burger.burger--active .burger__bottom {
  rotate: -45deg;
  bottom: 0.4rem;
}
.burger.burger--active .burger__middle {
  scale: 0;
}

.footer {
  padding: 3rem 0 5rem;
  background: #000;
  color: #fff;
  margin-top: auto;
  text-align: center;
  border-radius: 3.5rem 3.5rem 0 0;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.address {
  font-weight: 600;
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3vw;
}

.footer__nav .nav__link {
  color: #fff;
}

.footer__nav .nav__link:hover,
.footer__nav .nav__link--active {
  color: var(--clr-accent-1);
  text-decoration: none;
}

.copy {
  text-align: center;
}

.terms {
  padding: 3rem 1rem;
}
@media (max-width: 768px) {
  .terms {
    padding-top: 10rem;
  }
}
.terms .container {
  background: #F9F9F9;
  border-radius: 3.8rem;
  padding: 5rem;
}
.terms__article {
  line-height: 3.6rem;
}
.terms__article:not(:last-child) {
  margin-bottom: 4vw;
}
@media (max-width: 768px) {
  .terms__article {
    line-height: 2.8rem;
  }
}
.terms__article h1 {
  font-size: 2.2rem;
  line-height: inherit;
  text-align: left;
}
.terms__article a {
  word-break: break-word;
}
.terms__article ul {
  margin-left: 2rem;
  margin-top: 0.5rem;
}
.terms__article ul li {
  list-style-type: disc;
}
.terms__article ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.hero {
  padding: 8rem 1rem;
}
@media (max-width: 1400px) {
  .hero {
    padding: 2rem 1rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 10rem 1rem 1rem;
  }
}
.hero .container {
  background: var(--clr-accent-1);
  color: #fff;
  border-radius: 3.5rem;
  padding: 5rem 60rem 5rem 5rem;
  position: relative;
}
@media (max-width: 1400px) {
  .hero .container {
    padding-right: 40vw;
  }
}
@media (max-width: 768px) {
  .hero .container {
    padding: 3rem;
  }
}
.hero__image {
  position: absolute;
  right: 5rem;
  top: 40%;
  transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .hero__image {
    top: 50%;
    width: 36vw;
  }
}
@media (max-width: 768px) {
  .hero__image {
    position: static;
    transform: none;
    width: 40rem;
    margin: auto;
  }
}
.hero h1 {
  font-weight: 700;
  font-size: 6.4rem;
  line-height: 7rem;
  margin-bottom: 2rem;
  text-align: left;
  color: #000;
}
@media (max-width: 1400px) {
  .hero h1 {
    font-size: 5rem;
    line-height: 6rem;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 4rem;
    line-height: 5rem;
    margin-top: 2rem;
    text-align: center;
  }
  .hero h1 br {
    display: none;
  }
}
.hero h2 {
  font-size: 2rem;
  line-height: 2.6rem;
  text-align: left;
  color: #000;
  font-weight: 400;
  margin-bottom: 4.5rem;
}
@media (max-width: 1100px) {
  .hero h2 {
    font-size: 2rem;
    line-height: 2.6rem;
    max-width: 40rem;
  }
}
@media (max-width: 768px) {
  .hero h2 {
    max-width: 100%;
    text-align: center;
  }
  .hero h2 br {
    display: none;
  }
}
.hero .btn {
  color: #000;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero .btn:after {
  content: "";
  display: block;
  background: url(../img/arrow.svg) no-repeat;
  width: 8px;
  height: 13px;
  position: relative;
  transition: all 0.3s;
}
.hero .btn:hover {
  text-decoration: none;
}
.hero .btn:hover:after {
  top: 2px;
}
@media (max-width: 768px) {
  .hero .btn {
    justify-content: center;
  }
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 2rem;
}
.card-list__item {
  border-radius: 1.7rem;
  background: #F9F9F9;
  padding: 2.4rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.card-list__item:hover {
  box-shadow: 1px 0px 13px rgba(0, 0, 0, 0.4);
}
.card-list__title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3rem;
  margin: 1.5rem 0 1.2rem;
}
.card-list__description {
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #474747;
  margin-bottom: 3rem;
  flex: 1;
}
.card-list__rating {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 3rem;
  color: #474747;
}
.card-list__rating span {
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 3rem;
}
.card-list__stars {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.card-list__btn {
  background: var(--clr-accent-1);
  font-weight: 600;
  color: #000;
  border-radius: 5rem;
  width: 100%;
  font-size: 2rem;
  line-height: 2.2rem;
  padding: 1.6rem;
  border: 0.2rem solid var(--clr-accent-1);
}
.card-list__btn:hover {
  background: #fff;
  text-decoration: none;
}

.help {
  padding-right: 1rem;
  padding-left: 1rem;
}
.help .container {
  border-radius: 1.7rem;
  background: #f9f9f9;
  padding: 3rem;
}

.help-block__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 30%));
  justify-content: space-around;
  gap: 2rem;
}
@media (max-width: 768px) {
  .help-block__list {
    grid-template-columns: repeat(auto-fit, minmax(30%, 100%));
  }
}
.help-block__item {
  border-radius: 1.7rem;
  background: #f9f9f9;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.help-block__item h3 {
  font-size: 2rem;
  line-height: 2.4rem;
  text-align: center;
}
.help-block__item a {
  color: inherit;
}
.help-block__item ul {
  font-size: 1.6rem;
  text-align: center;
}
.help-block__item ul li {
  color: #686868;
  display: block;
}
.help-block__image {
  position: relative;
  margin-bottom: 1.5rem;
  min-height: 10rem;
  display: flex;
  align-items: center;
}
.help-block__image:before {
  content: "";
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--clr-accent-1);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
.help-block img {
  position: relative;
}

.response .container {
  display: flex;
  align-items: center;
  gap: 5rem;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .response .container {
    flex-direction: column;
    gap: 3rem;
  }
}
.response__age {
  background: var(--clr-accent-1);
  font-size: 6.8rem;
  line-height: 8.8rem;
  padding: 1rem 6rem;
  border-radius: 0 3.5rem 3.5rem 0;
  position: relative;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 1100px) {
  .response__age {
    font-size: 5rem;
    line-height: 5rem;
    padding: 1rem 4rem;
  }
}
.response__age:before {
  content: "";
  background: var(--clr-accent-1);
  width: 100rem;
  height: 100%;
  position: absolute;
  left: -100rem;
  top: 0;
}
.response__text {
  max-width: 40vw;
}
@media (max-width: 1100px) {
  .response__text {
    text-align: center;
    max-width: 100%;
  }
}
.response h1 {
  text-align: left;
}
@media (max-width: 1100px) {
  .response h1 {
    text-align: center;
  }
}
.response p {
  color: #1E1E1E;
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.response .btn {
  background: #F1F1F1;
  font-weight: 600;
  padding: 2rem 5rem;
  white-space: nowrap;
  border-radius: 3rem;
  color: #000;
}

.article {
  padding: 2rem 0;
  text-align: center;
}
.article__item {
  max-width: 120rem;
  margin: 0 auto 2rem;
  font-size: 2rem;
}

.note {
  color: red;
}