<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&amp;display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
}

.nav-container {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 30px;
  padding-left: 20px;
  height: 80px;
  width: 100%;
  color: #fff;
  z-index: 1000;
}

.nav-container ul {
  display: flex;
  list-style: none;
  gap: 20px;
  font-size: 15px;
}

.nav-container ul li {
  cursor: pointer;
  transition: 0.5s;
  padding: 3px 10px;
  border-radius: 5px;
}

.nav-container ul li:hover,
.nav-container .icons i:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.logo {
  color: #fff;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: .3rem;
  text-transform: uppercase;
  text-decoration: none;
  width: 120px;
  height: 30px;
  cursor: pointer;
  filter: brightness(0) invert(1);
}

.nav-container .icons {
  display: flex;
  font-size: 25px;
  gap: 10px;
  cursor: pointer;
}

.nav-container .icons i {
  border-radius: 50%;
  padding: 3px;
  transition: 0.5s;
}

.pages {
  display: flex;
  justify-content: center;
  list-style: none;
  text-align: center;
  flex-direction: column;
}

.pages li {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 10px;
  color: #fff;
  scroll-snap-align: start;
}

.pages li video,
.pages li img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-info h1 {
  letter-spacing: 1px;
  font-size: 40px;
}

.page-info h1,
.page-info h2 {
  font-weight: 500;
}

.page-info.model-x {
  color: #333;
}

.page-info.model-x p {
  font-size: 12px;
}

.page-footer .buttons {
  margin-bottom: 25px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-footer .buttons button {
  font-size: 13px;
  padding: 7px 80px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.page-footer .buttons button:first-child {
  background-color: rgba(34, 34, 34, 0.8);
  color: #fff;
}

.page-footer .buttons button:last-child {
  background-color: rgba(255, 255, 255, 0.75);
}

.page-footer .buttons.inverted button:first-child {
  background-color: rgba(255, 255, 255, 0.75);
  color: #333;
}

.page-footer .buttons.inverted button:last-child {
  background-color: rgba(34, 34, 34, 0.8);
  color: #fff;
}

.page-footer p,
.page-footer a {
  font-size: 12px;
  color: #fff;
}

.page-footer .buttons.demo-drive button {
  background-color: transparent;
  color: #fff;
  border: 3px solid #fff;
}

#model-y-info,
#model-y-footer {
  opacity: 0;
  transform: translateY(50px);
  transition: 3s;
}

@media (max-width: 1040px){
  .nav-container{
    padding: 12px 20px;
}


  .pages .page-info,
  .pages .page-footer {
    padding: 100px 20px;
}

  .nav-container .icons {
   display: none;
}

  .media-icons {
  line-height: 15px;
  margin-left: 5px;
  right: 15px;
  line-height: 15px;
  bottom: 28%;
  position: fixed;
}

  .media-icons i {
  width: 25px;
  display: block;
  margin: 25px 5px;
  font-size: 30px;
}
  .navigation {
    display: none;
}

  .navigation.active {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
}

  .nav-container ul li {
    color: #222;
    font-size: 1.4em;
    font-weight: 600;
    margin: 15px;
}

  .nav-container ul {
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgb(1 1 1 /20%);
}

  .menu-btn{
    background: url(Images/menu.png)no-repeat;
    background-size: 25px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0,3s ease;
}


  .menu-btn.active{
    z-index: 999;
    background: url(Images/close.png)no-repeat;
    background-size: 20px;
    background-position: center;
    transition: 0.3s ease;
  }

  .pages li video,
  .pages li img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .page-footer .buttons {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .page-footer .buttons button {
    font-size: 13px;
    padding: 7px 70px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
  }
}
</pre></body></html>