/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/ :root {
  --white-color: #ffffff;
  --primary-color: #F8CB2E;
  --secondary-color: #000000;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #EE5007;
  --custom-btn-bg-hover-color: #c01f27;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #7fffd4;
  --link-hover-color: #B22727;
  --body-font-family: 'interstateregular', sans-serif;
  --h1-font-size: 74px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --btn-font-size: 22px;
  --copyright-font-size: 16px;
  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
}
@font-face {
  font-family: 'ronregular';
  src: url('fonts/ron_free-webfont.woff2') format('woff2'), url('fonts/ron_free-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
    font-family: 'interstateregular';
    src: url('fonts/interstate-regular-font-webfont.woff2') format('woff2'),
         url('fonts/interstate-regular-font-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
  background-color: #ccd6b6;
  font-family: var(--body-font-family);
}
body, html {
  margin: 0;
  padding: 0;
}



/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h1, h3, h4, h5, h6, p {
  font-family: 'interstateregular', sans-serif;
  font-weight:normal;
}
h2 {
  font-family: 'ronregular';
  font-size: 70px !important;
}
h2.join-family {
  padding-top: 16%;
  font-size: 190px !important;
  line-height: 150px;
  color: #ffffff;
  text-align: center;
  margin-top: -500px;
}
h2.dream-team {
  padding-top: 20%;
  font-size: 170px !important;
  line-height: 130px;
  color: #ffffff;
  text-align: center;
  z-index: 24;
}
h3.year {
  font-family: 'ronregular';
  color: #33333350;
  font-size: 150px !important;
  margin-bottom: -80px
}
h3.nome-auto {
  font-family: 'ronregular';
  color: #33333350;
  font-size: 50px !important;
  margin-top: -20px !important;
  padding-bottom: 30px
}
h5.year {
  font-family: 'ronregular';
  color: #333333;
  font-size: 40px !important;
  padding-top: 20px;
}
h6.nome-auto {
  font-family: 'ronregular';
  color: #333333;
  font-size: 30px !important;
  padding-bottom: 30px;
  margin-top: -15px;
}
.dream-team-p {
  color: #fff;
  text-align: center;
  padding-top: 50px
}
h2, h3, h4, h5, h6 {
  color: var(--dark-color);
}
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
}
h1 {
  font-size: var(--h1-font-size);
}
h2 {
  font-size: var(--h2-font-size);
}
h3 {
  font-size: var(--h3-font-size);
}
h4 {
  font-size: var(--h4-font-size);
}
h5 {
  font-size: var(--h5-font-size);
}
h6 {
  font-size: var(--h6-font-size);
}
p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}
ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}
a, button {
  touch-action: manipulation;
  transition: all 0.3s;
}
a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none !important;
}
a:hover {
  color: var(--link-hover-color);
}
b, strong {
  font-weight: var(--font-weight-bold);
}
.bottom-header {
  font-size: 10px;
}
.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link-fx-1:hover {
  color: var(--link-hover-color);
}
.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}
.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}
.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}
.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}
.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}
.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}
.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}
.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}
.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}
.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}
/*---------------------------------------
  FOOTER              
-----------------------------------------*/
footer {
  background-color: #2c2c2c;
  color: #fff;
  text-align: center;
  min-height: 250px;
  display: flex; /* Attiva Flexbox */
  justify-content: center; /* Centra il contenuto orizzontalmente */
  align-items: center; /* Centra il contenuto verticalmente */
  padding-top: 50px;
}
footer .container {
  width: 100%;
}
footer .row {
  display: flex; /* Attiva Flexbox per la riga */
  width: 100%;
  justify-content: space-around; /* Spaziatura tra le colonne */
  align-items: center; /* Centra verticalmente le colonne */
}
footer .col-sm {
  text-align: center;
}
footer img {
  width: 30vw;
}
.footer-car {
  max-width: 130px;
}
.cta-footer {
  margin: auto;
  text-align: center;
  padding: 20px 40px;
  border-radius: 10px;
  color: white;
}
.footer-custom-btn {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  background: #fff;
  font-family: 'interstateregular', sans-serif;
}
footer p {
  font-size: 14px;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #e46346;
}
/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--black-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
  text-decoration: none !important;
}
.custom-btn:hover {
  color: #5a5a5a;
}
.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover, .custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}
.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}
/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  position: sticky;
  background: transparent;
  z-index: 9999999;
  top: 0;
  width: 100%;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out; /* Transizione più lenta */
  background-color: rgba(255, 255, 255, 0.0); /* Sfondo semitrasparente */
}

