:root {
  --black: #000000;
  --white: #ffffff;
  --red: #ce262d;
  --dark-red: #8e0006;
  --button-red: #ff0000;
  --button-red-hover: #a70000;
  --text-font: "Roboto", Arial, sans-serif;
  --headline-font: "Roboto Condensed", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--text-font);
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  height: 126px;
  padding: 0 calc((100vw - 1250px) / 2 + 50px);
  background: var(--white);
  color: var(--black);
}

.site-header__logo img {
  width: 172px;
  height: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 58px;
  font-family: var(--headline-font);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-header__nav a {
  white-space: nowrap;
}

.site-header__nav a:hover,
.site-header__nav a[aria-current="page"] {
  color: var(--red);
}

.site-header__actions {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

.site-header__button {
  display: grid;
  place-items: center;
  min-width: 116px;
  height: 42px;
  padding: 0 18px;
  border-radius: 21px;
  background: var(--button-red);
  color: var(--white);
  font-family: var(--headline-font);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-header__button:hover {
  background: var(--button-red-hover);
}

.site-header__phone,
.site-header__menu,
.mobile-menu {
  display: none;
}

.faq-page {
  background: var(--black);
  color: var(--white);
}

.faq-hero {
  position: relative;
  display: grid;
  place-items: center;
  height: 200px;
  overflow: hidden;
  background-color: var(--black);
  background-image: url("/images/tild3038-3861-4265-b764-666564313162__black-edition-banner.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.faq-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0.4;
}

.faq-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-family: var(--headline-font);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  text-transform: uppercase;
}

.faq-hero__title strong {
  font-weight: 700;
}

.faq-spacer {
  height: 100px;
  background: var(--black);
}

.faq-accordion {
  background: var(--black);
}

.faq-item {
  --faq-row-width: 1000px;
  --faq-question-left: 20px;
  --faq-question-right: 72px;
  --faq-answer-top: 80px;
  --faq-answer-left: 39px;
  --faq-answer-right: 40px;
  --faq-icon-right: 12px;
  position: relative;
  width: var(--faq-row-width);
  height: 60px;
  max-height: 60px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--black);
  transition: height 300ms ease, max-height 300ms ease;
}

.faq-item.is-open {
  height: var(--faq-open-height);
  max-height: var(--faq-open-height);
}

.faq-item__heading {
  margin: 0;
}

.faq-item__button {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0 var(--faq-question-right) 0 var(--faq-question-left);
  border: 0;
  border-top: 1px solid var(--dark-red);
  border-bottom: 1px solid var(--dark-red);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.faq-item__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--red);
  opacity: 0;
  transition: opacity 200ms ease;
}

.faq-item__button:hover::before,
.faq-item__button:focus-visible::before,
.faq-item.is-open .faq-item__button::before {
  opacity: 0.5;
}

.faq-item__question {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 9px;
  color: var(--white);
  font-family: "PT Sans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 100;
  line-height: 1.55;
}

.faq-item__icon {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: var(--faq-icon-right);
  width: 30px;
  height: 30px;
  background: url("/images/tild6466-6664-4630-b438-386138663537__svg_1766652931659.svg") center / cover no-repeat;
  transition: transform 300ms ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(90deg);
}

.faq-item__answer {
  position: absolute;
  top: var(--faq-answer-top);
  left: var(--faq-answer-left);
  right: var(--faq-answer-right);
  color: var(--white);
  font-family: "PT Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.faq-item__answer p {
  margin: 0;
}

.faq-item--first {
  --faq-answer-top: 90px;
}

.contact-section {
  min-height: 702px;
  padding: 92px 20px 70px;
  background: var(--black);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(320px, 520px);
  gap: 34px;
  justify-content: center;
  align-items: start;
  max-width: 560px;
  margin: 0 auto;
}

.contact-section__heading {
  padding-top: 0;
  text-align: center;
  text-transform: uppercase;
}

.contact-section__heading p {
  margin: 0 0 20px;
  font-family: var(--headline-font);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-section__heading h2 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
}

.feedback-form {
  display: grid;
  gap: 16px;
  width: 100%;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  border: 1px solid #292929;
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--headline-font);
  font-size: 16px;
  line-height: 1.4;
  padding: 14px 16px;
}

.feedback-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--black) 50%),
    linear-gradient(135deg, var(--black) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 34px;
}

.feedback-form__phone {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 10px;
}

.feedback-form__country {
  padding-left: 10px;
  padding-right: 26px;
}

.feedback-form textarea {
  min-height: 110px;
  resize: vertical;
}

.feedback-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--white);
  font-family: var(--text-font);
  font-size: 12px;
  line-height: 1.35;
}

.feedback-form__consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex: 0 0 auto;
}

.feedback-form__consent a {
  color: var(--white);
  text-decoration: underline;
}

