body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

a {
    color: #000;
    text-decoration: none;
}

header {
    height: 70vh;
    background: url("../images/header_bg.png");
    background-repeat: none;
    background-size: cover;
    background-position: center;
    padding: 5%;
}

#logo {
    width: 100px;
}

header h1 {
    margin-top: 80px;
    font-weight: 100;
    font-size: 2.5em;
    width: 25vw;
}

header h1 .red {
    color:#a6192e;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
}

.red {
    color:#a6192e;
    text-transform: uppercase;
    font-weight: bold;
}

.two_cols {
    width: 70vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.two_cols p {
    width: calc(50% - 80px);
    padding: 20px 40px;
    line-height: 1.5em;
    font-size: 1.2em;
    font-weight: lighter;
}

#video {
    width: 70vw;
    margin: 0 auto;
    text-align: center;
}

#video img {
    width: 100%;
}

.logo_text_line {
    width: 70vw;
    margin: 40px auto;
    min-height: 100px;
    display:flex;
    flex-wrap: wrap;
}

.logo_text_line a {
    width: 15%;
    margin: 0 40px 0 0;
    display:block;
}

.logo_text_line a img {
    width: 100%;
}

.logo_text_line p {
    width: calc(85% - 40px);
    font-size: 1.2em;
    margin-top: 0;
    padding: 0;
}

.logo_text_line p a {
    display: block;
    margin-top: 20px;
    width: auto;
    width: 200px;
    color: #333;
    font-weight: lighter;
    text-decoration: underline;
}

.logo_text_line p a:hover {
    text-decoration: none;
    
}
.clear {
    clear: both;
}

footer p {
    color: #a6192e;
    text-align: center;
}

a.moreinfo_button {
    width: 40vw;
    background: #b46b76;
    color: #fff;
    display: block;
    margin:40px auto;
    border-radius: 20px;
    border: solid 3px #a21c30;
    padding: 20px;
    text-align:center;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.5em;
    clear: both;
}

a.moreinfo_button:hover {
    background:#a21c30;
}

.soclinks {
    vertical-align:middle;
    width: 40px;
}

footer a:hover {
    text-decoration: underline;
}

.xlarge {
    font-size: 5em;
}

@media only screen and (max-width: 600px) {
    .two_cols p {
        width: calc(100% - 80px);

    }

    .two_cols {
        width: 95vw;
    }
    header h1 {
        width: 75vw;
    }

    header {
        height: auto;
        background-repeat: no-repeat;
        background-size:stretch;
        background-position: left center;
 
    }
    a.moreinfo_button {
        width: 80vw;
    }

    #video iframe {
        width: 100%;
        height: auto;
    }

    .logo_text_line a {
        width: 25%;
    }

    .logo_text_line p {
        width: calc(75% - 40px);

}