.navigazione {
  background-color: white;
  margin-top: 30px;
  border-radius: 10px 10px 0 0;
}
.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin-left: 30px;
  padding: 10px 20px;
}
.navbar-nav .nav-link {
  display: inline-block;
  color: #1a2f2b;
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: 'interstateregular', sans-serif;
}
img.nav-ig {
  width: 20px;
  margin-left: 40px;
}
img.nav-fb {
  width: 20px;
  margin-left: 10px;
}
.nav-logo {
  max-width: 130px;
}
/* Stile per il burger menu */
.navbar-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
/* Megamenu - Fisso e non influenzato dallo scroll */
.fullscreen-megamenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  display: none; /* Nascosto di default */
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow: hidden; /* Previene lo scroll all'interno del megamenu */
}
/* Lista megamenu */
.megamenu-list {
  list-style: none;
  padding: 0;
  text-align: center;
}
.megamenu-list li {
  margin: 20px 0;
}
.megamenu-list li a {
  color: white;
  font-size: 24px;
  text-decoration: none;
  font-family: 'interstateregular', sans-serif;
  transition: color 0.3s;
}
.megamenu-list li a:hover {
  color: #ccc;
}
/* Mostra il megamenu quando attivato */
.fullscreen-megamenu.active {
  display: flex;
}
/* Nascondi lo scroll della pagina sotto il megamenu */
body.no-scroll {
  overflow: hidden;
}
.close-megamenu {
  background-color: #00000000;
  position: relative;
  color: #fff;
  top: -30%;
  right: -20%;
}

/*---------------------------------------
SELL YOUR JEEP         
-----------------------------------------*/
.sell-your-jeep-body {
    background-color: #ccd6b6;
}

.sell-your-jeep {
  position: relative;
  background-color: #ccd6b6;
  height: 100vh; /* o un'altezza specifica */
  overflow: hidden;
	margin-top: -110px;
}

.sell-your-jeep__marquee {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  overflow: hidden;
  transform: translateY(-50%);
  height: 22rem; /* uguale al font-size per evitare tagli */
}

.sell-your-jeep__marquee-inner {
  display: flex;
animation: sell-your-jeep__marquee-scroll 15s linear infinite;
}

.sell-your-jeep__marquee-inner span {
  font-size: 22rem !important;
  font-family: 'ronregular', sans-serif;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding-right: 10rem; /* spazio tra le ripetizioni */
  text-align: center;
  line-height: 1;
}

/* Animazione continua */
@keyframes sell-your-jeep__marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sell-your-jeep__background-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

.sell-your-jeep__car-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  will-change: transform, opacity;
}

