* {
    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: 1;
}

.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;
}



.main {
    height: 90vh;
    background-color: black;
    position: relative;
    overflow: hidden;
    z-index: -1;
   
}
.wrapper{
    height: 90vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.23);
    position: absolute;
    left: 0;
    top: 0;
    backdrop-filter: blur(40px);
    z-index: 1;
}
.main-text h1{
    color: white;
    font-size: 205px;
    /* line-height: 190px; */
    text-align: center;
    text-transform: uppercase;
    animation: mainheadanim 5s infinite ease-in-out;
    
    
}
.main-text h1 span{
    color: #ff3131;  
    font-size: 230px;         
    
    
}
@keyframes mainheadanim{
0%{
    opacity: 10%;
}
50%{
    opacity: 100%;
}
100%{
    opacity: 10%;
}
}
.main-ball {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #ff3131, rgba(137, 58, 58, 0.679) 70%);
    box-shadow: 0 0 80px 40px #ff3131;
    position: absolute;
    top: 30%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: moveBall 5s infinite ease-in-out;
}

@keyframes moveBall {
    0% {
      transform: translate(0, 0);
      opacity: 30%;
    }
    25% {
      transform: translate(100px, 50px);
      opacity: 50%;
    }
    50% {
      transform: translate(0, 100px);
      opacity: 80%;
    }
    75% {
      transform: translate(-100px, 50px);
      opacity: 100%;
    }
    100% {
      transform: translate(0, 0);
      opacity: 30%;
    }
  }











@media screen and (max-width: 480px) {
     .main-text h1 span{
       font-size: 85px;
    }
    .cursor-dot{
        display: none;
    }
    .main-text h1{
        font-size: 50px;

    }
    .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;
       }
    












    .main-ball{
        height: 100px;
        width: 100px;
    }
    @keyframes moveBall {
        0% {
          transform: translate(0, 0);
        }
        25% {
          transform: translate(100px, 50px);
        }
        50% {
          transform: translate(0, 20px);
        }
        75% {
          transform: translate(-100px, -50px);
        }
        100% {
          transform: translate(0, 0);
        }
      }
    
}







@media screen and (min-width: 481px) and (max-width: 749px) {
    .main-text h1 span{
      font-size: 85px;
   }
   .main-text h1{
       font-size: 50px;

   }
   .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;
}












   .main-ball{
       height: 100px;
       width: 100px;
   }
   @keyframes moveBall {
       0% {
         transform: translate(0, 0);
       }
       25% {
         transform: translate(100px, 50px);
       }
       50% {
         transform: translate(0, 20px);
       }
       75% {
         transform: translate(-100px, -50px);
       }
       100% {
         transform: translate(0, 0);
       }
     }
   
}








@media screen and (min-width: 750px) and (max-width: 1024px) {
    .main-text h1 span{
      font-size: 155px;
   }
   .main-text h1{
       font-size: 90px;

   }
   .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;
       
      
   }
   
   #contact-btn a{
    color: black;
   }

   .cursor-dot{
    display: none;
}










   .main-ball{
       height: 200px;
       width: 200px;
   }
   @keyframes moveBall {
       0% {
         transform: translate(0, 0);
       }
       25% {
         transform: translate(100px, 70px);
       }
       50% {
         transform: translate(0, 20px);
       }
       75% {
         transform: translate(-100px, -70px);
       }
       100% {
         transform: translate(0, 0);
       }
     }
   
}












.main-2{
    min-height: 100vh;
    /* width: 100%; */
    background-color: rgb(0, 0, 0);


}


.main-about{
    /* background-color: red; */
    min-height: 70vh;
}

.m-ab-top{
    height: 40vh;
    /* background-color: blue; */
    display: flex;
    align-items: end;
}

.m-ab-top h1{
    font-size: 115px;
    margin-left: 30px;
    color: white;
}

.m-ab-top span{
    color: #ff3131;
}



.m-ab-bt{
    min-height: 30vh;
    /* background-color: blueviolet; */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: end;
    
}

.m-ab-bt p{
    
    font-size: 25px;
    
}
.m-ab-bt p span{
    font-family: "Instrument Serif", serif;
    color: #ff3131;
}

.m-ab-bt h1{
    font-size: 35px;
    margin-bottom: 20px;

}

.m-ab-text{
    /* background-color: red; */
    width: 40%;
    margin-right: 30px;
    margin-top: 20px;
}

#more-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;
    margin-top: 20px;
    margin-bottom: 10px;
}
#more-btn:hover{
    background-color: #940000;
}
#more-btn a{
    color: white;
    text-decoration: none;
}




