@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    background-position: 0;
    background-repeat: no-repeat;
    font-family: 'Lato', sans-serif;
}

header {
    display: flex;
    margin: 0 100px;
    justify-content: center;
    align-items: center;
}

.logo {
    margin-top: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
}

nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
}

nav ul li {
    text-align: center;
    list-style: none;
    margin: 0 20px;
}

nav a {
    color: #d1d1d1;
    text-decoration: none;
    font-size: 1.0em;
}
nav a:hover {
    color: #1c75bc;
}

.content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.content > section {
    flex: 1;
    justify-content: center;
    max-width: 800px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0 40px;
}

.has-separator {
    border-top: 1px solid #bebebe;
}

h1 {
    color: #1c75bc;
    font-size: 2.7em;
    font-weight: 700;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    color: #222;
}

p {
    color: #555;
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-align: justify;
    line-height: 24px;
}

ul li {
    color: #555;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-align: justify;
    line-height: 18px;
}

.highlighted {
    color: #1c75bc;
    font-weight: bold;
}


.form-control {
    margin-bottom: 10px;
}


.form-control input {
    width: 100%;
    color: #222;
    border: 1px solid #222;
    border-radius: 5px;
    padding: 7px;
    outline: none;
    box-sizing: border-box;
    color: #1c75bc;
    font-size: 1.2em;
    text-transform: lowercase;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    width: 100%;
    background-color: #00bbc1;
    border-radius: 5px;
    color: #fff;
    padding: 10px 0;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif;
}

footer {
    width: 100%;
    background-color: #0a0a28;
    color: #fff;
    display: flex;
}

.footer-content {
    width: 100%;
    padding: 20px 100px;
}

.footer-content > div {
    width: 100%;
}

footer .copy {
    color: #d1d1d1;
    font-size: 0.8em;
    text-align: center;
}

footer .logo-footer {
    text-align: center;
}

footer .newsletter-name-footer {
    color: #d1d1d1;
    font-size: 1.1em;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

a {
    color: #00bbc1;
    text-decoration: none;
}