.sell-your-jeep__cta-text {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.fade-in-up-x {
  opacity: 0;
  transform: translate(-50%, 80px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition-delay: 0.3s;
  will-change: transform, opacity;
}

/*---------------------------------------
BEST RESULTS SECTION         
----------------------------------------*/

.best-results {
  position: relative;
  background-color: #efeeec;
  background-image: url("../../img/best-results-logowhite.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60%;
  text-align: center;
  padding: 6rem 2rem;
  overflow: hidden;
	
}

.best-results__content {
  max-width: 1200px;
  margin: 0 auto;
}

.best-results__title {
  color: #000;
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 1.0;
  margin-bottom: 2rem;
	margin: auto;
	font-weight: 400;
}

.best-results__title u {
  text-decoration-thickness: 2px;
}

.best-results__car-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}

.best-results__description {
  color: #000;
  font-size: 1.1rem;
  width: 60%;
  margin: 0 auto;
  line-height: 1.6;
	padding-bottom: 50px;
}

.typewriter-container {
  max-width: 700px; /* larghezza fissa */
  overflow: hidden;
	margin: auto;
	height: 250px;
}

.typewriter-text {
  display: inline-block;
  opacity: 0;
  white-space: normal;        /* permette l'andare a capo */
  word-break: break-word;     /* spezza parole se serve */
}

/*---------------------------------------
HOW IT WORKS SECTION         
----------------------------------------*/
#how-it-works {
  position: relative; /* serve per posizionare l'immagine assolutamente */
  background-color: #3e3c3b;
  background-image: url("../../img/how-it-works-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  padding: 4rem 0 0 0; /* togli il padding-bottom se vuoi che l'immagine tocchi il fondo */
  text-align: center;
  color: #fff;
  overflow: hidden; /* evita scroll se l'immagine esce fuori */
}

#how-it-works .how-it-works__title {
  color: #fff;
  font-size: 7rem !important;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 400;
}

#how-it-works .bhow-it-works__title {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: bold;
  max-width: 50%;
	margin: auto;
}

#how-it-works .how-it-works__car-image {
  bottom: 0;
  left: 50;
  width: 100%;
  height: auto;
  object-fit: contain; /* mantiene proporzioni */
  display: block;
	margin: auto;
}

.features-grid {
  background-color: #e46346;
  padding: 4rem 2rem;
  color: #fff;
}

.flag {
	max-width: 300px;
}

.elenco {
	font-size: 7rem !important;
	background: linear-gradient(to bottom, 
	rgba(255, 255, 255, 1) 0%,
	rgba(255, 255, 255, 1) 20%,
    rgba(255, 255, 255, 0) 70%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	
}

	h3.mb-0.elenco.fade-in-up   {
		font-size: 7rem !important;
		font-family: 'ronregular';
	}

.elenco-p {
    color: #fff;
    text-transform: uppercase;
    max-width: 60%;
    margin: auto;
    padding-bottom: 20px;
    min-height: 180px;
}

.centered-content {
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.centered-content img {
  max-width: 250px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.centered-content h5 {
	padding-top: 30px;
  color: white;
  font-size: 1.5rem;
  max-width: 600px;
  line-height: 1.5;
}


#sellers {
  position: relative; /* serve per posizionare l'immagine assolutamente */
  background-color: #4a6c76;
  background-image: url("../../img/seller-bg.png");
  object-fit: contain; 
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  padding: 4rem 0 0 0; /* togli il padding-bottom se vuoi che l'immagine tocchi il fondo */
  text-align: center;
  color: #fff;
  overflow: hidden; /* evita scroll se l'immagine esce fuori */
}

#sellers .sellers__title {
  color: #fff;
  font-size: 7rem !important;
  text-transform: uppercase;
  margin-bottom: 1rem;
	    line-height: 6rem;
}

#sellers .bsellers__title {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: bold;
  max-width: 50%;
	margin: auto;
}

#sellers .sellers__car-image {
  position: relative; /* oppure semplicemente rimuovi `position` */
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-top: -60px;/* centra l’immagine */
}

#sellers-2 {
  background-color: #000; /* sfondo nero */
  color: #fff !important; /* testi bianchi */
  text-align: center; /* centratura del testo */
  padding: 4rem 2rem; /* spazio interno */
}

#sellers-2 h5,
#sellers-2 p {
	color: #fff !important; /* testi bianchi */
  max-width: 100%;
  margin: 0 auto 1.5rem; /* centratura e spaziatura */
  line-height: 1.6;
}

