* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Open Sans', sans-serif;
}
h1 {
    font-size: 4em;
    padding: 75px 0;
    text-align: center;
    text-transform: uppercase;
}

h2 {
    color: #fff;
}

#endorsements .cards {
    width: 90%;
    margin: 75px auto;
}

.cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.cards img {
    width: 500px;
    padding: 25px;
}
#nav {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: +999;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #fff;;
}

#logo {
    width: 250px;
}

#menuIcon {
    display: none;
}
#menu li {
    display: inline-block;
    list-style: none;
    margin-right: 30px;
}

#menu li a{
    text-decoration: none;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
}

#menu li a:hover {
    color: #cf242a;
}

.blue {
    background-color: #0175b2;
}

.about-img {
    width: 400px;
    padding-right: 20px;
    float: left;
}
#issues {
    color: #fff;
}

div.dates {
    text-align: center;
}

#about h1 {
    color: #0175b2;
}

#photos {
    background-image: linear-gradient(rgba(0, 0, 0,0.8), rgba(0, 0, 0,0.8)), url("img/photos.jpg");
    background-size: cover;
}

#photos h1, .banner {
    color: #fff;
    background-color: #cf242a;
}

#footer {
    text-align: center;
    padding: 50px 20px;
}

.donate-btn {
    background-color: #cf242a;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff !important;
    padding: 15px 20px;
    border-radius: 7px;
    border: none;
    transition: 0.5s;
}

.donate-btn:hover {
    background-color: #0175b2 !important;
    cursor: pointer;
}

section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding-bottom: 5%;
}

#hero {
    width: 100%;
    height: auto;
}

.hero-image {
    width: 100%;   
}

.row {
    margin: 0 15%;
}

.flexrow{
    display: flex;
    margin: 5% 15%;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap-reverse;
}

.flexrow ul li {
    list-style: square;
    font-size: 1.5em;
}

.col1, .col2 {
    width: 500px;
}
.col100 {
    margin: auto 0;
}



.col100 ul li, .col100 h2 {
    font-size: 2em;
}

.col100 h2 {
    background-color: #cf242a;
    padding: 20px;
}

.col1 h2, .col2 h2 {
    text-transform: uppercase;
    padding: 30px;
    background-color: #cf242a;
}

.col-pic{
    width: 100%;
}
.col-ul {
    padding: 30px 0;
}

.row p {
    font-size: 24px;
}

form {
    padding: 20px 0;

}

input, textarea {
    width: 100%;
    border: #cf242a 2px solid;
    background-color: #fff;
    box-sizing: border-box;
    margin: 10px 0;
    padding: 12px 20px;
    
}

input:focus, textarea:focus {
    background-color: #0175b2;
    color: #fff;
}

textarea {
    width: 100%;
    resize: none;
}

input[type=submit] {
    color: #fff;
    background-color: #0175b2;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #cf242a;
}

.social {
    display: flex;
    justify-content: center;
}

.social img {
    width: 75px;
    padding: 20px;
}
@media only screen and (max-width: 900px) {
    .flexrow {
        flex: 1;
    }

    .flexrow ul li {
        font-size: 1.2em;
    }

    .about-img {
        width: 100%;
        padding-bottom: 30px;
    }

    .cards img {
        width: 280px;
        height: 280px;
        padding: 25px;
    }
    
    h1 {
        font-size: 2em;
        padding: 50px 0;
        text-align: center;
    }

    #menu {
        overflow: hidden;
        transition: 0.5s;
        max-height: 0px;
    }

    #menuIcon {
        display: block;
        width: 35px;
        cursor: pointer;
    }
    
    #nav ul {
        width: 100%;
        background: #cf242a;
        position: absolute;
        text-align: center;
        top: 75px;
        right: 0;
        z-index: 2;
    }
    #nav ul li {
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    #nav ul li a {
        color: #fff;
    }
    #nav ul li a:hover{
        color: #0175b2;
    }
    #logo {
        width: 230px;
    }
    .row {
        margin: 5% 8%;
    }
    .row p {
        font-size: 14px;
    }
    
}