

.container .image-container{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.container .image-container .image{
    height: 290px;
    width: 196px;
    border: 5px solid #00d4f8;
    box-shadow: 10px 25px 30px rgba(30, 30, 200, 0.3);
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
}

.container .image-container .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}

.container .image-container .image:hover img{
    transform: scale(1.1);
}

.container .popup-image{
    position: fixed;
    top:0; left:0;
    background: rgba(0,0,0,.9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display:none ;
}

.container .popup-image span{
  position: absolute;  
  top: 0; right: 10px;
  font-size: 40px;
  font-weight: bolder;
  color: #e2e3e3;
  cursor: pointer;
  z-index: 100;
}

.container .popup-image img{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #e2e3e3;
    border-radius: 5px;
    width: 600px;
    object-fit: cover;
}


@media (max-width:768px){
    .container .popup-image img{
        width: 95%;
    }  
}



