:root {
    --container-width: 48rem;
    --flow-space: 1.5em;
    --blue: #1C6BB4;
    --yellow: #F0D301;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

p,
dl,
dd,
ul,
ol {
    margin-block: 0;
}

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
}

body {
    background-color: var(--blue);
    -webkit-text-size-adjust: none;
    font-size: 1rem;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}

.flow, .col2, p, ul {
    margin-block-start: var(--flow-space, 1.5em);
}

.container {
    max-width: var(--container-width);
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding: 0px;
}

.header {
    padding: 0 2rem;
}

.logo {
    width: 100%;
    max-width: 375px;
}

.fsamuel {
    width: 162px;
    height: 180px
}

.lead {
    margin: 0 auto;
    padding: 0 2rem;
    color: #fff;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

h2 {
    margin-bottom: 0;
    margin-top: 0;
}

ul,
ol,
dl {
    line-height: 24px;
    list-style-type: none;
    list-style-image: url(images/list-bullet.gif);
    padding: 0;
}

a:link {
    color: var(--blue);
    text-decoration: underline;
}

a:visited {
    color: var(--blue);
    text-decoration: underline;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: var(--yellow);
}

.rounded {
    border-radius: 0.5rem;
}

.quals {
    margin-top: 0;
    font-size: 0.875em;
}

.content {
    padding: 2rem 2rem 4rem;
    background-color: #fff;
    color: var(--blue);
}

.col1 p br {
    display: none;
}

.footer {
    margin-block-end: 7em;
    position: relative;
    display: block;
}

.footer ul {
    font-size: 0.875rem;
    letter-spacing: 1px;
    color: #fff;
    border: 1px solid;
    padding: 0.5rem 1rem;
    position: absolute;
    top: -2rem;
    left: 2rem;
    z-index: 1000;
    background-color: var(--blue);
    width: fit-content;
}

.footer li {
    line-height: 1.4;
    list-style: none;
    display: block;
}

.bullet {
    display: none;
}

@media (min-width: 380px) {
    .footer {
        margin-block-end: 3em;
    }

    .footer li {
        display: inline;
    }

    .bullet {
        display: inline;
    }
}

@media (min-width: 48em) {
    .container {
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }

    .logo {
        width: 375px;
        height: 151.65px;
    }

    .fsamuel {
        margin-top: 31px;
    }

    .lead {       
        margin-top: -5rem;
    }

    .lead p {
        width: 100%;
        margin-left: 158px;
    }

    .content {
        padding: 1.5rem 3rem 3rem;
        border-radius: 0.5rem;
        font-size: 0.875rem;
        margin-block-start: 2rem;
    }

    .content p br {
        display: inline;
    }

    .col1 {
        flex: 1 1 calc(28em - 4.5rem);
    }

    .col2 {
        max-width: calc(20em - 4.5rem);
        margin-block-start: 0;
    }

    .header {
        padding: 0;
    }

    .footer ul {
        left: auto;
        right: 3rem;
    }

    .bullet {
        display: inline;
    }
}


