

.work-img-wrapper{
    max-width: 500px;
    width: 100%;
}

.work-img-wrapper img{
    width: 100%;
}

.our-work-content{
    width: 45%;
}

.our-work-content h3{
    color: var(--dark-blue);
    font-size: 2rem !important;
}

.our-work-content p{
    text-align: justify;
    opacity: 0.9;
}

.our-work-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 0;
    
}

.alt-wrap{
    background-color: #edf1f566;
}

.container-inverse{
    flex-direction: row-reverse;
   
}


@media screen and (max-width: 991px) {
    .our-work-container{
        flex-direction: column;   
    }

    .container-inverse{
        flex-direction: column;
        padding: 10px;
       
    }
    
    .our-work-content{
        width: 100%;
    }
}


/*Popup Code*/

.zoomed-img-gallery{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000000c4;
    top: 0;
    left: 0;
    z-index: 10000;
  
   justify-content: center;
   align-items: center;
    color: red;
    display: none;
}

.viewImageGallery{
    display: flex;
}

.slider-img{

    width: 300px;
    height: 300px;
    background-color: #fff;
}


.slick-wrapper{
   margin-top: 60px;
}

.slick-wrapper, .slick-img{

    max-width: 1000px;
    height: 600px;
    width: 90%;
   
}

.ag-img{
    max-width: 1000px;
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.close-btn{
    color: #fff;
    position: fixed;
    top: 30px;
    right: 30px;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    font-size: 1.2rem;
    z-index: 10;
}

.close-btn:hover{
    transform: rotate(360deg);
}

@media screen and (max-width: 1400px) {
    .ag-img{
        height: 500px;
    }
}