.feedback-form button {
  width: 220px;
  height: 60px;
  justify-self: center;
  border: 0;
  border-radius: 30px;
  background: var(--button-red);
  color: var(--white);
  cursor: pointer;
  font-family: var(--text-font);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.feedback-form button:hover,
.feedback-form button:focus {
  background: var(--button-red-hover);
}

.feedback-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.feedback-form__status {
  min-height: 20px;
  color: var(--white);
  font-family: var(--text-font);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.contact-popup[hidden] {
  display: none;
}

.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.contact-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.contact-popup__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(358px, calc(100vw - 66px));
  min-height: 290px;
  padding: 22px 24px 34px;
  background: var(--black);
  color: var(--white);
}

.contact-popup__close {
  position: absolute;
  top: 9px;
  right: 11px;
  width: 35px;
  height: 35px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.contact-popup__close::before,
.contact-popup__close::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 7px;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.contact-popup__close::before {
  transform: rotate(45deg);
}

.contact-popup__close::after {
  transform: rotate(-45deg);
}

.contact-popup__logo {
  width: 72px;
  margin-top: 0;
}

.contact-popup h2 {
  margin: 0;
  padding-top: 0;
  font-family: var(--headline-font);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.55;
}

.contact-popup p {
  margin: 0 0 22px;
  font-family: var(--text-font);
  font-size: 20px;
}

.contact-popup__actions {
  display: flex;
  gap: 18px;
}

.contact-popup__actions a {
  display: grid;
  place-items: center;
  min-width: 60px;
  height: 31px;
  color: var(--white);
  font-family: var(--text-font);
  font-size: 20px;
}

@media screen and (max-width: 1249px) {
  .site-header {
    padding: 0 calc((100vw - 960px) / 2 + 20px);
  }

  .site-header__nav {
    gap: 18px;
    margin-left: 38px;
    font-size: 16px;
  }

  .site-header__button {
    min-width: 104px;
    padding: 0 14px;
    font-size: 14px;
  }

  .faq-hero {
    height: 165px;
  }

  .faq-item {
    --faq-row-width: 919px;
  }

  .faq-item.is-open {
    height: var(--faq-open-height-960);
    max-height: var(--faq-open-height-960);
  }
}

@media screen and (max-width: 959px) {
  .site-header {
    height: 80px;
    padding: 0 26px;
  }

  .site-header__logo img {
    width: 118px;
  }

  .site-header__nav,
  .site-header__actions {
    display: none;
  }

  .site-header__phone,
  .site-header__menu {
    display: grid;
  }

  .site-header__phone {
    width: 30px;
    height: 30px;
    margin-left: auto;
    place-items: center;
  }

  .site-header__menu {
    width: 42px;
    height: 42px;
    margin-left: 16px;
    padding: 9px;
    border: 0;
    background: transparent;
    place-items: center;
    cursor: pointer;
  }

  .site-header__menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--black);
  }

  .mobile-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 19;
    display: block;
    background: var(--black);
    border-top: 1px solid #1f1f1f;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: grid;
    padding: 18px 32px 24px;
  }

  .mobile-menu a {
    padding: 13px 0;
    font-family: var(--headline-font);
    font-size: 20px;
    text-transform: uppercase;
  }

  .faq-hero {
    height: 295px;
  }

  .faq-item {
    --faq-row-width: 727px;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 560px;
  }

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

@media screen and (max-width: 767px) {
  .faq-hero {
    height: 197px;
  }

  .faq-hero__title {
    font-size: 30px;
    line-height: 1.3;
  }

  .faq-item {
    --faq-row-width: 439px;
    --faq-question-left: 8px;
    --faq-question-right: 56px;
    --faq-answer-left: 17px;
    --faq-answer-right: 35px;
    --faq-icon-right: 10px;
  }

  .faq-item.is-open {
    height: var(--faq-open-height-480);
    max-height: var(--faq-open-height-480);
  }

  .faq-item__question {
    padding-top: 15px;
    font-size: 18px;
    line-height: 1.2;
  }

  .faq-item__answer {
    top: 90px;
  }

  .contact-section {
    min-height: 614px;
  }
}

@media screen and (max-width: 479px) {
  .site-header {
    padding: 0 18px;
  }

  .faq-item {
    --faq-row-width: 319px;
    --faq-question-left: 10px;
    --faq-question-right: 48px;
    --faq-answer-left: 12px;
    --faq-answer-right: 25px;
    --faq-icon-right: 9px;
  }

  .faq-item.is-open {
    height: var(--faq-open-height-360);
    max-height: var(--faq-open-height-360);
  }

  .faq-item__question {
    padding-top: 8px;
  }

  .faq-item__answer {
    top: 81px;
  }

  .contact-section {
    min-height: 599px;
    padding: 58px 20px 54px;
  }

  .contact-section__heading p {
    font-size: 22px;
  }

  .contact-section__heading h2 {
    font-size: 42px;
  }

  .feedback-form__phone {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 8px;
  }

  .feedback-form button {
    width: 100%;
  }
}
