.gallery-container .gallery-box .box-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-container .gallery-box .box-wrapper .box {
    width: 100%;
    height: 300px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.gallery-container .gallery-box .box-wrapper .box:hover {
    transform: scale(0.98);
    -webkit-transform: scale(0.98);
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -o-transform: scale(0.98);
}

.gallery-container .gallery-box .box-wrapper .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-container .gallery-box .btn-box a {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border: 1px solid;
    padding: 12px 22px;
    background-color: #28b475;
    color: #ffffff;
    border-color: #28b475;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

/* responsive  */
@media (max-width: 1000px) {
    .gallery-container .gallery-box .box-wrapper {
        gap: 10px;
    }
}

@media (max-width: 900px) {
    .gallery-container .gallery-box .box-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-container .gallery-box .box-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .gallery-container .gallery-box .box-wrapper .box {
        height: auto;
    }
}
