*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body{
      background-color: black;
    }
    
    /* html{
      scroll-behavior: smooth;
    } */
        /* header{
        display: flex;
        width: 100%;
        height: 7.8vh;
        background-color: black;
    } */
    
    /* .left-page{
    width: 30%;
    height: 100%;
    background-color: blue;
    }
    .left-page .img-container{
        margin-left: 20px;
        width: 20%;
        height: 100%;
        background-color: rgb(139, 24, 24);
    }
    .img-container img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        
    }
    
    .center-page{
    width: 40%;
    height: 100%;
    background-color: blueviolet;
    }
    .center-page ul{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .center-page ul li{
    list-style-type: none;
    font-family: "Comfortaa", sans-serif;
    cursor: pointer;
    }
    
    .right-page{
        display: flex;
        justify-content: flex-end;
        width: 30%;
        height: 100%;
        background-color: brown;
    }
    
    .rightp-container{
        display: flex;
        width: 60%;
        height: 100%;
       
    }
    
    .rightpc-left{
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40%;
    height: 100%;
    background-color: coral;
    }
    .rightpc-left h4{
        margin-right: 10px;
        font-family: "Comfortaa", sans-serif;
    }
    .rightpc-right{
        width: 60%;
        height: 100%;
    }
    .btn-order{
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Comfortaa", sans-serif;
        font-weight: 700;
        background-image: url("/assets/img/button.png");
        margin-top: -8px;
        padding-top: 5px;
        width: 168px;
        height: 62px;
        background-repeat: no-repeat;
        background-size: 100%;
        cursor: pointer;
    
    }
    .circle-1{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 17%;
        height: 35%;
        border-radius: 100%;
        background-color: transparent;
        border: 1px solid grey;
        
    } */
    
    .hero-section{
        display: flex;
        position: relative;
        width: 100%;
        height: 100vh;
    }
      
    
    .volume-share {
        position: absolute;
        display: flex;
        justify-content: space-around;
        top: 35px;
        right: 170px;
        width: 10%;
        height: 7%;
        background-color: transparent;
    }
    
    .left-pg {
        display: flex;
        align-items: center;
        z-index: 2;
        width: 35%;
        height: 100%;
        background-color: transparent;
    }

    .left-pg .on {
      display: none;
  }
  .left-pg .off {
      display: block;
  }
    
    .on,
    .off {
        cursor: pointer;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .right-pg {
        z-index: 2;
        width: 35%;
        height: 100%;
        background-color: transparent;
    }
    
    .right-pg img {
        cursor: pointer;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .off {
        display: none;
    }
    
     .hero-section::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 100vh;
       background-color: black;
       opacity: 62%;
        z-index: 1;
      }
    
      .logo{
        object-fit: cover;
        width: 10.5rem;
        position: absolute;
        top: 40px;
        left: 80px;
        z-index: 2;
      }
      .qr-code{
       position: absolute;
       z-index: 2;
       bottom: 60px; 
       left: 100px;
      width: 114px;
      height: 114px;
      }
      .ps5{
        z-index: 2;
        position: absolute;
        width: 165px;
        height: 51px;
        bottom:125px;
        left: 230px;
      }
      .app-store{
        z-index: 2;
        position: absolute;
        width: 165px;
        height: 51px;
        bottom:65px;
        left: 230px;
      }
      .windows{
        z-index: 2;
        position: absolute;
        width: 165px;
        height: 51px;
        bottom:125px;
        left: 415px;
      }
    
      .google-play{
        z-index: 2;
        position: absolute;
        width: 165px;
        height: 51px;
        bottom:65px;
        left: 415px;
      }
      .epic-store{
        z-index: 2;
        position: absolute;
        width: 165px;
        height: 51px;
        bottom:65px;
        left: 600px;
      }
      
    
    
      
    .hero-section video{
        width: 100%;
        height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    }
    
    .button-ctr{
        z-index: 2;
        position: absolute;
        bottom: 190px;
        left: 140px;
        width: 40px;
        height: 40px;
    }
    .container {
        width: 40px;
        height: 40px;
        position: relative;
        border-radius: 50%;
      }
    
      .play-btn {
        position: absolute;
        appearance: none;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: conic-gradient(#ffffff, #ffffff);
        cursor: pointer;
        outline: none;
      }
    
      .play-btn::before {
        content: "";
        position: absolute;
        width: 93%;
        height: 93%;
        background-color: black;
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }
    
      .play-btn:checked {
        animation: borderAnimate 700ms ease-in-out 1;
        animation-fill-mode: forwards;
      }
    
      @keyframes borderAnimate {
        0% {
          transform: rotate(0);
          background: conic-gradient(#ffffff, transparent 20%);
        }
    
        80% {
          background: conic-gradient(#ffffff, transparent 90%);
        }
    
        100% {
          transform: rotate(360deg);
          background: conic-gradient(#ffffff, #ffffff);
        }
      }
    
      .play-icon {
        position: absolute;
        width: 20px;
        height: 20px;
        left: 60%;
        top: 50%;
        background-color: #ffffff;
        transform: translate(-60%, -50%) rotate(90deg);
        clip-path: polygon(50% 15%, 0% 100%, 100% 100%);
        transition: all 400ms ease-in-out;
        cursor: pointer;
      }
    
      .play-btn:checked + .play-icon {
        clip-path: polygon(0 100%, 0% 100%, 100% 100%);
        transform: translate(-50%, -50%) rotate(0deg); 
      }
    
      .pause-icon {
        position: absolute;
        width: 20px;
        height: 20px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
      }
    
      .pause-icon::before {
        content: "";
        position: absolute;
        width: 0%;
        height: 100%;
        background-color: #ffffff;
        left: 0;
      }
    
      .pause-icon::after {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        background-color: #ffffff;
        right: 0;
      }
    
      .play-btn:checked ~ .pause-icon::before {
        animation: reveal 300ms ease-in-out 350ms 1;
        animation-fill-mode: forwards;
      }
    
      .play-btn:checked ~ .pause-icon::after {
        animation: reveal 300ms ease-in-out 600ms 1;
        animation-fill-mode: forwards;
      }
    
      @keyframes reveal {
        0% {
          width: 0;
        }
    
        100% {
          width: 35%;
        }
      }
    
    
    
    
    
    
    
    ::-webkit-scrollbar {
      width: 5px;
      background-color: black;
    }
    
    ::-webkit-scrollbar-thumb{
      background-color: white;
    }

    .s2{
      position: relative;
      /* overflow: hidden; */
      width: 100%;
      height: 100vh;
    }
