@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;700&display=swap");
.icon {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
  vertical-align: middle;
}

.header {
  background-color: #292929;
  width: calc(100% - 42px);
  position: fixed;
  top: 22px;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  border-radius: 5px;
}
@media (max-width: 565px) {
  .header {
    width: calc(100% - 32px);
  }
}
.header .left {
  display: flex;
  gap: 15px;
  position: relative;
  align-items: center;
}
@media (max-width: 565px) {
  .header .left {
    gap: 4px;
  }
}
.header .left img {
  width: 115px;
  height: 62px;
}
@media (max-width: 565px) {
  .header .left img {
    width: 96px;
    height: 52px;
  }
}
.header .left .line {
  width: 1px;
  height: 39px;
  background-color: white;
}
@media (max-width: 460px) {
  .header .left .line {
    display: none;
  }
}
.header .left p {
  width: 91px;
  font-size: 10px;
}
@media (max-width: 460px) {
  .header .left p {
    display: none;
  }
}
.header .center {
  display: flex;
  gap: 35px;
}
@media (max-width: 1024px) {
  .header .center {
    display: none;
  }
}
.header .right {
  display: flex;
  align-items: center;
  padding-right: 22px;
}
@media (max-width: 565px) {
  .header .right {
    padding-right: 12px;
  }
}
.header .right a {
  margin-right: 25px;
}
@media (max-width: 565px) {
  .header .right a {
    font-size: 14px;
    margin-right: 12px;
  }
}
@media (max-width: 565px) {
  .header .right img {
    width: 32px;
    height: 32px;
  }
}
.header .right .max {
  margin-right: 12px;
}
@media (max-width: 565px) {
  .header .right .max {
    margin-right: 6px;
  }
}

.banner {
  background-color: #f4f4f4;
  padding: 40px;
  text-align: center;
}

.faq {
  padding: 30px 60px;
  margin: 0 auto;
  height: 900px;
  font-family: "Maven Pro", sans-serif;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .faq {
    padding: 30px 12px;
    height: fit-content;
  }
}

.faq::before,
.faq::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.faq::before {
  background-image: url("../src/images/quest1.png");
  background-position: top right;
  width: 300px;
  height: 300px;
  top: 0;
  right: 550px;
}

.faq::after {
  background-image: url("../src/images/quest2.png");
  background-position: bottom right;
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: 0;
}

.faq__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}
.faq__header h2 {
  font-size: 48px;
  color: #3B3B3B;
  font-weight: 800;
  margin-top: 250px;
}
@media (max-width: 800px) {
  .faq__header h2 {
    margin: 0;
    font-size: 32px;
  }
}
.faq__header .faq__bg-icon {
  display: none;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  max-width: 875px;
}

