


/*gallery slider*/
#gw-theme05-main-gallery1 .gw-theme05-main-gallery-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

#gw-theme05-main-gallery1 .gw-theme05-main-gallery-slider .slick-slide {
    width: 100% !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
}

#gw-theme05-main-gallery1 .gw-theme05-main-gallery-slider a {
    display: block;
    overflow: hidden;
    background: #fff;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: 5px 10px 20px rgba(0,0,0,0.1);
}

#gw-theme05-main-gallery1 .gw-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    height: auto !important;
}

#gw-theme05-main-gallery1 .gw-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#gw-theme05-main-gallery1 .gw-theme05-main-gallery-slider a:hover img {
    transform: scale(1.05);
}



@media screen and (max-width:1024px){
    #gw-theme05-main-gallery1 .gw-theme05-main-gallery-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width:768px){
    #gw-theme05-main-gallery1 .gw-theme05-main-gallery-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:480px){
    #gw-theme05-main-gallery1 .gw-theme05-main-gallery-slider {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*gallery slider*/




#gw-theme05-main-gallery1 .slick-track {
    width: 100% !important;
    transform: none !important;
    display: contents !important;
}

#gw-theme05-main-gallery1 .slick-list {
    overflow: visible !important;
}




#gw-theme05-main-gallery1 .gw-theme05-main-gallery-slider {
    display: grid !important;
}


#gw-theme05-main-gallery1 .gw-theme05-main-gallery-slider a {
    position: relative;
}








#gw-theme05-main-gallery1 .gw-text-container {
    position: absolute;
	display:none;
    left: 0;
    bottom: 0;

    width: 100%;
    padding: 20px;

    z-index: 10;

    background: linear-gradient(
        to top,
        rgba(17, 104, 141, 0.84),
		rgba(22, 141, 192, 0.4)
        
    );

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

#gw-theme05-main-gallery1 .gw-theme05-main-gallery-slider a:hover .gw-text-container {
    opacity: 1;
    transform: translateY(0);
}
#gw-theme05-main-gallery1 .gw-title {
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
	margin-left:20px;
	margin-top:20px;
	
}

#gw-theme05-main-gallery1 .gw-text {
    display: none;
}

