#hero {
  position: relative;
  height: 100vh;
  padding-top: 8rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#hero .hero-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1.5rem;
}
#hero .hero-bottom .car-info {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
}
#hero .video-bg.mobile {
  display: none;
}
@media (max-width: 1000px) {
  #hero .hero-bottom .car-info {
    position: relative;
    left: 0;
    bottom: 0;
    transform: translateX(0);
    text-align: right;
    margin: 0;
  }
  #hero .hero-bottom .copyright {
    display: none;
  }
}
@media (max-width: 600px) {
  #hero .video-bg.desktop {
    display: none;
  }
  #hero .video-bg.mobile {
    display: initial;
  }
  #hero .hero-bottom {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  #hero .hero-bottom .car-info {
    text-align: left;
    margin-bottom: 1.5rem;
  }
}

#history {
  padding: 5rem 0;
  color: #fff;
}
#history .container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
#history .container .paragraph {
  max-width: 210px;
}
#history .container .paragraph:last-child {
  align-self: flex-end;
}
#history .container figure {
  position: relative;
  max-width: 650px;
  flex: 1;
}
#history .container figure:not(.played)::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 1;
}
#history .container figure video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#history .container figure .btn {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  #history .container {
    flex-direction: column;
  }
  #history .container .paragraph {
    max-width: 500px;
  }
  #history .container .paragraph:last-child {
    align-self: flex-start;
  }
  #history .container figure {
    width: 100%;
  }
}

#car-reveal {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#car-reveal h1 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 120px;
}
#car-reveal .car-reveal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  bottom: 0;
  pointer-events: none;
  user-select: none;
  z-index: -2;
}
#car-reveal .car-reveal-car {
  width: 100%;
  display: flex;
  justify-content: center;
}
#car-reveal .car-reveal-car img {
  object-fit: cover;
  object-position: center bottom;
  min-width: 1000px;
  pointer-events: none;
  user-select: none;
}
#car-reveal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
#car-reveal::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

#bali-exclusive {
  padding: 5rem 0;
  color: #fff;
}
#bali-exclusive .container {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#bali-exclusive .container .bali-island-img {
  margin: 3rem 0;
}

#the-car {
  position: relative;
}
#the-car::before {
  content: "";
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
}
#the-car::after {
  content: "";
  background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
}
#the-car .car-spec {
  position: absolute;
  top: 0;
  width: calc(100% - 3rem);
  margin: 3rem 1.5rem;
  z-index: 3;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}
#the-car .car-spec > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
#the-car .car-spec > div p {
  color: #777777;
}
#the-car .car-spec h2, #the-car .car-spec h3 {
  color: #fff;
}
@media (max-width: 600px) {
  #the-car .car-spec {
    width: 100%;
    margin: 0;
    overflow-x: scroll;
  }
}
#the-car .gallery-shelby-cobra .swiper-slide {
  height: 120vh;
}
#the-car .gallery-shelby-cobra .swiper-slide img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  #the-car .gallery-shelby-cobra .swiper-slide {
    height: 600px;
  }
}
#the-car .gallery-thumbs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  margin-bottom: 2rem;
}
#the-car .gallery-thumbs {
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
#the-car .gallery-thumbs .swiper-slide {
  display: flex;
  align-items: flex-end;
  height: 100px;
  opacity: 0.5;
}
#the-car .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
#the-car .gallery-thumbs .swiper-slide.swiper-slide-thumb-active img {
  border: 1px solid #fff;
}
#the-car .gallery-thumbs .swiper-slide img {
  object-fit: contain;
  width: 100%;
}
#the-car .car-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3rem;
  z-index: 3;
}
@media (max-width: 600px) {
  #the-car .car-content {
    position: relative;
  }
}
#the-car .car-info {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
#the-car .car-info p {
  max-width: 380px;
}
@media (max-width: 600px) {
  #the-car .car-info {
    flex-direction: column;
  }
}

#driving-experience, #balicopter-package {
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#driving-experience h1, #balicopter-package h1 {
  max-width: 700px;
}
#driving-experience .package-description, #balicopter-package .package-description {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
#driving-experience .package-description .package-detail, #balicopter-package .package-description .package-detail {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#driving-experience .package-description .btn-wrap, #balicopter-package .package-description .btn-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 550px) {
  #driving-experience .package-description, #balicopter-package .package-description {
    flex-direction: column;
    align-items: flex-start;
  }
}

#delivery-service {
  position: relative;
  background: #fff;
  color: #242424;
  overflow: hidden;
}
#delivery-service .container {
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#delivery-service h3 img {
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#delivery-service p {
  color: #242424;
  max-width: 380px;
}
@media (max-width: 500px) {
  #delivery-service .container {
    flex-direction: column;
    align-items: flex-start;
  }
  #delivery-service .container h3 {
    margin-bottom: 1.5rem;
  }
}

#cta {
  padding-top: 5rem;
  color: #fff;
}
#cta .title-wrap {
  margin-bottom: 5rem;
}
#cta .title-wrap h3 {
  margin-bottom: 2rem;
}
#cta .title-wrap .btn-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
#cta figure {
  width: 100%;
  display: flex;
  justify-content: center;
}
#cta figure img {
  object-fit: cover;
  object-position: center bottom;
  vertical-align: bottom;
  min-width: 1000px;
  pointer-events: none;
  user-select: none;
}

/*# sourceMappingURL=landingpage.css.map */
