.gallery1 .advants {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 62px;
}

.gallery1 .advant {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.45px;
}

.gallery1 .advant_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    background-color: var(--btn-bg);
    border-radius: 50%;
    margin-right: 20px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1.2px;
}

.gallery1 .gall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gallery1 .gal_img {
    height: 300px;
    overflow: hidden
}

.gallery1 .gal_img img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1399.8px){

}

@media screen and (max-width: 1199.8px){

}

@media screen and (max-width: 991.8px){
    .gallery1 .advants {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        margin-bottom: 62px;
    }
    .gallery1 .gall {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 767.8px){
    .gallery1 .gall {
        gap: 15px;
    }
}

@media screen and (max-width: 575.8px){
    .gallery1 .gal_img {
        height: 250px;
    }
}