/* Home gallery section */
.rt-gallery{display:flex;flex-wrap:wrap;gap:15px;}
.rt-gallery a{flex:1 1 calc(33.333% - 15px);overflow:hidden;}
.rt-gallery img{
	width:100%;height:480px;object-fit:cover;transition:transform .3s;
}
.rt-gallery a:hover img{transform:scale(1.05);}
.rt-home-gallery__action{text-align:center;margin-top:35px;}

@media (max-width:991px){
	.rt-gallery a{flex:1 1 100%;}
}
