@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Cousine&family=Fira+Code:wght@300;400;500;600;700&family=Maitree:wght@500&family=Monoton&family=Prompt:wght@100;300;400;500;700&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt',sans-serif;
    text-transform: capitalize;
    transition: all .2s cubic-bezier(.34, 1.12,.68,1.31 );
    scroll-behavior: smooth;
}


header{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top:0; left: 0;
    z-index: 1000;
    padding:0.5rem 5%;
    background:#f40404;
   
  }
  
  
  
  header .logo{
    font-size: 1.5rem;
    color:#fff;
    text-decoration: none;
  }
  
  header .logo i{
    padding:0 .5rem;
  }
  
  header .navbar ul{
    position: relative;
   
  }
  
  header .navbar ul li{
   position: relative;
   list-style: none;
   float: left;
   
  }
  
  header .navbar ul li a{
    color:#fff;
    font-size: 1rem;
    padding: 1px 15px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
   
  }
  header .navbar ul li a:hover{
  background: #fff;
  color:#0c1683;
  border-radius: 10px;
  }
  
  header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background: #0c1683;
    display: none;
    
  }
  
  header .navbar ul li:hover ul{
    display: block;
  }
  
  header .navbar ul li ul li{
   position: relative;
   width: 100%;
   border: 1px solid rgba(0, 0, 0, 0.2);
   
  }
  
  header .navbar ul li a::before{
    content: '';
    position: absolute;
    bottom:-.5rem; right:0;
    width:0%;
    height:.2rem;
    background:#0c1683;
    transition: 0.5s linear;
  
    
  }
  
  header .navbar ul li a.active::before,
  header .navbar ul li a:hover::before{
    left:0;
    width:100%;
    
    
  }
  
  header #menu{
    font-size: 3rem;
    color:#fff;
    cursor: pointer;
    display: none;
   
  }
  


.hero-section {
    
   margin-top: -15px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}
.section-12 {
    top: 90px;
   padding-top: 5px;
   padding-bottom: 10px;
    background-color: #07108b;
    text-align: center;
}
.section-12 p{
  
    font-size: 20px;
    color: #fff;
}
.section-12 h1{
    margin-top: 15px;
    font-size: 35px;
    color: #fff;
}


.gallery{
    min-height: 100vh;
    background:#fff;
    padding-bottom: 100px;
   
}
.gallery .controls{
    margin-top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap:wrap ;
    padding: 20px 0;
    list-style: none;
}

.gallery .controls .buttons{
    
    height: 40px;
    width: 140px;
    background: #fff;
    color: #666;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
    margin: 20px;
    box-shadow: 0 3px 5px rgb(0, 0,0,.3);
    text-align: center;
    border-radius: .5rem;
}
.gallery .controls .buttons.active{
    background: #ff0000;
    color: #fff;
}
.gallery .image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap:wrap ;
}
.gallery .image-container .image{
    height: 400px;
    width: 350px;
    overflow: hidden;
    border: 15px solid #fff;
    box-shadow: 0 3px 5px rgb(0, 0,0,.3);
    margin: 20px;
    border-radius: .5rem;

}
.gallery .image-container .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: .5rem;
}
.gallery .image-container .image:hover img{
    transform: scale(1.4);
}

.footer{
    background:#333;
  }
  
  .footer .box-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer .box-container .box{
    flex:1 1 30rem;
    margin:1rem;
    padding-left: 5rem;
  }
  
  .footer .box-container .box h3{
    font-size:1rem;
    color:#1882f3;
  }
  
  .footer .box-container .box p{
    font-size: .8rem;
    color:#fff;
   
  }
  .footer .box-container .box a i{
    padding:0.5rem 1rem;
    color:#1882f3;
  }
  
  .footer .box-container .box p i{
    padding:0.2rem .5rem;
    color:#1882f3;
  }
  
  
  
  .footer .box-container .box a{
    font-size: 1rem;
    display:block;
    color:#fff;
    padding:.1rem 0;
  }
  
  .footer a:hover{
    text-decoration: underline;
  }
  
  .footer .credit{
    padding:1rem .5rem;
    text-align: center;
    background:#333;
    color:#eee;
    font-size: 1rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.5);
  }
  
  .footer .credit a{
    color:#1882f3;
  }
  
  
  @media screen and (max-width: 991px){
    .hero-section {
        display: block;
        overflow: visible;
    }
    .footer .box-container .box{
     
        padding-left: 1rem;
      }
      .footer .box-container .box p{
        font-size: .8rem;
      }
      .footer .credit{
            
        font-size: 1rem;
    }
    }
    @media screen and (max-width: 767px){
        .hero-section {
            overflow: hidden;
        
        }
        .footer .credit{
                
            font-size: 10rem;
        }
        }
@media screen and (max-width: 570px){
.hero-section {
    padding-top: 100px;
    overflow: hidden;
}

  .footer .credit{
        
    font-size: .5rem;
}
}


