html {
        background: #F5FCFF;
    }

#header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
}

.content-container {
    max-width: 1140px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
}

.entry-content {
    padding: 20px;
    font-size: 1.1em;
}

.navbar {
    max-width: 1140px;
    padding: 20px;
    margin: 0 auto;
}

.site-navigation { 
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    color: #4d4d9b;
    font-size: .9em;
}



.site-navigation li a{
    display: block;
    padding: 10px;
    margin: 0 5px;
    list-style-type: none;
    font-weight: bold;
}

    .site-navigation a:hover {
        background-color: #3f49a1;
        color:#ffffff;
        border-radius: 5px;
    }

.column2 {
    text-align: center;
}


.title {
    text-align: center;
    margin: 40px 0;
    color: #023E47;
}

.title h2,
.title h3 {
    margin: 0;
}

h2 {
    font-size: 2em;
    font-weight: bold;
}

h3 {
    font-weight: bold;
    font-size: 1em;
}


section + section{
    margin: 40px 0;
    padding: 40px 0;
}


.hero-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    vertical-align: middle;
    text-align: center;
    margin: 0;
}

.hero-section p {
    font-size: 1.4em;
    font-style: italic;
    color: #444444;
}

.hero-section p + p {
    margin: 1em 0 0 0;
}

.cta {
    margin: 40px;
}

.cta p {
    text-align: center;
}

.cta a {
    text-align: center;
    background-color: #3f49a1;
    padding: 10px 20px;
    border-radius: 10px;
    color: #ffffff;
    font-style: normal;
    display: inline-block;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: bold;
} 

.hero-section img {
    border-radius: 120px;
}

section .columns{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
}


ul.bubble-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

ul.bubble-list li {
    border: solid 1px #023E47;
    text-transform: uppercase;
    border: 1px solid #005c65;
    border-radius: 120px;
    margin-bottom: 6px;
    margin-right: 6px;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1;
}

ul.bubble-list li.primary {
    background-color: rgb(169, 255, 226);
}

ul.bubble-list li:hover {
    background-color: #bac1ff;
    border-color: #3f49a1;
}

h3 + p {
    margin: .5em 0;
}

#About h3 {
    margin-bottom: 0;
    font-size: .9em;
    color: #555555;
}