.boroughs{
    padding-bottom: 50px; 
    display: flex;
    justify-content: center;
    align-items: center; 
    width: 90vw;
    margin: 0 auto;
    width: 90vw;
}

.panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    flex: 0.5;
    margin: 10px;
    position: relative;
    transition: flex 0.7s ease-in;
}

.panel h3 {
    font-size: 24px;
    position: absolute;
    background: rgba(137, 52, 0, 0.565);
    padding: 10px 15px;
    border-radius: 30px;
    bottom: 230px;
    left: 20px;
    margin: 0;
    opacity: 0;
}

.panel p {
    font-size: 24px;
    position: absolute;
    bottom: 60px;
    max-width: 800px;
    left: 20px;
    margin: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 20px;
    border-radius: 8px;
}

.panel.active {
    flex: 5;
}

.panel.active h3 {
    opacity: 1;
    transition: opacity 0.3 ease-in 0.4;
}

.panel.active p {
    opacity: 1;
    transition: opacity 1 ease-in 0.4;
}

@media (max-width: 480px){
    .container {
        width: 100vw;
    }

    .panel:nth-of-type(4),
    .panel:nth-of-type(5) {
        display: none;
    }
}

.hero-borough {
    padding-top: 30px;
    width: 100%;
}

.hero-borough-content {
    text-align: center;
    color: black;
}

.hero-borough-heading {
    font-size: 100px;
    margin-bottom: 0px;
    font-family: 'Work Sans', serif;
    font-weight: 600;
}
.map-container {

    width: 90vw;
    margin: 40px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}