.faq__question {
  background-image: url("../src/images/quest-block.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 18px 0 18px 60px;
  cursor: pointer;
  border-radius: 5px 20px 20px 5px;
  transition: opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}
.faq__question .question-mark {
  color: rgba(115, 115, 115, 0.3137254902);
  font-size: 76px;
  font-weight: bold;
  position: absolute;
  left: 12px;
}
.faq__question:hover {
  opacity: 0.9;
}
.faq__question .faq__q-icon {
  width: 24px;
  height: 24px;
  margin-right: 20px;
  opacity: 0.5;
}
.faq__question .faq__text {
  flex: 1;
  font-size: 18px;
  color: #666;
  font-weight: 500;
}
.faq__question .faq__arrows {
  font-size: 24px;
  color: #bbb;
  font-weight: bold;
  margin-left: 10px;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fff;
}

.faq__answer.active {
  max-height: 200px;
}

.faq__answer-inner {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  margin-bottom: 10px;
}
.faq__answer-inner .answer-mark {
  font-size: 90px;
  color: #FF8223;
}
.faq__answer-inner .faq__a-icon {
  width: 20px;
  height: 40px;
  flex-shrink: 0;
}
.faq__answer-inner p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.footer {
  background-color: #3B3B3B;
  text-align: center;
  bottom: 0;
  width: 100%;
  padding: 77px 56px;
  color: #7F7F7F;
}
@media (max-width: 525px) {
  .footer {
    padding: 32px;
  }
}
.footer .footer__content {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1160px) {
  .footer .footer__content {
    width: 100%;
  }
}
.footer .footer__content .footer__nav {
  display: flex;
  justify-content: space-between;
}
.footer .footer__content .footer__nav a {
  color: #7F7F7F;
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 800px) {
  .footer .footer__content .footer__nav a {
    font-size: 20px;
  }
}
@media (max-width: 485px) {
  .footer .footer__content .footer__nav a {
    font-size: 16px;
  }
}
.footer .footer__content .footer__contacts {
  margin-top: 126px;
  display: flex;
  gap: 28px;
  flex-direction: column;
  text-align: left;
}
@media (max-width: 800px) {
  .footer .footer__content .footer__contacts {
    margin-top: 40px;
  }
}
.footer .footer__content .footer__contacts .footer__contacts-title {
  font-size: 28px;
}
@media (max-width: 800px) {
  .footer .footer__content .footer__contacts .footer__contacts-title {
    font-size: 20px;
  }
}
.footer .footer__content .footer__contacts .footer__contact-item {
  display: flex;
  gap: 6px;
}
.footer .footer__content .footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 112px;
}
@media (max-width: 800px) {
  .footer .footer__content .footer__socials {
    margin-top: 40px;
  }
}
.footer .footer__content .footer__socials img {
  width: 62px;
  height: 62px;
}
.footer .horizontal-line {
  width: 100%;
  height: 1px;
  background-color: #7F7F7F;
  margin: 36px 0 51px 0;
}
.footer .footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 112px;
}
@media (max-width: 800px) {
  .footer .footer__bottom {
    gap: 40px;
  }
}
.footer .footer__bottom img {
  width: 217px;
  margin: 0 auto;
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Maven Pro", sans-serif;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
figure, figcaption,
hr, fieldset, legend {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

li {
  list-style: none;
}

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

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  border-style: none;
}

svg:not([fill]) {
  fill: currentColor;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

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;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  padding: 0;
  box-sizing: border-box;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
}

th {
  font-weight: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: none;
  border-top: 1px solid;
}

pre,
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

iframe {
  border: 0;
}

.first-block {
  height: 100dvh;
  background: linear-gradient(#7D7D7D, #292929);
  position: relative;
  padding-top: 160px;
  padding-left: 21px;
  min-height: 900px;
}
@media (max-width: 871px) {
  .first-block {
    display: flex;
    flex-direction: column-reverse;
    height: fit-content;
    padding: 90px 12px 20px;
  }
}
.first-block .form {
  background-color: #292929;
  padding: 42px 48px;
  color: white;
  max-width: 676px;
  border-radius: 20px;
}
@media (max-width: 1100px) {
  .first-block .form {
    padding: 21px 24px;
    max-width: 550px;
  }
}
@media (max-width: 974px) {
  .first-block .form {
    max-width: 450px;
  }
}
@media (max-width: 871px) {
  .first-block .form {
    margin-top: -90px;
    max-width: none;
  }
}
.first-block .form .title {
  font-weight: bold;
  font-size: 40px;
}
@media (max-width: 974px) {
  .first-block .form .title {
    font-size: 32px;
  }
}
@media (max-width: 400px) {
  .first-block .form .title {
    font-size: 20px;
  }
}
.first-block .form .description {
  font-size: 20px;
  margin-top: 20px;
}
@media (max-width: 974px) {
  .first-block .form .description {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .first-block .form .description {
    font-size: 16px;
  }
}
.first-block .form .input-title {
  margin: 30px 0;
  font-size: 20px;
}
.first-block .form input {
  width: 100%;
  height: 46px;
  background-color: white;
}
.first-block .form .send {
  width: 100%;
  background: linear-gradient(to right, #B47749, #F3CF76);
  display: flex;
  justify-content: center;
  margin-left: auto;
  align-items: center;
  font-size: 20px;
  color: white;
  border-radius: 5px;
  height: 46px;
  margin-top: 35px;
}
.first-block .form .or {
  margin: 20px auto 20px auto;
  text-align: center;
  width: 100%;
}
.first-block .form .buttons {
  display: flex;
  gap: 23px;
}
@media (max-width: 871px) {
  .first-block .form .buttons {
    flex-direction: column;
  }
}
.first-block .form .buttons button {
  height: 55px;
  border-radius: 5px;
  color: white;
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  width: 100%;
}
@media (max-width: 974px) {
  .first-block .form .buttons button {
    font-size: 16px;
  }
}
.first-block .form .buttons button.tg {
  background-color: #1E96C8;
}
.first-block .form .buttons button.max {
  background: linear-gradient(to right, #42BBFD, #3B50FA, #963FDB);
}
.first-block .form .offerta {
  font-size: 12px;
  text-align: center;
  margin-top: 65px;
}
.first-block .form .offerta span {
  color: #B47749;
}
.first-block picture {
  position: absolute;
  bottom: -290px;
  max-width: 915px;
  width: 100%;
  height: fit-content;
  right: 0;
  z-index: 1;
}
@media (max-width: 1520px) {
  .first-block picture {
    max-width: 700px;
    bottom: -221px;
  }
}
@media (max-width: 1260px) {
  .first-block picture {
    max-width: 500px;
    bottom: -158px;
  }
}
@media (max-width: 871px) {
  .first-block picture {
    position: static;
    max-width: none;
  }
}

.second-block {
  background-color: #D9D9D9;
  height: 971px;
  position: relative;
}
@media (max-width: 1424px) {
  .second-block {
    padding: 0 12px;
  }
}
@media (max-width: 1180px) {
  .second-block {
    padding: 0 0 0 12px;
  }
}
@media (max-width: 800px) {
  .second-block {
    height: fit-content;
    padding: 0 0 20px 12px;
  }
}
.second-block .page-title {
  padding: 69px 0 0 63px;
  font-size: 48px;
  font-weight: 800;
  color: #3B3B3B;
}
@media (max-width: 832px) {
  .second-block .page-title {
    padding: 20px 0;
    font-size: 32px;
  }
}
.second-block .cards {
  display: flex;
  margin-top: 60px;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1180px) {
  .second-block .cards {
    overflow: scroll;
    justify-content: flex-start;
    padding-right: 12px;
  }
  .second-block .cards::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 800px) {
  .second-block .cards {
    margin-top: 32px;
  }
}
.second-block .cards .card {
  position: relative;
  overflow: hidden;
  width: 449px;
  height: 250px;
}
@media (max-width: 1180px) {
  .second-block .cards .card {
    flex-shrink: 0;
  }
}
.second-block .cards .card.first .description {
  top: 20px;
  right: -20px;
  width: 224px;
}
.second-block .cards .card.second .description {
  top: 70px;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
}
.second-block .cards .card.third .description {
  top: 70px;
  left: 16px;
  width: 100px;
}
.second-block .cards .card .description {
  position: absolute;
  font-size: 24px;
  color: white;
  font-weight: 700;
}
.second-block .cards .card .description span {
  color: #B47749;
}
.second-block .cards .card .number {
  font-size: 72px;
  top: -16px;
  left: 0;
  position: absolute;
  font-weight: 800;
  color: #B47749;
  opacity: 0.5;
}
.second-block .description-page {
  width: 900px;
  margin-top: 69px;
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: auto;
  padding-right: 140px;
}
@media (max-width: 1300px) {
  .second-block .description-page {
    padding-right: 20px;
    width: 565px;
  }
}
@media (max-width: 800px) {
  .second-block .description-page {
    width: 100%;
    margin-top: 32px;
  }
}
.second-block .description-page .description-title {
  font-size: 40px;
  color: #1E1E1E;
  font-weight: bold;
}
@media (max-width: 525px) {
  .second-block .description-page .description-title {
    font-size: 24px;
  }
}
.second-block .description-page .description-title span {
  color: #B47749;
}
.second-block .description-page .description-subtitle {
  margin-top: 24px;
  color: #3B3B3B;
  font-size: 20px;
}
.second-block .description-page button {
  margin-top: 85px;
  width: 350px;
  height: 86px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  align-items: center;
  font-size: 24px;
  color: white;
  border-radius: 10px;
  background: linear-gradient(to right, #B47749, #F3CF76);
}
@media (max-width: 800px) {
  .second-block .description-page button {
    width: 100%;
    height: 60px;
    font-size: 20px;
    margin-top: 32px;
  }
}
.second-block .car-image {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1120px) {
  .second-block .car-image {
    width: 50%;
    bottom: -4%;
  }
}
@media (max-width: 800px) {
  .second-block .car-image {
    display: none;
  }
}
@media (min-width: 1121px) {
  .second-block .car-image {
    bottom: -43px;
  }
}

.fifth-block {
  height: 882px;
  background-color: #3B3B3B;
  padding-top: 211px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .fifth-block {
    height: fit-content;
    padding: 120px 0;
  }
}
.fifth-block .cars-list {
  margin-left: 71px;
  display: flex;
  flex-direction: column;
  gap: 29px;
  position: relative;
  z-index: 10;
}
@media (max-width: 932px) {
  .fifth-block .cars-list {
    margin: 0;
    padding: 0 12px;
  }
}
.fifth-block .cars-list .cars__item {
  background-image: url("../icons/rec.svg");
  background-size: cover;
  width: 840px;
  background-position: center;
  display: flex;
  align-items: center;
  height: 69px;
  font-size: 24px;
  font-weight: bold;
  color: #3B3B3B;
  padding-left: 28px;
  cursor: pointer;
  border-radius: 5px 20px 20px 5px;
  transition: opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 932px) {
  .fifth-block .cars-list .cars__item {
    width: 100%;
  }
}
.fifth-block .background-line {
  opacity: 0.1;
  position: absolute;
  right: -164px;
  transform: rotate(165deg);
  z-index: 0;
  height: 215px;
  bottom: 62px;
}
@media (max-width: 1800px) {
  .fifth-block .background-line {
    bottom: 0;
  }
}
@media (max-width: 1800px) {
  .fifth-block .background-line {
    bottom: -40px;
  }
}
.fifth-block .cars {
  position: absolute;
  right: 0;
  bottom: -211px;
}
@media (max-width: 525px) {
  .fifth-block .cars {
    bottom: -154px;
  }
}

.six-block {
  padding: 106px 0 177px 0;
  background-color: #D9D9D9;
}
@media (max-width: 625px) {
  .six-block {
    padding: 80px 0;
  }
}
.six-block .page-title {
  color: #3B3B3B;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 625px) {
  .six-block .page-title {
    font-size: 32px;
  }
}
.six-block .your-choice-block {
  margin-top: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1380px) {
  .six-block .your-choice-block {
    padding: 0 24px;
  }
}
@media (max-width: 1264px) {
  .six-block .your-choice-block {
    overflow: scroll;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    padding: 0 12px;
    scroll-padding: 20px;
  }
  .six-block .your-choice-block::-webkit-scrollbar {
    display: none;
  }
}
.six-block .your-choice-block .worst-choice {
  width: 416px;
  height: 531px;
  background-color: white;
  border-radius: 20px;
  border: 1px solid #8B8B8B;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 33px;
}
@media (max-width: 1264px) {
  .six-block .your-choice-block .worst-choice {
    flex-shrink: 0;
  }
}
@media (max-width: 575px) {
  .six-block .your-choice-block .worst-choice {
    width: calc(100% - 60px);
  }
}
.six-block .your-choice-block .worst-choice .title {
  color: #8B8B8B;
  font-weight: bold;
  font-size: 36px;
}
@media (max-width: 575px) {
  .six-block .your-choice-block .worst-choice .title {
    font-size: 24px;
  }
}
.six-block .your-choice-block .worst-choice .choice-logo {
  width: 30px;
  height: 30px;
  margin-top: 24px;
  filter: grayscale(1);
}
.six-block .your-choice-block .worst-choice .worst-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 525px) {
  .six-block .your-choice-block .worst-choice .worst-list {
    padding: 0 24px;
  }
}
.six-block .your-choice-block .worst-choice .worst-list .worst-item {
  display: flex;
  flex-direction: row;
  gap: 14px;
  color: #8B8B8B;
  font-size: 20px;
  align-items: center;
}
.six-block .your-choice-block .worst-choice .worst-list .worst-item img {
  width: 17px;
}
.six-block .your-choice-block .best-choice {
  width: 470px;
  height: 676px;
  padding: 31px 52px 70px;
  background-color: white;
  border: 1px solid #DA973E;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
}
@media (max-width: 1264px) {
  .six-block .your-choice-block .best-choice {
    flex-shrink: 0;
    scroll-snap-align: center;
    height: fit-content;
  }
}
@media (max-width: 575px) {
  .six-block .your-choice-block .best-choice {
    width: calc(100% - 60px);
    padding: 21px 22px 20px;
  }
}
.six-block .your-choice-block .best-choice .title {
  color: #DA973E;
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 575px) {
  .six-block .your-choice-block .best-choice .title {
    font-size: 24px;
  }
}
.six-block .your-choice-block .best-choice .choice-logo {
  width: 32px;
  height: 32px;
  margin-top: 12px;
}
.six-block .your-choice-block .best-choice .description {
  color: #3B3B3B;
  font-size: 24px;
  margin-top: 12px;
}
.six-block .your-choice-block .best-choice .advantage-list {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.six-block .your-choice-block .best-choice .advantage-list .advantage-item {
  display: flex;
  gap: 14px;
}
.six-block .your-choice-block .best-choice .advantage-list .advantage-item img {
  width: 32px;
  flex-shrink: 0;
}
.six-block .your-choice-block .best-choice .advantage-list .advantage-item p {
  font-size: 20px;
}
.six-block .your-choice-block .best-choice .advantage-list .advantage-item p span {
  font-weight: bold;
  color: #DA973E;
}
.six-block .your-choice-block .best-choice button {
  background-color: #3B3B3B;
  width: 100%;
  max-width: 366px;
  height: 61px;
  color: #DA973E;
  margin-top: 60px;
  border-radius: 5px;
  font-size: 24px;
}

.footer {
  background-color: #3B3B3B;
  text-align: center;
  bottom: 0;
  width: 100%;
  padding: 77px 56px;
  color: #7F7F7F;
}
@media (max-width: 525px) {
  .footer {
    padding: 32px;
  }
}
.footer .footer__content {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1160px) {
  .footer .footer__content {
    width: 100%;
  }
}
.footer .footer__content .footer__nav {
  display: flex;
  justify-content: space-between;
}
.footer .footer__content .footer__nav a {
  color: #7F7F7F;
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 800px) {
  .footer .footer__content .footer__nav a {
    font-size: 20px;
  }
}
@media (max-width: 485px) {
  .footer .footer__content .footer__nav a {
    font-size: 16px;
  }
}
.footer .footer__content .footer__contacts {
  margin-top: 126px;
  display: flex;
  gap: 28px;
  flex-direction: column;
  text-align: left;
}
@media (max-width: 800px) {
  .footer .footer__content .footer__contacts {
    margin-top: 40px;
  }
}
.footer .footer__content .footer__contacts .footer__contacts-title {
  font-size: 28px;
}
@media (max-width: 800px) {
  .footer .footer__content .footer__contacts .footer__contacts-title {
    font-size: 20px;
  }
}
.footer .footer__content .footer__contacts .footer__contact-item {
  display: flex;
  gap: 6px;
}
.footer .footer__content .footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 112px;
}
@media (max-width: 800px) {
  .footer .footer__content .footer__socials {
    margin-top: 40px;
  }
}
.footer .footer__content .footer__socials img {
  width: 62px;
  height: 62px;
}
.footer .horizontal-line {
  width: 100%;
  height: 1px;
  background-color: #7F7F7F;
  margin: 36px 0 51px 0;
}
.footer .footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 112px;
}
@media (max-width: 800px) {
  .footer .footer__bottom {
    gap: 40px;
  }
}
.footer .footer__bottom img {
  width: 217px;
  margin: 0 auto;
}

.cars-slider {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-family: "Maven Pro", sans-serif;
  overflow: hidden;
  position: relative;
}

.carSwiper {
  width: 100%;
  max-width: 1400px;
  padding: 40px 0 !important;
}
.carSwiper .swiper-slide {
  width: 700px;
  transition: all 0.5s ease;
  opacity: 0.4;
  transform: scale(0.85);
  filter: blur(2px);
  z-index: 1;
}
.carSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.carSwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.1);
  filter: blur(0);
  z-index: 10;
}

.car-details {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  position: relative;
  margin-top: -40px;
}
.car-details__name {
  font-size: 32px;
  font-weight: 800;
  color: #333;
  margin: 0 0 60px 0;
  text-transform: uppercase;
}
.car-details__prices {
  display: flex;
  gap: 120px;
  align-items: flex-end;
  position: relative;
  width: 100%;
  justify-content: center;
}
@media (max-width: 680px) {
  .car-details__prices {
    gap: inherit;
    justify-content: space-between;
  }
}

/* Линии-коннекторы */
.car-details__lines {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 350px;
  pointer-events: none;
  z-index: -1;
}

.line-market {
  position: absolute;
  left: 120px;
  bottom: -55px;
  width: 150px;
  height: 250px;
  border-left: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}
.line-market::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -6px;
  width: 10px;
  height: 10px;
  background: #ddd;
  transform: rotate(45deg);
}

.line-offer {
  position: absolute;
  right: 130px;
  top: 220px;
  width: 180px;
  height: 185px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
}
.line-offer::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -6px;
  width: 10px;
  height: 10px;
  background: #333;
  transform: rotate(45deg);
}

