.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    background-color: yellow;
}

.flex-container>div {
    background-color: red;
    width: 500px;
    height: 370px;
}

h1 {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
}

#map {
    width: 500px;
    height: 500px;
    background-color: burlywood;
}


.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;


}


@media(max-width: 800px) {
    .row {
        flex-direction: column;
    }
}

.images {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
}


.image-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    overflow: hidden;

    
    border: solid 3px #00f;
    box-shadow: 0px 0px 15px 0px rgba(0,0,255, 0.4);
    transition: transform 300ms;
}

.image-col:hover {
    transform: scale(1.1);
    cursor: pointer; 
    
}

.image-col img {
    width: 100%;
    height: 275px; 


    /*   border-radius: 10px; */
}


.image-col p {
    padding: 0;
}

.image-col h3 {
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}


.layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}


.layer h3 {
    width: 100%;
    font-weight: 500%;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 1;
    transition: 0.5s;
}

.layer:hover h3 {
    bottom: 49%;
    opacity: 1;

}