@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: fit-content;
  font-family: "Maven Pro", sans-serif;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .faq {
    padding: 30px 12px;
  }
}

.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: 0;
}
@media (max-width: 800px) {
  .faq::before {
    display: none;
  }
}

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

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

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

.faq__item {
  max-width: 85%;
}
@media (max-width: 800px) {
  .faq__item {
    max-width: 100%;
  }
}

.faq__question {
  display: flex;
  align-items: center;
  padding: 18px 24px 18px 20px;
  cursor: pointer;
  border-radius: 8px;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  width: 100%;
  text-align: left;
  background-color: #E8E8E8;
  border-left: 5px solid #555;
  font-family: "Maven Pro", sans-serif;
  font-size: 18px;
  color: #444;
  font-weight: 500;
}
.faq__question:hover {
  opacity: 0.9;
}
.faq__question .question-mark {
  color: rgba(115, 115, 115, 0.3137254902);
  font-size: 44px;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}
@media (max-width: 550px) {
  .faq__question .question-mark {
    font-size: 32px;
  }
}
.faq__question .faq__text {
  flex: 1;
  font-size: 18px;
  color: #444;
  font-weight: 500;
}
@media (max-width: 450px) {
  .faq__question .faq__text {
    font-size: 14px;
  }
}

.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: 500px;
}

.faq__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  margin-bottom: 10px;
  border-left: 5px solid #555;
}
.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;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 1000;
  font-family: "Maven Pro", sans-serif;
  overflow-y: auto;
  padding: 20px;
}
.modal.active {
  display: flex;
}
.modal .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}
.modal .modal__content {
  position: relative;
  z-index: 1001;
  margin: auto 0;
}
@media (max-width: 871px) {
  .modal .modal__content {
    width: calc(100% - 30px);
  }
}
.modal .modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: white;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 871px) {
  .modal .modal__close {
    top: 10px;
    right: 15px;
    font-size: 20px;
  }
}
.modal .form {
  background-color: #292929;
  padding: 42px 48px;
  color: white;
  max-width: 676px;
  border-radius: 20px;
}
@media (max-width: 1100px) {
  .modal .form {
    padding: 21px 24px;
    max-width: 550px;
  }
}
@media (max-width: 974px) {
  .modal .form {
    max-width: 450px;
  }
}
@media (max-width: 871px) {
  .modal .form {
    max-width: none;
    padding: 21px 24px;
  }
}
.modal .form .title {
  font-weight: bold;
  font-size: 40px;
}
@media (max-width: 974px) {
  .modal .form .title {
    font-size: 32px;
  }
}
@media (max-width: 400px) {
  .modal .form .title {
    font-size: 20px;
  }
}
.modal .form .description {
  font-size: 20px;
  margin-top: 20px;
}
@media (max-width: 974px) {
  .modal .form .description {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .modal .form .description {
    font-size: 15px;
  }
}
.modal .form .input-title {
  margin: 10px 0 5px;
  font-size: 20px;
}
@media (max-width: 500px) {
  .modal .form .input-title {
    font-size: 15px;
  }
}
.modal .form .form-row {
  display: flex;
  gap: 12px;
}
@media (max-width: 500px) {
  .modal .form .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.modal .form .form-row .form-field {
  flex: 1;
}
.modal .form .form-row .form-field .input-title {
  margin-top: 15px;
}
.modal .form .form-row .form-field input {
  height: 46px;
}
.modal .form input {
  width: 100%;
  height: 46px;
  background-color: white;
  color: #1E1E1E;
  border: none;
  font-family: "Maven Pro", sans-serif;
}
.modal .form .send {
  width: 100%;
  background: linear-gradient(to right, #B47749, #F3CF76);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: white;
  border-radius: 5px;
  height: 46px;
  margin-top: 35px;
  border: none;
  cursor: pointer;
}
.modal .form .or {
  margin: 20px auto;
  text-align: center;
  width: 100%;
}
.modal .form .buttons {
  display: flex;
  gap: 23px;
}
@media (max-width: 871px) {
  .modal .form .buttons {
    flex-direction: column;
  }
}
.modal .form .buttons button, .modal .form .buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border-radius: 5px;
  color: white;
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  width: 100%;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 974px) {
  .modal .form .buttons button, .modal .form .buttons a {
    font-size: 16px;
  }
}
.modal .form .buttons button.tg, .modal .form .buttons a.tg {
  background-color: #1E96C8;
}
.modal .form .buttons button.max, .modal .form .buttons a.max {
  background: linear-gradient(to right, #42BBFD, #3B50FA, #963FDB);
}
.modal .form .offerta {
  font-size: 12px;
  text-align: center;
  margin-top: 65px;
}
.modal .form .offerta span {
  color: #B47749;
}
@media (max-width: 500px) {
  .modal .form .offerta {
    margin-top: 30px;
  }
}

.notification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}
.notification.active {
  display: flex;
}
.notification .notification__content {
  background-color: #292929;
  color: white;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  font-size: 18px;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.notification.notification--error .notification__content {
  background-color: #8B0000;
}

body.modal-open {
  overflow: hidden;
}

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

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

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;
  border: none;
  background: none;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  padding: 0 12px;
}
@media (max-width: 500px) {
  button,
  input,
  optgroup,
  select,
  textarea {
    font-size: 85%;
  }
}

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

input.phone-input.error {
  border: 2px solid #e74c3c;
  outline: none;
}

.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 5px;
  font-size: 20px;
}
.first-block .form .form-row {
  display: flex;
  gap: 12px;
}
@media (max-width: 500px) {
  .first-block .form .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.first-block .form .form-row .form-field {
  flex: 1;
}
.first-block .form .form-row .form-field .input-title {
  margin-top: 15px;
}
.first-block .form .form-row .form-field input {
  height: 46px;
}
.first-block .form input {
  width: 100%;
  height: 46px;
  background-color: white;
  color: #1E1E1E;
}
.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, .first-block .form .buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border-radius: 5px;
  color: white;
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  width: 100%;
  text-decoration: none;
}
@media (max-width: 974px) {
  .first-block .form .buttons button, .first-block .form .buttons a {
    font-size: 16px;
  }
}
.first-block .form .buttons button.tg, .first-block .form .buttons a.tg {
  background-color: #1E96C8;
}
.first-block .form .buttons button.max, .first-block .form .buttons a.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;
    scroll-snap-type: x mandatory;
  }
  .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;
  scroll-snap-align: start;
}
@media (max-width: 1180px) {
  .second-block .cards .card {
    flex-shrink: 0;
  }
}
@media (max-width: 505px) {
  .second-block .cards .card {
    width: 90% !important;
    height: auto;
  }
}
.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;
  }
}

