html, body {
    padding: 0;
    margin: 0;
    background-color: white;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: #232f61;
}

a {
    color: #232f61;
}
a:hover {
    opacity: 0.7;
}

h2 {
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    font-weight: bold;
}

.header-main-wrapper {
    width: 100%;
    background-image: url("header-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.header-main {
    height: 98px;
    max-width: 1140px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.header-main img {
    display: inline-block;
    height: 98px;
    width: auto;
}

.content-wrapper {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column-reverse;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
}

.content-wrapper .col {
    align-content: center;
    width: 100%;
}
.content-wrapper .col.image {
    text-align: center;
}
.content-wrapper .col.image img {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


@media screen and (min-width: 769px) {
    .content-wrapper {
        max-width: 1140px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 50px;
        display: flex;
        flex-direction: row;
    }

    .content-wrapper .col {
        align-content: center;
    }

    .content-wrapper .col.texts {
        max-width: 50%;
    }

    .content-wrapper .col.image {
        max-width: 50%;

    }

    .content-wrapper .col.image img {
        max-width: 100%;
    }
}