@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* colors */
:root {
  --white: #fff;
  --black: #000;
  --blue: #173EB3;
  --lightblue: #8598D0;
  --underline: linear-gradient(0deg,rgba(23, 62, 179, 1) 50%, rgba(23, 62, 179, 0) 50%);
  --green: #00ba00;
  --red: #f44336;
}
/* chnage to orange */
.nonbrand {
  --blue: #FF8000;
  --lightblue: #FFCB97;
  --underline: linear-gradient(0deg,rgba(255, 128, 0, 1) 50%, rgba(255, 128, 0, 0) 50%);
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
/* navbar */
.nav {
  background: var(--white);
  padding: 20px 0;
}
.nav-logo {
  text-align: left;
}
.nav-logo img {
  height: 65px;
}
.nav-menu {
  text-align: right;
}
.nav-menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-menu ul li {
  margin-left: 100px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  transition: all 0.4s ease;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.nav-menu ul li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--blue);
  visibility: hidden;
  border-radius: 0px;
  transform: scaleX(0);
  transition: .25s linear;
  z-index: -1;
}
.nav-menu ul li:hover::before  {
  visibility: visible;
  transform: scaleX(1);
}
/* header */
.header {
  padding: 120px 0 80px 0;
  background-size: cover !important;
  background-position: center 50% !important;
  background-repeat: no-repeat !important;
  min-height: 850px;
  position: relative;
}
.header::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  top: 0;
  left: 0;
  position: absolute;
}
.brand .header {
  background: url('/assets/img/prcar/header.jpg');
}
.nonbrand .header {
  background: url('/assets/img/nonbrand/header.jpg');
}
.header .container {
  position: relative;
  z-index: 10;
}
.header-txt {
  color: var(--white);
}
.header-txt h1 {
  font-size: 60px;
  line-height: 1.2;
  padding: 0 20px;
  font-weight: 700;
}
.header-txt h1 span {
  position: relative;
  z-index: 1;
}
.header-txt h1 span::before {
  background: var(--underline);
  width: 110%;
  height: 100%;
  position: absolute;
  content: '';
  bottom: 0;
  left: -5%;
  z-index: -1;
}
.header-txt h6 {
  font-size: 20px;
  line-height: 1.3;
  margin: 30px 0 0 0;
  font-weight: 400;
}
.header-txt img {
  height: 55px;
  margin-top: 30px;
}
/* form */
#contactform {
  width: 400px;
  background: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  margin: 0 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 7px 5px rgba(255, 255, 255, 0.4), inset 0 4px 4px 0 rgba(23, 62, 179, 0.3);
}
.nonbrand #contactform {
  box-shadow: 0px 0px 7px 5px rgba(255, 255, 255, 0.4), inset 0px 4px 4px 0px rgba(255, 128, 0, 0.3);
}
.form-step {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.form-step.active {
  display: flex;
}
.form-title {
  color: var(--blue);
}
.form-title p {
  font-weight: 600;
  font-size: 24px;
  margin: 0;
}
.form-title h6 {
  font-size: 53px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.form-progress {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  position: relative;
  margin: 25px auto;
}
.form-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, rgba(23, 62, 179, 1) var(--progress, 0%), rgba(133, 152, 208, 1) var(--progress, 0%));
  z-index: 0;
}
.nonbrand .form-progress::before{
  background: linear-gradient(to right, rgba(255, 128, 0, 1) var(--progress, 0%), rgba(255, 203, 151, 1) var(--progress, 0%));
}
.step {
  background: var(--lightblue);
  width: 32px;
  aspect-ratio: 1;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  z-index: 2;
}
.step.active {
  background: var(--blue);
}
.form-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
#step-2 h4 {
  margin-top: 20px;
}
#step-2 h4:first-of-type {
  margin-top: 0;
}
.form-input {
  width: 100%;
}
.form-input .dropdown-toggle {
  background: #fff;
  width: 100%;
  min-height: 35px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  box-shadow: none;
  color: rgba(0, 0, 0, 0.6);
  text-align: left;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: hidden;
  margin: 20px 0 0 0;
  white-space: normal;
}
.dropdown-toggle::after {
  display: none;
}
.form-input .dropdown-toggle:hover, .form-option:hover, .form-option.selected, .form-input .dropdown-toggle:active {
  background: var(--blue) !important;
  color: #fff !important;
  transform: none !important;
}
.form-input .dropdown-toggle:hover img {
  filter: brightness(0) invert(1);
}
.form-input .dropdown-toggle:focus-visible, .form-input .dropdown-toggle:focus {
  box-shadow: none;
  background: #fff;
  color: #000;
}
.form-input .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 180px;
  cursor: pointer;
  border-radius: 5px;
  padding: 0;
  border: 1px solid var(--blue);
  scrollbar-width: none;
}
.form-input .dropdown-menu:-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
.form-option {
  padding: 10px 20px;
  white-space: normal;
  font-size: 16px;
  line-height: 1.2;
}
.form-option:hover {
  background: var(--blue);
  color: #fff;
}
.retoma {
  width: 100%;
  margin-top: 20px;
  /*display: none;*/
}
.radio-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 10px 0 0 0;
}
.radio-row:last-of-type {
  margin-bottom: 0;
}
.radio-buton {
  width: 45%;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
}
.radio-opt-normal .radio-buton label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  background: var(--blue);
  color: var(--white);
}
/* sliders */
.entrada_value {
  width: 100%;
  display: none;
  margin-top: 20px;
}
.form-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.slider {
  width: 100% !important;
  margin: 10px 0 !important;
  height: auto !important;
  padding-left: 15px;
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 10px 0;
  height: 10px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--lightblue) 0%, var(--lightblue) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}
