body {
    padding: 0;
    background-color: white;
    color: black;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100%;
    font-family: "open-sans-condensed", sans-serif;
    box-sizing: border-box;
    position: relative;
    font-size: 20px;
    padding-top: 2rem;
}

/***/
.center {
    display: flex;
    align-content: center;
    justify-content: center;
}

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

/***/

/****/
h1, .h1 {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 24px;
}

.lead {
    font-size: 20px;
    font-weight: bold;
    color: lightslategray;
}

a {
    color: black;
    text-underline-offset: 10px;
}

p {
    margin-bottom: 16px;
    text-wrap: balance;
}


.cms-text {
    max-width: 1000px;
    margin: 0 auto;
}

/****/

.header {
    padding: 3rem;
    width: 100vw;
    background-image: url("../assets/bg.jpg");
    background-size: 500px;
    background-repeat: repeat;
}

.header img {
    width: 100px;
}

.body {
    text-align: left;
}

.container {
    padding-left: 3rem;
    padding-right: 3rem;
    width: 100%;
    max-width: 1140px;
    margin-bottom: 100px;
}

.row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.col {
    width: 50%;
}

.grid {
    display: flex;
    align-items: stretch;
}

.grid img {
    aspect-ratio: 3/4.2;
    width: 33%;
    height: 100%;
    object-fit: cover;
    flex: 1;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 0 !important;
    font-size: 18px;
}

.c-social {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-icons__link svg {
    width: 20px;
    height: 20px;
}

.icon__fallback-text {
    display: none;
}


@media only screen and (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .header{
        background-size: 200px;
    }

    .header img{
        width: 64px;
    }

    .container {
        padding-right: 1rem;
        padding-left: 1rem;
        margin-bottom: 50px;
    }

    .row {
        flex-flow: column;
    }

    .col {
        width: 100%;
        text-align: center;
    }

    .grid {
        flex-flow: column;
    }

    .grid img {
        width: 100%;
        aspect-ratio: 4/3;
    }
}