#sellers-2 h5 {
  font-size: 1.8rem;
  font-weight: bold;
}

#pricing {
  background-color: #e7b661;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

#pricing img {
  max-width: 250px;
  margin-top: -100px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

#pricing h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
	text-transform: uppercase;
}

#pricing h5 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

#pricing p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
  color: white;
}

#make-happens {
  background-color: #e7e4db;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  padding-top: 100px;
	padding-bottom: 100px;
}

#make-happens h5 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: black;
}

#make-happens p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
  color: black;
}

#fascia-nera {
  position: relative;
  overflow: visible;
  background: linear-gradient(to bottom, #e7b661 0%, #e7b661 50%, #e7e4db 50%, #e7e4db 100%);
  height: 150px;
  z-index: 1;
  margin-top: 200px;
}

#fascia-nera .c-strap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
  position: relative; /* necessario per il posizionamento relativo dei figli */
  z-index: 2;
}

#fascia-nera .c-strap_rail {
  margin-top: 400px;
  margin-left: 10px;
  display: flex;
  height: 300px;
  will-change: transform;
  transition: transform 0.05s linear;
  z-index: 3;
}

#fascia-nera .c-strap_item {
  height: 120px;
  flex-shrink: 0;
  position: relative;
  margin-top: -100px; /* fa "uscire" l'immagine dal contenitore */
  z-index: 10;
}


#manifesto {
  position: relative;
  overflow: visible;
  background: #e7e4db;
  height: 605px; /* uguale all'immagine */
  z-index: 1;
  margin-top: 100px;
	
}

#manifesto .c-strap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
  position: relative;
  padding-bottom: 0px !important;
}

#manifesto .c-strap_rail {
  display: flex;
  height: auto;
  will-change: transform;
  transition: transform 0.05s linear;
    margin-left: -810px;
margin-bottom: -100px;
}

#manifesto .c-strap_item {
  height: 100%;
  flex-shrink: 0;
  display: block;
    width: 100%;
   margin-left: -155px;
}

#fascia-nera .c-strap_rail,
#manifesto .c-strap_rail {
  display: flex;
  width: max-content;
  will-change: transform;
  transition: transform 0.05s linear;
}

.c-strap {
    margin-top: -200px;
    padding-bottom: 50px;
    transform: skewY(var(--strap-angle, 0deg));
    background: #f8f8f800;
}

.c-strap_item {
  height: 180px;
  flex-shrink: 0;
}



/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	
#sellers-2 #how-it-works .bhow-it-works__title {
    font-size: 1.4rem;
}
	
#sellers-2 h5 {
    font-size: 1.4rem;
}
	
#form #submit-button {
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    margin-top: 30px !important;
    text-align: center;
    padding: 7px 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    min-width: 28%;
}
	#manifesto .c-strap {
    height: auto;
}
	
	#manifesto {
    margin-top: 150px;
	height: auto;
}
	
#fascia-nera {

    margin-top: 180px;
}
	
	#sellers {
    background-size: 600%;
}
	
	#sellers .sellers__title {
    color: #fff;
    font-size: 5rem !important;
    line-height: 5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;

}
	
	#how-it-works .how-it-works__car-image {
    width: 100%;
}
	
	#how-it-works .bhow-it-works__title {
    padding-top: 50px; 
    max-width: 80%;
}
	
#how-it-works .how-it-works__title {
    font-size: 5rem !important;
    line-height: 5rem;
}
	
	
    .img-desktop {
    display: none !important;
  }

  .img-mobile {
    display: block;
  }
	
	.typewriter-container {
    height: 550px;
}
	
	.sell-your-jeep__background-image {
    width: 200%;
}
	.sell-your-jeep__car-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 175%;
}
	
.best-results__description {
	padding-top: 50px;
    width: 100%;
}
	
    .sell-your-jeep__cta-text {
        position: absolute;
        bottom: 10px;
        left: 0%;
        transform: none;
        z-index: 3;
        font-size: 1.2rem;
        color: #fff;
        font-weight: 800;
        text-align: center;
        width: 100%;
    }
