/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 2 version
*/

/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserratregular.woff2") format("woff2"), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  url("../fonts/montserratregular.woff") format("woff"), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
}
/* montserrat-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserratmedium.woff2") format("woff2"), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  url("../fonts/montserratmedium.woff") format("woff"), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
}
/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserratsemibold.woff2") format("woff2"), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  url("../fonts/montserratsemibold.woff") format("woff"), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
}

:root {
  --main-text-color:#000;
  --main-icon-bg-color:#299764;
  --main-white-color:#fff;
  --main-second-text-color:#555;
  --main-btn-padding:0;
  --main-btn-margin:0;
  --main-btn-border-radius:100px;
  
  
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  /* overflow-y: hidden; */
}

body {
  font-family: "Montserrat", "Arial" ,sans-serif;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

img {
  display: block;
}

.container {
  max-width: 1240px;
  width: 100%;
  padding-inline: 16px;
  margin-inline: auto;
}

.list-unstyled {
  padding-left: 0;
  margin-block: 0;
  list-style-type: none;
}

/* site header start */

.site-header {
  padding-block: 20px;
  border-bottom: 1.5px solid #e5e7ea;
  background:var(--main-white-color);
}

.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.site-header__inner > .site-logo {
  
}

.site-header__btn {
  width: 40px;
  height: 22px;
  margin: var(--main-btn-margin);
  padding: var(--main-btn-padding);
  border-color: transparent;
  background-color: transparent;
  background-image: url("../images/hamburgicon.svg");
  background-repeat: no-repeat;
  background-position: center;
  
}

.site-header__wrapper-sitenav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* align-items: center; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* flex-wrap: wrap; */
  
  height: 100vh;
  
  
}

.site-header__show-menu {
  position: absolute;
  right: 0;
  top: 20px;
  width: 300px;
  padding-inline: 20px;
  background-color:var(--main-white-color);
  /* background-color: #299764; */
  display: none;
  
  
}

.site-header__start-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.close-btn {
  width: 48px;
  height: 48px;
  margin: var(--main-btn-margin);
  padding: var(--main-btn-padding);
  border-color: transparent;
  border-radius: var(--main-btn-border-radius);
  background-color: #f5f5f5;
  background-image: url("../images/crossicon.svg");
  background-repeat: no-repeat;
  background-position: center;
  
}

.site-nav {
  margin-bottom: 32px;
}

.site-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 22px;
}

.site-nav__link {
  display: inline-block;
  color: var(--main-text-color);
  font-size: 20px;
  font-weight: 500;
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
}

.site-nav__item:has(.site-nav__sublist) > .site-nav__link {
  margin-bottom: 20px;
}

.site-header__wrapper-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; 
}

.site-nav__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 16px;
}

.site-nav__sublink {
  
  color: var(--main-second-text-color);
  font-size: 20px;
  font-weight: 500;
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
  
  
}

.site-header__wrapper-login {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  
  
  
}

.site-phonenumber {
  color: var(--main-text-color);
  font-size: 20px;
  font-weight: 500;
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
}

.site-mode {
  width: 58px;
  height: 58px;
  border-radius: var(--main-btn-border-radius);
  border-color: transparent;
  background-color: #f5f5f5;
  background-image: url("../images/darkmodeicon.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  padding: 18px 30px;
  background-color: var(--main-icon-bg-color);
  border-radius: var(--main-btn-border-radius);
  color: var(--main-white-color);
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
}

.login::after {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("../images/loginicon.svg");
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

/* site hero start */

.hero {
  padding-top: 20px;
  padding-bottom: 50px;
}

.hero__inner {
  padding:30px 32px 20px;
  border-radius: 20px;
  background-image:-webkit-gradient(linear, left top, left bottom, color-stop(6.19%, rgba(0, 0, 0, 0.60)), color-stop(54.63%, rgba(0, 0, 0, 0.00))), url("../images/herobgmobile.png");
  background-image:linear-gradient(180deg, rgba(0, 0, 0, 0.60) 6.19%, rgba(0, 0, 0, 0.00) 54.63%), url("../images/herobgmobile.png");
  /* background-position: top; */
  background-size:100% auto;
  background-repeat: no-repeat;
  
}



.hero__wrapper-title {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 90px;
  color:var(--main-white-color);
}

.hero__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  
}

.hero__desc {
  margin: 0;
  font-size: 8px;
}

.carusel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.carusel__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6px;
  -moz-column-gap: 6px;
  column-gap: 6px;
}
.carusel__icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color:var(--main-white-color);
  opacity: 0.5;
  border-radius: 50%;
}
.carusel__icon--active {
  width: 20px;
  height: 6px;
  opacity: 1;
  border-radius: var(--main-btn-border-radius);
}