@media (max-width: 505px) {
  .card {
    width: 80%;
  }
}
.third-block {
  height: 750px;
  position: relative;
}
@media (max-width: 800px) {
  .third-block {
    height: fit-content;
    padding: 20px 0 10px 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: 20px;
    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;
  }
}
@media (max-width: 800px) {
  .third-block .cards-list {
    margin-top: 40px;
  }
}
.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;
}

.cars-slider {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-family: "Maven Pro", sans-serif;
  position: relative;
}
@media (max-width: 836px) {
  .cars-slider {
    padding: 20px 0;
  }
}
.cars-slider .page-title {
  margin-right: auto;
  color: #3B3B3B;
  font-size: 48px;
  padding-left: 71px;
  font-weight: 800;
}
@media (max-width: 836px) {
  .cars-slider .page-title {
    padding-left: 28px;
  }
}
@media (max-width: 720px) {
  .cars-slider .page-title {
    font-size: 32px;
  }
}
.cars-slider .page-subtitle {
  margin-right: auto;
  padding-left: 71px;
  color: #3B3B3B;
  font-size: 20px;
}
@media (max-width: 836px) {
  .cars-slider .page-subtitle {
    padding-left: 28px;
  }
}
@media (max-width: 720px) {
  .cars-slider .page-subtitle {
    font-size: 16px;
  }
}

