@import url("./skin.css");
@import url("./basics.css");
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    
}
:root{
    --primary-red: #EE3131;
    --secondary-red: #F6F6FB;
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary-red);
}
.section{
  padding-top: 104px !important;
}
.hero-section{
    margin-top: 20px;
    background-image: url(images/facade.jpeg);
    height: 70vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    
}


.toolbar-btns{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.toolbar-btns label{
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.35s ease;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;

}
.toolbar-btns label:hover{
    background-color: var(--primary-red);
    color: var(--secondary-red);
    
}
.activebtn{
    background-color: var(--primary-red);
    color: var(--secondary-red);
}

.active{
    background-color: transparent;
}
/* .gallery-pic{
    
} */

.container{
    
    width: 85%;
    margin: 0 auto; 
    padding: 0;
    overflow: hidden;
    
    
}
.section-head-Contact {
    margin-left: -32px!important;
  }

.content img{
    width: 300px;
    height: 200px;
    margin: 10px;
    transition: all 0.25s ease;
    
    
}
.content a{
    transition: all 0.25s ease;
    overflow: hidden;
}
.content a:hover{
    opacity: 0.5;

}
img:hover{
    transform: scale(1.05);
}
.lightboxOverlay{
    outline: 0;
}
/* .footer-social-icons{
margin-left: 113px!important;
} */
 

@media screen and (max-width: 2687px){
    .container{
        
        width: 97%;
    }
}
@media screen and (max-width: 1400px){
    .container{
        
        width: 85%;
    }
}
@media screen and (max-width: 1200px){
    .container{
        
        width: 67%;
    }
}
@media screen and (max-width: 992px){
    .container{
        
        width: 89%;
    }
}
@media screen and (max-width: 768px){
    .container{
        
        width: 58%;
    }
    .toolbar-btns{
        gap: 3px;
    }
    .toolbar-btns label{
        padding: 7px 5px;
        font-weight: 500;
        font-size: 0.7rem;
        margin-bottom: 20px;
    
    }
    
}
@media screen and (max-width: 576px){
    .container{
        
        width: 55%;
    }
}
@media screen and (max-width: 570px){
    .container{
        
        width: 75%;
    }
}
@media screen and (max-width: 400px){
    .container{
        
        width: 80%;
    }
    .toolbar-btns{
        gap: 3px;
    }
    .toolbar-btns label{
        padding: 7px 3px;
        font-weight: 500;
        font-size: 0.65rem;
        margin-bottom: 20px;
    
    }
}
@media screen and (max-width: 360px){
    .container{
        
        width: 85%;
    }
    .toolbar-btns{
        gap: 3px;
    }
    .toolbar-btns label{
        padding: 7px 3px;
        font-weight: 500;
        font-size: 0.6rem;
        margin-bottom: 20px;
    
    }
}
