* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "League Spartan", serif;
    user-select: none;
    scroll-behavior: smooth;
    
    
}
body{
    /* overflow: hidden; */
    /* min-height: 100%; */
    background-color: black;
    

}



.cursor-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #ff3131;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.01s ease-out;
    
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header {
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.nav {
    width: 80%;
    height: 8vh;
    background-color: rgba(0, 0, 0, 0.435);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    animation: slideDown 1s ease-out;
    position: fixed;
    z-index: 999;
}

.logo {
    height: 50px;
    width: 320px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.links{
    display: flex;
    gap: 25px;
    /* justify-content: center; */
    align-items: center;
    z-index: 99;
    /* margin-top: 30px; */
}

.links li {
    list-style: none;
    font-size: 25px;
}

.links a {
    text-decoration: none;
    color: white;
    position: relative;
}

.links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #ff3131;
    transition: width 0.3s ease-in-out;
}

.links a:hover::after {
    width: 100%;
}

.menu-op-icon{
    color: white;
    font-size: 35px;
    display: none;
}
.menu-cl-icon{
    color: white;
    font-size: 35px;
    display: none;
}

#contact-btn{
    
    font-size: 25px;
    padding: 5px 15px;
    background-color: #ff3131;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    border: none;
    border-radius: 5px;
}





@media screen and (max-width: 480px) {
 
   .menu-op-icon{
       display: block;
       margin-top: 5px;
   }
   

   .links{
       display: none;
       flex-direction: column;
       height: 100vh;
       width: 100%;
       background-color: #ff3131f0;
     border-bottom-left-radius: 10px;
       position: absolute;
       align-items: flex-start;
       top: -10px;
       right: 0;
       justify-content: center;
       padding-left: 30px;
   }
   .nav{
       width: 100%;
       /* background-color: aqua; */
       padding: 0 5px;
       position: fixed;
   }
   .header{
       position: relative;
   }
   .logo{
       height: 40px;
       width: 220px;
       /* background-color: green; */
   }
   .menu-cl-icon{
       display: block;
   }
   #contact-btn{
       width: 125px;
       background-color: white;
      
   }
   #contact-btn a{
       color: black;
      }
      .cursor-dot{
        display: none;
     }
     

   
}







@media screen and (min-width: 481px) and (max-width: 749px) {
   
    .menu-op-icon{
        display: block;
        margin-top: 5px;
    }
    

  .links{
      display: none;
      flex-direction: column;
      height: 100vh;
      width: 100%;
      background-color: #ff3131f0;
    border-bottom-left-radius: 10px;
      position: absolute;
      align-items: flex-start;
      top: -10px;
      right: 0;
      justify-content: center;
      padding-left: 30px;
  }
  .nav{
      width: 100%;
      /* background-color: aqua; */
      padding: 0 5px;
      position: fixed;
  }
  .header{
      position: relative;
  }
  .logo{
      height: 40px;
      width: 220px;
      /* background-color: green; */
  }
  .menu-cl-icon{
      display: block;
  }
  #contact-btn{
      width: 125px;
      background-color: white;
      
     
  }
  #contact-btn a{
   color: black;
  }
  .cursor-dot{
   display: none;
}


  
}








@media screen and (min-width: 750px) and (max-width: 1024px) {
  
  .menu-op-icon{
      display: block;
      margin-top: 5px;
  }
  

  .links{
      display: none;
      flex-direction: column;
      height: 100vh;
      width: 100%;
      background-color: #ff3131f0;
    border-bottom-left-radius: 10px;
      position: absolute;
      align-items: flex-start;
      top: -10px;
      right: 0;
      justify-content: center;
      padding-left: 30px;
      align-items: center;
  }
  .nav{
      width: 100%;
      /* background-color: aqua; */
      padding: 0 5px;
      position: fixed;
  }
  .header{
      position: relative;
  }
  .logo{
      height: 40px;
      width: 220px;
      /* background-color: green; */
  }
  .menu-cl-icon{
      display: block;
  }
  #contact-btn{
      width: 125px;
      background-color: white;
      
     
  }
  
 

  .cursor-dot{
   display: none;
}


 
}








.des-portfolio-head{
    min-height: 40vh;
    /* background-color: red; */
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: white;
    padding-bottom: 25px;
}

.des-portfolio-head h1{
    margin-left: 30px;
    font-size: 115px;
    text-transform: uppercase;
}
.des-portfolio-head h1 span{
    color: #ff3131;
}

.des-portfolio-head p{
    font-size: 25px;
    margin-left: 35px;
    width: 40%;
    
}

.des-portfolio-head p span{
    font-family: "Instrument Serif", serif;
    color: #ff3131;
}




@media screen and (max-width: 480px) {
    .des-portfolio-head h1{
        font-size: 50px;
    }
    .des-portfolio-head p{
        width: 90%;
    }
}


@media screen and (min-width: 481px) and (max-width: 749px){
    .des-portfolio-head h1{
        font-size: 60px;
    }
    .des-portfolio-head p{
        width: 80%;
    }
}


