html, body {
    height: 100%;
}

#embed-content-wrapper{
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}


.btn-parkman {
    background-color: #685dd8;
    color: #FFF;
}

#minisite-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    
    &:before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        backdrop-filter: blur(50px);
        z-index: 0;
    }

    .container {
        position: relative;
    }
}

.minisite-hero-img {
    border-radius: 8px;
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
    width: 100%;
    /* height: 250px; */
    padding-bottom: 30%;
    overflow: hidden;
    
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}

.minisite-name {
    font-weight: 700;
    /* font-size: 50px; */
    color: #FFF;
}

.minisite-address {
    color: #FFF;
    
}