header {
    background-color: #02142B;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

}

header .section-container {
    padding: 20px;
}

header figure {
    margin: 0 auto;
    width: max-content;
}

header figure img {
    height: 45px;
}

header p {
    color: white;
    text-align: center;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    line-height: 16px;
    max-width: 270px;
    margin: 0 auto 20px auto;
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        header {
            margin-bottom: -50px;
        }

        header p {
            font-size: 15px;
            max-width: none;
            margin-bottom: 25px;
        }

        header figure img {
            height: 57px;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            header {
                margin-bottom: -50px;
            }

            header p {
                font-size: 16px;
                margin-bottom: 30px;
            }

            header figure img {
                /*height: 90px;*/
                height: 70px;
            }
        }