@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  background-size: cover !important;
  background-attachment: fixed !important;
  background-position: start !important;
  background-repeat: no-repeat !important;
  font-family: "Poppins", sans-serif;
}

body {
  background: transparent;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5% 0%;
  display: grid;
  place-items: end center;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
body #car {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
body #car .swiper {
  width: 100%;
}
body #car .swiper .swiper-wrapper .swiper-slide {
  width: auto;
  height: 100%;
  display: grid;
  place-items: center;
}
body #car .swiper .swiper-wrapper .swiper-slide img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body #car.car-mob {
  display: none;
}
body::after {
  content: "";
  position: absolute;
  display: block;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 109, 152, 0), rgba(0, 0, 0, 0.6117647059));
  right: 0%;
  bottom: 0%;
  z-index: -1;
}
body .text {
  position: absolute;
  right: 10%;
  top: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  text-align: end;
  gap: 0;
}
body .text h1 {
  font-size: 40px;
  color: #fff;
}
body .text h2 {
  display: none;
}
body .text p {
  font-size: 20px;
  color: #fff;
  font-weight: 200;
  transition: all 0.5s ease;
}
body .text p:hover {
  transform: scale(0.95);
}
body h2 {
  font-size: 25px;
  color: #fff;
  text-align: end;
  position: fixed;
  right: 10%;
  bottom: 10%;
  z-index: 9;
}
body h2::before {
  content: url(../assets/icon/icon.svg);
  position: absolute;
  top: -20px;
  left: -30px;
  width: 150px;
  height: 150px;
  opacity: 0.3;
  z-index: -1;
}
body a {
  text-decoration: none;
}
body .conts {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: space-between;
  gap: 1rem 0;
  position: relative;
  bottom: 10%;
  right: -5%;
}
body .conts a button {
  background-color: #008DFF;
  color: #fff;
  min-height: 50px;
  width: 300px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25%;
  cursor: pointer;
  transition: all 0.5s ease;
}
body .conts a button:hover {
  background-color: #197ad8;
  transform: scale(0.98);
}
body .conts a button .icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 800px) {
  body {
    padding: 10% 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 2rem 0;
    overflow: hidden;
  }
  body #car {
    display: none;
  }
  body #car.car-mob {
    display: flex;
  }
  body #car .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: auto;
  }
  body::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 22, 0.431372549);
    right: 0%;
    bottom: 0%;
    z-index: -1;
  }
  body .text {
    order: 1;
    position: relative;
    top: -5%;
    right: auto;
    text-align: center;
    align-items: center;
  }
  body .text h1 {
    font-size: 25px;
  }
  body .text h2 {
    padding: 15% 0 0;
    display: block;
  }
  body .text p {
    font-weight: 300;
  }
  body .conts {
    width: 65%;
    right: 0;
    bottom: 0;
    order: 3;
  }
  body .conts a {
    width: 100%;
  }
  body .conts a button {
    width: 100%;
    min-height: 45px;
    padding: 0 20%;
  }
  body h2 {
    display: none;
    order: 2;
    position: relative;
    top: 0;
    right: 0;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    opacity: 0.5;
  }
  body h2::before {
    top: 10%;
    width: 120px;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */