@charset "UTF-8";
:root {
  --chernyy: #0b1016;
  --chernyy-500: rgba(11, 16, 22, 0.5);
  --chernyy-300: rgba(11, 16, 22, 0.3);
  --chernyy-100: rgba(11, 16, 22, 0.1);
  --belyy: #fff;
  --belyy-800: rgba(255, 255, 255, 0.8);
  --belyy-500: rgba(255, 255, 255, 0.5);
  --belyy-300: rgba(255, 255, 255, 0.3);
  --belyy-100: rgba(255, 255, 255, 0.1);
  --seryy: #f8f8f8;
  --krasnyy: #d00;
  --font-family: "porsche_next", sans-serif;
  --max-width: calc(1400px + 48px);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--seryy);
}

main {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.container {
  display: flex;
  max-width: var(--max-width);
  width: 100%;
  flex-direction: column;
  margin: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

button {
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

li {
  list-style-type: none;
}

.btn__transparent {
  padding: 18px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--belyy);
  border: 1px solid var(--belyy);
}
.btn__transparent:hover {
  background-color: var(--belyy);
  border-color: var(--belyy);
  color: var(--chernyy);
}
.btn__transparent.btn__transparent--black {
  color: var(--chernyy);
  border-color: var(--chernyy);
}
.btn__transparent.btn__transparent--black:hover {
  background-color: var(--chernyy);
  color: var(--belyy);
}
.btn__mobile {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: right;
  color: var(--belyy);
}
.btn__dark {
  padding: 18px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--belyy);
  border: 1px solid var(--chernyy);
  background-color: var(--chernyy);
}
.btn__dark:hover {
  background-color: transparent;
  color: var(--chernyy);
}

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

form fieldset {
  border: none;
}
form fieldset.row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
form fieldset.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
form fieldset.agreement {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--belyy-500);
}
form fieldset.agreement a {
  text-decoration: underline;
}

.dark__wrapper {
  background-color: var(--chernyy);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.none {
  display: none !important;
}

.header__wrapper {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--chernyy);
  z-index: 99;
  position: sticky;
  top: 0;
  left: 0;
}
.header {
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 992px) {
  .header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.header {
  max-width: var(--max-width);
  margin: auto;
  padding-top: 0px;
  padding-bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--belyy-100);
}
@media (max-width: 992px) {
  .header__top {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (max-width: 1280px) {
  .header__top .header__btns {
    display: none;
  }
}
.header__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
}
@media (min-width: 1281px) {
  .header__bottom .header__adress {
    display: none;
  }
}
.header__bottom.active {
  flex-direction: column;
  display: flex;
}
.header__bottom.active ul {
  flex-direction: column;
}
@media (max-width: 1280px) {
  .header__bottom {
    display: none;
  }
  .header__bottom .header__adress {
    margin-top: 24px;
  }
}
@media (min-width: 1281px) {
  .header__mobile {
    display: none;
  }
}
@media (max-width: 1280px) {
  .header__mobile {
    display: flex;
    width: 100%;
    padding: 16px 0;
  }
  .header__mobile .header__btns {
    justify-content: space-between;
    width: 100%;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 576px) {
  .header__logo__image {
    max-width: 96px;
  }
}
@media (max-width: 576px) {
  .header__logo__separator {
    max-width: 12px;
  }
}
@media (max-width: 365px) {
  .header__logo__separator {
    display: none;
  }
}
.header__logo__text {
  margin-top: 6px;
}
@media (max-width: 576px) {
  .header__logo__text svg {
    max-width: 150px;
  }
}
.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.header__adress {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header__adress p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--belyy);
}
.header__tel {
  display: flex;
  gap: 8px;
  text-decoration: none;
  align-items: center;
}
.header__tel span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--belyy);
}
.header__tel:hover span {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.header__menu ul {
  display: flex;
  gap: 32px;
}
.header__menu ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--belyy-800);
}
.header__menu ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.header__burger {
  display: none;
}
@media (max-width: 1280px) {
  .header__burger {
    display: block;
  }
}
.header__open {
  display: none;
}
.header__open.active {
  display: block;
}
.header__close {
  display: none;
}
.header__close.active {
  display: block;
}

.hero {
  max-width: 100%;
  width: 100vw;
  display: flex;
  position: relative;
  padding: 0;
}
.hero__swiper {
  max-width: 100%;
  width: 100%;
}
.hero__swiper .swiper-pagination {
  max-width: var(--max-width);
  margin: auto;
  left: 50%;
  transform: translate(-50%, -32px);
  display: flex;
}
.hero__swiper .swiper-pagination-bullet {
  width: 100px;
  height: 2px;
  background: var(--belyy-500);
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.hero__swiper .swiper-pagination-bullet-active {
  background: var(--belyy-500); /* Цвет фона неактивного */
}
.hero__swiper {
  /* Эффект заполнения (например, заливка цветом) */
}
.hero__swiper .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--belyy); /* Цвет заполнения */
  border-radius: 50%;
  animation: fillProgress 3s linear forwards; /* 3s - время автопрокрутки */
}
@keyframes fillProgress {
  from {
    transform: translateX(-100px);
  }
  to {
    transform: translateX(0px);
  }
}
.hero__image img {
  max-width: 100%;
  width: 100%;
  display: block;
}
.hero__content {
  position: absolute;
  top: 0;
  left: 0%;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 992px) {
  .hero__content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.hero__content {
  max-width: var(--max-width);
  width: 100%;
  left: 50%;
  transform: translate(-50%, 48px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero__offer {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__offer h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 90%;
  color: var(--belyy);
}
@media (max-width: 992px) {
  .hero__offer h1 {
    font-size: 40px;
  }
}
.hero__offer p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--belyy);
}
@media (max-width: 992px) {
  .hero__offer p {
    font-size: 16px;
  }
}
.hero__form {
  max-width: 700px;
  display: flex;
  gap: 20px;
}
.hero__form input {
  max-width: 335px;
  width: 100%;
}
.hero__form button {
  max-width: 335px;
  width: 100%;
}
.hero__form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 992px) and (min-width: 577px) {
  .hero__slide {
    min-height: 600px;
  }
  .hero__slide .hero__image {
    height: 100%;
  }
  .hero__slide .hero__image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media (max-width: 992px) {
  .hero__slide .hero__form form .row {
    flex-direction: column;
  }
  .hero__slide .hero__form form .row input {
    min-height: 56px;
  }
}
@media (max-width: 576px) {
  .hero__slide {
    min-height: 650px;
  }
  .hero__slide .hero__image {
    min-height: 650px;
    max-height: 650px;
  }
  .hero__slide .hero__image img {
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    max-height: 650px;
    object-position: bottom;
  }
  .hero__slide .hero__form form input {
    max-width: 100%;
  }
  .hero__slide .hero__form form button {
    max-width: 100%;
  }
}/*# sourceMappingURL=initial.css.map */