/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* Font Awesome */
@import url("https://use.fontawesome.com/releases/v6.0.0/css/all.css");

/* Start Global Styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  outline: none;
}
*::selection {
  color: #fff;
  background: var(--main);
}
:root {
  --main: #96281E;
  --secondary: #AA2423;
  --black: #0A0A0C;
  --white: #fff;
}
html {
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 0.5rem;
}
a {
  color: var(--white);
  display: inline-block;
  text-decoration: none;
}
img {
  user-select: none;
  pointer-events: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
body {
  max-width: 2560px !important;
  margin: 0 auto;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}
section {
  padding-top: 80px;
  padding-bottom: 50px;
  overflow: hidden;
}
.container {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1320px;
  }
}

.section-flex .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-flex .content-side {
  max-width: 66%;
}
.section-flex .heading h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
  text-transform: capitalize;
}
.section-flex .sub-heading {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
.section-flex .sub-heading h3 {
  font-size: 25px;
  font-weight: 500;
  margin-left: 20px;
  text-transform: capitalize;
}
.txt {
  color: #4A4949;
  font-size: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .section-flex .container {
    flex-direction: column;
  }
  .section-flex .content-side {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .txt {
    font-size: 18px;
  }
}
/* Start Global Styles */

/* Start of the header section */
.header {
  display: flex;
  background: var(--black);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  min-height: 80px;
  z-index: 999;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .navbar ul {
  display: flex;
  align-items: center;
  list-style: none;
}
.header .navbar ul li {
  font-size: 15px;
  font-weight: 600;
  margin-left: 20px;
}
.header .navbar ul li:not(:last-child) a {
  position: relative;
  color: var(--white);
  padding: 20px;
  text-transform: capitalize;
  overflow: hidden;
  transition: 0.35s;
}
.header .navbar ul li:not(:last-child) a::after {
  content: "";
  position: absolute;
  left: -100%;
  bottom: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  transition: 0.35s;
}
.header .navbar ul li:not(:last-child) a:hover {
  color: var(--secondary);
}
.header .navbar ul li:not(:last-child) a:hover::after {
  left: 0;
}
.header .navbar ul li:last-child a {
  color: var(--white);
  padding: 5px 12px;
  border: 2px solid var(--secondary);
  border-radius: 5px;
  text-transform: capitalize;
  transition: 0.35s;
}
.header .navbar ul li:last-child a:hover {
  background: var(--secondary);
  color: var(--white);
}
.header .navbar .switch-lang {
  display: flex;
  align-items: center;
  margin-left: 50px;
}
.header .navbar .switch-lang .switch-box {
  position: relative;
  width: 55px;
}
.header .navbar .switch-lang img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header .navbar .switch-lang a {
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header .navbar .switch-lang a span.active {
  color: var(--secondary);
}

#toggle-bar {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 35px;
  display: none;
}
#toggle-bar i {
  font-size: 25px;
  color: var(--white);
}

@media screen and (max-width: 991px) {
  .header .navbar ul {
    position: absolute;
    top: 100%;
    right: -100%;
    background: var(--black);
    width: 100%;
    margin-right: 0;
    flex-direction: column;
    padding-bottom: 35px;
    box-shadow: 0px 10px 20px 0px #96281e1c;
    transform: translateX(100%);
    transition: 0.5s ease-in-out;
  }
  .header .navbar ul.active {
    right: 0;
    transform: translateX(0%);
  }
  .header .navbar .switch-lang {
    right: 0;
  }
  .header .navbar ul li {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
  .header .navbar ul li:last-child a {
    margin-top: 20px;
  }
  #toggle-bar {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .header .logo img {
    width: 100px;
  }
}
/* End of the header section */

/* Start Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background-image: url(imgs/hero-banner.svg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 55vh;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 80px;
}
.hero .hero-content {
  position: relative;
  color: var(--white);
  max-width: 500px;
}
.hero .hero-content h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.hero .hero-content .txt {
  color: var(--white);
}
.hero .hero-content .btn {
  display: inline-block;
  font-weight: 500;
  padding: 10px 45px;
  border-radius: 5px;
  background-color: var(--secondary);
  text-transform: uppercase;
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000ad;
    opacity: 0.6;
  }
  .hero .hero-content {
    max-width: 100%;
  }
  .hero .hero-content h1 {
    font-size: 25px;
  }
  .hero .hero-content .btn {
    padding: 10px 30px;
  }
}
/* End Hero Section */

/* Start Who We Are Section */
.who-we-are {
  background-color: #EDEDED;
}
.sub-who-we-are {
  background-color: var(--black);
  color: var(--white);
}
.who-we-are h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.who-we-are .txt {
  color: #4A4949;
}
.who-we-are .txt:first-of-type,
.sub-who-we-are .txt:first-of-type {
  margin-bottom: 40px;
}

