<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.gallery-container.row {
   /* margin-left: 30px; */ /**comment by ibrahim*/

}

.gallery-container .gallery-item {
    height: 220px;
    background-position: center;
    position: relative;
    box-sizing: border-box;
    border: 5px solid white;
    cursor: pointer;
    /*transition-property: background-size;
    transition-duration: 3s;*/
    background-size: cover;
    max-width: 246px;/*220*/
    min-width: 220px;
}

.gallery-container .gallery-item:hover {
    /*transition-property: background-size;
    transition-duration: 4s;
    background-size: 120%;*/
}


.gallery-container .gallery-item .description {
    position: absolute;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    padding: 10px;
    display: none;
}

.closeGallery {
    color: white;
    position: absolute;
    right: 30px;
    top: 15px;
    margin: auto;
    font-size: 50px;
    z-index: 999;
    cursor: pointer;
}

/*The modal slider css*/
.swiper-container {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    top: -1000%;
    left: 0px;
    z-index:999999999;
    animation-duration: 0.2s !important;

}

.swiper-container.active {
    opacity: 1;
    top: 0;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide .image {
    width: 100%;
    height: 100%;
    z-index: 9;        
}
.swiper-slide .image img{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    width: 440px;
    height: 440px;
}
.swiper-slide p {
    display: none;
    position: absolute;
    width: 100%;
    height: 20%;
    background: rgba(0, 0, 0, 0.5);
    bottom: 0;
    left: 0;
    z-index: 99;
    box-sizing: border-box;
    padding-top: 30px;
    text-align: center;
    color:white;
    margin: 0px; 
}

.swiper-button-next {
    color: white;      
}

@media(max-width: 800px) {
    .gallery-container.row {
        margin-left: 12px;
        width: 443px;
        margin: auto;
    }

    .swiper-slide .image img{
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: auto;        
    }
}

@media(max-width: 480px) {
    .gallery-container.row {
        margin-left: 12px;
        width: 230px;
        margin: auto;
    }
    .gallery-container .gallery-item {
        height: 220px;
    }
}

</pre></body></html>