#home-section {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box;
}

#map-container {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    padding: 50px 0px 0px 0px;
}

#map {
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

#info-container {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 38px;
    padding: 20px;
    background-color: #39A5C9;
    border: 2px solid #39A5C9;
    border-radius: 10px;
}

#info-text {
    font-family: Rubik;
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.map-circle {
    position: absolute;
    display: block;
    background-color: #39A5C9;
    border-radius: 50%;
    box-shadow: 2px 2px 5px #0000003a;
    cursor: pointer;
}