.sub-who-we-are {
  background-color: var(--black);
}
.sub-who-we-are .txt {
  color: var(--white);
}
.sub-who-we-are .img-side img {
  position: relative;
  display: block;
  max-width: 310px;
  max-height: 220px;
  z-index: 2;
}
.sub-who-we-are .img-side {
  position: relative;
  margin-right: 25px;
}
.sub-who-we-are .img-side .img-bg {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 260px;
  height: 260px;
  background-color: var(--secondary);
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .who-we-are .img-side {
    display: none;
  }
  .sub-who-we-are .img-side {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .who-we-are h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .who-we-are .content-side {
    text-align: center;
    max-width: 100%;
  }
  .sub-who-we-are .img-side {
    margin-right: 0;
  }
}
/* End Who We Are Section */

/* Start Our Services Section */
.our-services {
  position: relative;
  background-image: url(imgs/Our-services.svg);
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 350px;
}
.our-services .content-side {
  position: relative;
}

@media screen and (max-width: 991px) {
  .our-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #DBDBDC;
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .our-services .heading h2 {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
/* End Our Services Section  */

/* Start Car Export Section */
.car-export  {
  background-color: #000;
  padding-top: 20px;
  padding-bottom: 20px;
}
.car-export .content-side {
  color: var(--white);
  text-align: right;
}
.car-export .content-side .sub-heading {
  justify-content: flex-end;
}
.car-export .content-side .sub-heading img {
  margin-left: 40px;
}
.car-export .content-side .txt {
  color: var(--white);
}
.clearance-banner img {
  width: 100%;
  object-fit: cover;
  transform: scale(1.05) rotate(2deg);
}

@media screen and (max-width: 991px) {
  .car-export  {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .car-export .img-side {
    margin-bottom: 30px;
  }
}
/* End Car Export Section */

/* Start Why Choose Us Section */
.why-choose-us h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 100px;
  text-transform: capitalize;
}
.why-choose-us .boxes-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
  row-gap: 60px;
  column-gap: 35px;
}
.why-choose-us .boxes-container .box {
  position: relative;
  background-color: #EDEDED;
  border-radius: 5px;
  padding: 75px 30px 35px;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.5s;
}
.why-choose-us .boxes-container .box:hover {
  transform: translateY(-25px);
}
.why-choose-us .boxes-container .box h4 {
  font-size: 25px;
  font-weight: 500;
  text-align: center !important;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.why-choose-us .boxes-container .box .txt {
  color: #4A4949;
  text-align: center;
}
.why-choose-us .boxes-container .box .img-box {
  position: absolute;
  left: 50%;
  top: -35px;
  width: 70px;
  height: 70px;
  transform: translateX(-50%);
}
.why-choose-us .boxes-container .box .img-box::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EDEDED;
  border-radius: 50%;
  z-index: -1;
}
.why-choose-us .boxes-container .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .why-choose-us h2 {
    font-size: 30px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 420px) {
  .why-choose-us .boxes-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .why-choose-us .boxes-container .box h4 {
    font-size: 20px;
  }
}
/* End Why Choose Us Section */

/* Start of the footer section */
.footer {
  position: relative;
  background-color: var(--black);
  color: var(--white);
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 20px
}
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 215px;
  height: 100%;
  background-color: #8F231D;
  z-index: 1;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.footer .form-container {
  max-width: 40%;
}
.footer .form-container .txt {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 40px;
}
.footer .form-container .input-box {
  position: relative;
  width: 100%;
  min-height: 50PX;
  margin-bottom: 40px;
}
.form-container .input-box label {
  position: absolute;
  top: 5px;
  left: 5px;
  color: var(--white);
  width: 100%;
  transition: 0.35s;
}
.form-container .input-box input,
.form-container .input-box textarea {
  width: 100%;
  font-size: 18px;
  padding: 10px;
  border: none;
  border-bottom: 2px solid #DADADA;
  background-color: transparent;
  color: var(--white);
  outline: none;
  user-select: none;
}
.form-container .input-box textarea {
  min-height: 50px;
  max-height: 200px;
  resize: vertical;
}
.form-container .input-box input:focus + label,
.form-container .input-box input:valid + label,
.form-container .input-box input.has-value + label,
.form-container .input-box textarea:focus + label,
.form-container .input-box textarea.has-value + label {
  top: -18px;
  left: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--main);
}
form input[type="submit"] {
  width: 100%;
  color: #555555;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  background-color: var(--white);
  cursor: pointer;
  padding: 20px 0;
  border: none;
  outline: none;
  text-transform: uppercase;
}

.footer .contact-info {
  position: absolute;
  right: 0;
  min-width: 485px;
  min-height: 425px;
  background-color: var(--white);
  padding: 45px;
  z-index: 10;
}
.footer .contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: -20px;
  width: 35px;
  height: 35px;
  background-color: #8F231D;
}
.footer .contact-info .img-box {
  position: absolute;
  top: 0;
  right: 60px;
}
.contact-info .info {
  position: relative;
  color: #707070;
  font-size: 17px;
  font-weight: 400;
}
.contact-info .info h4 {
  margin-bottom: 20px;
  font-weight: 400;
  margin: 15px 0 40px 40px;
}
.contact-info .info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}
.contact-info .info-box img {
  width: 18px;
  height: 20px;
  margin-right: 20px;
}
.contact-info .info-box a {
  color: #707070 !important;
  margin-bottom: 10px;
}

.footer .sub-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}
.footer .sub-footer .social-media {
  position: absolute;
  right: 60px;
  bottom: 25px;
  z-index: 10;
}
.footer .sub-footer .social-media a {
  display: inline-block;
  margin-left: 20px;
}
.footer .sub-footer .social-media a i {
  font-size: 20px;
}

@media screen and (max-width: 991px) {
  .footer .container {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .footer .form-container {
    max-width: 100%;
    z-index: 99;
  }
  .footer .contact-info {
    position: relative;
    right: auto;
    min-width: 100%;
    min-height: 100%;
    margin-bottom: 50px;
  }
  .contact-info .info-box {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 420px) {
  .footer .contact-info {
    padding: 25px;
  }
  .contact-info .img-box img {
    display: none;
  }
}
/* End of the footer section */