.service_bg{
    background-image: url("../imgs/service_bg.png");
}
.justify{
    text-align: justify;
}
.grid_gallery{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.grid_gallery > .overflow_img {
    height: 350px;
    width: auto;
    object-fit: cover;
}
.grid_gallery > .overflow_img > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg_get_touch{
    background-image: url("../imgs/service_bg_.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    color: var(--color-white);
}
.semi_para3{
    font-size: 25px;
    font-weight: 500;
}
.get_touc_btn{
    display: inline-flex;
    justify-content: center;
    text-align: center;
    background-color: var(--color-light);
    color: var(--color-black);
    font-weight: 500;
    font-size: 22px;
    padding: 16px 50px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    border-radius: 5px;
    transition: 0.3s;
}
.get_touc_btn:hover{
    color: var(--color-black);
    transform: scale(1.1);
}
.service_ul{
    margin-left: 25px;
}
.service_ul li{
    list-style:disc;
}
@media screen and (max-width: 1024px){
    .grid_gallery{
     
        grid-template-columns: repeat(3,1fr);
    }
    .grid_gallery > .overflow_img {
        height: 250px;
    }
    .semi_para3{
        font-size: 22px;
    }
    .get_touc_btn{
        font-size: 18px;
    }
}
@media screen and (max-width: 568px){
    .grid_gallery{
     
        grid-template-columns: repeat(2,1fr);
    }
    .grid_gallery > .overflow_img {
        height: 250px;
    }
    .semi_para3{
        font-size: 16px;
    }
    .get_touc_btn{
        font-size: 14px;
        padding: 12px 30px;
    }
}