:root {
  --font-family: "AvenirNextCyr-Regular", sans-serif;
  --bold-family: "Land-Rover-Web-Bold", sans-serif;
  --bold-medium-family: "Land-Rover-Web-Medium", sans-serif;
  --black: #0C121C;
  --white: #fff;
  --green: #005A2B;
  --gray:#4A4F54;
}

.icons-logo {
  width: 94px;
  height: 50px;
  fill: none;
}
@media screen and (max-width: 480px) {
  .icons-logo {
    width: 62px;
    height: 32px;
  }
}
.icons-header {
  width: 24px;
  height: 24px;
  fill: none;
}
.icons-arrow {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #0C121C;
}
.icons-arrow-white {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
}
.icons-adress, .icons-phone {
  width: 20px;
  height: 20px;
  fill: none;
}
.icons-benefits-check {
  width: 20px;
  height: 20px;
  fill: none;
}

.header {
  max-width: 1920px;
  width: 100%;
  display: flex;
  margin: 0 auto;
  background-color: var(--white);
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99;
}
@media screen and (min-width: 1560px) {
  .header {
    padding: 15px 50px;
  }
}
@media screen and (max-width: 1560px) and (min-width: 1350px) {
  .header {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 1350px) {
  .header {
    background-color: var(--white);
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1350px) and (min-width: 410px) {
  .header__logo {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 410px) {
  .header__logo {
    padding: 10px 15px;
  }
}
.header__logo-name {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 410px) {
  .header__logo-name {
    max-width: 120px;
  }
}
.header__logo-name p {
  font-family: var(--bold-family), sans-serif;
  font-size: 18px;
  line-height: 24.3px;
}
@media screen and (max-width: 480px) {
  .header__logo-name p {
    font-size: 16px;
    line-height: 21.6px;
  }
}
.header__logo-name span {
  color: #4A4F54;
  font-family: var(--font-family);
  font-size: 12px;
  line-height: 14.7px;
}
@media screen and (max-width: 480px) {
  .header__logo-name span {
    font-size: 10px;
    line-height: 12.25px;
    max-width: 100px;
  }
}
.header nav {
  flex-grow: 1;
}
@media screen and (min-width: 1560px) {
  .header nav {
    gap: 40px;
    margin-left: 100px;
  }
}
@media screen and (max-width: 1560px) and (min-width: 1350px) {
  .header nav {
    gap: 20px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1350px) {
  .header nav {
    display: flex;
  }
}
.header nav.open {
  display: flex;
}
@media screen and (max-width: 1350px) {
  .header nav {
    flex-direction: column;
    position: fixed;
    background-color: var(--gray);
    width: 100%;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    display: none;
  }
}
@media screen and (min-width: 411px) {
  .header nav {
    height: calc(100% - 80px);
    top: 80px;
  }
}
@media screen and (max-width: 410px) {
  .header nav {
    height: calc(100% - 73px);
    top: 73px;
    display: none;
  }
}
.header nav a {
  font-family: var(--bold-medium-family), sans-serif;
  color: var(--black);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18.9px;
}
@media screen and (max-width: 1350px) {
  .header nav a {
    color: var(--white);
  }
}
.header__btns {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1560px) {
  .header__btns {
    gap: 40px;
  }
}
@media screen and (max-width: 1560px) and (min-width: 1350px) {
  .header__btns {
    gap: 20px;
  }
}
@media screen and (max-width: 1350px) and (min-width: 480px) {
  .header__btns {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .header__btns .btn.btn-blue {
    display: none;
  }
}
@media screen and (min-width: 1350px) {
  .header__btns-mobile {
    display: none;
  }
}
@media screen and (max-width: 1350px) and (min-width: 480px) {
  .header__btns-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    flex-grow: 1;
    justify-content: flex-end;
    padding-bottom: 50px;
  }
}
.header__btns-adress, .header__btns-phone {
  font-family: var(--bold-medium-family);
  font-size: 14px;
  line-height: 18.9px;
  color: var(--black);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1350px) and (min-width: 481px) {
  .header__btns-adress, .header__btns-phone {
    color: var(--white);
  }
}
@media screen and (max-width: 480px) {
  .header__btns-adress, .header__btns-phone {
    color: var(--black);
    margin-right: 15px;
  }
}
@media screen and (max-width: 480px) {
  .header__btns-adress {
    display: none;
  }
}

.btn {
  padding: 14px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: none;
  outline: none;
  width: -moz-fit-content;
  width: fit-content;
}
.btn span {
  font-family: var(--bold-medium-family);
  font-size: 14px;
  line-height: 18.9px;
  text-transform: uppercase;
}
.btn-blue {
  background-color: var(--black);
  outline: 1px solid transparent;
  transition: outline-color 0.3s ease;
}
.btn-blue span {
  color: var(--white);
}
.btn-blue:hover, .btn-blue:focus, .btn-blue:active {
  outline: 1px solid var(--green);
  background-color: var(--white);
}
.btn-blue:hover .icons-arrow-white, .btn-blue:focus .icons-arrow-white, .btn-blue:active .icons-arrow-white {
  stroke: var(--green);
}
.btn-blue:hover span, .btn-blue:focus span, .btn-blue:active span {
  color: var(--green);
}
.btn-white {
  background-color: var(--white);
  transition: background-color 0.3s ease;
}
.btn-white:hover, .btn-white:focus, .btn-white:active {
  background-color: var(--green);
}
.btn-white:hover span, .btn-white:focus span, .btn-white:active span {
  color: var(--white);
}
.btn-white:hover .icons-arrow, .btn-white:focus .icons-arrow, .btn-white:active .icons-arrow {
  stroke: #fff;
}
.btn-white span {
  color: var(--black);
}
.btn.full {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

#nav-icon4 {
  width: 30px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 1350px) {
  #nav-icon4 {
    display: none;
  }
}
@media screen and (max-width: 1350px) and (min-width: 481px) {
  #nav-icon4 {
    margin-right: 20px;
  }
}
@media screen and (max-width: 480px) {
  #nav-icon4 {
    display: none;
  }
}

#nav-icon4 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--black);
  border-radius: 0px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 10px;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  top: 20px;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -2px;
  left: 8px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
  left: 8px;
}