@media screen and (max-width: 480px){
    .m-ab-top h1{
        font-size: 50px;
        margin-left: 30px;
    }
    .m-ab-top{
        height: 30vh;
    }
    .m-ab-text{
        width: 85%;
    }

    .m-ab-bt{
        padding-top: 50px;
    }

}





@media screen and (min-width: 481px) and (max-width: 749px){
.m-ab-top{
    height: 30vh;
}
.m-ab-top h1{
    font-size: 60px;
    
}
.m-ab-text{
    width:70%;
    
}
.m-ab-bt{
    padding-top: 50px;
}

}

@media screen and (min-width: 750px) and (max-width: 1024px){
    .m-ab-top{
        height: 30vh;
    }
    .m-ab-top h1{
        font-size: 90px;
        
    }
    .m-ab-text{
        width:70%;
        
    }
    .m-ab-bt{
        padding-top: 50px;
    }
    .m-ab-text p{
        font-size: 35px;
    }
    .m-ab-text h1{
        font-size: 45px;
    }
}




.img-sec{
    height: 100vh;
    /* background-color: purple; */
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.img1{
    height: 95vh;
    width: 95%;
    /* background-color: aqua; */
    border-radius: 10px;
}
.img1{
   background-image: url(img1.jpg);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

@media screen and (max-width: 480px){
    .img-sec{
        height: 50vh;
    }
    .img1{
        height: 45vh;
    }
}

@media screen and (min-width: 481px) and (max-width: 749px){
    .img-sec{
        height: 70vh;
    }
    .img1{
        height: 65vh;
    }
}

@media screen and (min-width: 750px) and (max-width: 1024px){
    .img-sec{
        height: 80vh;

    }
    .img1{
        height: 75vh;
    }
}


.testimonials{
    min-height: 80vh;
    /* background: red; */
}


.tm-top{
    min-height: 10vh;
    /* background-color: blue; */
    display: flex;
    align-items: end;
}

.tm-top h1{
    font-size: 55px;
    margin-left: 30px;
    color: white;
    text-transform: uppercase;
}


.tm-bot{
    min-height: 70vh;
    /* background-color: pink; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.tm-box{
    min-height: 60vh;
    /* background-color: green; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

#short{
    height: 450px;
    width: 350px;
    background-color: #2f2f2f;
    border-radius: 10px;
}
.img{
    height: 200px;
    width: 350px;
    background-color: #2f2f2f;
    border-radius: 40px;
}
#img2{
    height: 230px;
    width: 350px;

}
.tms iframe{
    height: 100%;
    width: 100%;
    border-radius: 10px;
}
.tms img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
}






@media screen and (max-width: 480px){
    .tm-top h1{
        font-size: 40px;
    }

    .tm-box{
        flex-direction: column;
        padding-top: 25px;
        padding-bottom: 25px;
    }
    #video{
        width: 80%;
        height: 60vh;
        border-radius: 10px;
    }
    #img{
        width: 80%;
        height: 30vh;
    }

}

@media screen and (min-width: 481px) and (max-width: 749px){
    .tm-top h1{
        font-size: 45px;
    }
    .tms{
        width: 80%;
        height: 40vh;
        border-radius: 10px;
    }
    
}


@media screen and (min-width: 750px) and (max-width: 1024px){
    .tms{
        width: 80%;
        height: 30vh;
        border-radius: 10px;
    }
}




.ft-work{

    min-height: 25vh;
    /* background-color: aquamarine; */
}

.ft-top{
    min-height: 25vh;
    /* background-color: red; */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 15px;

}

.ft-top h1{
    font-size: 115px;
}
.ft-top p{
    font-size: 25px;
    width: 30%;
    text-align: center;
    margin-bottom: 155px;
}
.ft-top p span{
    font-family: "Instrument Serif", serif;
    color: #ff3131;
    


}
@media screen and (max-width: 480px){
    .ft-top h1{
        font-size: 50px;
    }
    .ft-top{
        text-align: center;
    }
    .ft-top p{
        width: 90%;
       
    }
}

@media screen and (min-width: 481px) and (max-width: 749px){
    .ft-top h1{
        font-size: 60px;
    }
    .ft-top{
        text-align: center;
    }
    .ft-top p{
        width: 90%;
    }
}

@media screen and (min-width: 750px) and (max-width: 1024px){
    .ft-top h1{
        font-size: 90px;
    }
    .ft-top{
        text-align: center;
    }
    .ft-top p{
        width: 60%;
        font-size: 35px;
       
    }
}

.lf-videos{
    /* background: red; */
    min-height: 80vh;
}

.lf-top{
    min-height: 10vh;
    /* background-color: blue; */
    display: flex;
    align-items: end;
}

.lf-top h1{
    font-size: 55px;
    margin-left: 30px;
    color: white;
}


.lf-bot{
    min-height: 60vh;
    /* background-color: pink; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.lf-video{
    width: 40%;
    height: 40vh;
    border-radius: 10px;
    background: #2f2f2f;
}

.lf-video iframe{
    height: 100%;
    width: 100%;
    border-radius: 10px;
}


@media screen and (max-width: 480px){
    .lf-top h1{
        font-size: 40px;
    }
    .lf-video{
        width: 80%;
        height: 30vh;
        border-radius: 10px;
    }

}

@media screen and (min-width: 481px) and (max-width: 749px){
    .lf-top h1{
        font-size: 45px;
    }
    .lf-video{
        width: 80%;
        height: 40vh;
        border-radius: 10px;
    }
    
}


@media screen and (min-width: 750px) and (max-width: 1024px){
    .lf-video{
        width: 80%;
        height: 30vh;
        border-radius: 10px;
    }
}



.video-edits{
    min-height: 80vh;
    /* background-color: aqua; */
}

.ve-top{
    min-height: 10vh;
    /* background-color: purple; */
    display: flex;
    align-items: center;
}

.ve-top h1{
    font-size: 55px;
    margin-left: 30px;
    color: white;
}

.ve-bot{
    min-height: 60vh;
    /* background-color: green; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.videos{
    height: 50vh;
    width: 15%;
    
    background-color: #2f2f2f;
    border-radius: 10px;
}
.videos iframe{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    
}

.videos-btn{
    height: 10vh;
    /* background-color: #2f2f2f; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.videos-btn button{
    font-size: 25px;
    padding: 5px 15px;
    background-color: #ff3131;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    border: none;
    border-radius: 5px;
}
.videos-btn button a{
    color: white;
    text-decoration: none;

}
.videos-btn button:hover{
    
        background-color: #940000;
    
}







@media screen and (max-width: 480px){
    .ve-top h1{
        font-size: 40px;
        margin-left: 30px;
        margin-bottom: 10px;
        margin-top: 10px;

    }
    .ve-bot{
        flex-direction: column;
    }
    .videos{
        width: 80%;
        height: 60vh;
    }
    .ve-bot{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (min-width: 481px) and (max-width: 749px){
    .ve-top h1{
        font-size: 45px;
        /* margin-left: 10px; */
        margin-bottom: 10px;
        margin-top: 10px;

    }
    .ve-bot{
        flex-direction: column;
    }
    .videos{
        width: 50%;
        height: 60vh;
    }
    .ve-bot{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (min-width: 750px) and (max-width: 1024px){
    .videos{
        width: 40%;
        
    }
}




.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;
   
}
.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: 70%;
        height: 20vh;
    }
    .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: 70%;
        height: 30vh;
    }
    .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;
}