.carusel__btn-list {
  display: none;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
}

.carusel__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border-color: transparent;
  background-image: url("../images/left-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.carusel__btn-item:last-child> .carusel__btn {
  background-image: url("../images/right-arrow.svg");
}

.hero__form {
  position: relative;
  top: -19px;
  margin-inline: 20px;
}

.hero__form-inner {
  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;
  max-width: 600px;
  margin-inline: auto;
  padding:4px;
  padding-left: 20px;
  border-radius: var(--main-btn-border-radius);
  background-color: var(--main-white-color);
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}
input {
  border-color: transparent;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 8px;
  color: var(--main-second-text-color);
  font-weight: 500;
}

.hero__from-btn {
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  border-color: transparent;
  background-image: url("../images/search.svg");
  background-color: var(--main-icon-bg-color);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  
}

/* hero end */


/* category start */

.category {
  /* padding-top: 50px; */
  padding-bottom: 100px;
}

.category__wrapper-title {
  margin-bottom: 20px;
}

.category__title {
  margin: 0 0 6px; 
  color: var(--main-text-color);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}

.category__title-desc {
  margin: 0;
  color: var(--main-second-text-color);
  text-align: center;
  font-size: 12px;
}

.category__type-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
  margin-bottom: 16px;
}


.category__type-link {
  display: inline-block;
  font-size: 10px;
  padding: 6px 10px;
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
  border-radius: var(--main-btn-border-radius);
  border: 1.5px solid #e5e7ea;
  background: var(--main-white-color);
  color: var(--main-text-color);
  font-weight: 500;
  
}

.category__type-link--active {
  border-color: transparent;
  background-color: var(--main-icon-bg-color);
  color: var(--main-white-color);
}

.category__car-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 10px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-bottom: 30px;
}

.category__car-item {
  max-width: 300px;
  padding: 20px;
  border-radius: 16px;
  background: #f5f5f5;
}

.category__car-title {
  margin: 0 0 6px;
  color: var(--main-text-color);
  font-size: 24px;
  font-weight: 600;
}

.category__car-desc {
  margin: 0;
  color: var(--main-second-text-color);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.category__car-img {
  width: 100%;
  margin-bottom: 10px;
  
}

.category__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 24px;
  width: 200px;
}

.category__subitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
  color: var(--main-text-color);
  font-size: 12px;
  font-weight: 500;
  
}

.category__subitem::before {
  display:inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/user.svg");
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  
}

.category__subitem:nth-child(2):before {
  background-image: url("../images/automatic.svg");
}

.category__subitem:nth-child(3):before {
  background-image: url("../images/fileuser.svg");
}

.category__subitem:nth-child(4):before {
  background-image: url("../images/petrol.svg");
}

.view {
  display: block;
  margin-inline: auto;
  width: 175px;
  padding-block: 18px;
  text-align: center;
  color: var(--main-white-color);
  font-size: 18px;
  font-weight: 500;
  border-radius: var(--main-btn-border-radius);
  background-color: var(--main-icon-bg-color);
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
}

/* article start */

.site-article {
  background-color: #f5f5f5;
  padding-block: 20px;
  
}


.site-article__inner {
  background-color: var(--main-white-color);
  border-radius: 20px;
  padding: 24px 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.site-article__start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  
}

