.gallery-area {
	padding-top: 15rem;
}
.gallery-title {
	font-size: 4rem;
	line-height: 5.6rem;
}
.gallery-row {
	display: flex;
	column-gap: 2.8rem;
	margin-top: 4rem;
}
.gallery-row a {
	display: flex;
	transition: all .45s;
	overflow: hidden;
	border-radius: 0;
	border-radius: 1.2rem;
}
.gallery-row a:hover {
	border-radius: 1.2rem;
}
.gal-c1-r1 {
	height: 33.8rem;
}
.gal-c1-r2 {
	height: 51.6rem;
	margin-top: 2.8rem;
}
.gal-c2-r1 {
	height: 60.9rem;
}
.gal-c2-r2 {
	margin-top: 2.8rem;
	height: 24.5rem;
}
.gal-c3-r1 {
	width: 100%;
	height: 51.5rem;
}
.gal-c3-r2 {
	margin-top: 2.8rem;
	display: flex;
	column-gap: 2.8rem;
}
.gal-c3-r2-cc1 {
	height: 33.9rem;
}
.gal-c3-r2-cc2 {
	height: 33.9rem;
}
.gallery-row a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: all .45s;
}
.gallery-row a:hover img {
	transform: scale(1.1);
}
.gal-c3 {
    width: calc(50% - 1.5rem);
}

.gal-c1, .gal-c2 {
    width: calc(25% - 1.5rem);
}
@media only screen and (max-width: 1050px){
    .gallery-area {
        padding-top: 67px;
    }
    .gallery-title {
        font-size: 32px;
        line-height: 1.3;
    }
    .gallery-row {
        margin-top: 23px;
        display: block;
    }
    .gallery-row > div {
        width: 100%;
        display: block;
    }
    .gallery-row a {
        margin-top: 0;
        margin-bottom: 15px;
        height: 250px;
    }
    .gal-c3-r2 {
        display: block;
        margin: 0;
    }
}

/* for gallery repeater css */
.gallery-row-repeat {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3rem;
    margin-top: 3rem;
    row-gap: 3rem;
}

.gallery-row-repeat .gallery-item {
    width: calc(25% - 2.3rem); 
	border-radius: 1rem;
	overflow: hidden;
	transition: .5s all;
	display: none;
}
.gallery-row-repeat .gallery-item a img {
    display: block;
    height: 24rem;
    width: 100%;
    object-fit: cover;
	transition: .5s all;
}
.gallery-row-repeat .gallery-item a:hover img {
    transform: scale(1.1);
}
.repeat-load-more {
    margin-top: 3rem;
    text-align: center;
}
@media only screen and (max-width: 991px){
	.gallery-row-repeat {
		margin-top: 15px;
		column-gap: 15px;
		row-gap: 15px;
	}
	.gallery-row-repeat .gallery-item {
		width: calc(50% - 8px);
	}
	.gallery-row-repeat .gallery-item a img {
		height: 250px;
	}
}

@media only screen and (max-width: 620px){
	.gallery-row-repeat .gallery-item {
		width: 100%;
	}
}