#hero {
    height: 70vh;
    min-height: 750px;
}

#info-header {
    max-width: 100%;
}

#map-info {
    height: 100%;
}

#info-header h4, #info-header h1 {
    max-width: 600px;
}

#dropbox-image {
    height: 100%;
    width: 50vw;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center bottom;
}

#google-map {
    height: 70vh;
    border: none;
}

#e-waste-alert {
    top: -80px;
    width: 80%;
    max-width: 600px;
}

@media (max-width: 1100px) {
    #hero {
        height: fit-content;
    }
    #e-waste-alert {
        position: relative !important;
        width: fit-content;
        top:auto;
        margin-bottom: 40px;
    }
    #map-info {
        flex-direction: column;
        gap: 2em;
    }
    #dropbox-image {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: cover;
        object-position: center 70%;
    }
    #hero {
        box-shadow: 5px 5px 20px 0px #00000025;
    }
}

@media (max-width: 500px) {
    #info-header {
        padding: 1.2em;
    }
}

.scroll-notice {
    z-index: 100;
    bottom: 36px;
    font-weight: 600;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: var(--m-green);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.scroll-notice.out {
    opacity: 0;
    transform: translateY(100px) translateX(-50%);
}