html, html * {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

h1 {
    color: #000;
    font-size: 28px;
    font-weight: 900;
}

h2 {
    font-size: 28px;
    line-height: 1.15em;
    color: #000;
    margin: 0 0 5px 0;
}

p, li, dl, label, figcaption {
    font-family: 'Open Sans', sans-serif;
    font-optical-sizing: auto;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

a {
    color:#F33D3B;
}

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

.page-container {
    margin: 0 30px;
}

.responsive-embed {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.header {
    margin-top: 20px;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    background-color: #dfdfdf;
    height: 100px;
    border-right: solid 5px #F33D3B;
}

.header .logo {
    height: 120px;
}

.content-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.form-container {
    border-top: solid 1px #dfdfdf;
    margin-top: 50px;
    padding-top: 30px;
}

@media screen and (min-width: 767px) {
    .page-container {
        margin: 0 auto;
        max-width: 680px;
    }
}

@media screen and (min-width: 960px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }
    
    .page-container {
        max-width: 940px;
    }

    header {
        margin-bottom: 100px;
    }

    .content-container {
        grid-template-columns: 1fr 1fr;
    }
}