@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    resize: none;
    outline: none;
    text-decoration: none;
    list-style: none;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  font-family: 'Poppins', sans-serif;
};

:root {
    --black:#1D1D1B;
}

body{
    background-color:#1D1D1B;
}

  #presentation{
    width: 100vw;
    height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden !important;
  }
  
  #presentation .container{
    width: 80%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12rem;
    margin-bottom: 10%;
  }
  
  #presentation .container .logo{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
  }
  
  #presentation .container .logo img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width:150px;
    height: fit-content;
  }
  
  #presentation .container .presentation{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #presentation .container .presentation .tv{
    position: relative;
    overflow: visible;
    width: 60%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #presentation .container .presentation .tv .video{
    width: 100%;
    height: 430px;
    display: flex;
    align-items: end;
    justify-content: end;
    z-index: 9;
    position: relative;
    border: 2px solid #4a4b4d;
    border-radius: 10px 10px 4px 4px;
    top: 10%;
  }
  
  #presentation .container .presentation .tv .video .sidebar{
    backdrop-filter: blur(45px);
      background:rgba(29, 29, 27, 0.20);
      width: 90px; 
      height: 100%;
      position: absolute;
      right: 0;
      bottom: 0;
      border-radius: 0px 10px 4px 0px;
      z-index: 8;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 80%;
  
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content img{
    width: 50px;
    height: fit-content;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border-bottom: 1px solid #fff; */
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour h4{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour h1{
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour p{
    font-size: 8px;
    font-weight: 500;
    color: #fff;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .line{
    width: 80%;
    height: 1px;
    background-color: #ffffff4f;
    display: block;
  }
  
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  } 
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather img{
    width: 25px;
    height: fit-content;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather h1{
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: start;
    justify-content: center;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather h1 span{
    color: #fff;
    font-size: 10px;
    font-weight: 400;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather h2{
    color: #fff;
    font-size: 8px;
    font-weight: 500;
  }
  
  #presentation .container .presentation .tv .video .controls{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 10px;
    bottom: 40px;
    z-index: 99999999999999;
    transition: all .5s ease;
  }
  
  #presentation .container .presentation .tv .video .controls .play{
    display: none;
    transition: all .5s ease;
  } 
  
  #presentation .container .presentation .tv .video .controls .pause{
    display: flex;
    width: 30px;
    height: 30px;
    transition: all .5s ease;
    cursor: pointer;
  }
  
  #presentation .container .presentation .tv .video .controls[data-active='true'] .play{
    width: 30px;
    height: 30px;
    display: flex;
    cursor: pointer;
  }
  
  #presentation .container .presentation .tv .video .controls[data-active='true'] .pause{
      display: none;
  }
  
  #presentation .container .presentation .tv .video .controls2{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 30px;
    bottom: 40px;
    z-index: 99999999999999;
    transition: all .5s ease;
  }
  
  #presentation .container .presentation .tv .video .controls2 .max{
    display: flex;
    width: 25px;
    height: 25px;
    transition: all .5s ease;
    cursor: pointer;
  }
  
  #presentation .container .presentation .tv .video .controls2[data-active='true'] .max{
    display: flex;
  }
  
  #presentation .container .presentation .tv .video .text{
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    gap: 1rem;
    width: 100%;
    height:366px;
    object-fit: cover;
    color: #fff;
    background-color: #0a0a08b6;
    z-index: 999999999999999;
    transition: all .5s ease;
    border-radius: 10px 10px 4px 4px;
    cursor: pointer;
  }
  
  #presentation .container .presentation .tv .video .text[data-active='true']{
    opacity: 0;
    display: none;
  }
  
  #presentation .container .presentation .tv .video .text h1{
    color: #fff;
    background-color: transparent;
    font-size: 12px;
    right: auto;
    z-index: 99;
  }
  
  #presentation .container .presentation .tv .video video{
    width: 100% !important;
    height: fit-content;
    border-radius: 10px 10px 4px 4px;
    z-index: 1;
  }
  
  #presentation .container .presentation .tv #television{
    width: 100%;
  }