.sell-your-jeep__marquee {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    overflow: hidden;
    transform: translateY(-50%);
    height: 22rem;
}
  .sell-your-jeep__marquee-inner {
    animation-duration: 4s; /* mobile */
  }
	
	/* Stile per il burger menu */
.navbar-toggler {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.fullscreen-megamenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}
.megamenu-list {
    list-style: none;
    padding: 0;
    text-align: center;
}
.megamenu-list li {
    margin: 30px 0px 30px 30px;
    border-bottom: 1px solid #eee;
}
ul li {
    font-family: 'interstateregular', sans-serif;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.2rem !important;
    color: #444;
}
.close-megamenu {
    background-color: #00000000;
    position: relative;
    color: #fff;
    top: -40%;
    right: 1%;
}
	
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media screen and (min-width: 601px) and (max-width: 767.98px) {
	
#sellers {
    min-height: 470px;
}

	.sell-your-jeep {
    height: 80vh !important;
}
.sell-your-jeep__marquee {
    top: 40% !important;

}
  .sell-your-jeep__marquee-inner {
    animation-duration: 8s; /* mobile */
  }
	/* Stile per il burger menu */
.navbar-toggler {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.fullscreen-megamenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}
.megamenu-list {
    list-style: none;
    padding: 0;
    text-align: center;
}
.megamenu-list li {
    margin: 30px 0px 30px 30px;
    border-bottom: 1px solid #eee;
}
ul li {
    font-family: 'interstateregular', sans-serif;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.2rem !important;
    color: #444;
}
.close-megamenu {
    background-color: #00000000;
    position: relative;
    color: #fff;
    top: -40%;
    right: 1%;
}

	#how-it-works .how-it-works__car-image {
    width: 100%;
}
	
	#how-it-works .bhow-it-works__title {
    padding-top: 50px; 
    max-width: 80%;
}
	
#how-it-works .how-it-works__title {
    font-size: 5rem !important;
    line-height: 5rem;
}
	

    .img-desktop {
    display: none !important;
  }

  .img-mobile {
    display: block !important;
  }
.sell-your-jeep__car-image {
    width: 150%;
}
.sell-your-jeep__background-image {
    width: 150%;
}
.sell-your-jeep__cta-text {
    width: 80% !important;
}
}



@media screen and (min-width: 768px) and (max-width: 819px) {

	
	
.sell-your-jeep__cta-text {
width: 80%;
}
    .img-desktop {
    display: none !important;
  }

  .img-mobile {
    display: block;
  }
	
#how-it-works .how-it-works__car-image {
    width: 100%;
}
#how-it-works {
    min-height: 940px;
}
	
.elenco-p {
	min-height: 200px;
		
	}
#sellers {
    background-size: 500%;
    min-height: 530px;
}
#sellers-2 h5, #sellers-2 p {
    max-width: 80%;
}
#manifesto {
    height: auto;
}
  .sell-your-jeep__marquee-inner {
    animation-duration: 4s; /* mobile */
  }
.sell-your-jeep__background-image {
    width: 200%;
}
.sell-your-jeep__car-image {
    width: 150% !important;
}

}

@media screen and (min-width: 820px) and (max-width: 1023px) {
  .sell-your-jeep__marquee-inner {
    animation-duration: 10s; /* tablet */
  }
.sell-your-jeep__background-image {
    width: 100%;
}
.sell-your-jeep__cta-text {
width: 80%;
}
    .img-mobile {
    display: none !important;
  }
#manifesto {
    position: relative;
    overflow: visible;
    background: #e7e4db;
    height: 380px;
    z-index: 1;
    margin-top: 200px;
}
  .img-desktop {
    display: block;
  }

	
