/* Defaults */

:root {
    --lightblue: #31A7DE;
    --orange: #FF931E;
    --green: #8CC63F;
    --red: #E75043;
}

body,
html {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

body {
    color: black;
    font-size: 1rem;
    line-height: 1.4;
}

div {
    display: block;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    display: block;
    margin: 40px 0 20px;
    width: 100%;
    padding: 0;
    color: black;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.5rem;
}

p,
a {
    font-family: Arial, sans-serif;
    font-weight: 400;
}

p {
    margin: 0 0 20px;
}

p:last-child {
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
    margin: 1rem auto;
}


/* Buttons */

.button {
    padding: 1rem 1.2rem;
    color: var(--green);
    border: solid black 2px;
    background-color: black;
    display: inline-block;
    width: auto;
    text-decoration: none;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.button:hover {
    background: transparent;
    color: black;
}


/* Wrap */

.wrap {
    width: 90%;
    margin: 0 auto;
    max-width: 1400px;
    min-width: 70%;
}


/* Flag Headlines */

.flagline {
    width: 100%;
    display: block;
    border-top: solid 6px;
    margin: 0 0 2rem;
}

.flagline .wrap {
    display: flex;
    justify-content: flex-start;
}

.flagline h2 {
    padding: calc(1rem - 6px) 1.2rem 1rem;
    display: inline-block;
    width: auto;
}

.flagline.blueflag {
    border-color: var(--lightblue);
}

.flagline.blueflag h2 {
    background-color: var(--lightblue);
}

.flagline.orangeflag {
    border-color: var(--orange);
}

.flagline.orangeflag h2 {
    background-color: var(--orange);
}


/* Page Sections 
------------------------------------------------------ */


/* Site Header */

.site-header {
    background-color: var(--lightblue);
    padding: 0.7rem 0;
}

.site-header h1 {
    color: white;
}


/* Landing Section */

.twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
    align-content: center;
}

.twocol>.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col.blueback {
    background-color: var(--lightblue);
}

.landing.twocol .col:first-child img {
    width: 90%;
    max-width: 400px;
}

.landing.twocol .col:last-child img {
    width: 90%;
}


/* About Section */

.about {
    margin-bottom: 4rem;
}

.twotext {
    column-count: 2;
    column-gap: 1rem;
}


/* Partners Section */

.partners {
    margin-bottom: 4rem;
}


/* Follow Section */

.follow {
    background-color: var(--green);
    background-image: url(images/fbrepeat.png);
    background-size: 64px;
    background-repeat: repeat;
    background-attachment: fixed;
    padding: 4rem 0;
    position: relative;
}

.follow::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    width: 138px;
    height: 107px;
    transform: translate(-50%, -50%);
    background-image: url(images/wka-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.follow h3 {
    font-size: 3rem;
    max-width: 400px;
    line-height: 1;
}

h3.inverse span {
    display: inline;
    background: black;
    box-shadow: 10px 0 0 black, -10px 0 0 black;
    color: white;
}

.follow .button {
    align-self: center;
}


/* Footer */

.site-footer {
    background-color: var(--lightblue);
    padding: 3rem 0;
    text-align: center;
}

.site-footer img {
    width: 90%;
    max-width: 350px;
}

p.disclaim {
    display: inline-block;
    color: white;
    padding: 0.6rem 1.2rem;
    border: solid white 2px;
    margin-top: 2rem;
}

@media only screen and (max-width: 600px) {
    .twocol {
        grid-template-columns: 1fr;
    }
    .twotext {
        column-count: 1;
    }
    .follow {
        text-align: center;
    }
    .follow h3 {
        margin-bottom: 2rem;
        align-self: center;
    }
}