.header_text h1{
    font-family: 'qsbold' !important;
}

.header_line{
    display: block;
    width: 70px;
    border-bottom: 1.5px solid #FF7A00;
}

.gallery{
    display: grid;
    grid-template-columns: auto;
    justify-content: space-evenly;
    width: 80%;
    opacity: 0;
    animation: fadein .4s ease-in;
    animation-fill-mode: forwards;
}

@keyframes fadein{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.img_container{
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.img_container img{
    width: 100%;
    transition: .4s ease-in-out;
}

.img_container .img_cover{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(255,122,0,.1);
    transition: .4s ease-in-out;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_container .img_cover p{
    font-family: 'qsbold' !important;
}

.img_cover:hover{
    opacity: 1;
}

.img_cover:hover + img{
    transform: scale(1.1);
}

.img_container:hover{
    overflow: hidden;
}

.img_container img:hover{
    transform: scale(1.2);
}


/* TABLET AND OTHER BIG SCREENS START*/
@media only screen and (min-width: 768px){
    .gallery{
        grid-template-columns: auto auto;
        width: 90%;
    }

    .img_container{
        width: 98%;
    }    
}

@media only screen and (min-width: 1024px){
    .gallery{
        width: 80%;
    }
    .img_container{
        width: 99%;
    }
}

@media only screen and (min-width: 1100px){
    .gallery{
        grid-template-columns: auto auto auto;
        width: 90%;
    }
}

@media only screen and (min-width: 1400px){
    .gallery{
        width: 72%;
    }
}
/* TABLET AND OTHER BIG SCREENS END*/