/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 23 Dec, 2020, 10:08:42 AM
    Author     : Jawahar
*/

.image-container-div{
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.image-div{
    margin-left: 5px;
    margin-right: 5px;
}

.single-image{
    width:100%;
    height:300px;
    object-fit: cover;
    object-position: 50% 50%;
}

@media (max-width:700px){
    .single-image{
        width:100%;
        height:400px;
        object-fit: cover;
        object-position: center;
    }
}