@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700;800&display=swap");


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




.container_car {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 375px) {
  .container_car {
    padding: 0 10px;
  }
}


.car__section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
      box-shadow: 0px 12px 11px -13px #d3e4b5;
}

.car__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}

.car__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
}

.car__info-title {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  font-size: 54px;
  line-height: 54px;
  text-transform: uppercase;
  color: #406c6f;
  max-width: 700px;
}

.car__info-title span {
  font-weight: 400;
  color: var(--main-color);
}

.model__img {
  max-width: 400px;
  width: 100%;
}

.car__main-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.inside__icons {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.inside__icon {
  position: relative;
  padding-left: 50px;
}

.inside__icon:not(:last-of-type) {
  margin-bottom: 20px;
}

.inside__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url(img/car-engine.png) no-repeat center;
  background-size: contain;
}

.inside__icon:nth-child(2):before {
  background: url(img/turbo.png) no-repeat center;
  background-size: contain;
}

.inside__icon:nth-child(3):before {
  background: url(img/4wd.png) no-repeat center;
  background-size: contain;
}

.inside__icon:nth-child(4):before {
  background: url(img/calendar.png) no-repeat center;
  background-size: contain;
}

.inside__icon p {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.inside__icon span {
  font-weight: 500;
  text-transform: uppercase;
  color: #D0B865;
}

.car__right .main__form {
  background: transparent;
  padding-top: 10px;
  margin-top: 10px;
}


.car__info-price {
  text-align: right;
}

.car__price_underline {
  display: block;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark-green);
}

.car__main-price,
.car__main-credit {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
}

.car__main-price span {
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  color: var(--green);
}

.car__main-credit {
  font-size: 16px;
}

.car__main-credit span {
  font-weight: 400;
  font-size: 18px;
  color: var(--red);
}

.car__color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}

.car__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.color__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  height: 40px;
  margin-top: 20px;
}

.color__btns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.color__btn {
  width: 23px;
  height: 23px;
  margin: 5px;
  cursor: pointer;
  border-radius: 33px;
  border: 1px solid #ebebeb;
}

.color__btn:focus,
.color__btn.active {
  border: 2px solid var(--red);
}

.color__btn:disabled {
  cursor: default;
  position: relative;
}

.color__btn:disabled::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 7px;
  width: 4px;
  height: 20px;
  background: #000;
  -webkit-transform: rotateZ(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotateZ(-45deg);
}

@media (max-width: 1199px) {
  .model__img {
    max-width: 340px;
  }

  .model__menu-item {
    height: 50px;
    font-size: 18px;
    line-height: 24px;
    border-radius: 6px;
  }
}


@media (max-width: 1023px) {
  .car__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 80px;
  }

  .car__info-title {
    top: -55px;
    font-size: 40px;
    line-height: 24px;
  }

  .car__info-title span {
    font-size: 30px;
    line-height: 30px;
  }

  .model__img {
    margin: 0;
    max-width: 440px;
  }

  .car__color {
    margin: 0;
  }

  .car__right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .car__right .main__form {
    padding-top: 0;
  }

@media (max-width: 767px) {
  .car__section {
    margin: 20px 0 40px;
  }

  .car__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .car__info-title {
    position: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .color__btns-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

}

@media (max-width: 600px) {
  .car__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }


  .car__right .main__form {
    margin: 20px 0;
    max-width: 100%;
    width: 100%;
    padding: 10px;
  }

}


@media (max-width: 375px) {
  .inside__icon p {
    font-size: 16px;
  }

  .car__info-title {
    font-size: 32px;
    line-height: 14px;
  }

  .car__info-title span {
    font-size: 20px;
    line-height: 20px;
  }

  .car__price_underline {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
  }

  .car__main-price span {
    font-size: 26px;
  }

  .car__main-credit {
    font-size: 14px;
  }

  .finance__btn-name {
    font-size: 20px;
  }

  .bundle__description {
    padding: 0;
    padding-left: 15px;
  }

  .model__form-btn {
    width: 100%;
  }

  
}
.bottom1{
    box-shadow: 0px 20px 11px -13px #d3e4b5;
}