@charset "utf-8";

/*-------------------------------------
	photo gallery
--------------------------------------*/

.gallery-columns-4 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 20px;
    justify-content: flex-start;
}
.gallery-item .gallery-icon a {
	overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
	transition: all 0.3s;
}
.gallery-item .gallery-icon a:hover {
	transform: scale(1.03);
}

.gallery-item img {
    width: 100%!important;
    height: 100%!important;
    object-fit: cover;
	border-radius: 0;
}

figure.gallery-item {
    margin: 0;
	width: calc((100% - 60px) / 4);
    overflow: hidden;
	border-radius: 10px;
}

@media screen and (max-width: 767px) {

    .content_area {
        padding-top: 10px !important;
    }

    figure.gallery-item {
		width: calc((100% - 20px) / 2);
    }
}