.price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}
.price-box__label {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}
.price-box__value {
  font-size: 28px;
  font-weight: 800;
  padding: 18px 45px;
  border-radius: 4px;
  min-width: 260px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 580px) {
  .price-box__value {
    min-width: 160px;
    padding: 12px 36px;
    font-size: 16px;
  }
}
.price-box.market .price-box__value {
  background-color: #ddd;
  color: #444;
}
.price-box.offer .price-box__value {
  background-color: #2c2c2c;
  color: #FFB800;
}

.third-block {
  height: 750px;
  position: relative;
}
@media (max-width: 800px) {
  .third-block {
    height: fit-content;
    padding: 20px 0 80px 0;
  }
}
.third-block .block-title {
  text-align: center;
  margin-top: 158px;
  color: #3B3B3B;
  font-size: 48px;
  font-weight: 800;
}
@media (max-width: 800px) {
  .third-block .block-title {
    margin-top: 32px;
    font-size: 32px;
    text-align: left;
    padding-left: 12px;
  }
}
.third-block .background-line {
  position: absolute;
  z-index: 0;
  top: 35%;
  width: 100%;
}
.third-block .cards-list {
  margin-top: 100px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1400px) {
  .third-block .cards-list {
    overflow: scroll;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    padding: 0 12px;
    scroll-padding: 20px;
  }
  .third-block .cards-list::-webkit-scrollbar {
    display: none;
  }
}
.third-block .cards-list .card {
  width: 320px;
  height: 380px;
  border-radius: 20px;
  background-color: #3B3B3B;
  position: relative;
  padding: 80px 30px 50px;
  overflow: hidden;
  transition: 0.3s;
  transform-origin: center;
}
@media (max-width: 1400px) {
  .third-block .cards-list .card {
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}
.third-block .cards-list .card:hover {
  transform: scaleY(1.05);
}
.third-block .cards-list .card:hover .number {
  color: #DA973E;
}
.third-block .cards-list .card:hover button {
  background: linear-gradient(to right, #B47749, #F3CF76);
  color: white;
  height: 60px;
}
.third-block .cards-list .card .number {
  font-size: 96px;
  top: -25px;
  left: 0;
  position: absolute;
  font-weight: 800;
  color: #737373;
  transition: 0.3s;
}
.third-block .cards-list .card .number::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #3B3B3B, transparent);
  pointer-events: none;
  border-radius: 10px;
}
.third-block .cards-list .title {
  font-weight: bold;
  font-size: 32px;
  color: #DA973E;
}
.third-block .cards-list .description {
  color: white;
  font-size: 16px;
  margin-top: 20px;
  width: 80%;
}
.third-block .cards-list button {
  height: 54px;
  width: calc(100% - 60px);
  color: #3B3B3B;
  background: white;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
  bottom: 40px;
  position: absolute;
}

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