@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  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%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 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: "Public Sans", sans-serif;
  background: #131212;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.h1 {
  color: #FFF;
  font-size: clamp(26px, 6vw, 64px);
  font-weight: 800;
  line-height: 100%;
}

.h2 {
  color: #FFF;
  font-size: 36px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .h2 {
    font-size: 26px;
  }
}

.h3 {
  color: #FFF;
  font-size: 36px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 767px) {
  .h3 {
    font-size: 24px;
  }
}

[class*=__text] {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}

.bg {
  border-radius: 12px;
  border: 1px solid #4B4742;
  background: linear-gradient(92deg, #2D2924 0%, #37332B 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .bg {
    padding: 16px;
  }
}
.bg_brown {
  border: 0.5px solid #FD9900;
  background: #4A1500;
}

.text-center {
  text-align: center;
}

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

@font-face {
  font-family: "SF Pro Display";
  src: url("/assets/fonts/SFProDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("/assets/fonts/SFProDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("/assets/fonts/SFProDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #131212;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 2px;
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .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: #fff;
  }
  .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%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 767px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 160px 15px;
    background: #131212;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
    gap: 124px;
  }
}
.menu__item_mob {
  display: none;
}
@media (max-width: 767px) {
  .menu__item_mob {
    display: block;
  }
}
.menu__link {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}

.footer {
  padding: 42px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 48px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .footer__row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__menu a {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.footer__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__txt {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 24px;
  max-width: 1200px;
  width: 100%;
  border-radius: 12px;
  background: #131212;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__btn {
  color: #4A1500;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, #FD9900 0%, #FEF395 100%);
}

.home {
  padding: 80px 0 40px;
}
.home__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .home__content {
    gap: 24px;
  }
}
.home__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.home__blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home__cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .home__cards {
    flex-direction: column;
  }
}
.home__card {
  width: -moz-fit-content;
  width: fit-content;
  gap: 16px;
}
@media (max-width: 767px) {
  .home__card {
    max-width: 100%;
  }
}
.home__card-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.home__card-img {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #4B4742;
}
.home__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .home__card-img {
    width: 110px;
    height: 70px;
  }
}
.home__card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home__card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.home__card-score {
  color: #FFF;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.home__card-meta {
  display: flex;
  flex-direction: column;
}
.home__card-label {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}
.home__card-stars {
  color: #FD9900;
  font-size: 14px;
  letter-spacing: 2px;
}
.home__card-desc {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
}
.home__card-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.home__card-payments img {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 6px;
  border: 1px solid #4B4742;
  background: #0B0907;
  padding: 6px;
}
@media (max-width: 575px) {
  .home__card-payments {
    flex-wrap: wrap;
  }
}
.home__card-btn {
  display: block;
  width: 100%;
  padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, #FD9900 0%, #FEF395 100%);
  color: #4A1500;
  text-align: center;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.home__card-btn:hover {
  opacity: 0.9;
}
.home ul li {
  margin-left: 20px;
  list-style: disc;
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
.home ul li ul li {
  margin-left: 20px;
  list-style: disc;
}

.about-page {
  padding: 80px 0 40px;
}
.about-page__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .about-page__content {
    gap: 24px;
  }
}
.about-page__hero {
  padding: 32px 24px;
}
@media (max-width: 767px) {
  .about-page__hero {
    padding: 24px 16px;
  }
}
.about-page__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .about-page__grid {
    grid-template-columns: 1fr;
  }
}
.about-page__principle-title {
  display: flex;
  align-items: center;
  gap: 4px;
}
.about-page__check {
  color: #7C6AE8;
  font-size: 28px;
  line-height: 1;
}

.contact-page {
  padding: 80px 0 40px;
}
.contact-page__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .contact-page__content {
    gap: 24px;
  }
}
.contact-page__hero {
  padding: 32px 24px;
}
@media (max-width: 767px) {
  .contact-page__hero {
    padding: 24px 16px;
  }
}
.contact-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
  }
}
.contact-page__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-page__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.contact-page__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-page__row img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.contact-page__row-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-page__label {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
}
.contact-page__value {
  color: #FD9900;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  font-style: italic;
}
.contact-page a.contact-page__value {
  text-decoration: none;
}
.contact-page a.contact-page__value:hover {
  text-decoration: underline;
}
.contact-page__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-page__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #4B4742;
  background: #131212;
  color: #FFF;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-page__input::-moz-placeholder {
  color: #9E9E9E;
}
.contact-page__input::placeholder {
  color: #9E9E9E;
}
.contact-page__input:focus {
  border-color: #FD9900;
}
.contact-page__textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-page__btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, #FD9900 0%, #FEF395 100%);
  color: #4A1500;
  text-align: center;
  font-family: "Public Sans", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.contact-page__btn:hover {
  opacity: 0.9;
}

.policy {
  margin: 52px 0 0;
  padding: 72px 0;
}
@media (max-width: 767px) {
  .policy {
    padding: 48px 0;
  }
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.policy ul li {
  margin-left: 20px;
  list-style: disc;
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}