.carSwiper {
  width: 100%;
  max-width: 1400px;
  padding: 40px 0 !important;
}
@media (max-width: 836px) {
  .carSwiper {
    padding: 20px 0 !important;
  }
}
.carSwiper .swiper-slide {
  max-width: 650px;
  transition: all 0.5s ease;
  opacity: 0.4;
  z-index: 1;
}
@media (max-width: 768px) {
  .carSwiper .swiper-slide {
    max-width: 500px;
  }
}
@media (max-width: 480px) {
  .carSwiper .swiper-slide {
    max-width: none;
  }
}
.carSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: scale(0.85);
  transition: transform 0.5s ease;
}
.carSwiper .swiper-slide-active {
  opacity: 1;
  z-index: 10;
}
.carSwiper .swiper-slide-active img {
  transform: scale(1.1);
}

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

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

.line-market {
  position: absolute;
  left: 120px;
  bottom: -55px;
  width: 150px;
  height: 250px;
  border-left: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}
@media (max-width: 768px) {
  .line-market {
    left: -15px;
    transform: translateX(0%);
    width: 100px;
    bottom: 9px;
    height: 110px;
  }
}
.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;
}
@media (max-width: 768px) {
  .line-offer {
    top: 154px;
    width: 15px;
    right: -12px;
  }
}
.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;
}
@media (max-width: 480px) {
  .price-box__label {
    font-size: 12px;
  }
}
.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: 768px) {
  .price-box__value {
    min-width: 180px;
    padding: 12px 20px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .price-box__value {
    min-width: auto;
    padding: 10px 12px;
    font-size: 14px;
  }
}
.price-box.market .price-box__value {
  background-color: #ddd;
  color: #444;
}
.price-box.offer .price-box__value {
  background-color: #2c2c2c;
  color: #FFB800;
}

.fifth-block {
  height: 882px;
  background-color: #3B3B3B;
  padding-top: 71px;
  position: relative;
  overflow: hidden;
  padding-left: 71px;
}
@media (max-width: 836px) {
  .fifth-block {
    padding-left: 24px;
  }
}
@media (max-width: 800px) {
  .fifth-block {
    height: fit-content;
  }
}
.fifth-block .page-title {
  color: white;
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 720px) {
  .fifth-block .page-title {
    font-size: 32px;
  }
}
.fifth-block .page-subtitle {
  color: white;
  font-size: 20px;
  margin-top: 20px;
}
@media (max-width: 720px) {
  .fifth-block .page-subtitle {
    font-size: 16px;
  }
}
.fifth-block .cars-list {
  display: flex;
  flex-direction: column;
  gap: 29px;
  position: relative;
  z-index: 10;
  margin-top: 60px;
}
@media (max-width: 932px) {
  .fifth-block .cars-list {
    margin: 60px 0;
    padding-right: 12px;
  }
}
.fifth-block .cars-list .cars__item {
  background-image: url("../icons/rec.svg");
  background-size: cover;
  width: 100%;
  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;
}
.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;
  }
}

@media (max-width: 936px) {
  .cars__item {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }
}
@media (max-width: 550px) {
  .cars__item {
    font-size: 18px !important;
  }
  .cars-list {
    gap: 19px !important;
    margin: 40px 0 !important;
  }
}
@media (max-width: 400px) {
  .cars-list {
    gap: 0 !important;
    margin: 20px 0 !important;
  }
}
.six-block {
  padding: 106px 0 177px 0;
  background-color: #D9D9D9;
}
@media (max-width: 625px) {
  .six-block {
    padding: 40px 0 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: 800px) {
  .six-block .your-choice-block {
    margin-top: 40px;
  }
}
@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: 575px;
  background-color: white;
  border-radius: 20px;
  border: 1px solid #8B8B8B;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  padding: 33px 30px 0 30px;
}
@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);
    height: 530px;
  }
}
.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;
}
@media (max-width: 525px) {
  .six-block .your-choice-block .worst-choice .worst-list .worst-item {
    font-size: 14px;
  }
}
.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;
}
@media (max-width: 575px) {
  .six-block .your-choice-block .best-choice .advantage-list .advantage-item p {
    font-size: 16px;
  }
}
.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;
}

