.geotag-section{
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.geotag-container{
    width: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.geotag-images{
    width: 30%;
    padding: 10px;
    background-color: #d6d6d6;
    margin-bottom: 20px;
    border-radius: 10px;
}
.geotag-images img{
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.geotag-images img:hover{
    transform: scale(1.03);
}
@media (max-width: 720px){
    .geotag-container{
    width: 95%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
    .geotag-images{
    width: 90%;
    padding: 10px;
    background-color: #d6d6d6;
    margin-bottom: 20px;
    border-radius: 10px;
}
}