.header {
  position: relative;
  background: url('../img/hero_sky_b.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header__flow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.00) 0%, #171717 100%);
  z-index: 4;
}

.header__home {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-height: 615px;
  z-index: 4;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  overflow: hidden;
}

.header__home img {
  width: 100%;
}

.hero {
  position: relative;
  z-index: 10;
  padding-top: 10px;
}

.hero__content {
  position: relative;
}

.hero__title {
  position: relative;
  z-index: 3;
}

.hero__title h1 {
  color: var(--color-primary);
  font-size: 9.375rem;
  font-style: normal;
  font-weight: 800;
  line-height: 8.125rem;
  text-transform: uppercase;
}

@media(max-width: 1240px) {
  .hero__title h1 {
    font-size: 7rem;
    line-height: 120%;
  }
}

@media(max-width: 991px) {
  .hero__title h1 {
    font-size: 6rem;
    line-height: 95%;
  }
}

@media(max-width: 756px) {
  .hero__title h1 {
    font-size: 4rem;
  }
}

@media(max-width: 512px) {
  .hero__title h1 {
    font-size: 3rem;
  }
}

.hero__title h1 span {
  display: block;
  color: var(--white);
}

.hero__info {
  position: relative;
  z-index: 4;
}

.hero__info p {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  min-height: 120px;
}

.hero__info small {
  display: block;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 650px;
}

.hero__car {
  position: absolute;
  right: -7rem;
  bottom: -5rem;
  z-index: 4;
}

@media(max-width: 1539px) {
  .hero__car {
    right: -6rem;
  }
}

@media (max-width: 1399px) {
  .hero__car {
    max-width: 815px;
  }
}

@media (max-width: 1199px) {
  .hero__car {
    max-width: 700px;
  }
}

@media (max-width: 991px) {
  .hero {
    margin-top: -2.5rem;
  }

  .hero__car {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -2.5rem;
  }
}

.hero__tip {
  position: absolute;
  top: 0;
  right: 0;
  rotate: 90deg;
  transform: translateX(90%);
  transform-origin: 95% 95%;
  animation: cloud 5s infinite linear;
  transition: 0.3s;
  z-index: 5;
}

@media(max-width: 991px) {
  .hero__tip {
    display: none;
  }
}

.hero__tip p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  pointer-events: none;
}

.hero__benefits {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  z-index: 4;
}

.hero__benefits-item h2 {
  color: #FFF;
  font-size: 50px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.hero__benefits-item p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero__actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 4;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}

@media(max-width: 991px) {
  .hero__actions {
    flex-wrap: wrap;
  }
}

.hero__light {
  position: absolute;
  width: 400px;
  height: 400px;
  aspect-ratio: 1/1;
  border-radius: 400px;
  background: #C7A943;
  -webkit-filter: blur(250px);
  filter: blur(250px);
  opacity: 0.7;
  z-index: 4;
  pointer-events: none;
}

.hero__light-1 {
  right: 0;
  top: 0;
}

.hero__light-2 {
  left: 0;
  bottom: 0;
}

@media(max-width: 991px) {
  .hero__light {
    display: none;
  }
}

.reviews {
  position: relative;
  z-index: 11;
}

.reviews__slider-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 0px 30px;
  background: #FFF;
  padding: 17px 19px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.reviews__slider-info {
  color: #171717;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.reviews__slider-author-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.reviews__slider-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.reviews__slider-author-start {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media(max-width: 991px) {
  .reviews__slider-author {
    flex-wrap: wrap;
  }

  .reviews__slider-author-start {
    flex-wrap: wrap;
  }
}

.reviews__slider-author-info h3 {
  color: #020902;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  /* 133.333% */
}

.reviews__slider-author-info p {
  color: rgba(2, 9, 2, 0.50);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  /* 171.429% */
}

.reviews__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
}

.reviews__pagination button {
  background: none;
  border: none;
  box-shadow: none;
  transition: 0.3s;
}

.reviews__pagination button:hover {
  cursor: pointer;
  opacity: 0.7;
}