@media(max-width: 768px){
#presentation{
  overflow: hidden !important;
  height: 90vh;
}
  
  #presentation .container{
    width: 80%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4% !important;
  }
  
  #presentation .container .logo{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
  }
  
  #presentation .container .logo img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width:150px;
    height: fit-content;
  }
  
  #presentation .container .presentation{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #presentation .container .presentation .tv{
    position: relative;
    overflow: visible;
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #presentation .container .presentation .tv .video{
    width: 100%;
    height: 430px;
    display: flex;
    align-items: end;
    justify-content: end;
    z-index: 9;
    position: relative;
    border: 2px solid #4a4b4d;
    border-radius: 10px 10px 4px 4px;
    top: 10%;
  }
  
  #presentation .container .presentation .tv .video .sidebar{
    backdrop-filter: blur(45px);
      background:rgba(29, 29, 27, 0.20);
      width: 60px; 
      height: 100%;
      position: absolute;
      right: 0;
      bottom: 0;
      border-radius: 0px 10px 4px 0px;
      z-index: 8;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content img{
    width: 34px;
    height: fit-content;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour h4{
    font-size:10px;
    font-weight: 400;
    color: #fff;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour h1{
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour p{
    font-size: 6px;
    font-weight: 500;
    color: #fff;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .line{
    width: 60%;
    height: 1px;
    background-color: #ffffff4f;
    display: block;
  }
  
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  } 
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather img{
    width: 15px;
    height: fit-content;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather h1{
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: start;
    justify-content: center;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather h1 span{
    color: #fff;
    font-size: 8px;
    font-weight: 400;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather h2{
    color: #fff;
    font-size: 6px;
    font-weight: 500;
  }
  
  #presentation .container .presentation .tv .video .text{
    width: 100%;
    height:100%;
  }

  
  #presentation .container .presentation .tv #television{
    margin-top: 5px;
  }
}

@media(min-width: 768px) and (max-width: 1024px){
  #presentation{
    overflow: hidden !important;
  }
    
    #presentation .container{
      width: 80%;
      height: fit-content;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12rem;
      margin-bottom: 0% !important;
    }
    
    #presentation .container .logo{
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100px;
    }
    
    #presentation .container .logo img{
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      width:150px;
      height: fit-content;
    }
    
    #presentation .container .presentation{
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    #presentation .container .presentation .tv{
      position: relative;
      overflow: visible;
      width: 100%;
      height: 100px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    #presentation .container .presentation .tv .video{
      width: 100%;
      height: 430px;
      display: flex;
      align-items: end;
      justify-content: end;
      z-index: 9;
      position: relative;
      border: 2px solid #4a4b4d;
      border-radius: 10px 10px 4px 4px;
      top: 10%;
    }
    
    #presentation .container .presentation .tv .video .sidebar{
      backdrop-filter: blur(45px);
        background:rgba(29, 29, 27, 0.20);
        width: 60px; 
        height: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        border-radius: 0px 10px 4px 0px;
        z-index: 8;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content img{
      width: 34px;
      height: fit-content;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .hour{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .hour h4{
      font-size:10px;
      font-weight: 400;
      color: #fff;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .hour h1{
      font-size: 14px;
      font-weight: 400;
      line-height: 1;
      color: #fff;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .hour p{
      font-size: 6px;
      font-weight: 500;
      color: #fff;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .line{
      width: 60%;
      height: 1px;
      background-color: #ffffff4f;
      display: block;
    }
    
    
    #presentation .container .presentation .tv .video .sidebar
    .content .weather{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    } 
    
    #presentation .container .presentation .tv .video .sidebar
    .content .weather img{
      width: 15px;
      height: fit-content;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .weather h1{
      color: #fff;
      font-weight: 500;
      font-size: 14px;
      display: flex;
      align-items: start;
      justify-content: center;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .weather h1 span{
      color: #fff;
      font-size: 8px;
      font-weight: 400;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .weather h2{
      color: #fff;
      font-size: 6px;
      font-weight: 500;
    }
    
    #presentation .container .presentation .tv .video .text{
      width: 100%;
      height:100%;
    }
  
    
    #presentation .container .presentation .tv #television{
      margin-top: 5px;
    }
}

@media(min-width: 1024px) and (max-width: 1362px){
  #presentation{
    overflow: hidden !important;
  }
    
    #presentation .container{
      width: 80%;
      height: fit-content;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12rem;
      margin-bottom: 20% !important;
    }
    
    #presentation .container .logo{
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100px;
    }
    
    #presentation .container .logo img{
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      width:150px;
      height: fit-content;
    }
    
    #presentation .container .presentation{
      width: 80%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    #presentation .container .presentation .tv{
      position: relative;
      overflow: visible;
      width: 100%;
      height: 100px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    #presentation .container .presentation .tv .video{
      width: 100%;
      height: fit-content;
      display: flex;
      align-items: end;
      justify-content: end;
      z-index: 9;
      position: relative;
      border: 2px solid #4a4b4d;
      border-radius: 10px 10px 4px 4px;
      top: 10%;
    }
    

    #presentation .container .presentation .tv .video .sidebar{
      backdrop-filter: blur(45px);
        background:rgba(29, 29, 27, 0.20);
        width: 90px; 
        height: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        border-radius: 0px 10px 4px 0px;
        z-index: 8;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      height: 70%;
    
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content img{
      width: 70px;
      height: fit-content;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .hour{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .hour h4{
      font-size: 14px;
      font-weight: 400;
      color: #fff;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .hour h1{
      font-size: 24px;
      font-weight: 400;
      line-height: 1;
      color: #fff;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .hour p{
      font-size: 8px;
      font-weight: 500;
      color: #fff;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .line{
      width: 80%;
      height: 1px;
      background-color: #ffffff4f;
      display: block;
    }
    
    
    #presentation .container .presentation .tv .video .sidebar
    .content .weather{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: .5rem;
    } 
    
    #presentation .container .presentation .tv .video .sidebar
    .content .weather img{
      width: 25px;
      height: fit-content;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .weather h1{
      color: #fff;
      font-weight: 500;
      display: flex;
      align-items: start;
      justify-content: center;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .weather h1 span{
      color: #fff;
      font-size: 10px;
      font-weight: 400;
    }
    
    #presentation .container .presentation .tv .video .sidebar
    .content .weather h2{
      color: #fff;
      font-size: 8px;
      font-weight: 500;
    }
    
    #presentation .container .presentation .tv .video .text{
      width: 100%;
      height:100%;
    }
  
    #presentation .container .presentation .tv .video video{
      width: 100% !important;
      height: fit-content;
      border-radius: 10px 10px 4px 4px;
      z-index: 1;
    }
    
    #presentation .container .presentation .tv #television{
      margin-top: 5px;
    }
}