.hero {
  max-width: 1920px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .hero {
    height: 700px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
    max-height: 600px;
    height: 100%;
    background-color: var(--white);
    padding-bottom: 30px;
  }
}
.hero__background {
  top: 0;
  left: 0;
  height: 100%;
}
.hero__background img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
@media screen and (max-width: 410px) {
  .hero__background img {
    min-height: 200px;
  }
}
@media screen and (max-width: 480px) {
  .hero__background img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .hero__background {
    position: absolute;
  }
}
@media screen and (max-width: 768px) {
  .hero__background {
    position: relative;
  }
}
@media screen and (max-width: 480px) {
  .hero__background {
    width: 100%;
  }
}
.hero__text {
  position: relative;
  z-index: 1;
  max-width: 1296px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.hero__text .btn.btn-white .desktop {
  display: block;
}
.hero__text .btn.btn-white .mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero__text .btn.btn-white {
    background-color: var(--black);
  }
  .hero__text .btn.btn-white span {
    color: var(--white);
  }
  .hero__text .btn.btn-white .desktop {
    display: none;
  }
  .hero__text .btn.btn-white .mobile {
    display: block;
  }
  .hero__text .btn.btn-white .icons-arrow.mobile {
    stroke: #fff;
  }
}
@media screen and (max-width: 480px) {
  .hero__text .btn.btn-white {
    width: 100%;
    justify-content: center;
    background-color: var(--black);
  }
  .hero__text .btn.btn-white span {
    color: var(--white);
  }
  .hero__text .btn.btn-white .icons-arrow.mobile {
    stroke: #fff;
  }
}
@media screen and (max-width: 1350px) and (min-width: 769px) {
  .hero__text {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) and (min-width: 550px) {
  .hero__text {
    margin: auto;
    max-width: 482px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 550px) and (min-width: 410px) {
  .hero__text {
    padding: 20px;
  }
}
@media screen and (max-width: 410px) {
  .hero__text {
    padding: 15px;
  }
}
.hero__text h1 {
  font-family: var(--bold-family), sans-serif;
  color: var(--white);
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .hero__text h1 {
    font-size: 44px;
    line-height: 48.4px;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .hero__text h1 {
    font-size: 44px;
    line-height: 48.4px;
    color: var(--black);
    text-transform: uppercase;
  }
}
@media screen and (max-width: 480px) {
  .hero__text h1 {
    font-size: 32px;
    line-height: 35.2px;
    color: var(--black);
    text-transform: uppercase;
  }
}
.hero__text p {
  font-size: 16px;
  line-height: 19.6px;
  margin-top: 10px;
  color: var(--white);
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .hero__text p {
    color: var(--black);
  }
}
.hero__text .btn {
  margin-top: 40px;
}

.discount__time {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1296px;
  z-index: 5;
  position: relative;
  background: var(--black);
}
@media screen and (min-width: 769px) {
  .discount__time {
    margin: -75px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .discount__time {
    margin: 0 auto 0;
  }
}
@media screen and (max-width: 1150px) {
  .discount__time {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
@media screen and (min-width: 769px) {
  .discount__time {
    padding: 24px 30px;
  }
}
@media screen and (max-width: 769px) and (min-width: 410px) {
  .discount__time {
    padding: 24px 20px;
  }
}
@media screen and (max-width: 410px) {
  .discount__time {
    padding: 24px 15px;
  }
}
.discount__time-text {
  max-width: 270px;
}
@media screen and (max-width: 1150px) {
  .discount__time-text {
    margin: auto;
    max-width: 482px;
  }
}
.discount__time-text p {
  font-family: var(--bold-family), sans-serif;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}
@media screen and (min-width: 411px) {
  .discount__time-text p {
    font-size: 34px;
  }
}
@media screen and (max-width: 480px) {
  .discount__time-text p {
    font-size: 26px;
  }
}
@media screen and (max-width: 1150px) {
  .discount__time-btn {
    margin: auto;
    max-width: 482px;
  }
}
.discount__time-container {
  display: flex;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  background-color: var(--black);
}
.discount__time-container-deadline {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 350px) {
  .discount__time-container-deadline {
    flex-direction: column;
  }
}
.discount__time-container-deadline .offer__timeline {
  position: absolute;
}
@media screen and (min-width: 551px) {
  .discount__time-container-deadline .offer__timeline {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 550px) {
  .discount__time-container-deadline .offer__timeline {
    width: 70px;
    height: 70px;
  }
}
.discount__time-container-deadline .offer__timeline-line {
  position: absolute;
  border-radius: 46px;
  overflow: unset;
  border: 1px solid #F8F9F9;
}
@media screen and (min-width: 551px) {
  .discount__time-container-deadline .offer__timeline-line {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 550px) {
  .discount__time-container-deadline .offer__timeline-line {
    width: 70px;
    height: 70px;
  }
}
.discount__time-container-deadline .offer__timeline-circle {
  fill: none;
  stroke-width: 4px;
  stroke: var(--green);
  stroke-dasharray: 314;
  stroke-dashoffset: 0;
  transition: all 0.6s ease;
}
.discount__time-container-deadline .separator {
  font-family: var(--bold-medium-family);
  font-size: 34px;
  line-height: 37.4px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .discount__time-container-deadline .separator {
    display: none;
  }
  
  .car__swiper .swiper-slide img {
      object-fit: contain;
  }
  
  .car__swiper .swiper-slide {
      height: 280px;
      
  }
  .car__swiper .swiper-slide .book__auto-form {
      display: none;
  }
  
  .car__swiper .swiper-pagination .swiper-pagination-bullet {
      height: 4px;
      border-radius:0px;
  }
}
.discount__time-container-deadline .time {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  border-radius: 50%;
}
@media screen and (min-width: 551px) {
  .discount__time-container-deadline .time {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 550px) {
  .discount__time-container-deadline .time {
    width: 70px;
    height: 70px;
    justify-content: start;
  }
}
.discount__time-container-deadline .time .count {
  font-family: var(--bold-medium-family);
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 551px) {
  .discount__time-container-deadline .time .count {
    font-size: 34px;
  }
}
@media screen and (max-width: 550px) {
  .discount__time-container-deadline .time .count {
    font-size: 24px;
    padding-top: 7px;
  }
}
.discount__time-container-deadline .time .time-of {
  font-family: var(--font-family);
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  color: var(--white);
}
@media screen and (min-width: 551px) {
  .discount__time-container-deadline .time .time-of {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .discount__time-container-deadline .time .time-of {
    font-size: 12px;
  }
}

@media (min-width: 1281px) and (min-resolution: 144dpi) and (-webkit-min-device-pixel-ratio: 1.5){
    .hero {
        height: 500px;
  }
}
@media  (min-width: 1366px) and (min-resolution: 120dpi) and (max-resolution: 140dpi) {
  .hero {
    height: 550px;
  }
}
  
  


  
  
  
  
  
  
  
  
  
  
  
  
}/*# sourceMappingURL=first_screen.css.map */