.seventh-block {
  height: 100dvh;
  background: #D9D9D9;
  position: relative;
  padding-top: 46px;
  padding-left: 143px;
  min-height: 900px;
}
@media (max-width: 871px) {
  .seventh-block {
    display: flex;
    flex-direction: column;
    height: fit-content;
    padding: 20px 12px 20px;
  }
}
@media (max-width: 1300px) {
  .seventh-block {
    padding-left: 24px;
  }
}
.seventh-block .title-page {
  font-size: 48px;
  font-weight: bold;
  color: #292929;
  max-width: 645px;
}
@media (max-width: 615px) {
  .seventh-block .title-page {
    font-size: 32px;
  }
}
.seventh-block .page-description {
  margin-top: 45px;
  color: #3B3B3B;
  font-size: 20px;
}
.seventh-block .form {
  max-width: 578px;
}
@media (max-width: 963px) {
  .seventh-block .form {
    max-width: 97% !important;
  }
}
@media (max-width: 869px) {
  .seventh-block .form {
    max-width: inherit;
  }
}
.seventh-block .input-title {
  margin: 30px 0 5px;
  font-size: 20px;
}
.seventh-block .form-row {
  display: flex;
  gap: 12px;
}
@media (max-width: 500px) {
  .seventh-block .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.seventh-block .form-row .form-field {
  flex: 1;
}
.seventh-block .form-row .form-field .input-title {
  margin-top: 15px;
}
.seventh-block .form-row .form-field input {
  height: 46px;
}
.seventh-block input {
  width: 100%;
  height: 46px;
  background-color: white;
  color: #1E1E1E;
}
.seventh-block .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;
}
.seventh-block .or {
  margin: 20px auto 20px auto;
  text-align: center;
  width: 100%;
}
.seventh-block .buttons {
  display: flex;
  gap: 23px;
}
@media (max-width: 871px) {
  .seventh-block .buttons {
    flex-direction: column;
  }
}
.seventh-block .buttons button, .seventh-block .buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border-radius: 5px;
  color: white;
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  width: 100%;
  text-decoration: none;
}
@media (max-width: 974px) {
  .seventh-block .buttons button, .seventh-block .buttons a {
    font-size: 16px;
  }
}
.seventh-block .buttons button.tg, .seventh-block .buttons a.tg {
  background-color: #1E96C8;
}
.seventh-block .buttons button.max, .seventh-block .buttons a.max {
  background: linear-gradient(to right, #42BBFD, #3B50FA, #963FDB);
}
.seventh-block .offerta {
  font-size: 12px;
  text-align: center;
  margin-top: 65px;
}
.seventh-block .offerta span {
  color: #B47749;
}
.seventh-block picture {
  position: absolute;
  bottom: -290px;
  max-width: 915px;
  width: 100%;
  height: fit-content;
  right: 0;
  z-index: 1;
}
@media (max-width: 871px) {
  .seventh-block picture {
    margin-top: 24px;
  }
}
@media (max-width: 1520px) {
  .seventh-block picture {
    max-width: 700px;
    bottom: -221px;
  }
}
@media (max-width: 1260px) {
  .seventh-block picture {
    max-width: 500px;
    bottom: -158px;
  }
}
@media (max-width: 871px) {
  .seventh-block picture {
    position: static;
    max-width: none;
  }
}

.eight-block {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 870px) {
  .eight-block {
    padding: 40px 0;
  }
}
.eight-block .page-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}
@media (max-width: 480px) {
  .eight-block .page-title {
    font-size: 22px;
  }
}
.eight-block .page-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .eight-block .page-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.eight-block .reviewsSwiper {
  width: 100%;
  padding: 40px 0;
}
.eight-block .reviewsSwiper .swiper-slide {
  transition: all 0.5s ease;
  opacity: 0.4;
  z-index: 1;
}
@media (min-width: 1440px) {
  .eight-block .reviewsSwiper .swiper-slide {
    width: 735px;
  }
}
@media (max-width: 480px) {
  .eight-block .reviewsSwiper .swiper-slide {
    opacity: 0.2;
  }
}
.eight-block .reviewsSwiper .swiper-slide-active {
  opacity: 1;
  z-index: 10;
  transform: scale(1.05);
}
@media (max-width: 870px) {
  .eight-block .reviewsSwiper .swiper-slide-active {
    transform: scale(1);
  }
}
.eight-block .review-item {
  width: 100%;
  height: 720px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .eight-block .review-item {
    height: auto;
    min-height: 400px;
    padding: 20px;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .eight-block .review-item {
    padding: 15px;
    gap: 15px;
  }
}
.eight-block .review-item .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .eight-block .review-item .top {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.eight-block .review-item .top .person {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eight-block .review-item .top .person img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
}
@media (max-width: 480px) {
  .eight-block .review-item .top .person img {
    width: 80px;
    height: 80px;
  }
}
.eight-block .review-item .top .person .name {
  margin-top: 15px;
  font-size: 24px;
  color: #3B3B3B;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 480px) {
  .eight-block .review-item .top .person .name {
    font-size: 18px;
    margin-top: 10px;
  }
}
.eight-block .review-item .top .review {
  text-align: right;
}
@media (max-width: 480px) {
  .eight-block .review-item .top .review {
    text-align: center;
  }
}
.eight-block .review-item .top .review .stars img {
  width: 150px;
  height: auto;
}
@media (max-width: 480px) {
  .eight-block .review-item .top .review .stars img {
    width: 100px;
  }
}
.eight-block .review-item .top .review .date {
  color: #7c7c7c;
  margin-top: 10px;
  font-size: 14px;
}
@media (max-width: 480px) {
  .eight-block .review-item .top .review .date {
    font-size: 12px;
    margin-top: 5px;
  }
}
.eight-block .review-item .description {
  margin-top: 40px;
  font-size: 20px;
  line-height: 1.5;
  color: #444;
  text-align: center;
}
@media (max-width: 768px) {
  .eight-block .review-item .description {
    margin-top: 0;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .eight-block .review-item .description {
    font-size: 14px;
  }
}
.eight-block .review-item .car {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .eight-block .review-item .car {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .eight-block .review-item .car {
    flex-direction: column;
    gap: 15px;
  }
}
.eight-block .review-item .car img {
  width: 270px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .eight-block .review-item .car img {
    width: 200px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .eight-block .review-item .car img {
    width: 100%;
    height: 180px;
  }
}
.eight-block .review-item .car .car-description {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 480px) {
  .eight-block .review-item .car .car-description {
    gap: 10px;
  }
}
.eight-block .review-item .car .car-description .name {
  font-size: 28px;
  font-weight: 800;
  color: #333;
}
@media (max-width: 768px) {
  .eight-block .review-item .car .car-description .name {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .eight-block .review-item .car .car-description .name {
    font-size: 18px;
  }
}
.eight-block .review-item .car .car-description .price {
  background-color: #292929;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  font-weight: bold;
  font-size: 28px;
  border-radius: 6px;
  color: #B47749;
}
@media (max-width: 768px) {
  .eight-block .review-item .car .car-description .price {
    width: 200px;
    height: 46px;
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .eight-block .review-item .car .car-description .price {
    width: 180px;
    height: 40px;
    font-size: 18px;
  }
}

.footer {
  background-color: #3B3B3B;
  text-align: center;
  bottom: 0;
  width: 100%;
  padding: 50px 50px;
  color: #7F7F7F;
}
@media (max-width: 525px) {
  .footer {
    padding: 15px;
  }
}
.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;
}
@media (max-width: 800px) {
  .footer .footer__content .footer__nav {
    display: inline-grid;
    gap: 16px;
  }
}
.footer .footer__content .footer__nav a {
  color: #7F7F7F;
  font-size: 30px;
  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: 20px;
  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 {
    text-align: center;
  }
}
.footer .footer__content .footer__contacts .footer__contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer .footer__content .footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
@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;
}
@media (max-width: 800px) {
  .footer .horizontal-line {
    margin: 20px 0 10px 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: 25%;
  margin: 0 auto;
}

button, a {
  transition: filter 0.3s ease, transform 0.3s ease;
}
button:hover, a:hover {
  filter: brightness(0.75);
  transform: scale(1.025);
}

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