<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* timewarp.css */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent; /* Make it transparent */
    padding-block: 20px;
    z-index: 4;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 20px; /* Adjust padding for better spacing */
  }
  
  .logo {
    font-family: var(--fontFamily-recoleta);
    font-size: var(--fontSize-4);
    position: relative;
    top: 30px; /* Move the logo further down from the top */
    left: 130px; /* Move the logo slightly to the right */
    font-family: 'Recoleta', sans-serif; /* Ensure the logo uses the Recoleta font */


    color: var(--text-white);
    text-decoration: none;
  }
  
 
  
/* Update the back-home-btn to be white, bold, and include an icon */
.back-home-btn {
    font-family: 'Recoleta', sans-serif;
    font-size: 16px; /* Adjust this value according to your preference */
    color: white !important; /* Set the text color to white */
    font-weight: bold; /* Make the text bold */
    background-color: #3333; /* Remove background color */
    padding: 10px 20px;
    border-radius: 50px; /* Example border-radius, adjust as needed */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    position: relative; /* Change to relative if you want to adjust it based on its container */
    top: 30px; /* Adjust the top position, move down by increasing the value */
    right: 100px; /* Adjust the left position, move right by increasing the value */
  }
  
  .back-home-btn ion-icon {
    font-size: 1.2em; /* Adjust the size of the icon */
    color: white; /* Ensure the icon is white */
  }
  
  .back-home-btn:hover {
    background-color: #333; /* Darken on hover */
    color: white !important; /* Ensure text remains white on hover */
  }
  
  


  
  @keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateY(-100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Recoleta', sans-serif; /* Applied globally */
  }
html,

body {
  height: 100%;
  width: 100%;

  }
  

#main{
    position: relative;
    overflow: hidden;
}

.header.active {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--bg-jet);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar,
.navbar a,
.navbar li {
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* Adjust the weight as needed (e.g., 400 for regular, 500 for medium, 700 for bold) */
}


#scroll-down-gif {
    position: absolute;
    top: 80%;
    left: 12%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.scroll-text {
    margin-top: 5px; /* Adds space between the image and text */
    top: 10%;
    color: white; /* Adjust text color as needed */
    font-size: 18px; /* Adjust text size */
    font-family: 'Roboto', sans-serif; /* Use a modern font */
    text-align: center;
}


#scroll-down-gif img {
    width: 100px;
    height: auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hide the GIF when scrolling starts */









#page{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000000;

}
#page&gt;nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    height: 7vh;
    width: 50vw;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}
#page&gt;nav&gt;button{
    padding: 7px 20px;
    border-radius: 50px;
    border: none;
    background-color: #fff;
}
#page&gt;nav&gt;h3{
    font-weight: 400;
}
#page&gt;video{
    height: 100%;
    width: 72%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
#page-bottom{
    height: 20%;
    width: 25%;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#page-bottom&gt;h3{
    color: #dadada93;
    margin-bottom: 1vw;
}
#page1{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
}
#page1&gt;video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#page1&gt;h1{
    font-size: 4vw;
    color: #fff;
    font-weight: 400;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}


#page2{
    position: relative;
    height: 100vh;
    width: 100vw;
}
#page2&gt;video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#page2&gt;h1{
    font-size: 4vw;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-align: center;
    color: #fff;
    font-weight: 400;
}


#page3{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
}
#page3&gt;img{
    width: 80%;
    position: absolute;
    left: 10%;
    top:5%;  
  
    
}
#page3-upper{
    height: 25%;
    width: 35%;
    position: absolute;
    z-index: 9;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}
#page3-upper&gt;img{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
}
#page3-upper-inner{
    position: absolute;
    bottom: 0%;
    height: 60%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 80px;
    color: #ff823d;
}

#page3 a &gt; button {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    border: 1px solid #000;
    font-weight: 500;
    background-color: #fff;
    border-radius: 50px;
    font-size: 1.4vw;
}

#page3 a &gt; button:hover {
    background-color: #f3954d; /* Darken the button on hover */
}



#page4{
    position: relative;
    height: 100vh;
    width: 100vw;
}
#page4&gt;video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#center-page4{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff;
    font-size: 2vw;
}

#page5{
    display: flex;
    position: relative;
    height: 60vh;
    width: 100vw;
}