@media screen and (min-width: 750px) and (max-width: 1024px){
    .des-portfolio-head h1{
        font-size: 60px;
    }
    .des-portfolio-head p{
        width: 60%;
    }
}













.thumbnails-sec{
    min-height: 80vh;
    /* background-color: red; */

}

.thumb-top{
    min-height: 10vh;
    /* background-color: purple; */
    display: flex;
    align-items: center;
}

.thumb-top h1{
    font-size: 55px;
    margin-left: 30px;
    color: white;
}

.thumb-bot{
    min-height: 60vh;
    /* background-color: green; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 25px;
    padding-top: 5px;
}
.thumbnail{
    height: 40vh;
    width: 35%;
    overflow: hidden;
     /* background-color: red;  */
     transition: transform 0.3s ease-in-out;
    border-radius: 10px;
    
}
.thumbnail img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: transform 1s ease-in-out;
    
}
.thumbnail:hover{
    transform: scale(1.01);
    border: 1px solid #ff3131;
}




@media screen and (max-width: 480px){
    .thumb-top h1{
        font-size: 40px;
        margin-left: 30px;
        margin-bottom: 10px;
        margin-top: 10px;

    }
    .thumb-bot{
        flex-direction: column;
    }
    .thumbnail{
        width: 80%;
        height: 25vh;
    }
    .thumb-bot{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (min-width: 481px) and (max-width: 749px){
    .thumb-top h1{
        font-size: 45px;
        /* margin-left: 10px; */
        margin-bottom: 10px;
        margin-top: 10px;

    }
    .thumb-bot{
        flex-direction: column;
    }
    .thumbnail{
        width: 80%;
        height: 35vh;
    }
    .thumb-bot{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (min-width: 750px) and (max-width: 1024px){
    .thumbnail{
        width: 80%;
        height: 30vh;
        
    }
    .thumb-bot{
        flex-direction: column;
    }
}











.posters-sec{
    min-height: 80vh;
    /* background-color: red; */

}

.posters-top{
    min-height: 10vh;
    /* background-color: purple; */
    display: flex;
    align-items: center;
}

.posters-top h1{
    font-size: 55px;
    margin-left: 30px;
    color: white;
    text-transform: uppercase;
}

.posters-bot{
    min-height: 60vh;
    /* background-color: green; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 25px;
    padding-top: 5px;
}
.posters{
    height: 40vh;
    width: 20%;
    overflow: hidden;
     /* background-color: red;  */
     background-color: rgb(39, 38, 38);
     transition: transform 0.3s ease-in-out;
    border-radius: 10px;
    
}
.posters img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: transform 1s ease-in-out;
    
}
.posters:hover{
    transform: scale(1.01);
    border: 1px solid #ff3131;
}




@media screen and (max-width: 480px){
    .posters-top h1{
        font-size: 40px;
        margin-left: 30px;
        margin-bottom: 10px;
        margin-top: 10px;

    }
    .posters-bot{
        flex-direction: column;
        padding-bottom: 25px;
    }
    .posters{
        width: 60%;
        height: 30vh;
    }
    .posters-bot{
        padding-top: 20px;
        padding-top: 20px;
    }
}

@media screen and (min-width: 481px) and (max-width: 749px){
    .posters-top h1{
        font-size: 45px;
        /* margin-left: 10px; */
        margin-bottom: 10px;
        margin-top: 10px;

    }
    .posters-bot{
        flex-direction: column;
        padding-top: 20px;
    }
    .posters{
        width: 60%;
        height: 40vh;
    }
    .posters-bot{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (min-width: 750px) and (max-width: 1024px){
    .posters{
        width: 60%;
        height: 40vh;
        
    }
    .posters-bot{
        flex-direction: column;
        padding-top: 40px;
    }
}

























.covers-sec{
    min-height: 80vh;
    /* background-color: red; */

}

.covers-top{
    min-height: 10vh;
    /* background-color: purple; */
    display: flex;
    align-items: center;
}

.covers-top h1{
    font-size: 55px;
    margin-left: 30px;
    color: white;
    text-transform: uppercase;
}

.covers-bot{
    min-height: 60vh;
    /* background-color: green; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 25px;
    padding-top: 5px;
}
.covers{
    height: 50vh;
    width: 15vw;
    overflow: hidden;
     /* background-color: red;  */
     background-color: rgb(39, 38, 38);
     transition: transform 0.3s ease-in-out;
    border-radius: 10px;
    
}
.covers img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: transform 1s ease-in-out;
    
}
.covers:hover{
    transform: scale(1.01);
    border: 1px solid #ff3131;
}




@media screen and (max-width: 480px){
    .covers-top h1{
        font-size: 40px;
        margin-left: 30px;
        margin-bottom: 10px;
        margin-top: 10px;

    }
    .covers-bot{
        flex-direction: column;
        padding-bottom: 25px;
    }
    .covers{
        width: 60%;
        height: 45vh;
    }
    .covers-bot{
        padding-top: 20px;
        padding-top: 20px;
    }
}

@media screen and (min-width: 481px) and (max-width: 749px){
    .covers-top h1{
        font-size: 45px;
        /* margin-left: 10px; */
        margin-bottom: 10px;
        margin-top: 10px;

    }
    .covers-bot{
        flex-direction: column;
        padding-top: 20px;
    }
    .covers{
        width: 55%;
        height: 60vh;
    }
    .covers-bot{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (min-width: 750px) and (max-width: 1024px){
    .covers{
        width: 60%;
        height: 60vh;
        
    }
    .covers-bot{
        flex-direction: column;
        padding-top: 40px;
    }
}


























.footer{
    min-height: 70vh;
    /* background-color: blue; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot-box{
    background-color: #ff3131;
    min-height: 65vh;
    width: 95%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.fb-top{
    width: 98%;
    min-height: 8vh;
    background: black;
    border-radius: 10px;
    
}


.fb-bot{
    min-height: 45vh;
    width: 98%;
    /* background-color: aqua; */
    border-radius: 10px;
    display: flex;
    border-bottom: 2px dashed black;
    
}

.fb-b-left{
    height: 45vh;
    width: 50%;
    /* background-color: brown; */
    display: flex;
    align-items: center;
    
}
.logo-card{
    height: 300px;
    width: 260px;
    background-color: black;
    margin-left: 85px;
    transform: rotate(-10deg);
    border-radius: 15px;
    border: 2px solid gray;
    padding: 10px;
}
.logo-card:hover{
    border: 2px solid white;
    box-shadow: 4px 4px  20px black;

}
.logo-card img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
}
.fb-b-right{
    height: 45vh;
    width: 50%;
    /* background-color: green; */
}

.fb-last{
    height: 7vh;
    /* background-color: gray; */
    width: 98%;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;

}
.fb-last p{
    font-size: 15px;

}
.fb-last a{
    font-size: 25px;
    text-decoration: none;
    color: black;
}

.fb-right-top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40vh;
    /* background-color: blue; */
}

.fb-right-top h1{
    font-size: 95px;
}
.fb-right-top a{
    text-decoration: none;
    color: black;
    font-size: 25px;
}
.fb-right-bot{
    display: flex;
    justify-content: end;
    align-items: center;
    height: 5vh;

}
.icons{
    display: flex;
    align-items: center;
    height: 5vh;
    gap: 10px;
    margin-right: 25px;

}
.icons a{
    font-size: 30px;
    text-decoration: none;
    color: black;
}

.icons a:hover{
    color: white;

}

.back-to-top a:hover{
   text-decoration: underline;
    
}


@media screen and (max-width: 480px){
.fb-bot{
    flex-direction: column;
}
.fb-b-left{
    width: 100%;

}
.fb-b-right{
    width: 100%;
}
.logo-card{
    margin-left: 0;
    height: 210px;
    width: 180px;
}
.fb-b-left{
    display: flex;
    justify-content: center;
    align-items: center;
}
.fb-right-top h1{
    font-size: 45px;
}
.fb-right-top a{
    font-size: 20px;
}
.fb-right-bot{
    display: flex;
    justify-content: center;
}
.fb-last a{
    font-size: 15px;

}
.foot-box{
    margin-bottom: 15px;
    padding: 10px 0px;
}
.footer{
    padding-top: 15px;
}
}

@media screen and (min-width: 481px) and (max-width: 749px){
    .fb-bot{
        flex-direction: column;
    }
    .fb-b-left{
        width: 100%;
    
    }
    .fb-b-right{
        width: 100%;
    }
    .logo-card{
        margin-left: 0;
        height: 210px;
        width: 180px;
    }
    .fb-b-left{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .fb-right-top h1{
        font-size: 45px;
    }
    .fb-right-top a{
        font-size: 20px;
    }
    .fb-right-bot{
        display: flex;
        justify-content: center;
    }
    .fb-last a{
        font-size: 15px;
    
    }
    .foot-box{
        margin-bottom: 15px;
        padding: 10px 0px;
    }
    .footer{
        padding-top: 15px;
    }
}

@media screen and (min-width: 750px) and (max-width: 1024px){
   
    .fb-b-left{
        width: 100%;
    
    }
    .fb-b-right{
        width: 100%;
    }
    .logo-card{
        margin-left: 0;
        height: 270px;
        width: 240px;
    }
    .fb-b-left{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .fb-right-top h1{
        font-size: 65px;
    }
    .fb-right-top a{
        font-size: 25px;
    }
    .fb-right-bot{
        display: flex;
        justify-content: center;
    }
    .fb-last a{
        font-size: 25px;
    
    }
    .foot-box{
        margin-bottom: 15px;
        padding: 10px 0px;
    }
    .footer{
        padding-top: 15px;
    }
}








#active{
    color: #ff3131;
    font-weight: 700;
}

@media screen and (max-width: 480px){
    #active{
        color: black;
    }
}
@media screen and (min-width: 481px) and (max-width: 749px){
    #active{
        color: black;
    }
}
@media screen and (min-width: 750px) and (max-width: 1024px){
   #active{
    color: black;

   }
    
}

.fb-right-top a:hover{
    color: white;
    text-decoration: underline;
    
}


.back-to-top a:hover{
    color: white;
}