.posters-bot{
    min-height: 60vh;
    /* background-color: green; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}
.posters{
    height: 40vh;
    width: 20%;
    overflow: hidden;
     /* background-color: red;  */
     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;
    }
    .posters{
        width: 60%;
        height: 30vh;
    }
    .posters-bot{
        padding-top: 20px;
        padding-bottom: 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;
    }
    .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;
    }
}














.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;
}

.covers-bot{
    min-height: 60vh;
    /* background-color: green; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}
.covers{
    height: 50vh;
    width: 15%;
    overflow: hidden;
     /* background-color: red;  */
     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;
    }
    .covers{
        width: 80%;
        height: 60vh;
    }
    .covers-bot{
        padding-top: 20px;
        padding-bottom: 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;
    }
    .covers{
        width: 50%;
        height: 60vh;
    }
    .covers-bot{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (min-width: 750px) and (max-width: 1024px){
    .covers{
        width: 40%;
        height: 40vh;
        
    }
    .covers-bot{
        flex-direction: column;
    }
}
























.img2{
    height: 95vh;
    width: 95%;
    /* background-color: aqua; */
    border-radius: 10px;
}
.img2{
   background-image: url(img2.jpg);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

@media screen and (max-width: 480px){
    .img-sec{
        height: 50vh;
    }
    .img2{
        height: 45vh;
    }
}

@media screen and (min-width: 481px) and (max-width: 749px){
    .img-sec{
        height: 70vh;
    }
    .img2{
        height: 65vh;
    }
}

@media screen and (min-width: 750px) and (max-width: 1024px){
    .img-sec{
        height: 80vh;

    }
    .img2{
        height: 75vh;
    }
}




.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;
}