/* cutome fonts */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

:root {
  --primary: #ff0000;
  --secondary: #ea2429;
  --tertiary: #010101;
  --border-primary: #ff0000;
  --ff-primary: "Inter", sans-serif;
  --ff-secondary: "K2D", sans-serif;

  --section-divider-height: 60;
  --section-divider-width: 1920;
  --section-divider-ratio: calc(
    100% * var(--section-divider-height) / var(--section-divider-width)
  );
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-primary);
}
body {
  margin: 0;
  font-family: var(--ff-primary);
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1400px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 600px) {
  .container {
    padding: 10px !important;
  }
}
.navbar .badge {
  margin: 0 5px;
}
a.navbar-brand {
  width: 200px;
}

@media screen and (max-width: 767px) {
  .header {
    background-color: #000000;
  }
}

.badge {
  font-size: 18px !important;
  border-radius: 10px;
  font-weight: 400 !important;
}
@media (max-width: 767px) {
  .topbar .border-left {
    border-left: 0 !important;
  }
}

@media (max-width: 430px) {
  .badge {
    font-size: 16px;
    border-radius: 10px;
    font-weight: 400 !important;
  }
}
.form-control {
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 10px;
}
textarea {
  height: auto !important;
}
.form-control:focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #ff0000;
  outline: 0;
  box-shadow: 0 0 0 0.2rem #168b4321;
}
.navbar-toggler {
  color: var(--primary);
  background-color: #ffffff;
  border: var(--bs-border-width) solid var(--primary);
}
.bg-quarternary {
  background-color: var(--quarternary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-yellow {
  background-color: var(--yellow) !important;
}
.bg-secondary-100 {
  background-color: #ea24291a !important;
}
.bg-primary-50 {
  background-color: var(--primary-50) !important;
}
.bg-primary-100 {
  background-color: var(--primary-100) !important;
}
.bg-white {
  background-color: #ffffff !important;
}
.bg-gray-50 {
  background-color: #010101 !important;
}
.object-fit-cover {
  object-fit: cover;
}
.p-100 {
  padding: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.m-100 {
  margin: 100px;
}
.mt-100 {
  margin-top: 100px;
}
.mb-100 {
  margin-bottom: 100px;
}
.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-regular {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-samibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-bolder {
  font-weight: 800 !important;
}
.border-white {
  border-color: #ffffff !important;
}
.opacity-1 {
  opacity: 1 !important;
}

button {
  outline: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-secondary);
  line-height: 1.2em !important;
  color: #000000;
}
h1,
.h1 {
  font-size: 110px;
  font-weight: bold;
}

h2,
.h2 {
  font-size: 50px;
  font-weight: bold;
}
h3,
.h3 {
  font-size: 30px;
  font-weight: 600;
}
h4,
.h4 {
  font-size: 26px;
  font-weight: 600;
}
h5,
.h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4em !important;
}
h6,
.h6 {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 430px) {
  h1 {
    font-size: 48px;
    font-weight: 700;
  }
  h2 {
    font-size: 36px;
    font-weight: 700;
  }
  h3 {
    font-size: 28px;
    font-weight: 700;
  }
  h4 {
    font-size: 24px;
    font-weight: 700;
  }
  h5 {
    font-size: 20px;
    font-weight: 400;
  }
}
.btn-shadow {
  box-shadow: 0px 10px 10px rgba(255, 0, 0, 0.16);
}
.rounded-3 {
  border-radius: 10px !important;
}
.rounded-5 {
  border-radius: 20px !important;
}
.rounded-6 {
  border-radius: 24px !important;
}

p,
a,
label,
span,
li,
div {
  font-family: var(--ff-secondary);
}
.text-body {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #010101;
}

a {
  text-decoration: none;
  color: var(--primary);
  opacity: 1;
  transition: all 0.356s;
}
a:hover {
  transition: all 0.356s;
}
label {
  font-size: 18px;
}
html,
body {
  overflow-x: hidden;
}

.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 10;
}
.z-2 {
  z-index: 20;
}

.z-9 {
  z-index: 999999;
}

.invert {
  filter: invert(100%) !important;
}

.mirror {
  transform: scaleX(-1) !important;
}

.min-h-inherit {
  min-height: inherit;
}

.o-cover {
  object-fit: cover;
}

.w-short {
  width: 75%;
}
.search-input {
  width: 67%;
  margin: 0 auto;
}
.search-input form {
  width: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.cursor-pointer {
  cursor: pointer;
}
@media (min-width: 1200px) {
  .col-xl-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
}

.rotate-45 {
  rotate: 45deg;
}

/****************************
  *************Form**************
  ****************************/

/****************************
  *************BG**************
  ****************************/
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-tertiary {
  background-color: var(--tertiary) !important;
}
.bg-quarternary {
  background-color: var(--quarternary) !important;
}
.bg-black {
  background-color: #000000 !important;
}

.bg-gradient {
  background: var(--primary-50);
  background: -moz-linear-gradient(
    90.01deg,
    var(--primary-50) 50%,
    rgba(8, 177, 244, 0) 50%
  );
  background: -webkit-linear-gradient(
    90.01deg,
    var(--primary-50) 50%,
    rgba(8, 177, 244, 0) 50%
  );
  background: linear-gradient(
    180deg,
    var(--primary-50) 50%,
    rgba(8, 177, 244, 0) 50%
  ) !important;
}
.bg-gradient-2 {
  background: var(--primary-50);
  background: -moz-linear-gradient(
    90.01deg,
    var(--primary-50) 50%,
    rgba(8, 177, 244, 0) 50%
  );
  background: -webkit-linear-gradient(
    90.01deg,
    var(--primary-50) 50%,
    rgba(8, 177, 244, 0) 50%
  );
  background: linear-gradient(
    180deg,
    var(--primary-50) 70%,
    rgba(8, 177, 244, 0) 30%
  ) !important;
}
/****************************
  *************BORDER**************
  ****************************/
.border-primary {
  border-color: #ff0000 !important;
}
.border-secondary {
  border-color: var(--secondary) !important;
}
.border-tertiary {
  border-color: var(--tertiary) !important;
}
.border-quarternary {
  border-color: var(--quarternary) !important;
}

.border-black {
  border-color: #000000 !important;
}

/****************************
  ************FONT*************
  ****************************/
.font-primary {
  font-family: var(--ff-primary) !important;
}

.font-secondary {
  font-family: var(--ff-secondary) !important;
}

/****************************
  ************TEXT*************
  ****************************/
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-yellow {
  color: var(--yellow) !important;
}
.text-beige {
  color: var(--beige) !important;
}
.text-tertiary {
  color: var(--tertiary) !important;
}
.text-quarternary {
  color: var(--quarternary) !important;
}
.text-white {
  color: #eee3e3 !important;
}
.text-black {
  color: #000000 !important;
}

/****************************
  **********DIVIDER************
  ****************************/
.has-divider {
  position: relative;
  padding-bottom: var(--section-divider-ratio);
}
.section-divider {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
}
/* w-md-50 */
@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }
}
/* w-md-75 */
@media (min-width: 768px) {
  .w-md-75 {
    width: 75% !important;
  }
}