.section__title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  text-align: center;
  overflow: hidden;
  padding: 24px 0;
}

.section__title.mb {
  margin-bottom: 3rem;
}

.section__title h2 {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.section__title span {
  color: var(--color-primary);
}

.section__title p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section__title-back {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: auto;
  color: rgba(255, 255, 255, 0.03);
  font-size: 115px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  white-space: nowrap;
}

.steps__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.steps__row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
}

.steps__row:nth-child(2n) {
  grid-template-columns: 2fr 3fr;
}

@media(max-width: 991px) {
  .steps__row {
    grid-template-columns: 1fr;
  }

  .steps__row:nth-child(2n) {
    grid-template-columns: 1fr;
  }
}

.steps__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 0px 30px;
  border: 1px solid rgba(199, 169, 67, 0.20);
  background: #121212;
  padding: 25px 30px;
}

.steps__item-2 {
  background: var(--color-primary);
}

.steps__item-info h3 {
  color: var(--color-primary);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.steps__item-2 h3 {
  color: var(--white);
}

.steps__item-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 450px;
}

.steps__item-info p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.steps__item-number {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: 30px;
  color: #FFF;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media(max-width: 756px) {
  .steps__item img {
    display: none;
  }
}

.cars__list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 180px 2rem;
  padding: 115px 0;
}

.cars__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
  border: 1px solid rgba(199, 169, 67, 0.20);
  background: #171717;
  padding: 135px 20px 50px 20px;
  min-width: 270px;
  flex: 1 1 auto;
}

.cars__item-image {
  position: absolute;
  width: 85%;
  height: 230px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  overflow: hidden;
}

.cars__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cars__item-actions {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.cars__item-info {
  width: 100%;
}

.cars__item-info h3 {
  color: var(--color-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.cars__item-trait {
  margin: 20px auto;
}

.cars__item-trait p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  line-height: normal;
}

.cars__item-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cars__item-price h3 {
  color: var(--color-primary);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cars__item-price p {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: strikethrough;
  text-decoration: line-through;
}

.cars__more {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cform__content {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 30px;
  background: var(--color-primary);
  padding-left: 40px;
}

.cform__start {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 55%;
}

@media(max-width: 991px) {
  .cform__content {
    flex-wrap: wrap;
  }

  .cform__start {
    max-width: 100%;
  }
}

.cform__start h3 {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  /* 100% */
}

.cform__start p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.cform__end {
  width: 100%;
}

.cform_form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cform__row {
  display: flex;
  gap: 10px;
}

@media(max-width: 991px) {
  .cform__row {
    flex-wrap: wrap;
  }
}

.cform__row>* {
  width: 100%;
}

.topinfo {
  background: var(--bg-primary);
  padding: 10px;
}

.topinfo__content {
  display: flex;
  justify-content: space-between;
}

.topinfo__address {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  line-height: normal;
}

.topinfo__phones {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topinfo__phone {
  display: flex;
  align-items: center;
  gap: 4px;
}

.topinfo__phone-info h3,
.topinfo__phone-info a {
  color: var(--color-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: 0.2s;
}

.topinfo__phone-info a:hover {
  cursor: pointer;
  opacity: 0.7;
}

.topinfo__phone-info p {
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media(max-width: 991px) {
  .topinfo {
    display: none;
  }
}

section:last-child {
  padding-bottom: 0;
}

.cars__item-hidden {
  display: none;
}

#amoforms_action_btn {
  background-color: #C7A943 !important;
  border: 0px solid #C7A943 !important;
  color: #ffffff !important; 
  box-shadow: 0px 5px 40px 0px rgba(199, 169, 67, 0.50) !important;
  font-family: Gilroy, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 1.2rem 1.4rem !important;
  height: 59px !important;
      width: 175px;
  border-radius: 5px !important;
  cursor: pointer !important;
  margin: 0px 0px 0px !important;
  transition: background-color 0.3s ease !important;
}

#amoforms_action_btn:hover {
background-color: #fff !important;
color: #171717 !important;
  box-shadow: 0px 5px 40px 0px rgba(255, 255, 255, 0.50) !important;
}