#how-it-works .how-it-works__car-image {
    width: 100%;
}
#manifesto .c-strap {
    height: auto !important;
}
	}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .img-desktop {
    display: block !important;
  }

  .img-mobile {
    display: none !important;
  }
}
/* Regole specifiche per iPad Pro in portrait */
@media only screen 
  and (min-device-width: 1024px)  and (max-device-width: 1366px) 
  {
	  #fascia-nera .c-strap_item {
    height: 160px !important;
}
    #how-it-works {
        min-height: 1240px;
    }
	  
    #sellers {
        background-size: 100%;
        min-height: 630px;
    }
	  
.sell-your-jeep {
    height: 100vh;
}
.sell-your-jeep__marquee-inner span {
    font-size: 28rem !important;
}
.sell-your-jeep__marquee {
    top: 38% !important;
    height: 28rem;
}
#how-it-works .bhow-it-works__title {
    max-width: 60%;
}
#how-it-works .how-it-works__car-image {
    width: 100% !important;
}
.navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 30px;
}
.sell-your-jeep__background-image {
    width: 200% !important;
}
.sell-your-jeep__car-image {
    width: 150% !important;
}
.img-desktop {
  display: block !important;
}

.img-mobile {
  display: none !important;
}
}
  /* Regole specifiche per iPad Pro in portrait */
@media only screen 
  and (min-device-width: 1024px)  and (max-device-width: 1366px) 
  and (orientation: portrait)
  and (-webkit-min-device-pixel-ratio: 2) {
    #how-it-works {
        min-height: 1240px;
    }
	  
    #sellers {
        background-size: 100%;
        min-height: 630px;
    }
	  
.sell-your-jeep {
    height: 100vh;
}
.sell-your-jeep__marquee-inner span {
    font-size: 28rem !important;
}
.sell-your-jeep__marquee {
    top: 38% !important;
    height: 28rem;
}
#how-it-works .bhow-it-works__title {
    max-width: 60%;
}
#how-it-works .how-it-works__car-image {
    width: 100% !important;
}
.navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 30px;
}
.sell-your-jeep__background-image {
    width: 200% !important;
}
.sell-your-jeep__car-image {
    width: 150% !important;
}
    .img-desktop {
        display: none !important;
    }
}

/* Extra large devices (large laptops and desktops, 1440px and up) */
/* Desktop grandi */
@media screen and (min-width: 1440px)  {
	  #fascia-nera .c-strap_item {
    height: 200px !important;
}
}


@media screen and (min-width: 1680px)  {	
	#fascia-nera .c-strap_item {
    height: 180px;
}
	#manifesto {
    margin-top: 200px;
}
    #sellers {
        background-size: 500%;
    }

	
	}

/* Monitor 2K (WQHD) */
@media screen and (min-width: 1920px) and (max-width: 2559.98px) {
  /* Stili per monitor 2K */

.sell-your-jeep__marquee {
    top: 20%;
}
    #sellers {
        background-size: 500%;
    }
#manifesto {
    margin-top: 200px;
}
#fascia-nera .c-strap_item {
    height: 180px;
}
}

/* Monitor 4K */
@media screen and (min-width: 2560px) and (max-width: 3839.98px) {
  /* Stili per monitor 4K */

}


/* Monitor ultrawide */
@media screen and (min-width: 3840px) {
  /* Stili per monitor ultrawide e oltre */
}



/* Extra large devices (desktop, sopra i 1200px, ma ESCLUDENDO i tablet) */
@media only screen and (min-width: 1200px) and (hover: hover) {
    .img-desktop {
    display: block !important;
  }

  .img-mobile {
    display: none  !important;
  }
    #sellers {
        background-size: 500%;
    }
#sellers-2 {
    padding: 4rem 25rem
}
.sell-your-jeep {

    height: 100vh;
}
}


@media screen and (min-aspect-ratio: 19/9) {
  .sell-your-jeep {
    height: 140vh;
  }
}