/****************************
  *********NAVIGATION**********
  ****************************/
nav li a {
  margin: 0;
  background-color: transparent;
  transition: background-color 0.25s, color 0.25s;
}
.bg-black-100 {
  background: #000000b5;
}
.nav-link {
  font-size: 20px;
  position: relative;
  letter-spacing: 1.1px;
  color: #fff !important;
}

#navbarDropdown:hover + .dropdown-menu {
  display: block;
}
.dropdown-menu:hover {
  display: block;
}
.dropdown-menu {
  display: none;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--primary);
}
/* .content {
  margin-top: 211.92px;
} */
/* @media screen and (max-width: 768px) {
  .content {
    margin-top: 66px;
  }
} */
@media screen and (min-width: 1200px) {
  .Banner {
    font-size: 22px;
  }
}

@media screen and (min-width: 800px) {
  .Banner {
    font-size: 20px;
  }
}

.Banner {
  color: var(--primary);
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}

.hero-section {
  background-image: url("../images/a1-tint-hero-compressed.jpg");
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
  padding: 100px 0;
  background-color: black;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .hero-section {
    height: 1024px;
padding-top: 200px;
  }
}

.hover\:bg-yellow:hover {
  background-color: var(--yellow) !important;
}
.hover\:shadow-primary:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.shadow-primary {
  box-shadow: #0000001a 0px 10px 20px;
}
.rounded-30 {
  border-radius: 30px;
}
.swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding-bottom: 50px;
}
.swiper-v2.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  overflow: hidden;
}
.hero-car {
  position: absolute;
  bottom: -70%;
  right: 0;
}
img.hero-text-img {
  width: 110px;
  position: absolute;
  left: auto;
  right: -8%;
}
#Progress {
  width: 110px;
  height: 5px;
  background-color: #e5e5e5;
  border-radius: 15px;
}

#Bar {
  height: 5px;
  background-color: var(--primary);
  border-radius: 15px;
}

.tabs {
  border-bottom: 2px solid #ccc;
  margin-bottom: 50px;
}

.tab-button {
  padding: 20px 10px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  color: #fff;
  transition: border 0.3s ease;
  margin-bottom: -2px;
}

.tab-button.active {
  border-bottom: 2px solid var(--border-primary);
}

.tab-content {
  display: none;
  padding: 20px;
  scale: 1.2;
}

.tab-content.active {
  display: block;
}
.swiper-wrapper {
  display: flex;
}
.swiper-wrapper .card {
  position: relative;
  border: 0;
}
.swiper-wrapper .card .service-title {
  display: none;
}

.swiper-wrapper .card:hover .service-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  height: 100%;
  background-color: #00000094;
}
td.border-0 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  padding: 10px 0;
}
.form-label {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #01010177;
}
.hero-text-wrapper {
  background-color: #000000c0;
}

span.navbar-toggler-icon {
  height: 3px;
  background: #000;
  border-radius: 10px;
}

button.navbar-toggler:after {
  height: 3px;
  background: #000;
  border-radius: 10px;
  width: 100%;
  content: "";
  display: block;
}

button.navbar-toggler:before {
  height: 3px;
  background: #000;
  border-radius: 10px;
  width: 100%;
  content: "";
  display: block;
  margin-bottom: -7px;
}

button.navbar-toggler {
  padding: 10px;
}
body {
  overflow-x: hidden;
}

.services-content {
  padding: 2rem;
}
.services-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.services-description {
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.services-button {
  border-radius: 0;
  padding: 0.5rem 2.5rem;
}
.services-section {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .services-section {
    padding: 3rem 0;
  }
  .services-content {
    padding: 1.5rem;
  }
  .services-title {
    font-size: 1.75rem;
  }
}
.texture-background {
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://www.transparenttextures.com/patterns/clean-gray-paper.png);
  background-position: center;
  background-size: auto, auto;
}

.car-wraps {
  height: 750px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .car-wraps {
    height: auto;
    object-fit: auto;
  }
}

.hero-background {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, #000000 100%);
  height: 100%;
  width: 100%;
  position: absolute;
}
.ab-sec img {
  height: 680px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .wrap-sec {
    margin-top: -200px;
  }
}
@media (max-width: 600px) {
.logo-text {
   font-size: 17px !important
}
}