* {
  box-sizing: border-box;
}

body {
  background-color: #1d201f;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  overflow-x: hidden !important;
}

@font-face {
  font-family: "BebasNeue";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/Bebas_Neue/BebasNeue-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Inter/Inter_18pt-Light.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/Inter/Inter_18pt-Thin.ttf) format("truetype");
}

.overflow {
  overflow: hidden !important;
}

.desktop-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
  transition: all 0.3s ease-in-out;
}

.desktop-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.7rem 3.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  font-family: "Inter", sans-serif;
  font-weight: 100;
  font-size: 1.2rem;

  color: #fcf6ec;
  text-decoration: none;
}

.current-site {
  color: #4a9c9d !important;
  font-weight: 200 !important;
}

.desktop-header button {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #4a9c9d;
  border: none;
  color: #fcf6ec;
  cursor: pointer;
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
  font-weight: 100;
  font-family: "Inter", sans-serif;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 1.2rem 1rem;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-mobile {
  width: 180px;
  height: auto;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #fcf7eb;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fcf7eb;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #1d201f;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  top: 30%;
  left: 1.4rem;
  padding: 30% 2rem 2rem 2rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a {
  text-decoration: none;
  padding: 0.7rem 0;
  color: #fcf7eb;
  font-family: "BebasNeue", sans-serif;
  font-weight: 100;
  font-size: 2.2rem;
  line-height: 2rem;
}

.menu-divider {
  display: block;
  margin: 2rem 2rem 0 auto;
  width: calc(100% - 4rem);
  height: 2px;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.icons-menu {
  display: flex;
  color: #fcf7eb;
  font-family: "BebasNeue", sans-serif;
  font-weight: 100;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0.8rem 0 0 1.5rem;
}

.icons-menu a {
  margin: 0 0.5rem;
}

main {
  height: 100dvh;
  padding: 1.4rem;
}

.img {
  position: relative;
  width: 100%;
  height: 80vh;
}

.img-container {
  width: 100%;
  height: calc(100vh - 2rem);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.scroll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(60%);
  clip-path: polygon(40% 40%, 60% 40%, 60% 60%, 40% 60%);
  object-position: 70% 50%;
}

.hero-text {
  position: absolute;
  bottom: 2.5rem;
  left: 5rem;
  right: 5rem;
  z-index: 2;
  overflow: hidden !important;
  padding: 5% 0 5% 0;
}

h1 {
  color: #fcf6ec;
  font-family: "BebasNeue", sans-serif;
  font-weight: 400;
  font-size: 4.6rem;
}

.hero-text p {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  color: #fcf6ec;
  font-weight: 100;
  margin-top: 2.8rem;
  margin-bottom: 1.6rem;
}

.hero-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-btns-wrapper {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.cta-btns-wrapper button {
  gap: 4px;
  background-color: #4a9c9d;
  border: none;
  color: #fcf6ec;
  cursor: pointer;
  padding: 0.9rem 1.4rem;
  font-size: 1.1rem;
  font-weight: 100;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease-in-out;
}

.cta-link-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-link-wrapper a {
  font-size: 1.1rem;
  color: #fcf6ec;
  text-decoration: none;
  font-weight: 100;
}

.hero-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  color: #fcf6ec;
}

.hero-info p {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0;
  font-size: 1rem;
}

.info-line {
  width: 1px;
  height: 90px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.intro-section {
  margin: 8rem 6rem 0 6rem;
  position: relative;
}

.racing-lines-1 {
  position: absolute;
  top: -20px;
  left: -30px;
  z-index: 1;
}

.intro-section h2 {
  font-size: 3.2rem;
  font-family: "BebasNeue";
  color: #fcf6ec;
  font-weight: 400;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.intro-section p {
  color: #fcf6ec;
  font-weight: 100;
  font-size: 1.3rem;
}

.advantages-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1.8rem;
  margin-top: 5rem;
}

.advantage-item {
  background-color: #171717;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 33%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 1.8rem;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 1px solid #fcf6ec;
  display: flex;
  justify-content: center;
  align-items: center;
}

.advantage-item h3 {
  font-family: "BebasNeue", sans-serif;
  color: #fcf6ec;
  font-weight: 400;
  font-size: 2.2rem;
}

.advantage-item p {
  color: #fcf6ec;
  font-weight: 100;
  font-size: 1.3rem;
  margin: 0;
}

.cars-section {
  margin: 10rem 6rem 0 6rem;
  position: relative;
}

.car-item {
  width: 100%;
  height: 600px;
  position: relative;
}

.racing-lines-wrapper-car {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
}

.car-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  filter: brightness(70%);
}

.car-desc-top {
  position: absolute;
  top: 3rem;
  left: 3rem;
  right: 3rem;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 6rem);
}

.car-desc-top h2 {
  font-family: "BebasNeue", sans-serif;
  color: #fcf6ec;
  font-weight: 400;
  font-size: 3.2rem;
  margin: 0;
}

.car-desc-top p {
  color: #fcf6ec;
  font-size: 1.3rem;
  font-weight: 100;
  margin: 0;
}

.car-desc-price button {
  border: none;
  border-radius: 25px;
  color: #fcf6ec;
  background-color: #4a9c9d;
  font-size: 1.2rem;
  font-family: "Inter", sans-serif !important;
  font-weight: 100;
  cursor: pointer;
  padding: 0.6rem 1.2rem;
}

.car-desc-bottom {
  position: absolute;
  bottom: 2.4rem;
  left: 3rem;
}

.faq-section {
  margin: 10rem 6rem 0 6rem;
}

.faq-layout {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  align-items: flex-start;
  margin-top: 8rem;
}

.sticky-faq {
  position: sticky;
  top: 170px;
  padding-bottom: 2rem;
}

.services-item {
  width: 40%;
}

.section-header {
  font-family: "BebasNeue", sans-serif;
  font-weight: 400;
  color: #fcf6ec;
  font-size: 3.2rem;
  margin-bottom: 2rem;
  margin-top: 0;
}

.sticky-faq p {
  color: #fcf6ec;
  font-size: 1.3rem;
  font-weight: 100;
  width: 80%;
  margin-top: 3rem;
}

.cta-faq-pos {
  margin-top: 2.7rem;
}

.faqs-layout {
  width: 70%;
  margin-top: 3.2rem;
}

.faq-item {
  display: flex;
  align-items: center;
  height: 110px;
  width: 100%;
  cursor: pointer;
  margin-top: 1rem;
  border-bottom: 1px solid #fcf6ec;
}

.question-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 120px;
}

.question-box h4 {
  font-size: 1.3rem;
  font-weight: 100;
  color: #fcf6ec;
}

.cross-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
}

