/* Main Elements */
.md-main {
    flex-grow: 1;
}

.md-main__inner {
    display: flex;
    height: 100%;
}

.container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background: rgb(from var(--md-primary-fg-color) r g b / 0.8) url("../../assets/hero-image.jpg") no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
    background-position-y: center;
}

.img hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero {
    margin: 15px 1.5rem;
    color: var(--md-primary-bg-color);
    justify-content: center;
}

.hero h1 {
    margin-bottom: 1.15rem;
    font-weight: 650;
    text-transform: none;
}

.hero-content {
    padding-bottom: 1rem;
    margin: 0 auto;
}

.feature-margin {
    margin-top: 30px;
}

.f-box {
    font-weight: 300;
    box-sizing: border-box;
    padding: 0 15px;
    margin-bottom: 1.6rem;
    margin-left: 4px;
    margin-right: 4px;
    border: .05rem solid var(--md-default-fg-color--lightest);
    border-radius: .1rem;
}

.f-box h2 {
    font-weight: 400;
    font-size: 25px;
    line-height: normal;
    margin-top: 20px;
    margin-bottom: 0px;
}

.f-box p {
    font-size: 16px;
    line-height: 2em;
    margin: 0 0 10px;
    display: block;
}

.f-box hr {
    border-top: 1px;
    border-color: var(--md-typeset-a-color);
    border-style: solid;
    padding-top: 0em;
}

/* Additional Responsive Styling */

@media screen and (min-width:900px) {

    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 24rem;
        margin-top: 2rem;
        margin-bottom: 2.5rem;
        margin-right: 4rem;
        align-items: center;
    }
}

@media screen and (min-width:1120px) {

    .feature-margin {
        width: 100%;
        display: flex;
        max-width: 80rem;
        margin-right: auto;
        margin-left: auto;
        padding: 0 .5rem;
    }

    .f-box {
        flex: 1;
        min-width: 0;
    }
}