#color {
    position: relative;
    width: 100vw;
    background-color: #ffffff; /* White background */
    color: #000000; /* Black  text color */
    padding-top: 5vh; /* Add space from the top */
    transition: background-color 0.5s ease !important; /* Smooth transition for background color */
}

#color-content {
    z-index: 2; /* Ensure content is above the image */
    text-align: center;
    width: 100%;
    padding-top: 10vh; /* Increase space from the top */
    padding-bottom: 5vh; /* Add space at the bottom to avoid overlap with the image */
}

#color h4 {
    font-size: 2vw;
    font-weight: 500;
    margin-bottom: 2vw;
}

#color h1 {
    font-size: 4vw;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 3vw;
}

#color p {
    font-size: 1.5vw;
    font-weight: 500;
    margin-bottom: 2vw;
    color: #1313137c; /* Slightly muted white for the paragraph text */
    width: 50%;
    margin: 0 auto; /* Center the paragraph */
}

#color-image {
    position: relative;
    width: 100vw;  /* Full width of the viewport */
    height: auto; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5vh; /* Add margin to push the image below the text */
}

#color-image img {
    width: 100vw; /* Make the image fill the width of the screen */
    height: auto; /* Maintain the aspect ratio */
    object-fit: cover; /* Ensures the image covers the width of the section */
}



#timeline {
    position: relative;
    width: 100vw;
    background-color: #ffffff; /* White background */
    color: #000000; /* Black  text color */
    padding-top: 5vh; /* Add space from the top */
    transition: background-color 0.5s ease !important; /* Smooth transition for background color */
}

#timeline-content {
    z-index: 2; /* Ensure content is above the image */
    text-align: center;
    width: 100%;
    padding-top: 10vh; /* Increase space from the top */
    padding-bottom: 5vh; /* Add space at the bottom to avoid overlap with the image */
}


#timeline h1 {
    font-size: 4vw;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 3vw;
}

#timeline p {
    font-size: 1.5vw;
    font-weight: 500;
    margin-bottom: 2vw;
    color: #1313137c; /* Slightly muted white for the paragraph text */
    width: 50%;
    margin: 0 auto; /* Center the paragraph */
}

#timeline-image {
    position: relative;
    width: 100vw;  /* Full width of the viewport */
    height: auto; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5vh; /* Add margin to push the image below the text */
}

#timeline-image img {
    width: 100vw; /* Make the image fill the width of the screen */
    height: auto; /* Maintain the aspect ratio */
    object-fit: cover; /* Ensures the image covers the width of the section */
}






#page5_a {
    position: relative;
    height: 100vh; /* Full height of the viewport */
    width: 100vw;  /* Full width of the viewport */
    overflow: hidden; /* Hide any overflow */
    background-color: #F6F7F9;
   
}

#page5_a img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    object-fit: cover; /* Ensures the image covers the entire section without distortion */
    transform: translate(-50%, -50%);
}

#page5_a1 {
    position: relative;
    height: 100vh; /* Full height of the viewport */
    width: 100vw;  /* Full width of the viewport */
    overflow: hidden; /* Hide any overflow */
}

#page5_a1 img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    object-fit: cover; /* Ensures the image covers the entire section without distortion */
    transform: translate(-50%, -50%);
}




.left5{
    position: relative;
    height: 100%;
    width: 50%;
}
.left5&gt;h1{
    font-size: 2.3vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10%;
}

.left5 img {
    width: 30%; /* Adjust the width to fit better */
    height: auto; /* Maintain aspect ratio */
    margin-top: 2vw; /* Add margin to separate from the header */
    position: absolute;
    top: 30%; /* Adjust the image position to ensure it is below the header */
    left: 50%;
    transform: translateX(-50%);
}

.right5{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 50%;
    padding-left: 5vw;
}
.right5&gt;h3{
    font-size: 2vw;
    width: 90%;
    color: #484848d7;
}
.right5 a &gt; button {
    padding: 10px 20px;
    border: none;
    background-color: #ff823d; /* Button background color */
    color: #fff; /* Button text color */
    font-weight: 400;
    border-radius: 50px;
    font-size: 1.3vw;
    margin-top: 1.5vw;
    cursor: pointer; /* Add pointer cursor for better UX */
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

.right5 a &gt; button:hover {
    background-color: #e6732b; /* Darken the button on hover */
}

#page6{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    height: 70vh;
    width: 100vw;
    background-color: #f5f5f7;
}
#page6&gt;h3{
    margin-bottom: 1vw;
    font-size: 2vw;
}
#page6&gt;h1{
    margin-bottom: 1.5vw;
    font-size: 4vw;
}
#page6&gt;p{
    font-size: 1.2vw;
    width: 60%;
    font-weight: 700;
    color: #545454c9;
}

