body {
    font-family: Arial, sans-serif;
    margin: 20px;
    min-height: 100vh;
    background: rgb(34,90,101);
    background: linear-gradient(180deg, rgba(34,90,101,0.1) 0%, rgba(34,90,101,0.5) 100%);
    color:  #146071
}

.osteo {
  margin-left: 10px;
    width: 100%;
    color: white;
    background-color: black;
}

h2 {
    font-size: medium;
}
h3 {
    display: inline;
    font-size: small;
}

ul {
    list-style: none;
}
li {
    margin-bottom: 5px;
}
li:before {
    font: var(--fa-font-solid);
    content: "\f101";
    font-size: 65%;
    padding-right: 10px;
}

.faq-container {
    max-width: 100%;
}

.icon:before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}


.question {
    font-weight: bold;
    cursor: pointer;
}

.answer {
    display: none;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 30px;
    font-size: small;
}

.logo {
    width: 200px;
}

.mr-5{
    margin-right: 5%;
}

.header {
    display: flex;
    align-items: center;
    border-bottom: solid 1px #146071;
    margin-bottom: 5px;
}

.fa::before {
    /* removed font- based rules */
    display: inline-block;
    text-rendering: auto;
    color: #146071;
    -webkit-font-smoothing: antialiased;
}

.hero {
    display: flex;
    flex-wrap: wrap;
}

.mission {
    font-size: large;
}
.left-column {
    width: 60%;
}

#main-image {
    align-self: flex-start;
    width: 30%;
    border-radius: 50%;
    border: solid 1px #146071;
}

@media screen  and (max-width: 800px)  {
    .header {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: solid 1px #146071;
        margin-bottom: 5px;
    }

    .mb-5 {
        margin-bottom: 5px;
    }

    h1 {
        font-size: medium;
    }

    .hero {
        flex-direction: column;
    }
    .left-column {
        width: 100%;
        text-align: center;
    }
    .logo {
        width: 150px;
    }
    .faq-container {
        max-width: 100%;
    }
    ul {
        padding-left: 0;
    }
    .mission {
        font-size: medium;
    }
    #main-image {
        position: absolute;
        top: 25px;
        left: 10px;
        width: 25%;
    }
}
