@import url("root.css");
:root {
  --topbar: 5rem;
  --menu: 8rem;
  --slide: 55rem;
}
@media (min-width: 1200px) {
  :root {
    --menu: 10rem;
  }
}
@media (min-width: 1600px) {
  :root {
    --slide: 65rem;
  }
}
.topbar {
  background-color: var(--colorgray);
  border-bottom: 0.1rem solid #f1f1f1;
}
.topbarside {
  height: var(--topbar);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .topbarside {
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .topbarside {
    justify-content: space-between;
  }
}
.topbarsideleft {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
}
.topbarsideleft a {
  font-size: 1.5rem;
  color: var(--textcolor);
  transition: color 300ms ease;
}
@media (min-width: 1600px) {
  .topbarsideleft a {
    font-size: 1.6rem;
  }
}
.topbarsideleft a:hover {
  color: var(--colorred);
}
.topbarsideright {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.topbarsiderightwp {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 2.5rem;
}
.topbarsiderightwp a {
  border-radius: 0.3rem;
  transition: all 300ms ease;
  background-color: var(--whatsappcolor);
  padding: 0.5rem 1rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.2rem;
}
@media (min-width: 1600px) {
  .topbarsiderightwp a {
    font-size: 1.4rem;
  }
}
.topbarsiderightwp a:hover {
  color: #fff;
  background-color: var(--whatsappcolorhover);
}
.topbarsiderightsocial {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.5rem;
  position: relative;
}
.topbarsiderightsocial::before {
  content: "";
  position: absolute;
  left: -1rem;
  width: 0.1rem;
  top: 1rem;
  bottom: 1rem;
  background-color: #ddd;
}
.topbarsiderightsocial a {
  width: 3rem;
  height: 3rem;
  border-radius: 0.3rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}
@media (min-width: 1600px) {
  .topbarsiderightsocial a {
    font-size: 1.6rem;
  }
}
.topbarsiderightsocial a:hover {
  background-color: var(--colorred);
  color: #fff;
}
.headermain {
  height: var(--menu);
  display: flex;
  justify-content: space-between;
}
.logo {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
}
.logo img {
  width: 12rem;
  object-fit: contain;
}
@media (min-width: 576px) {
  .logo img {
    width: 14rem;
  }
}
@media (min-width: 1500px) {
  .logo img {
    width: 16rem;
  }
}
@media (min-width: 1600px) {
  .logo img {
    width: 18rem;
  }
}
.headerlinks {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4rem;
  height: 100%;
  flex: 2;
}
@media (min-width: 1600px) {
  .headerlinks {
    column-gap: 6rem;
  }
}
.headerlinksitem {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--textcolor);
  cursor: pointer;
  transition: all 300ms ease;
}
@media (min-width: 1600px) {
  .headerlinksitem {
    font-size: 1.6rem;
  }
}
.headerlinksitem i {
  margin-left: 0.5rem;
  display: inline-block;
  transition: all 300ms ease;
  font-weight: 400 !important;
}
.headerlinksitem:hover i {
  transform: rotate(-45deg);
}
.headerlinksitem:hover {
  color: var(--colorred);
}
.headermainend {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  column-gap: 0.5rem;
}
.headercontactlink {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--colorred);
  font-weight: 500;
  text-transform: uppercase;
  transition: all 300ms ease;
}
.headercontactlink i {
  display: inline-block;
  margin-right: 0.5rem;
  font-weight: 400 !important;
}
.headercontactlink:hover {
  background-color: var(--colorredhover);
  color: #fff;
}
#search {
  padding: 0;
  height: 3.1rem;
  width: 3.1rem;
  border-radius: 0.3rem;
  background-color: var(--textcolor);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  transition: all 300ms ease;
}
@media (min-width: 576px) {
  #search {
    height: 4.1rem;
    width: 4.1rem;
  }
}
#search:hover {
  color: #fff;
  background-color: #333;
}
.slideside {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: var(--slide);
}
.slideside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.63) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.slidetext {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .slidetext {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .slidetext {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .slidetext {
    width: 60%;
  }
}
@media (min-width: 1500px) {
  .slidetext {
    width: 55%;
  }
}
.slidetext h1 {
  font-family: var(--fonttitle);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
}
@media (min-width: 576px) {
  .slidetext h1 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .slidetext h1 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .slidetext h1 {
    font-size: 5rem;
  }
}
@media (min-width: 1500px) {
  .slidetext h1 {
    font-size: 5.5rem;
  }
}
.slidetext h1::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: 30%;
  height: 0.2rem;
  background-color: var(--colorred);
  border-radius: 5rem;
}
.slidetext p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 576px) {
  .slidetext p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .slidetext p {
    font-size: 1.6rem;
  }
}
.slidelink {
  margin-top: 2rem;
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--colorred);
  font-weight: 500;
  transition: all 300ms ease;
}
@media (min-width: 576px) {
  .slidelink {
    font-size: 1.5rem;
  }
}
.slidelink:hover {
  background-color: var(--colorredhover);
  color: #fff;
}
.slidelink i {
  font-weight: 400 !important;
  display: inline-block;
  transition: all 300ms ease;
}
.slidelink:hover i {
  transform: translateX(0.5rem);
}
.swiper-slidermain .swiper-slide-active .slidetext h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 0.2s;
}
.swiper-slidermain .swiper-slide-active .slidetext h1::after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.6s;
}
.swiper-slidermain .swiper-slide-active .slidetext p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 1s;
}
.swiper-slidermain .swiper-slide-active .slidelink {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 1.4s;
}
.swiper-slidermain .swiper-pagination-bullet {
  width: 3rem;
  height: 0.4rem;
  background-color: #fff;
  border-radius: 0.1rem;
  outline: none !important;
}
.swiper-slidermain .swiper-pagination-bullet-active {
  background-color: var(--colorred) !important;
}
.dropdowncontent {
  position: relative;
}
.dropdownmain {
  position: absolute;
  z-index: 5;
  top: 100%;
  left: -8rem;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 25rem;
  transition: transform 0.3s ease-in-out;
  transform-origin: top right;
  transform: perspective(600px) rotateX(-90deg);
}
.dropdowncontent:hover .dropdownmain {
  display: block;
  transform: perspective(600px) rotateX(0deg);
}
.dropdownlink {
  width: 100%;
  font-size: 1.5rem;
  color: var(--textcolor);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.3rem;
  padding: 0.8rem 1rem;
  font-weight: 400;
  transition: all 300ms ease;
  text-transform: capitalize;
}
@media (min-width: 1600px) {
  .dropdownlink {
    font-size: 1.6rem;
  }
}
.dropdownlink:hover {
  background-color: var(--textcolor) !important;
  color: #fff !important;
}
.dropdownlink:not(:last-child) {
  margin-bottom: 0.3rem;
}
.dropdownlink i {
  display: inline-block;
  font-weight: 400;
  transition: all 300ms eas;
  transform: rotate(0) !important;
}
.dropdownlink:hover i {
  transform: translateX(0.5rem) !important;
}
.searchbar {
  padding: 1rem 0;
  background-color: var(--colorgray);
  border-top: 0.1rem solid #f1f1f1;
  display: none;
}
#mobilemenuicon,
#mobilemenuicon:hover,
#mobilemenuicon:focus {
  background-color: var(--colorgray);
  color: var(--textcolor);
  font-size: 1.5rem;
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  #mobilemenuicon,
  #mobilemenuicon:hover,
  #mobilemenuicon:focus {
    font-size: 1.6rem;
    width: 4.1rem;
    height: 4.1rem;
  }
}
.homefilter {
  padding: 4rem 0;
  background-color: var(--colorgray);
}
.homefiltercontent {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.homefiltercontenttitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem dashed #cecece;
}
.homefiltercontenttitle h3 {
  color: var(--colorred);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .homefiltercontenttitle h3 {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  .homefiltercontenttitle h3 {
    font-size: 2rem;
  }
}
.homefiltercontenttitle p {
  font-size: 1.4rem;
}
@media (min-width: 576px) {
  .homefiltercontenttitle p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .homefiltercontenttitle p {
    font-size: 1.6rem;
  }
}
.homefiltercontent form {
  width: 100%;
}
.homefiltercontent .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0 0 1rem 0;
}
@media (min-width: 992px) {
  .homefiltercontent .form-group {
    margin: 0;
  }
}
.homefiltercontent button[type="submit"] {
  width: 100%;
  height: 4.41rem;
  background-color: var(--colorred);
  border: 0.1rem solid var(--colorred);
  border-radius: 0.3rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 300ms ease;
}
.homefiltercontent button[type="submit"]:hover {
  background-color: var(--colorredhover);
  border: 0.1rem solid var(--colorred);
  color: #fff;
}
.homeaboutsection {
  position: relative;
  background-image: url(../images/about.jpg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 60%;
}
@media (min-width: 576px) {
  .homeaboutsection {
    background-size: 40%;
  }
}
@media (min-width: 768px) {
  .homeaboutsection {
    background-size: 50%;
  }
}
@media (min-width: 992px) {
  .homeaboutsection {
    background-size: 60%;
  }
}
@media (min-width: 1500px) {
  .homeaboutsection {
    background-size: 60%;
  }
}
@media (min-width: 1600px) {
  .homeaboutsection {
    background-size: 55%;
  }
}
.homeabout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .homeabout {
    width: 50rem;
  }
}
@media (min-width: 992px) {
  .homeabout {
    width: 60rem;
  }
}
@media (min-width: 1500px) {
  .homeabout {
    width: 70rem;
  }
}
.homeabouttitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem dashed #cecece;
}
.homeabouttitle span {
  display: inline-block;
  margin-bottom: 2rem;
  background-color: var(--colorred);
  color: #fff;
  border-radius: 0.3rem;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .homeabouttitle span {
    font-size: 1.4rem;
  }
}
.homeabouttitle h2 {
  font-size: 2.2rem;
  font-weight: 900;
}
@media (min-width: 576px) {
  .homeabouttitle h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1400px) {
  .homeabouttitle h2 {
    font-size: 4rem;
  }
}
.homeabouttext {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.homeabouttext p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 1600px) {
  .homeabouttext p {
    font-size: 1.6rem;
  }
}
.aboutlink {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  background-color: var(--colorred);
  color: #fff;
  display: inline-block;
  margin-top: 1rem;
  transition: all 300ms ease;
  font-size: 1.5rem;
}
@media (min-width: 1600px) {
  .aboutlink {
    font-size: 1.6rem;
  }
}
.aboutlink:hover {
  background-color: var(--textcolor);
  color: #fff;
}
.aboutlink i {
  display: inline-block;
  transition: all 300ms ease;
}
.aboutlink:hover i {
  transform: translateX(0.5rem);
}
.homeBG {
  background-color: #253242;
}
.homecarstitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .homecarstitle {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.homecarstitleleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .homecarstitleleft {
    margin-bottom: 0;
    flex: 2;
  }
}
.homecarstitleleft span {
  color: var(--colorred);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .homecarstitleleft span {
    font-size: 1.6rem;
  }
}
.homecarstitleleft h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .homecarstitleleft h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .homecarstitleleft h2 {
    font-size: 3rem;
  }
}
.homecarstitleleft p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.homecarstitleright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 768px) {
  .homecarstitleright {
    flex: 1;
  }
}
.homecarstitleright a {
  padding: 1rem 2rem;
  border-radius: 0.3rem;
  background-color: #fff;
  color: #253242;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 300ms ease;
}
.homecarstitleright a:hover {
  color: #fff;
  background-color: var(--colorred);
}
.homecarstitleright a i {
  margin-left: 0.5rem;
  transition: all 300ms ease;
  display: inline-block;
}
.homecarstitleright a:hover i {
  transform: translateX(0.5rem);
}
.carboxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.carboxesimage {
  border-radius: 0.5rem;
  overflow: hidden;
}
.carboxesimage img {
  object-fit: cover;
  aspect-ratio: 1.5;
  transition: all 1.2s ease-in-out;
}
.carboxes:hover .carboxesimage img {
  transform: scale(1.2);
}
.carboxes .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .carboxes .content {
    padding: 2rem;
  }
}
.carboxes .content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  flex: 1;
}
@media (min-width: 1600px) {
  .carboxes .content h3 {
    font-size: 1.8rem;
  }
}
.carboxes .content h3 a {
  color: #fff;
  transition: color 300ms ease;
}
.carscontentdesc {
  width: 100%;
  border-radius: 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  margin: 1rem 0;
  padding: 1rem;
  flex-wrap: wrap;
  row-gap: 1rem;
}
.carscontentdescitem {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: auto;
  width: 100%;
}
@media (min-width: 1400px) {
  .carscontentdescitem {
    flex: 1;
  }
}
.carscontentdescitem figure {
  width: 2rem;
  margin-right: 0.8rem;
}
@media (min-width: 1200px) {
  .carscontentdescitem figure {
    width: 2.5rem;
  }
}
.carscontentdescitem p {
  font-size: 1.5rem;
  color: #fff;
}
.carboxesend {
  width: 100%;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.carboxesend h4 {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 576px) {
  .carboxesend h4 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .carboxesend h4 {
    font-size: 1.6rem;
  }
}
.carboxesend a {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 300ms ease;
}
.carboxesend a:hover {
  color: var(--colorred);
}
.cardetailP {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}
.whiteBG .homecarstitleleft h2 {
  color: var(--textcolor);
}
.whiteBG .homecarstitleleft p {
  color: var(--textcolor);
}
.whiteBG .homecarstitleright a {
  background-color: var(--colorred);
  color: #fff;
}
.whiteBG .homecarstitleright a:hover {
  background-color: var(--textcolor);
  color: #fff;
}
.blogbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.blogboximage {
  border-radius: 1rem;
  overflow: hidden;
}
.blogboximage img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2;
  transition: all 1.2s ease-in-out;
}
.blogbox:hover .blogboximage img {
  transform: scale(1.2);
  filter: brightness(0.5);
}
.blogbox .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 2rem;
}
.blogbox .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.blogbox .content h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.blogbox:hover .content h3 a {
  color: var(--colorred);
}
.blogbox .content p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.bloglink {
  font-weight: 500;
  display: inline-block;
  color: var(--textcolor);
  transition: all 300ms ease;
  font-size: 1.5rem;
  position: relative;
}
.bloglink i {
  font-size: 1.2rem;
  display: inline-block;
  transition: all 300ms ease;
}
.bloglink:hover {
  color: var(--colorred);
}
.bloglink:hover i {
  transform: translateX(0.5rem);
}
.bloglink::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  right: 100%;
  height: 0.2rem;
  background-color: var(--colorred);
  transition: all 300ms ease-in-out;
}
.bloglink:hover::before {
  right: 0;
}
.footer {
  padding: 5rem 0 2rem 0;
  background-color: #000;
  border-top: 1rem solid var(--colorred);
}
.footerbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.footerlogo {
  width: 15rem;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .footerlogo {
    width: 18rem;
  }
}
.footersocial {
  width: 100%;
  text-align: center;
}
@media (min-width: 576px) {
  .footersocial {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .footersocial {
    text-align: left;
  }
}
.footersocialtitle {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
}
.footersocial a {
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  transition: all 300ms ease;
}
.footersocial a:hover {
  border: 0.1rem solid var(--colorred);
  background-color: var(--colorred);
  color: #fff;
}
.footerbox h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  color: #fff;
}
.footerbox h4::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 3rem;
  height: 0.2rem;
  background-color: var(--colorred);
}
.footerbox ul li {
  padding: 0.3rem 0;
  transition: all 300ms ease;
}
.footerbox ul li a {
  font-size: 1.5rem;
  color: #fff;
  transition: all 300ms ease;
}
.footerbox ul li:hover {
  transform: translateX(0.5rem);
}
.footerbox ul li:hover a {
  color: var(--colorred);
}
.footerboxitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footerboxitemicon {
  width: 3.5rem;
  height: 3.5rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.footerboxitemcontent {
  width: calc(100% - 3.5rem);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.footerboxitemcontent span {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.footerboxitemcontent a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 300ms ease;
}
.footerboxitemcontent a:hover {
  color: var(--colorred);
}
.deep {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.1rem dashed rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.deep a {
  color: #fff;
  font-size: 2rem;
  transition: all 300ms ease;
  font-family: "pill";
  transition: all 300ms ease;
}
.deep a:hover {
  color: var(--colorred);
}
.footerboxfirst {
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .footerboxfirst {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .footerboxfirst {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.pagemap {
  background-color: #000;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .pagemap {
    padding: 4rem 0;
  }
}
.pagemap h1 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .pagemap h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  .pagemap h1 {
    font-size: 2.5rem;
  }
}
.pagemap ul {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
  flex-wrap: wrap;
}
.pagemap ul li {
  font-size: 1.4rem;
  color: #fff;
  position: relative;
}
@media (min-width: 576px) {
  .pagemap ul li {
    font-size: 1.5rem;
  }
}
.pagemap ul li a {
  font-size: 1.4rem;
  color: #fff;
  transition: color 300ms ease;
}
@media (min-width: 576px) {
  .pagemap ul li a {
    font-size: 1.5rem;
  }
}
.pagemap ul li:hover a {
  color: var(--colorred);
}
.pagemap ul li.active {
  font-weight: 600;
  color: var(--colorred);
}
.pagemap ul li:not(:last-child)::after {
  content: "\EA54";
  position: absolute;
  right: -1.8rem;
  color: #fff;
  font-family: "remixicon";
  top: 0.1rem;
}
.pagedesctitle {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid var(--textcolor);
}
.pagedesctitle h2 {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .pagedesctitle h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .pagedesctitle h2 {
    font-size: 2rem;
  }
}
.bloginlineimages {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.bloginlineimages img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .blogPL5 {
    padding-left: 3rem;
  }
  .blogPR5 {
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .blogPL5 {
    padding-left: 5rem;
  }
  .blogPR5 {
    padding-right: 5rem;
  }
}
.affixitem {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .affixitem {
    position: sticky;
    top: 1rem;
    margin-top: 0;
  }
}
.otherblogs {
  border-radius: 0.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--colorgray);
  padding: 2rem;
  border: 0.1rem solid #f1f1f1;
}
.otherblogs h4 {
  color: var(--colorred);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.otherblogs a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  border-radius: 0.3rem;
  transition: all 300ms ease;
  color: var(--textcolor);
  font-size: 1.5rem;
  padding: 0.5rem;
}
.otherblogs a i {
  margin-right: 0.5rem;
}
.otherblogs a:hover {
  background-color: var(--textcolor);
  color: #fff;
}
.otherblogs a:not(:last-child) {
  margin-bottom: 0.5rem;
}
.carboxesBG {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #f1f1f1;
}
.carboxesBG .content h3 a {
  color: var(--textcolor);
}
.carboxesBG .cardetailP {
  color: var(--textcolor);
}
.carboxesBG .carscontentdesc {
  background-color: rgba(0, 0, 0, 0.1);
}
.carboxesBG .carscontentdescitem p {
  color: var(--textcolor);
}
.carboxesBG .carboxesend {
  border-top: 0.1rem dashed rgba(0, 0, 0, 0.1);
}
.carboxesBG .carboxesend h4 {
  color: var(--textcolor);
}
.carboxesBG .carboxesend a {
  color: var(--colorred);
}
.carboxesBG .carboxesend a:hover {
  color: var(--colorredhover);
}
.filterboxesitem {
  margin-bottom: 1rem;
}
.filterbutton {
  border-radius: 0.3rem;
  padding: 1rem 0;
  color: #fff;
  background-color: var(--colorred);
  transition: all 300ms ease;
  display: block;
  font-size: 1.4rem;
  width: 100%;
}
.filterbutton:hover {
  background-color: var(--colorredhover);
  color: #fff;
}
@media (min-width: 768px) {
  .affixitem2 {
    position: sticky;
    top: 1rem;
  }
}
.carsinlinetitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .carsinlinetitle {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.carsinlinetitleleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 2;
  width: 100%;
}
@media (min-width: 768px) {
  .carsinlinetitleleft {
    width: auto;
  }
}
.carsinlinetitleleft h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .carsinlinetitleleft h2 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .carsinlinetitleleft h2 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1400px) {
  .carsinlinetitleleft h2 {
    font-size: 2.5rem;
  }
}
.carsinlinetitleleft p {
  font-size: 1.5rem;
  opacity: 0.8;
}
.carspart {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1rem;
  margin-top: 1rem;
  width: 100%;
  row-gap: 1rem;
}
.carspartitem {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--colorgray);
  border-radius: 0.3rem;
  min-width: 12rem;
  padding: 0.5rem 1rem;
  flex: 1;
}
@media (min-width: 768px) {
  .carspartitem {
    flex: 0;
  }
}
.carspartitem span {
  font-size: 1.2rem;
  font-weight: 500;
}
.carspartitem p {
  opacity: 1;
  font-size: 1.4rem;
}
.carsinlinetitleright {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  column-gap: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .carsinlinetitleright {
    width: auto;
  }
}
.rightitem {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background-color: var(--colorgray);
  border-radius: 0.3rem;
  width: 100%;
}
@media (min-width: 768px) {
  .rightitem {
    width: auto;
  }
}
.rightitem span {
  font-size: 1.2rem;
  font-weight: 400;
}
.rightitem p {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .rightitem p {
    font-size: 2rem;
  }
}
.carsbutton {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .carsbutton {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0;
  }
}
@media (min-width: 768px) {
  .carsbutton {
    margin-bottom: 0;
  }
}
.rentbutton {
  border-radius: 0.3rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--colorred);
  padding: 1rem 2rem;
  transition: all 300ms ease;
  text-align: center;
}
.rentbutton:hover {
  background-color: var(--colorredhover);
  color: #fff;
}
.carswp {
  border-radius: 0.3rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--whatsappcolor);
  padding: 1rem 2rem;
  transition: all 300ms ease;
  text-align: center;
}
.carswp:hover {
  background-color: var(--whatsappcolorhover);
  color: #fff;
}
.filterModal {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--colorred);
  transition: all 300ms ease;
}
.filterModal:hover {
  background-color: var(--colorredhover);
  color: #fff;
}
.contactinfo {
  border-radius: 0.5rem;
  border: 0.1rem solid var(--colorgray);
  padding: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.contactinfotitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contactinfo h3 {
  color: var(--colorred);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.contactinfo p {
  font-size: 1.5rem;
  opacity: 0.8;
}
.contactinfoitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.contactinfoitem:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid var(--colorgray);
}
.contactinfoitemicon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--textcolor);
  border: 0.1rem solid var(--textcolor);
  font-size: 1.6rem;
}
.contactinfoitem .content {
  width: calc(100% - 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
}
.contactinfoitem .content h4 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.contactinfoitem .content a {
  font-size: 1.5rem;
  color: var(--textcolor);
  transition: color 300ms ease;
}
.contactinfoitem .content a:hover {
  color: var(--colorred);
}
.contactinfotitle2 {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contactinfotitle2 h4 {
  color: var(--colorred);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.contactsocial {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
}
.contactsocial a {
  font-size: 1.6rem;
  color: var(--textcolor);
  transition: all 300ms ease;
}
.contactsocial a:hover {
  color: var(--colorred);
}
.contactinfo button[type="submit"] {
  border-radius: 0.3rem;
  background-color: var(--colorred);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  transition: all 300ms ease;
}
.contactinfo button[type="submit"]:hover {
  background-color: var(--colorredhover);
  color: #fff;
}
.searchresultstitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid var(--textcolor);
}
.searchresultstitle h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.searchresultstitle ul {
  border-radius: 0.3rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
  background-color: var(--colorgray);
  border: 0.1rem solid #f4f4f4;
  column-gap: 1rem;
}
.searchresultstitle ul li {
  font-size: 1.4rem;
}
.searchresultscontent {
  margin-bottom: 1rem;
}
.searchresultscontent h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.searchresultscontent a {
  background-color: var(--colorgray);
  transition: all 300ms ease;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: var(--textcolor);
  font-size: 1.4rem;
  padding: 0.8rem 1rem;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
}
.searchresultscontent a:hover {
  color: #fff;
  background-color: var(--colorred);
}
.searchresultscontent a i {
  color: var(--colorred);
  transition: all 300ms ease;
  margin-right: 0.5rem;
}
.searchresultscontent a:hover i {
  color: #fff;
}
.sendreq {
  width: 100%;
  border-radius: 0.3rem;
  transition: all 300ms ease;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem 0;
  display: block;
  text-align: center;
  background-color: var(--colorred);
}
.sendreq:hover {
  color: #fff;
  background-color: var(--textcolor);
}
.mobilemenu {
  padding: 2rem 0;
  background-color: var(--colorgray);
  border-top: 0.2rem solid var(--textcolor);
  display: none;
}
.mobilemenucontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.mobilemenulink1,
.mobilemenulink2 {
  cursor: pointer;
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--textcolor);
  transition: all 300ms ease;
  border-radius: 0.3rem;
}
.mobilemenulink1:hover,
.mobilemenulink2:hover {
  background-color: var(--colorred);
  color: #fff;
}
.mobilemenulink1 i,
.mobilemenulink2 i {
  display: inline-block;
  transition: all 300ms ease;
}
.mobilemenulink1:hover i,
.mobilemenulink2:hover i {
  transform: translateX(0.5rem);
}
.mobiledropdowncontent {
  background-color: #f4f4f4;
  padding: 1rem 0;
  display: none;
}
.mobiledroplinks {
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: 0.3rem;
  transition: all 300ms ease;
  color: var(--textcolor);
  display: block;
  font-size: 1.4rem;
}
.mobiledroplinks:not(:last-child) {
  margin-bottom: 0.3rem;
}
.mobiledroplinks:hover {
  background-color: var(--colorred);
  color: #fff;
}