#page7{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f5f5f7;
}

#page7&gt;canvas{
    position: relative;
    max-width: 100vw;
    max-height: 100vh;
    z-index: 99;
}
#page8{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f5f5f7;

}
#page8&gt;h1{
    width: 20%;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    font-size: 1.3vw;
    font-weight: 500;
    color: #4d4d4d;
    z-index: 99;
    position: absolute;
}
#page8&gt;h1&gt;span{
    color: #000;
}
#page9{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f5f5f7;
}
#page9&gt;h1{
    width: 20%;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    font-size: 1.3vw;
    font-weight: 500;
    color: #4d4d4d;
    z-index: 99;
    position: absolute;
}
#page9&gt;h1&gt;span{
    color: #000;
}
#page10{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f5f5f7;

}
#page10&gt;h1{
    width: 20%;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    font-size: 1.3vw;
    font-weight: 500;
    color: #4d4d4d;
    z-index: 99;
    position: absolute;
}
#page10&gt;h1&gt;span{
    color: #000;
}
#page11{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f5f5f7;
}
#page11&gt;h1{
    width: 20%;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    font-size: 1.3vw;
    font-weight: 500;
    color: #4d4d4d;
    z-index: 99;
    position: absolute;
}
#page11&gt;h1&gt;span{
    color: #000;
}
#page12{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f5f5f7;

}
#page12&gt;h1{
    width: 20%;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    font-size: 1.3vw;
    font-weight: 500;
    color: #4d4d4d;
    z-index: 99;
    position: absolute;
}
#page12&gt;h1&gt;span{
    color: #000;
}
#page13{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f5f5f7;
}
#page13&gt;h1{
    width: 20%;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    font-size: 1.3vw;
    font-weight: 500;
    color: #4d4d4d;
    z-index: 99;
    position: absolute;
}
#page13&gt;h1&gt;span{
    color: #000;
}
#page14{
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
}
.left14{
    height: 90%;
    width: 45%;
    position: relative;
    background-image: url(https://www.apple.com/v/apple-vision-pro/a/images/overview/design/glass_top__k3b8lzqd1l2m_large.jpg);
    background-size: cover;
}
.right14{
    height: 90%;
    width: 45%;
    position: relative;
    background-image: url(https://www.apple.com/v/apple-vision-pro/a/images/overview/design/glass_side__gm4agomrwl2e_large.jpg);
    background-size: cover;
}
#page15{
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
#center-page15{
    height: 90%;
    width: 95%;
    position: relative;
    overflow: hidden;
}
#center-page15&gt;video{
    height: 100%;
    width: 100%;
    object-fit: contain; /* Ensures the full video is visible without cropping */
    position: absolute;
    top: 0;
    left: 0;
}
#page16{
    position: relative;
    height: 120vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#page16&gt;h2{
    position: absolute;
    width: 50%;
    color: #434343c7;
    font-weight: 500;
    top: 5%;
}
#page16&gt;h2&gt;span{
    color: #000;
}
#page16&gt;img{
    width: 60%;
    position: absolute;
    top: 30%; /* Adjust this value to reduce or increase space from the top */
   }


#page17{
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #000;
    color: #fff;
}
#page17&gt;h4{
    font-size: 2vw;
    font-weight: 500;
    margin-bottom: 2vw;
}
#page17&gt;h1{
    font-size: 5vw;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 3vw;
    text-align: center;
}
#page17&gt;p{
    font-size: 1.5vw;
    font-weight: 500;
    margin-bottom: 2vw;
    color: #ffffff7c;
    width: 50%;
    text-align: center;
}
#page17&gt;p&gt;span{
    color: #fff;
}


