* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}

.button {
    background-color: #544265;
    color: #ffffff;
    font-size: 12px;
    padding: 15px 30px;
    text-transform: uppercase;
    display: inline-block;
}

.flex-container {
    display: flex;
    flex-direction: row;
    margin-top: -4px;
}

.flex-item-left {
    text-align: justify;
    padding-left: 98px;
    padding-right: 72px;
    flex: 50%;
}

.flex-item-left p {
    font-size: 15px;
}

.flex-item-right {
    text-align: justify;
    padding-left: 98px;
    padding-right: 72px;
    flex: 50%;
}

.flex-item-right p {
    font-size: 15px;
}

@media (max-width: 965px) {
    .flex-container {
        flex-direction: column;
    }
    .flex-item-left {
        padding-left: 30px;
        padding-right: 30px;
    }
    .flex-item-right {
        padding-left: 30px;
        padding-right: 30px;
    }
    .row1 div:nth-of-type(1) {
        order: 2;
    }
    .row1 div:nth-of-type(2) {
        order: 1;
    }
}

.light-gray-column {
    background-color: #f7f8fa;
    padding-bottom: 55px;
}

.light-gray-column h2 {
    margin-bottom: 0px;
}

.light-gray-column h3 {
    color: #0e1831;
    margin-top: 0px;
}

.light-gray-column p {
    color: #666666;
}

.dark-gray-column {
    background-color: #e9e9e9;
}

.dark-gray-column h2 {
    margin-bottom: 0px;
}

.dark-gray-column h3 {
    color: #0e1831;
    margin-top: 0px;
}

.fullBanner {
    border-top: 1px solid black;
    width: 100%;
}

.header {
    background-repeat: no-repeat;
    color: white;
}

.header h1 {
    margin-top: 0px;
}

.header img {
    margin-top: -24px;
}

@media screen and (max-width: 965px) {
    .header img {
        margin-top: 0px;
    }
}

.mobileBanner {
    display: none;
}

@media screen and (max-width: 965px) {
    .fullBanner {
        display: none;
    }
    .mobileBanner {
        display: block;
    }
}

@media screen and (max-width: 965px) {
    .hero {
        display: none;
    }
    .mobileBanner {
        display: block;
    }
}

h1 {
    color: #1d1c24;
    font-size: 38px;
    font-weight: normal;
}

h2 {
    color: #191919;
    font-size: 30px;
    font-weight: normal;
    margin-top: 60px;
}

h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: normal;
}

.hero {
    position: absolute;
    top: 145px;
    left: 170px;
    width: 30%;
}

@media screen and (max-width: 965px) {
    .hero {
        position: absolute;
        top: 175px;
        left: 60px;
        width: 30%;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.lastParagraph {
    margin-bottom: 40px;
}

.logo {
    position: absolute;
    top: 8px;
    right: 98px;
}

@media screen and (max-width: 980px) {
    .logo {
        right: 45px;
    }
}

.thick {
    font-weight: bold;
}

.printCover {
    display: block;
    margin-top: 72px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 72px;
}

.wrapper {
    flex: 1 0 auto;
}

p,
li {
    font-size: 18px;
}

a {
    text-decoration: none;
}