input[type=range]::-webkit-slider-runnable-track {
  height: 12px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--lightblue) 0%, var(--lightblue) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}
input[type=range]::-moz-range-track {
  height: 12px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--lightblue) 0%, var(--lightblue) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}
input[type=range]::-ms-track {
  height: 12px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: transparent;
}
input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  margin-top: -6px;
}
input[type="range"]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  margin-top: -6px;
}
input[type="range"]::-ms-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  margin-top: -6px;
}
.value-display {
  width: 100%;
  height: 35px;
  border-radius: 15px;
  color: var(--blue);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.value-display span {
  line-height: 1;
}
.value-display span:focus-visible {
  outline: none !important;
}
.form-inputs, .form-check {
  width: 100%;
}
.form-inputs input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  font-size: 16px;
  color: var(--black);
  padding: 0 0 0 15px;
  margin: 15px auto 0 auto;
  text-align: left;
  -webkit-appearance: none;
}
.form-inputs input:first-of-type {
  margin-top: 10px;
}
.form-inputs input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: #72858f;
}
:-moz-placeholder {
  color: #72858f;
  opacity: 1;
}
::-moz-placeholder {
  color: #72858f;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #72858f;
}
::-ms-input-placeholder {
  color: #72858f;
}
::placeholder {
  color: #72858f;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}
.form-inputs input.error {
  border: 1px solid var(--red);
  background-image: url('/assets/img/icons/close.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.form-inputs input.valid {
  border: 1px solid var(--green);
  background-image: url('/assets/img/icons/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.form-check {
  margin-top: 25px;
  text-align: center;
  padding: 0;
}
.form-check label {
  margin: 0 ;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  padding-right: 20px;
  text-wrap: balance;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid var(--blue);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--blue);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0.5px;
  margin-top: 2px;
  font-size: 16px;
}
#politica-link {
  color: var(--blue);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--blue);
  text-decoration: underline;
}
.form-step button {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  background: var(--blue);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  color: var(--white);
  border: none;
  margin-top: 30px;
  transition: all 0.6s ease;
}
.form-step button:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(1.05);
}
.form-button {
  margin-top: 15px !important;
}
label.error {
  display: none;
  margin-top: 5px;
}
.error, #termos-error {
  font-size: 11px;
  font-weight: 400;
  color: var(--red);
  text-align: center;
  padding: 0;
  width: 100%;
}
/* message */
.message-box {
  width: 400px;
  aspect-ratio: 1;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  margin: 0 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 7px 5px rgba(255, 255, 255, 0.4), inset 0 4px 4px 0 rgba(23, 62, 179, 0.3);
}
.message-box h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-wrap: balance;
  margin-bottom: 20px;
}
.message-box p {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
}
.message-box, .thanks-txt, .invalid-txt, .error-txt {
  display: none;
}
/* section1 */
.section1 {
  padding: 60px 0;
  text-align: center;
}
.title {
  margin-bottom: 30px;
}
.title h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}
.car-offer {
  text-align: left;
  width: 97%;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
  margin: 20px auto;
}
.car-slider-box {
  position: relative;
}
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-arrows img {
  transition: all 0.4s ease;
  cursor: pointer;
}
.prev-slider:hover {
  transform: scale(1.2);
}
.next-slider {
  transform: scaleX(-1);
}
.next-slider:hover {
  transform: scaleX(-1) scale(1.2);
}
.month-price {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 170px;
  height: 60px;
  border-radius: 40px 0 0 0;
  background: var(--blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.car-pic {
  width: 100%;
  height: 255px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center bottom !important;
}
.car-info {
  padding: 30px 50px;
  color: var(--black);
}
.car-info h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 10px 0;
}
.car-info h6 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.info, .about {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info {
  margin: 20px auto;
}
.about {
  justify-content: flex-start;
}
.about img {
  height: 18px;
}
.about p {
  margin: 0 0 0 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
}
.price p {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  margin: 0;
}
.price h4 {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
}
.car-info button {
  width: 100%;
  height: 45px;
  background: var(--blue);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  line-height: 1.1;
  border-radius: 5px;
  border: none;
  margin: 15px auto 0 auto;
  transition: all 0.6s ease;
}
.car-info button:hover {
  background: var(--black);
  transform: scale(1.05);
}
/* section 2 */
.section2 {
  padding: 70px 0 60px 0;
  text-align: center;
  position: relative;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}
.brand .section2 {
  background: url('/assets/img/prcar/stand.png');
}
.nonbrand .section2 {
  background: url('/assets/img/nonbrand/clintes.jpg');
}
.section2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.brand .section2::before  {
  background-color: rgba(23, 62, 179, 0.75);
}
.nonbrand .section2::before  {
  background-color: rgba(255, 128, 0, 0.75);
}
.section2 .container {
  position: relative;
  z-index: 1;
}
.section2 .title {
  margin-bottom: 50px;
}
.section2 .title h3 {
  color: var(--white);
}
.review {
  width: 90%;
  height: 345px;
  margin: 0 auto;
  border-radius: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  color: var(--white);
  padding: 30px;
}
.review h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.review p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
  margin: 10px auto 0 auto;
}
.custom-dots {
  text-align: center;
  margin-top: 30px;
}
.custom-dots .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.custom-dots .slick-dots li {
  margin: 0 5px;
}
.custom-dots .slick-dots li button {
  background: rgba(255, 255, 255, 0.5); 
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  display: block;
  padding: 0;
  cursor: pointer;
  font-size: 0;
}
.custom-dots .slick-dots li.slick-active button {
  background: var(--white);
}
/* section3 */
.section3 {
  padding: 60px 0;
  text-align: center;
}
.news {
  width: 95%;
  height: 285px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  color: var(--white);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  text-align: left;
  transition: all 0.6s ease;
  cursor: pointer;
}
.news:hover {
  transform: scale(1.03);
}
.news-slider .slick-track {
  padding: 20px 0;
}
.news p {
  margin: 0 auto 0 0;
  font-size: 16px;
  font-weight: 600;
}
.news h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
  text-wrap: balance;
}
.custom-dots2 {
  text-align: center;
  margin-top: 15px;
}
.custom-dots2 .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.custom-dots2 .slick-dots li {
  margin: 0 5px;
}
.custom-dots2 .slick-dots li button {
  background: rgba(0, 0, 0, 0.10); 
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  display: block;
  padding: 0;
  cursor: pointer;
  font-size: 0;
}
.custom-dots2 .slick-dots li.slick-active button {
  background: var(--blue);
}
/* footer */
.footer {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 70px 0;
  color: var(--white);
}
.brand .footer  {
  background: url('/assets/img/prcar/footer.jpg');
}
.nonbrand .footer  {
  background: url('/assets/img/nonbrand/footer.jpg');
}
.footer-txt h3 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
  margin: 0;
}
.footer-cta {
  text-align: right;
}
.footer-cta button {
  width: 400px;
  height: 65px;
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  font-weight: 500;
  font-size: 32px;
  color: var(--blue);
  border: none;
  transition: all 0.6s ease;
}
.footer-cta button:hover {
  background: var(--blue);
  transform: scale(1.05);
  color: var(--white);
}
.nonbrand .footer-cta button {
  color: var(--white);
  background: var(--blue);
}
.nonbrand .footer-cta button:hover {
  color: var(--blue);
  background: var(--white);
}
/* Media Queries */
@media only screen and (max-width: 1400px) {
  .header-txt h1 {
    font-size: 50px;
  }
  .header-txt h6 {
    font-size: 18px;
  }
  .car-info {
    padding: 30px;
  }
  .news h5 {
    font-size: 16px;
  }
  .nav-menu ul li {
    margin-left: 60px;
  }
  .car-info h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-txt h1 {
    font-size: 48px;
  }
  .header-txt h6 {
    font-size: 16px;
  }
  .title h3 {
    font-size: 40px;
  }
  .car-offer {
    width: 100%;
  }
  .footer-txt h3 {
    font-size: 40px;
  }
  .footer-cta button {
    width: 300px;
  }
}
@media only screen and (max-width: 991px) {
  .header-txt h1 {
    width: 450px;
    font-size: 43px;
    margin-left: -80px;
  }
  .header-txt h6 {
    width: 450px;
    margin-left: -80px;
  }
  .header-txt img {
    margin-left: -80px;
  }
  .nav-menu ul li {
    margin-left: 40px;
    font-size: 14px;
  }
  .nav-logo img {
    height: 45px;
  }
}
@media only screen and (max-width: 880px) {
  .header-txt h1, .header-txt h6, .header-txt img {
    margin-left: 0;
    width: 100%;
  }
  .header-txt h1 {
    padding: 0;
    font-size: 38px;
  }
  .header-txt h6 {
    text-wrap: balance;
  }
  .header-txt h6 br {
    display: none;
  }
  #contactform {
    width: 360px;
  }
  .form-step h4 {
    text-wrap: balance;
  }
  .form-title h6 {
    font-size: 50px;
  }
  .header-txt img {
    width: auto;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    min-height: auto;
    padding: 80px 0;
  }
  .nav, .nav-logo, .header, .footer, .footer-cta {
    text-align: center;
  }
  .nav {
    padding: 10px 0;
  }
  .header-txt h1 {
    font-size: 55px;
  }
  .header-txt h6 {
    font-size: 20px;
  }
  #contactform {
    width: 90%;
    margin: 50px auto 0 auto;
  }
  .nav-logo img {
    height: 55px;
  }
  .car-offer {
    width: 80%;
  }
  .car-info h6 {
    font-size: 20px;
  }
  .about p {
    font-size: 15px;
  }
  .footer-cta button {
    width: 90%;
    margin: 30px auto 0 auto;
  }
}
@media only screen and (max-width: 550px) {
  .header-txt h1 {
    font-size: 45px;
  }
  .header-txt h6 {
    font-size: 18px;
  }
  #contactform {
    width: 95%;
  }
  .car-offer {
    width: 85%;
  }
  .review, .news {
    width: 80%;
  }
  .form-input .dropdown-menu {
    max-height: 180px;
  }
  .title h3 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 414px) {
  .header-txt h1 {
    font-size: 40px;
  }
  .header-txt h6 {
    font-size: 16px;
  }
  #contactform {
    padding: 35px 25px;
    width: 100%;
  }
  .car-offer {
    width: 100%;
  }
  .title h3 {
    font-size: 36px;
  }
  .about p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 390px) {
  .header-txt h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .car-info h6 {
    font-size: 15px;
  }
  .about {
    flex-direction: column;
    min-height: 48px;
    justify-content: space-between;
  }
  .about img {
    margin-bottom: 5px;
  }
  .about p {
    margin: 0;
  }
  .car-info {
    text-align: center;
    padding: 30px 25px;
  }
  .month-price {
    font-size: 18px;
    padding-left: 10px;
    height: 55px;
  }
  .footer-txt h3 {
    font-size: 32px;
  }
  .form-title p {
    font-size: 20px;
  }
  .form-title h6 {
    font-size: 45px;
  }
  .step {
    width: 28px;
    font-size: 16px;
  }
  .title h3 {
    font-size: 34px;
  }
  .section2 {
    padding: 50px 0 40px 0;
  }
}
@media only screen and (max-width: 355px) {
  .header-txt h1 {
    font-size: 32px;
  } 
  .header-txt h6 {
    font-size: 14px;
  }
}