/*section.gallery .card-image a img{
	object-fit: cover;
}*/
section.gallery main.main {
    display: grid;
    grid-gap: 30px;
}
section.gallery .card-image a img {
    height: 260px;
    overflow: hidden;
	object-fit: cover;    
	border-radius: 5px;
}
section.gallery .card-image .overlay  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    color: #fff;
    background: linear-gradient(360deg, rgb(107 99 169), rgb(107 130 160 / 49%));
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
	border-radius: 5px;    
}
section.gallery .card-image a:hover .overlay {
    opacity: 1;
}
section.gallery .card-image .overlay .overlay_caption {
    font-weight: 700;
}
section.gallery .card-image .overlay .overlay_label{
	text-transform: uppercase;
    color: #ffc631;
    font-weight: 600;
    font-size: 18px;
}
section.gallery {
    /*background: url(../img/home_why_choose_bg.png);
    background-position: center;  */  
    position: relative;
}
section.gallery::before {
    content: "";
    position: absolute;
    background: url(../img/home_about_bg1.svg);
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}
section.gallery::after {
    content: "";
    position: absolute;
    background: url(../img/home_about_bg1.svg);
    right: 0;
    bottom: 0;
    width: 500px;
    height: 500px;
    background-repeat: no-repeat;
    z-index: -1;
    transform: rotate(360deg);
}





.over_caption {
    position: absolute;
    bottom: 0;
    padding: 40px;
    color: #fff;
    font-weight: 700;
    z-index: 9;
    background: linear-gradient(360deg, rgb(0 0 0), rgb(0 0 0 / 0%));
}
section.gallery .over_caption h4.overlay_caption {
    font-weight: 700;
}
section.gallery .over_caption span.overlay_label{
    text-transform: uppercase;
    color: #ffc631;
    font-weight: 600;
    font-size: 18px;
}


















@media screen and (min-width: 576px){
section.gallery main.main {
    grid-template-columns: repeat(2, 1fr);
}
section.gallery .card-image .overlay {
    padding: 30px;
}
}



@media screen and (min-width: 768px){
section.gallery .card-image a img {
    height: 340px;
}
section.gallery main.main {
    grid-template-columns: repeat(3, 1fr);
}
section.gallery .card-image .overlay {
    padding: 14px;
}
}


@media screen and (min-width: 1024px){
section.gallery {
    padding: 80px 0;
}
}


@media screen and (min-width: 1280px){
section.gallery .card-image a img {
    height: 440px;
}
section.gallery .card-image .overlay {
    padding: 40px;
}
}





@media screen and (min-width: 1366px){
section.gallery .card-image a img {
    height: 600px;
}
}




@media(max-width:575px){
section.gallery main.main {
    grid-gap: 10px;
}
}