/* GLOBAL */

html {
    font-size: 62.5%;
    font-family: "Poppins", sans-serif;
    font-family: "Source Sans Pro", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    width: 100vw;
    background-image: url("../img/humana/humana-bg-img.jpg");
    background-repeat: no-repeat;
    background-size: contain;
}

:root {
    --black: #000000;
    --cool-grey: #888c9a;
    --white: #ffffff;
}

/* HERO */

#container-hero {
    width: 45%;
    margin: 20rem auto 20rem auto;
    text-align: center;
}

#container-hero > img {
    margin-bottom: 7.2rem;
}

p.hero-headline {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 4rem;
    color: var(--cool-grey);
    margin-bottom: 3.2rem;
}

#hero-columns {
    display: flex;
    justify-content: space-evenly;
}

#hero-columns > ul {
    margin-top: 3.2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 3.2rem;
    color: var(--cool-grey);
}

.subhead {
    color: var(--black);
}

.container-2col {
    width: min(90%, 1200px);
    display: flex;
    justify-content: space-between;
    height: auto;
    margin: auto;
    padding: 4.8rem 4.8rem 8rem 4.8rem;
}

.img-size-100 {
    width: 100%;
}

.container-2col > :first-child {
    margin-right: 4rem;
}

.container-1col {
    width: min(90%, 900px);
    height: auto;
    margin: auto;
    padding: 4.8rem 4.8rem 8rem 4.8rem;
}

.container-styleguide {
    width: min(90%, 1200px);
    height: auto;
    margin: auto;
}

.post {
    margin-bottom: 20rem;
}

.post-video {
    width: min(90%, 900px);
    margin: 20rem auto;
}

.container-video {
    position: relative;
    height: 0;
    margin-bottom: 8rem;
    padding-bottom: 56.25%;
    overflow: hidden;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post-description {
    width: min(90%, 900px);
    margin: auto;
    text-align: center;
}

h1 {
    margin-bottom: 2.8rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--black);
}

p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.8rem;
    color: var(--cool-grey);
}

button {
    margin-top: 3.2rem;
    padding: 2rem 3.2rem;
    border: none;
    border-radius: 0.6rem;
    font-family: "Poppins", sans-serif;
    color: var(--white);
    background-color: #008194;
    text-decoration: none;
    cursor: pointer;
    transition-duration: 0.2s;
}

button:active {
    background-color: #005866;
}

.box-shadow {
    box-shadow:
        0px 3px 64px 0px hsla(240, 9.804%, 90%, 1),
        -50px -95px 0px 0px rgba(255, 255, 255, 0.25);
}

/* MEDIA QUERIES */

@media screen and (max-width: 768px) {
    html {
        font-size: 50%;
    }

    #container-hero {
        width: 80%;
    }

    p.hero-headline {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 2rem;
        line-height: 3.6rem;
        color: var(--cool-grey);
        margin-bottom: 3.2rem;
    }

    #hero-columns {
        flex-direction: column;
    }

    .container-2col {
        flex-direction: column;
    }

    .assessment01 {
        display: none;
    }

    .container-2col > :first-child {
        margin-bottom: 4rem;
    }

    .post-description {
        width: 80%;
    }
}

@media screen and (max-width: 375px) {
    #container-hero {
        width: 90%;
    }

    .container-2col {
        width: 100%;
        padding: 6rem 2.4rem 6rem 2.4rem;
    }

    .container-1col {
        width: 100%;
        padding: 6rem 2.4rem 6rem 2.4rem;
    }

    .post-description {
        width: 90%;
    }
}
