@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #acacaf;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 2px 5px #afb0b1;
}
header {
    background: #0f4976;
    padding: 60px 100px;
    display: flex;
    justify-content: center;
}
.logo {
    width: 100%;
    max-width: 600px;
}
main {
    background-color: #fcfcff;
    padding: 60px 100px;
}
h1 {
    font-size: 16pt;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
h2 {
    font-size: 14pt;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 12px;
}
p {
    font-size: 12pt;
    line-height: 150%;
    margin-bottom: 20px;
}
.italic {
    font-style: italic;
}
footer {
    padding: 50px 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #f0f0f0;
}
footer>p {
    min-width: 200px;
}

b {
    font-weight: bold;
}
a {
    font-weight: 600;
    color: #0f4976;
}

a:hover {
    text-decoration: underline;
}

.col-2 {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0px;
    display: flex;
}

.left-col {
    flex: 0 1 40%;
    padding-right: 40px;
}

.right-col {
    flex: 0 1 60%;
    padding-left: 40px;
}

ul {
    list-style: inside;
    margin-bottom: 12px;
}
li {
    line-height: 150%;
    font-size: 12pt;
}

@media only screen and (max-width: 850px) {
    .left-col {
        display: none;
    }
    .right-col {
        padding-left: 0px;
        padding-right: 20px;
        flex: 0 1 100%;
    }
}
@media only screen and (max-width: 600px) {
    main, footer {
        padding: 30px 35px;
        text-align: center;
    }
    footer {
        justify-content: center;
    }
    .left-col {
        display: none;
    }
    .right-col {
        padding-left: 20px;
        padding-right: 20px;
        flex: 0 1 100%;
    }
    p {
        font-size: 11pt;
    }
    ul {
        list-style: none;
    }
    li {
        font-size: 11pt;
    }
    h1 {
        font-size: 12pt;
    }
    h2 {
        font-size: 12pt;
    }
    header {
        padding: 30px 50px;
    }
  }