#page18{
    position: relative;
    height: 100vh;
    width: 100vw;
    top: 0%;
}
#page18&gt;canvas{
    position: relative;
    max-width: 100vw;
    max-height: 100vw;
}
#page19{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    position: relative;
    height: 30vh;
    width: 100vw;
    background-color: #F5F2E9;
    flex-direction: column;
    text-align: center;
    font-size: 1.5vw;
}
#page19&gt;h5{
    width: 35%;
}
#page20{
    background-color: #F5F2E9;
    overflow-x: hidden;
}
 

.scroll-container {
    padding: 20px;
    padding-bottom: 200px; /* Add bottom padding to match top space */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 30px;
    overflow-y: auto;
    height: 100vh;
    position: relative;
}

.phone-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: auto;
    transition: transform 0.5s ease;
}

/* Initial positioning for each column */
.phone-frame:nth-child(1), .phone-frame:nth-child(5), .phone-frame:nth-child(9) {
    transform: translateY(200px);
}

.phone-frame:nth-child(2), .phone-frame:nth-child(6), .phone-frame:nth-child(10) {
    transform: translateY(80px);
}

.phone-frame:nth-child(3), .phone-frame:nth-child(7), .phone-frame:nth-child(11) {
    transform: translateY(240px);
}

.phone-frame:nth-child(4), .phone-frame:nth-child(8), .phone-frame:nth-child(12) {
    transform: translateY(120px);
}

/* Responsive image sizing */
.phone-frame img {
    width: 100%;
    max-width: 90%;
    height: auto;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Scroll effect for all images */
.scroll-container.scroll-active .phone-frame:nth-child(1), 
.scroll-container.scroll-active .phone-frame:nth-child(5),
.scroll-container.scroll-active .phone-frame:nth-child(9) {
    transform: translateY(calc(200px - 40px));
}

.scroll-container.scroll-active .phone-frame:nth-child(2), 
.scroll-container.scroll-active .phone-frame:nth-child(6),
.scroll-container.scroll-active .phone-frame:nth-child(10) {
    transform: translateY(calc(80px + 40px));
}

.scroll-container.scroll-active .phone-frame:nth-child(3), 
.scroll-container.scroll-active .phone-frame:nth-child(7),
.scroll-container.scroll-active .phone-frame:nth-child(11) {
    transform: translateY(calc(240px - 40px));
}

.scroll-container.scroll-active .phone-frame:nth-child(4), 
.scroll-container.scroll-active .phone-frame:nth-child(8),
.scroll-container.scroll-active .phone-frame:nth-child(12) {
    transform: translateY(calc(120px + 40px));
}


#page21{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
}
#page21&gt;#troff{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    width: 50%;
    z-index: 9;
}
#page21&gt;#tron{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    width: 50%;
}
#page22{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
}
#page22&gt;#snroff{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    width: 50%;
    z-index: 9;
}
#page22&gt;#snron{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    width: 50%;
}
#page23{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
}
#page23&gt;img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity:0
}

.footer {
    border-block-start: 1px solid var(--border-eerie-black);
    background-color: var(--bg-jet); /* Ensure the footer has a background */
    position: relative;
    z-index: 10; /* Make sure it’s above any other content */
    padding: 20px 0;
  }

  .progress-bar{

    position: fixed;
    top: 0;
    left: 0;
    width: 0;
 height: 5px;
     background-color: #FD8607;
     z-index: 1000; /* Ensure it's higher than the navbar */
     transition: width 0.1s ease-out;
}

/**
   * CUSTOM CURSOR
   */

   .cursor-dot,
   .cursor-outline {
     display: block;
     position: fixed;
     top: -60px;
     left: -60px;
     transform: translate(-50%, -50%);
     border-radius: 50%; /* Circle shape */
     z-index: 10;
     transition-property: opacity, transform;
     transition-duration: 300ms;
     transition-timing-function: ease-in-out;
     pointer-events: none;
   }
   
   .cursor-dot {
     width: 60px;
     height: 60px;
     background-color: var(--bg-white);
     transform: translate(-50%, -50%) scale(0.1);
   }
   
   .cursor-dot.hovered {
     transform: translate(-50%, -50%) scale(1);
     mix-blend-mode: exclusion;
   }
   
   .cursor-outline {
     width: 30px;
     height: 30px;
     border: 2px solid var(--border-white);
     opacity: 0.5;
     transition-duration: 100ms;
   }
   
   .cursor-outline.hovered {
     opacity: 0;
   }
   
 
 
</pre></body></html>