@media(min-width: 1440px){
  
  #presentation{
    width: 100vw;
    height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden !important;
  }
  
  #presentation .container{
    width: 80%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12rem;
    margin-bottom: 10%;
  }
  
  #presentation .container .logo{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
  }
  
  #presentation .container .logo img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width:150px;
    height: fit-content;
  }
  
  #presentation .container .presentation{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #presentation .container .presentation .tv{
    position: relative;
    overflow: visible;
    width: 60%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #presentation .container .presentation .tv .video{
    width: 100%;
    height: 430px;
    display: flex;
    align-items: end;
    justify-content: end;
    z-index: 9;
    position: relative;
    border: 2px solid #4a4b4d;
    border-radius: 10px 10px 4px 4px;
    top: 10%;
  }
  
  #presentation .container .presentation .tv .video .sidebar{
    backdrop-filter: blur(45px);
      background:rgba(29, 29, 27, 0.20);
      width: 90px; 
      height: 100%;
      position: absolute;
      right: 0;
      bottom: 0;
      border-radius: 0px 10px 4px 0px;
      z-index: 8;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 80%;
  
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content img{
    width: 50px;
    height: fit-content;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border-bottom: 1px solid #fff; */
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour h4{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour h1{
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .hour p{
    font-size: 8px;
    font-weight: 500;
    color: #fff;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .line{
    width: 80%;
    height: 1px;
    background-color: #ffffff4f;
    display: block;
  }
  
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  } 
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather img{
    width: 25px;
    height: fit-content;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather h1{
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: start;
    justify-content: center;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather h1 span{
    color: #fff;
    font-size: 10px;
    font-weight: 400;
  }
  
  #presentation .container .presentation .tv .video .sidebar
  .content .weather h2{
    color: #fff;
    font-size: 8px;
    font-weight: 500;
  }
  
  #presentation .container .presentation .tv .video .controls{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 10px;
    bottom: 40px;
    z-index: 99999999999999;
    transition: all .5s ease;
  }
  
  #presentation .container .presentation .tv .video .controls .play{
    display: none;
    transition: all .5s ease;
  } 
  
  #presentation .container .presentation .tv .video .controls .pause{
    display: flex;
    width: 30px;
    height: 30px;
    transition: all .5s ease;
    cursor: pointer;
  }
  
  #presentation .container .presentation .tv .video .controls[data-active='true'] .play{
    width: 30px;
    height: 30px;
    display: flex;
    cursor: pointer;
  }
  
  #presentation .container .presentation .tv .video .controls[data-active='true'] .pause{
      display: none;
  }
  
  #presentation .container .presentation .tv .video .controls2{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 30px;
    bottom: 40px;
    z-index: 99999999999999;
    transition: all .5s ease;
  }
  
  #presentation .container .presentation .tv .video .controls2 .max{
    display: flex;
    width: 25px;
    height: 25px;
    transition: all .5s ease;
    cursor: pointer;
  }
  
  #presentation .container .presentation .tv .video .controls2[data-active='true'] .max{
    display: flex;
  }
  
  #presentation .container .presentation .tv .video .text{
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    gap: 1rem;
    width: 100%;
    height:100%;
    object-fit: cover;
    color: #fff;
    background-color: #0a0a08b6;
    z-index: 999999999999999;
    transition: all .5s ease;
    border-radius: 10px 10px 4px 4px;
    cursor: pointer;
  }
  
  #presentation .container .presentation .tv .video .text[data-active='true']{
    opacity: 0;
    display: none;
  }
  
  #presentation .container .presentation .tv .video .text h1{
    color: #fff;
    background-color: transparent;
    font-size: 12px;
    right: auto;
    z-index: 99;
  }
  
  #presentation .container .presentation .tv .video video{
    width: 100% !important;
    height: fit-content;
    border-radius: 10px 10px 4px 4px;
    z-index: 1;
  }
  
  #presentation .container .presentation .tv #television{
    width: 100%;
  }

}