@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 1em/1.3em Montserrat, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1000px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #231F20;
    background-color: #D6DF21;
    overflow: hidden;
    padding: 5rem;
}
strong, h2 {
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0;
    font-weight: 400;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    background: #231F20;
    display: inline-block;
    color: #D6DF21;
    padding: 0.2rem 0.5rem;
    margin: 0 0 0.5rem -0.5rem;
}
h3 {
    font-size: 5.2em;
    line-height: 1;
    margin-bottom: 2rem;
}
h3 span {
    text-transform: uppercase;
}
a {
    color: #231F20;
    text-decoration: underline;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 2rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.flex div {
    width: 44%;
}
.flex :is(h1, p) {
    width: 30%;
    font-size: 1.2em;
    line-height: 1.3em;
}
.flex p {
    position: relative;
    padding: 0;
}
.flex p:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background: #231F20;
    left: -3rem;
    top: 0%
}
footer {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width: 999px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p {
        text-align: left;
    }
    .flex p:after {
        left: -1rem;
    }
    h3 {
        font-size: 2em;
        text-align: center;
    }
    .flex div {
        width: 49%;
    }
    li br {
        display: none;
    }
    h2 {
        margin-left: 0;
    }
}
@media only screen and (max-width: 780px) {
    .flex {
        flex-direction: column;
    }
    .flex div, h1, p {
        width: 100% !important;
    }
    .flex :is(h1, p) {
        text-align: center;
        margin-bottom: 1rem;
    }
    .flex p:after {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    footer {
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }
    footer p {
        text-align: center;
    }
    li {
        padding-left: 1.5rem;
    }
}