.google-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  color: #4285F4;
  font-size: 10px;
  font-weight: 500;
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
  margin-bottom: 16px;
}
.google-link::before {
  width: 20px;
  height: 20px;
  background-image: url("../images/googleicon.svg");
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.site-article__title {
  color: var(--main-text-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 20px; /* 131.579% */
}



.line {
  width: 100%;
  height: 2px;
  margin-bottom: 20px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(19.83%, #EA4335), color-stop(65%, #FBBC05), color-stop(82.29%, #34A853), to(#4285F4));
  background-image: linear-gradient(90deg, #EA4335 19.83%, #FBBC05 65%, #34A853 82.29%, #4285F4 100%);
} 

.site-article__text {
  color: var(--main-second-text-color);
  font-size: 10px;
  font-weight: 500;
  margin: 0 0 16px;
}

.instagram-logo {
  display: inline-block;
  padding-block: 10px;
  width: 150px;
  text-align: center;
  border-radius: 100px;
  border: 1.5px solid red;
  background-image: var(--1, radial-gradient(230.93% 230.93% at 102.01% 2.03%, #F9ED32 0%, #EE2A7B 36%, #D22A8A 44%, #8B2AB2 60%, #1B2AF0 83%, #002AFF 88%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-article__end {
  
  padding: 20px 16px;
  overflow: scroll;
  background-color: var(--main-icon-bg-color);
}
.site-article__stuff-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 826px;
  overflow: scroll;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  
}
.site-article__stuff-item {
  width: 226px;
  padding: 16px;
  border-radius: 16px;
  background-color: var(--main-white-color);
}

.site-article__stuff-info{
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.site-article__stuff-info::before {
  display: inline-block;
  width: 42px;
  height: 42px;
  background-image: url("../images/sava.png");
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.site-article__stuff-info::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  /* margin-left: auto; */
  background-image: url("../images/googleicon.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center;
  content: "";
}

.stuff-item__title {
  color: var(--main-text-color);
  font-size: 12px;
  font-weight: 600;
  
}

.stuff-item__title-desc {
  margin: 0;
  color: var(--main-second-text-color);
  font-size: 10px;
  
}

.stuff-item__desc {
  margin: 0;
  color: var(--main-second-text-color);
  font-size: 10px;
  padding-bottom: 30px;
  border-bottom: 1.5px solid #E5E7EA;
}

.rating {
  display: flex;
  align-items: center;
  column-gap: 16px;
  color: var(--main-text-color);
  font-size: 14px;
  font-weight: 500;
}
.rating::after {
  width: 124px;
  height: 20px;
  background-image: url("../images/star.svg");
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

@media only screen and (min-width:290px) {
  
  .hero__wrapper-title {
    margin-bottom: 105px;
  }
  
}
@media only screen and (min-width:300px) {
  .hero__wrapper-title {
    margin-bottom: 110px;
  }
  
  .hero__title {
    font-size: 18px;
  }
  .hero__desc {
    font-size: 9px;
  }
  
  input {
    font-size: 10px;
  }
  
  .hero__from-btn {
    width: 35px;
    height: 35px; 
  }
  
}
@media only screen and (min-width:310px) {
  .hero__wrapper-title {
    margin-bottom: 115px;
  }
}

@media only screen and (min-width:320px) {
  
  .hero__inner {
    
  }
  .hero__wrapper-title {
    margin-bottom: 120px;
  }
  
  .hero__title {
    font-size: 20px;
  }
  
  .hero__desc {
    font-size: 10px;
  }
  
  input {
    font-size: 11px;
  }
  
  .hero__from-btn {
    width: 40px;
    height: 40px; 
  }
}
@media only screen and (min-width:330px) {
  .hero__wrapper-title {
    margin-bottom: 125px;
  }
  .category__wrapper-title {
    margin-bottom: 20px;
    margin-inline: auto;
    width: 230px;
  }
}


@media only screen and (min-width:340px) {
  .hero__wrapper-title {
    margin-bottom: 130px;
  }
  .hero__desc {
    font-size: 11px;
  }
  
  input {
    font-size: 12px;
  }
  
  .hero__from-btn {
    width: 45px;
    height: 45px; 
  }
}

@media only screen and (min-width:350px) {
  .hero__wrapper-title {
    margin-bottom: 135px;
  } 
  
  .hero__title {
    font-size: 24px;
  }
  
  
  
  input {
    font-size: 12px;
  }
  
  .hero__from-btn {
    width: 50px;
    height: 50px; 
  }
  .category__wrapper-title {
    margin-bottom: 20px;
    margin-inline: auto;
    width: 230px;
  }
  
  .category__sublist {
    width: 250px;
  }
  
  .category__subitem {
    font-size: 14px;
    
    
  }
  
  .site-article__title {
    color: var(--main-text-color);
    font-size: 25px;
    font-weight: 500;
    line-height: 30px; /* 131.579% */
  }
  
  
  .category__type-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
    margin-bottom: 16px;
  }
  
  
  .category__type-link {
    
    font-size: 12px;
    padding: 8px 15px
    
  }
  
  .stuff-item__title-desc {
    
    
  }
  
  .stuff-item__desc {
    margin: 0;
    color: var(--main-second-text-color);
    font-size: 12px;
    padding-bottom: 30px;
    border-bottom: 1.5px solid #E5E7EA;
  }
  
  .site-article__stuff-item {
    width: 260px;
    
  }
  
}

@media only screen and (min-width:360px) {
  .hero__wrapper-title {
    margin-bottom: 140px;
  }
}

@media only screen and (min-width:370px) {
  
  input {
    font-size: 14px;
  }
  .hero__from-btn {
    width: 50px;
    height: 50px; 
  }
  
  .hero__title {
    font-size: 26px;
  }
  
  .hero__desc {
    font-size: 12px;
  }
  .category__title {
    margin: 0 0 8px; 
    font-size: 28px;
    font-weight: 600;
  }
  
  .category__title-desc {
    font-size: 14px;
  }
  
}

@media only screen and (min-width:380px) {
  .hero__wrapper-title {
    width: 265px;
    margin-bottom: 145px;
  }
  
  input {
    font-size: 16px;
  }
  .hero__from-btn {
    width: 52px;
    height: 52px; 
  }
  
  .hero__title {
    font-size: 26px;
  }
  
  .hero__desc {
    font-size: 12px;
  }
  
  .category__wrapper-title {
    width: 300px;
  }
  
}

@media only screen and (min-width:390px) {
  .hero__wrapper-title {
    margin-bottom: 150px;
  }
  
  
}



@media only screen and (min-width:400px) {
  .hero__wrapper-title {
    margin-bottom: 165px;
  }
  
  
  
  .hero__title {
    font-size: 28px;
  }
  
  .category__car-item {
    max-width: 500px;
    
  }

  .site-article__title {
    color: var(--main-text-color);
    font-size: 30px;
    font-weight: 500;
    line-height: 40px; /* 131.579% */
  }
  
  
}

@media only screen and (min-width:410px) {
  
  .hero__inner {
    padding:40px 35px 20px;
    
  }
  
  .hero__wrapper-title {
    margin-bottom: 175px;
  }
}

@media only screen and (min-width:420px) {
  
  .hero__wrapper-title {
    margin-bottom: 185px;
  }
  .hero__title {
    font-size: 30px;
  }
}

@media only screen and (min-width:430px) {
  .hero__wrapper-title {
    margin-bottom: 195px;
  }
}

@media only screen and (min-width:450px) {
  .hero__wrapper-title {
    margin-bottom: 205px;
  }
  .hero__title {
    font-size: 32px;
  }
}

@media only screen and (min-width:470px) {
  .hero__wrapper-title {
    margin-bottom: 205px;
  }
}

@media only screen and (min-width:490px) {
  .hero__wrapper-title {
    margin-bottom: 215px;
  }
  .hero__title {
    font-size: 34px;
  }
}

@media only screen and (min-width:500px) {
  
  .container {
    padding-inline: 20px;
  }
  .hero__inner {
    background-image:-webkit-gradient(linear, left top, left bottom, color-stop(6.19%, rgba(0, 0, 0, 0.60)), color-stop(54.63%, rgba(0, 0, 0, 0.00))), url("../images/herobgtablet.png");
    background-image:linear-gradient(180deg, rgba(0, 0, 0, 0.60) 6.19%, rgba(0, 0, 0, 0.00) 54.63%), url("../images/herobgtablet.png");
    background-size: 100% 100%;
  }
  
  .carusel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .carusel__btn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .site-article__inner {
    display: flex;
    row-gap: 20px;
  }
  
  .hero__wrapper-title {
    margin-bottom: 200px;
  }
  
  .category__wrapper-title {
    width: 400px;
  }
  
  .category__type-link {
    padding: 10px 20px;
  }
  
  .site-article__inner {
    row-gap: 20px;
    
  }
  
  .site-article__start {
    flex-direction: row;
    align-items: center;
    
  }
  
  .line {
    
    width: 108px;
    height: 2px;
    transform: rotate(-90deg);
    flex-shrink: 0;
  }

  .site-article__stuff-item {
    width: 400px;
}

.site-article__stuff-info{
 flex-direction: row;
 column-gap: 8px;
}

.site-article__stuff-info::after {
  margin-left: auto;
}

.stuff-item__title {
  font-size: 16px;
}


  
}

@media only screen and (min-width:510px) {
  
  .hero__wrapper-title {
    margin-bottom: 210px;
  }
  
  
  
}

@media only screen and (min-width:520px) {
  .hero__wrapper-title {
    margin-bottom: 220px;
  }
  .hero__title {
    font-size: 36px;
  }
}
@media only screen and (min-width:530px) {
  .hero__wrapper-title {
    margin-bottom: 230px;
  }
  
}

@media only screen and (min-width:540px) {
  .hero__wrapper-title {
    margin-bottom: 240px;
  }
}
@media only screen and (min-width:560px) {
  .hero__wrapper-title {
    margin-bottom: 250px;
  }
}
@media only screen and (min-width:580px) {
  .hero__wrapper-title {
    margin-bottom: 260px;
  }
}
@media only screen and (min-width:590px) {
  .hero__wrapper-title {
    margin-bottom: 275px;
  }
}

@media only screen and (min-width:600px) {
  .hero__wrapper-title {
    margin-bottom: 280px;
  }
  
  .category__type-link {
    padding: 12px 24px;
    font-size: 14px;
  }
  
}
@media only screen and (min-width:610px) {
  .hero__wrapper-title {
    margin-bottom: 285px;
  }
}
@media only screen and (min-width:620px) {
  .hero__wrapper-title {
    margin-bottom: 290px;
  }
}
@media only screen and (min-width:630px) {
  .hero__wrapper-title {
    margin-bottom: 300px;
  }
}
@media only screen and (min-width:590px) {
  
}
@media only screen and (min-width:650px) {
  .hero__wrapper-title {
    margin-bottom: 320px;
  }
}

@media only screen and (min-width:700px) {
  .hero__wrapper-title {
    margin-bottom: 320px;
  }
  .category__car-item {
    max-width: 300px;
    
  }
}
@media only screen and (min-width:800px) {
  .hero__inner {
    background-image:-webkit-gradient(linear, left top, left bottom, color-stop(6.19%, rgba(0, 0, 0, 0.60)), color-stop(54.63%, rgba(0, 0, 0, 0.00))), url("../images/herobgdesktop.png");
    background-image:linear-gradient(180deg, rgba(0, 0, 0, 0.60) 6.19%, rgba(0, 0, 0, 0.00) 54.63%), url("../images/herobgdesktop.png");
    background-size: 100% 100%;
  }
  .category__car-item {
    max-width: 350px;
    
  }
  
  .site-article__inner {
    row-gap: 20px;
    flex-direction: row;
    column-gap: 70px;
  }
  .site-article__start {
    flex-direction: column;
    align-items: flex-start;
    
  }
  .line {
    
    width: 100%;
    height: 2px;
    transform: rotate(0);
    flex-shrink: 0;
  }
}

@media only screen and (min-width:900px) {
  .hero__wrapper-title {
    margin-bottom: 320px;
  }
  .category__car-item {
    max-width: 400px;
    
  }
}




@media only screen and (min-width:1050px) {
  .site-header__btn {
    display: none;
  }
  
  .site-header__show-menu {
    position: static;
    display: block;
    width: 100%;
  }
  
  .start-menu {
    display: none;
  }
  
  .site-header__wrapper-sitenav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: auto;
    
  }
  
  .site-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    row-gap: 22px;
  }
  
  .site-nav__item > .site-nav__sublist {
    display: none;
  }
  .site-nav {
    margin-bottom: 0;
  }
  
  .site-nav__item:has(.site-nav__sublist) > .site-nav__link {
    margin-bottom: 0;
  }
  
  .site-nav__item {
    padding: 18px 16px;
  }
  .site-nav__item:hover  {}
  
  .category__car-item {
    max-width: 380px;
    
  }
}

