@charset "UTF-8";
@font-face {
  font-family: "Benzin";
  src: local("Benzin Semibold"), local("Benzin-Semibold"), url("fonts/Benzin-Semibold.woff2") format("woff2"), url("fonts/Benzin-Semibold.woff") format("woff"), url("fonts/Benzin-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Apple Myungjo";
  src: local("Apple Myungjo"), local("Apple Myungjo"), url("fonts/apple-myungjo.ttf") format("truetype"), url("fonts/apple-myungjo.woff2") format("woff2"), url("fonts/apple-myungjo.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
.apple {
  font-family: "Apple Myungjo", serif;
}

.benzin {
  font-family: "Benzin";
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

html {
  background: white;
  scroll-behavior: smooth;
}
html body {
  margin: 0;
}
html header {
  display: flex;
  background: black;
  color: white;
  justify-content: space-between;
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100px;
  top: 0;
  margin: 0 auto;
  align-items: center;
}
html header a {
  color: white;
  text-decoration: none;
  margin-left: 50px;
}
html header .right {
  margin-left: 0;
  margin-right: 50px;
}
html header .title {
  color: white;
  font-size: 25px;
}
html footer {
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
html footer .row {
  display: flex;
  gap: 20px;
  color: white;
}
html footer .row a {
  text-decoration: none;
  color: white;
}
html footer .row .left {
  display: flex;
  flex-direction: column;
}
html footer .row .right {
  display: flex;
  flex-direction: column;
}

.index .description {
  width: 90%;
  padding: 80px 0;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.index .description .first {
  margin-top: 60px;
  margin-bottom: 20px;
}
.index .description .second {
  margin-top: 0px;
}
.index a {
  text-decoration: none;
}
.index .cards {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  gap: 40px;
}
.index .cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index .cards .card p {
  color: black;
  width: 100%;
  margin: 0;
  font-size: 20px;
  padding: 0;
}
.index .cards .card .thumbnail {
  position: relative;
}
.index .cards .card .thumbnail svg {
  position: absolute;
  top: 20px;
  right: 20px;
}
.index .cards .card .thumbnail img {
  border: 5px solid black;
  border-radius: 15px;
}

.shopcard {
  display: flex;
  gap: 40px;
  margin: 0 auto;
  width: 70%;
  margin-top: 150px;
  margin-bottom: 40px;
}
.shopcard img {
  width: 50%;
  border-radius: 15px;
  border: 5px solid black;
}
.shopcard .description {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.shopcard .description .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shopcard .description .row a {
  text-decoration: none;
  color: black;
  width: 30%;
  border: 3px solid black;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 30px;
  border-radius: 40px;
}
.shopcard .description .row p {
  font-size: 30px;
  margin: 0;
  padding: 0;
}

.faq .title {
  margin-top: 140px;
}
.faq .container {
  width: 90%;
  margin: 0 auto;
}
.faq .container .question {
  width: 100%;
}
.faq .container .question .quest {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
}
.faq .container .question .quest p {
  font-size: 20px;
}
.faq .container .question .quest .arrow {
  width: 30px;
}
.faq .container .question .quest .arrow svg {
  width: 100%;
}
.faq .container .question .answer p {
  font-size: 20px;
  margin: 0;
  padding: 0;
}

.privacypolicy .title {
  margin-top: 140px;
}
.privacypolicy .container {
  width: 90%;
  margin: 0 auto;
}
.privacypolicy .container p {
  font-size: 20px;
}

.scroll-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  color: black;
}

.scroll {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
  color: black; /* Цвет текста */
  font-size: 24px; /* Размер по желанию */
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.popup {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: white;
}
.popup .container {
  width: 90%;
  margin: 0 auto;
}
.popup .exit {
  margin-left: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 840px) {
  .index .description .first {
    font-size: 22px;
  }
  .index .description .second {
    font-size: 22px;
  }
  .index .cards {
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    width: min-content;
  }
  .index .cards .card {
    width: min-content;
  }
  .index .cards .card img {
    width: 300px;
  }
  .index .cards .card p {
    font-size: 15px;
  }
  .shopcard {
    display: flex;
    flex-direction: column;
  }
  .shopcard img {
    width: 100%;
  }
}

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