.cross-box img {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cross-box img.rotated {
  transform: rotate(225deg);
}

.answer-item {
  padding-left: 10px;
  padding-top: 2rem;
  padding-right: 120px;
  transition: height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
  height: 0;
}

.answer-item p {
  color: #fcf6ec;
  font-size: 1.3rem;
  font-weight: 100;
}

.answer-item a {
  color: #4a9c9d;
  font-size: 1.3rem;
  font-weight: 200;
  text-decoration: none;
}

.answer-item ul {
  padding: 0 0 0 20px;
}

.answer-bold {
  font-weight: 200;
}

.answer-item li {
  color: #fcf6ec;
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 2.2rem;
}

footer {
  background-color: #171717;
  margin-top: calc(460px + 4rem);
  padding: 10rem 6rem 0.2rem 6rem;
  position: relative;
}

.footer-card-wrapper {
  position: absolute;
  top: -55%;
}

.racing-lines-wrapper-footer {
  position: absolute;
  top: calc(-55% - 2rem);
  left: 2.8rem;
  z-index: -1;
}

.footer-card {
  position: relative;
  background-color: #fcf6ec;
  height: auto;
  width: 90%;
  padding: 1.5rem 1.5rem 2.5rem 1.5rem;
  box-shadow: 41px 41px 16px 0px rgba(118, 107, 107, 0),
    26px 26px 15px 0px rgba(118, 107, 107, 0.01),
    15px 15px 12px 0px rgba(118, 107, 107, 0.05),
    6px 6px 9px 0px rgba(118, 107, 107, 0.09),
    2px 2px 5px 0px rgba(118, 107, 107, 0.1);
  z-index: 1;
}

.footer-card h3 {
  margin-top: 0;
  font-family: "BebasNeue", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #1d201f;
}

.footer-card p {
  font-size: 1.3rem;
  font-weight: 200;
  color: #1d201f;
}

.footer-card-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 2rem;
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.icon-circle {
  width: 60px !important;
  height: 60px !important;
  border-radius: 100%;
  border: 1px solid #1d201f;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.quick-link-item a {
  color: #1d201f;
  text-decoration: none;
  font-size: 1.3rem;
}

.mail-link {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.quick-link-item p {
  color: #1d201f;
  margin: 0;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
}

.logo-side {
  width: 30%;
}

.logo-side img {
  width: 200px;
  height: auto;
}

.logo-desktop {
  width: 180px;
}

.logo-side p {
  color: #fcf6ec;
  font-size: 1rem;
  font-weight: 100;
  width: 50%;
  margin-top: 1.8rem;
}

.links-side {
  width: 60%;
  display: flex;
  justify-content: space-evenly;
  padding-top: 3.4rem;
}

.links-side h4 {
  font-family: "BebasNeue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #fcf6ec;
}

.links-side ul {
  padding: 0;
}

.links-side ul li {
  list-style: none;
  line-height: 1.6rem;
}

.links-side ul li a {
  font-size: 1rem;
  color: #fcf6ec;
  list-style: none;
  font-weight: 100;
  text-decoration: none;
}

.bottom-line {
  margin-top: 4rem;
  margin-bottom: 0.3rem;
  background: linear-gradient(
    270deg,
    rgba(47, 47, 47, 0.07) 12%,
    rgba(252, 246, 236, 0.2) 50.5%,
    rgba(47, 47, 47, 0.07) 87.5%
  );
  width: 100%;
  height: 1px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #fcf6ec;
  font-size: 0.9rem;
  font-weight: 100;
}

.footer-bottom a {
  color: #fcf6ec;
  font-size: 0.9rem;
  font-weight: 100;
  text-decoration: none;
}

.credits:hover {
  color: #4a9c9d;
}

@media (max-width: 768px) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }

  main {
    height: 100dvh;
    padding: 0.8rem;
  }
  .img-container {
    border-radius: 8px;
  }
  .hero-text {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 10%;
  }
  h1 {
    font-size: 2.5rem;
  }
  .rmv-mb {
    display: none !important;
  }
  .hero-text p {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .hero-info {
    display: none;
  }
  .cta-btns-wrapper {
    gap: 0.8rem;
  }
  .intro-section {
    margin: 8rem 1.5rem 0 1.5rem;
  }
  .intro-section h2 {
    font-size: 2.2rem;
  }
  .advantages-wrapper {
    flex-direction: column;
    width: 100%;
  }
  .advantage-item {
    width: 100%;
  }
  .advantage-item h3 {
    font-size: 1.8rem;
  }
  .icon-wrapper {
    width: 85px;
    height: 85px;
  }
  .icon-wrapper img {
    width: 28px;
  }
  .cars-section {
    margin: 8rem 1.5rem 0 1.5rem;
  }
  .car-desc-top {
    left: 1rem;
    right: 1rem;
    top: 1.5rem;
    width: calc(100% - 2rem);
  }
  .car-img {
    object-position: 30% 50%;
  }
  .car-desc-top h2 {
    font-size: 2.2rem;
  }
  .car-desc-price button {
    right: 1rem;
    font-size: 1rem;
  }
  .car-desc-bottom {
    left: 1rem;
    bottom: 1.5rem;
  }
  .racing-lines-wrapper-car {
    display: none;
  }
  .faq-section {
    margin: 8rem 1.5rem 0 1.5rem;
  }
  .section-header {
    font-size: 2.2rem;
  }
  .faq-layout {
    flex-direction: column;
    gap: 0;
    margin-top: 6rem;
  }
  .services-item {
    width: 100%;
  }
  .sticky-faq {
    position: static;
  }
  .question-box h4 {
    font-size: 1.3rem;
  }
  .answer-item {
    padding-right: 0;
    padding-left: 5px;
  }
  .faqs-layout {
    width: 100%;
  }
  .cross-box {
    width: 60px;
    height: 60px;
  }
  .cross-box img {
    width: 22px;
  }

  footer {
    padding: 10rem 1.5rem 0.2rem 1.5rem;
    margin-top: calc(460px + 6rem);
  }

  .racing-lines-wrapper-footer {
    top: calc(-50% - 2rem);
    left: 0;
  }
  .footer-card-wrapper {
    top: -50%;
    left: 1.5rem;
    right: 1.5rem;
  }
  .footer-card-layout {
    grid-template-columns: 1fr;
  }
  .footer-card {
    width: 100%;
  }
  .footer-card h3 {
    font-size: 2rem;
  }
  .quick-link-item {
    gap: 0.8rem;
  }
  .footer-card p {
    font-size: 1.1rem;
  }
  .quick-link-item a {
    font-size: 1.1rem;
  }
  .footer-layout {
    flex-direction: column;
  }
  .logo-side {
    width: 100%;
    margin-top: 2rem;
  }
  .logo-side p {
    width: 100%;
  }
  .links-side {
    flex-direction: column;
    padding-top: 0;
  }
  .links-side h4 {
    margin-bottom: 1rem;
    margin-top: 1.4rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: 0.6rem;
  }
  .footer-bottom p {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  main {
    padding: 0.8rem;
  }
  .img-container {
    border-radius: 8px;
  }
  .hero-text {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 2rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  .rmv-mb {
    display: none !important;
  }
  .hero-text p {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .hero-info {
    display: none;
  }
  .cta-btns-wrapper {
    gap: 0.8rem;
  }
  .intro-section {
    margin: 8rem 1.5rem 0 1.5rem;
  }
  .intro-section h2 {
    font-size: 2.2rem;
  }
  .advantages-wrapper {
    flex-direction: column;
    width: 100%;
  }
  .advantage-item {
    width: 100%;
  }
  .advantage-item h3 {
    font-size: 1.8rem;
  }
  .icon-wrapper {
    width: 85px;
    height: 85px;
  }
  .icon-wrapper img {
    width: 28px;
  }
  .cars-section {
    margin: 8rem 1.5rem 0 1.5rem;
  }
  .car-desc-top {
    left: 1rem;
    right: 1rem;
    top: 1.5rem;
    width: calc(100% - 2rem);
  }
  .car-desc-top h2 {
    font-size: 2.2rem;
  }
  .car-desc-price button {
    right: 1rem;
    font-size: 1rem;
  }
  .car-desc-bottom {
    left: 1rem;
    bottom: 1.5rem;
  }
  .racing-lines-wrapper-car {
    display: none;
  }
  .faq-section {
    margin: 8rem 1.5rem 0 1.5rem;
  }
  .section-header {
    font-size: 2.2rem;
  }
  .faq-layout {
    flex-direction: column;
    gap: 0;
    margin-top: 6rem;
  }
  .services-item {
    width: 100%;
  }
  .sticky-faq {
    position: static;
  }
  .question-box h4 {
    font-size: 1.3rem;
  }
  .answer-item {
    padding-right: 0;
    padding-left: 5px;
  }
  .faqs-layout {
    width: 100%;
  }
  .cross-box {
    width: 60px;
    height: 60px;
  }
  .cross-box img {
    width: 22px;
  }

  footer {
    padding: 10rem 1.5rem 0.2rem 1.5rem;
    margin-top: calc(460px + 6rem);
  }

  .racing-lines-wrapper-footer {
    top: calc(-50% - 2rem);
    left: 0;
  }
  .footer-card-wrapper {
    top: -50%;
    left: 1.5rem;
    right: 1.5rem;
  }
  .footer-card-layout {
    grid-template-columns: 1fr;
  }
  .footer-card {
    width: 100%;
  }
  .footer-card h3 {
    font-size: 2rem;
  }
  .quick-link-item {
    gap: 0.8rem;
  }
  .footer-card p {
    font-size: 1.1rem;
  }
  .quick-link-item a {
    font-size: 1.1rem;
  }
  .footer-layout {
    flex-direction: column;
  }
  .logo-side {
    width: 100%;
    margin-top: 2rem;
  }
  .logo-side p {
    width: 100%;
  }
  .links-side {
    flex-direction: column;
    padding-top: 0;
  }
  .links-side h4 {
    margin-bottom: 1rem;
    margin-top: 1.4rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: 0.6rem;
  }
  .footer-bottom p {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .hero-text {
    bottom: 0;
  }
  h1 {
    margin-bottom: 0;
  }
  .hero-text p {
    margin-top: 1.5rem;
    width: 70%;
  }
  .menu-links {
    padding-top: 7%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  h1 {
    font-size: 4.2rem;
    margin-bottom: 0.8rem;
  }

  .container {
    max-width: 90%;
    margin: 0 auto;
  }
}
