@charset "utf-8";
/* CSS Document */
/*  --  css reset  --  */
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}
/*

colors used:

red   - #990000
white - #FFFBFC
black - #0A100D
gray  - #D6D5C9

*/
html{
    font-size: 62.5%;
}
body{
    float: left;
    width: 100%;
    max-width: 1500px;
    margin: auto auto;
    height: auto;
    font-family: "transat", sans-serif;
    font-weight: 400;
    font-style: normal;
}
h1, h2, .menuItem a, .ctaButton a, label{
    font-family: "mrs-eaves-roman-small-caps", serif;
    font-weight: 400;
    font-style: normal;
}
.wrapper{
    float: left;
    width: 100%;
    height: auto;
}
.header{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%), url(/images/colorado02-1500.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    border-bottom: 10px solid #990000;
}

/* buttons start */
.ctaButton{
    float: left;
    width: 33.33%;
    height: 50px;
    margin-top: 15px;
    background-color: #990000;
    border-radius: 100px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s;
}
.ctaButton:hover,
.ctaButton:focus-within{
    cursor: pointer;
    border-radius: 5px;
    background-color: #990000;
    box-shadow: none;
}
.ctaButton p{
    float: left;
    display: block;
    width: 100%;
    height: auto;
    color: #FFFBFC;
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
}
.ctaButton a{
    text-decoration: none;
    color: #FFFBFC;
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
}
button{
    float: left;
    width: 33.33%;
    height: 50px;
    background-color: #FFFBFC;
    border-radius: 10px;
    color: #990000;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
    transition: .2s;
}
button:hover, button:focus{
    box-shadow: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: #e3e3e3;
}
/* buttons end */
/* inputs start */
.formMainContainer{
    float: left;
    width: calc(100% + 60px);
    margin-left: -30px;
    height: auto;
    background-color: #D6D5C9;
}
.formContainer{
    float: left;
    width: 85%;
    height: auto;
    margin-left: 7.5%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.inputContainer{
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    margin-top: 15px;
}
.inputContainer label{
    float: left;
    width: 100%;
    height: auto;
    color: #990000;
    font-size: 3rem;
    margin-bottom: 15px;
}
.inputContainer input[type=text]{
    float: left;
    width: 100%;
    height: 50px;
    border: 2px solid #990000;
    background-color: #FFFBFC;
    padding: 10px;
    font-size: 2rem;
    transition: .2s;
    box-shadow: none;
    border-radius: 0;
}
.inputContainer input[type=text]:focus-within{
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
    border-radius: 5px;
}
.sectionContainer p.checkboxOptionsLabel{
    font-family: "mrs-eaves-roman-small-caps", serif;
    font-weight: 400;
    font-style: normal;
    Color: #990000;
    font-size: 3rem;
    text-indent: 0;
    margin-bottom: 15px;
}
.checkboxContainer,
.radioContainer{
    float: left;
    width: 100%;
    height: auto;
}
.checkboxOptionContainer,
.radioOptionContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.checkboxOption,
.radioOption{
    float: left;
    width: 100%;
    height: 50px;
    font-family: "transat", sans-serif;
}
.checkboxOption:hover,
.radioOption:hover{
    cursor: pointer;
}
.inputContainer label.checkboxOption:hover,
.inputContainer label.checkboxOption:focus-within,
.inputContainer label.radioOption:hover,
.inputContainer label.radioOption:focus-within{
    color: #990000;
}
.checkboxOptionInput,
.radioOptionInput{
    float: left;
    width: 25px;
    height: 25px;
    margin-right: 15px;
}
.inputContainer label.checkboxOption,
.inputContainer label.radioOption{
    color: #0A100D;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 2rem;
}
.formContainer .ctaButton{
    margin-left: 33.33%;
}
.formContainer .ctaButton p{
    margin-bottom: 0;
    text-indent: 0;
    font-family: "mrs-eaves-roman-small-caps", serif;
    font-weight: 400;
    font-style: normal;
    color: #FFFBFC;
}
.extraFormHeading{
    float: left;
    width: 100%;
    font-size: 3rem;
}
/* inputs end */
.headerLogoContainer{
    float: left;
    width: 20%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFBFC;
}
.headerLogoContainer img{
    display: block;
    width: auto;
    height: 60px;
}
/* menu start */
.menuContainer{
    float: left;
    width: 80%;
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #FFFBFC;
}
.menuButton{
    display: none;
}
.menuDropdownContainer{
    position: initial;
    float: left;
    width: 90%;
    height: 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-right: 25px;
}
.menuItem{
    float: left;
    width: 18%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid #990000;
    transition: .3s;
    background: linear-gradient(180deg, rgba(255,251,252,1) 0%, rgba(255,251,252,1) 50%, rgba(144,41,35,1) 50%, rgba(144,41,35,1) 100%);
    background-size: 100% 200%;
    background-position: top;
}
.menuItem:hover, .menuItem:focus-within{
    cursor: pointer;
    background-position: bottom;
}
.menuItem:hover p a, .menuItem:focus-within p a{
    color: #FFFBFC;
}
.menuItem p{
    display: block;
    width: 100%;
}
.menuItem a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    text-decoration: none;
    color: #0A100D;
    font-size: 2rem;
}
.menuDonateButton{
    width: 18%;
    margin-top: 0;
}
.currentPage{
    background-position: bottom;
}
.currentPage p a{
    color: #FFFBFC;
}
/* menu end */

/* index page header only start */
.indexHeader{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #a3d2fc;
    background-image: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%), url(/images/colorado01-1500.png);
    /*background-image: linear-gradient(0deg, rgba(255,251,252,1) 5%, rgba(255,251,252,0) 55%), url(/images/colorado01-1500.png);*/
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    border-bottom: 10px solid #990000;
}
.indexHeaderTop{
    float: left;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.headerLeft{
    float: left;
    width: 40%;
    height: auto;
    padding-left: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}
.headerRight{
    float: left;
    width: 60%;
    height: auto;
}
.imageTextContainer{
    width: 100%;
    height: auto;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    flex-wrap: wrap;
}
.imageTextContainer h1{
    text-align: center;
    font-size: 6rem;
    color: #FFFBFC;
    text-shadow: 3px 3px 0 #0a100d;
}
.mainImageContainer{
    float: left;
    width: 80%;
    height: auto;
    max-height: 600px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.75);
}
.mainImageContainer img{
    display: block;
    width: 100%;
    height: auto;
}
.contactContainer{
    float: left;
    width: 100%;
    height: auto;
    min-height: 50px;
    background-color: #fdfdfd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 30px;
    padding-top: 30px;
}
.contactContainer p{
    float: left;
    width: 33.33%;
    height: auto;
    font-size: 3rem;
    color: #990000;
    text-align: center;
    font-weight: bold;
}
/* index page header only end */
.headerTop{
    float: left;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.pageHeading{
    width: 100%;
    height: auto;
    font-size: 6rem;
    color: #FFFBFC;
    text-align: center;
    text-shadow: 3px 3px 0 #0a100d;
    margin-top: 5%;
    margin-bottom: 2.5%;
    padding-left: 20px;
    padding-right: 20px;
}
.sectionContainer{
    float: left;
    width: 100%;
    height: auto;
}
.sectionContainer h2{
    float: left;
    font-size: 5rem;
    margin-bottom: 15px;
    margin-top: 15px;
}
.sectionContainer p{
    float: left;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* index page */
.whoIsJimContainer{
    background-color: #990000;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}
.whoIsJimTopContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.75);
}
.whoIsJimTopContainer img{
    display: block;
    width: auto;
    height: auto;
}
.whoIsJimBottomContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0px -4px 8px rgba(50, 50, 50, 0.75);
}
.whoIsJimBottomContainer img{
    display: block;
    width: auto;
    height: auto;
    max-width: 25%;
}
.wideImageBox{
    float: left;
    width: 28.33%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
}
.tallImageBox{
    float: left;
    width: 15%;
    height: auto;
}
.wideImageBox img,
.tallImageBox img{
    display: block;
    width: 100%;
    height: auto;
}
.whoIsJimRightContainer{
    float: left;
    width: 100%;
    height: auto;
    padding-left: 30px;
    padding-right: 60px;
}
.whoIsJimContainer p,
.whoIsJimContainer h2{
    color: #FFFBFC;
}
.flyerContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.flyerContainer img{
    display: block;
    width: 75%;
    height: auto;
}

/* jabbers page */
.imageRowContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.75);
    margin-bottom: 1%;
}
.imageRowContainer img{
    display: block;
    width: auto;
    height: auto;
    max-width: 25%;
}

/* crew page */
.crewImageContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.75);
    margin-bottom: 1%;
}
.crewImageContainer .tallImageBox{
    width: 20%;
}
.crewImageContainer .wideImageBox{
    width: 40%;
}
.crewSection{
    float: left;
    width: 100%;
    height: auto;
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 60px;
}
.crewSection h2{
    float: left;
    width: 100%;
    height: auto;
    min-height: 50px;
    font-size: 5rem;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #990000;
}
.crewSection h3{
    float: left;
    width: auto;
    height: auto;
    font-size: 3rem;
    margin-bottom: 15px;
}
.crewVideoContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.crewVideo{
    float: left;
    width: 33.33%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.videoBox{
    float: left;
    width: 100%;
    height: auto;
    min-height: 250px;
    background-color: #D6D5C9;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.tempPlayButton{
    float: left;
    width: 50px;
    height: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.videoBox p{
    font-size: 3rem;
    text-indent: 0;
    margin: 0;
}
/* platform page */
.dropDownImageContainer{
    float: left;
    width: 20%;
    height: auto;
}
.dropDownImageContainer img{
    display: block;
    width: 100%;
    height: auto;
}
/* drop down feature start */
.dropDownMainContainer{
    float: left;
    width: 100%;
    height: auto;
    padding: 30px;
    background-color: #FFFBFC;
}
.dropDownMainContainer h2{
    float: left;
    width: 100%;
    height: auto;
    min-height: 50px;
    font-size: 5rem;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #990000;
}
.dropDownSectionContainer{
    float: left;
    width: calc(100% + 60px);
    margin-left: -30px;
    height: auto;
    background-color: #D6D5C9;
}
.dropDownTextContainer{
    float: left;
    width: 85%;
    height: auto;
    margin-left: 7.5%;
    margin-top: 30px;
    margin-bottom: 60px;
}
.dropDownTextContainer h3{
    float: left;
    width: 100%;
    font-size: 3rem;
    margin-bottom: 15px;
}
.dropDownSectionContainer ul{
    float: left;
    width: 85%;
    height: auto;
    margin-left: 7.5%;
    margin-top: 30px;
    margin-bottom: 60px;
}
.dropDownSectionContainer .dropDownSection ul{
    width: 65%;
    margin-left: 5%;
}
.dropDownSectionContainer li,
.dropDownSectionContainer p{
    color: #0A100D;
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    margin-bottom: 30px;
}
#dropDownSection0,
#dropDownSection1,
#dropDownSection2,
#dropDownSection3,
#dropDownSection4,
#dropDownSection5,
#dropDownSection6{
    display: none;
}
.dropDownSectionHeading{
    float: left;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 3px solid transparent;
}
.dropDownSectionHeading:hover,
.dropDownSectionHeading:focus{
    cursor: pointer;
}
.dropDownSectionHeading:hover .openCloseBox,
.dropDownSectionHeading:focus .openCloseBox{
    outline: 2px solid #990000;
    border-radius: 5px;
}
.dropDownSectionHeading h3{
    float: left;
    width: 100%;
    font-size: 3rem;
}
.openCloseBox{
    color: #FFFBFC;
    width: 50px;
    height: 50px;
    border: 0;
    font-size: 1.5em;
    position: relative;
    margin-right: 15px;
    transition: .2s;
    outline: 2px solid transparent;
}
.openCloseBox span{
    position: absolute;
    transition: 300ms;
    background: #990000;
    border-radius: 2px;
}
.openCloseBox span:first-child {
    top: 25%;
    bottom: 25%;
    width: 10%;
    left: 45%;
}
.openCloseBox.open span{
    transform: rotate(90deg);
}
.openCloseBox.open span:last-child {
    left: 50%;
    right: 50%;
}
.openCloseBox span:last-child {
    left: 25%;
    right: 25%;
    height: 10%;
    top: 45%;
}
/* drop down feature end */

/*  vision page */
.listSection{
    float: left;
    width: calc(100% + 60px);
    margin-left: -30px;
    height: auto;
    background-color: #FFFBFC;
}
.listSection ul{
    float: left;
    width: 85%;
    height: auto;
    margin-left: 7.5%;
    margin-top: 30px;
    margin-bottom: 60px;
}
.listSection li{
    color: #0a100d;
    float: left;
    width: 100%;
    height: auto;
}
.innerTextContainer{
    float: left;
    width: 100%;
    height: auto;
    padding-top: 60px;
}

/* footer */
footer{
    float: left;
    width: 100%;
    height: auto;
    min-height: 250px;
    background: #d6d5c9;
    padding-bottom: 50px;
}
.footerLogoContainer{
    float: left;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFBFC;
}
.footerLogoContainer img{
    display: block;
    width: 50%;
    height: auto;
    max-width: 500px;
}
footer .ctaButton{
    margin-left: 33.33%;
    margin-top: 60px;
}
.footerMessage{
    float: left;
    width: 50%;
    height: auto;
    margin-left: 25%;
    margin-top: 60px;
    background-color: #FFFBFC;
    border: 3px solid #4c0b1c;
    padding: 30px;
}
.footerMessage p{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    text-align: center;
}
.footerLinksContainer{
    float: left;
    width: 90%;
    height: auto;
    margin-left: 5%;
}
.footerLinksContainer h3{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 3px solid #990000;
    color: #990000;
}
.footerLinksContainer ul{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: space-between;
}
.footerLinksContainer li{
    float: left;
    width: 25%;
    height: auto;
    min-height: 30px;
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.footerLinksContainer a{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    color: #990000;
    padding-bottom: 5px;
    text-decoration: none;
    border-bottom: 3px solid transparent;
}
.footerLinksContainer li:hover a,
.footerLinksContainer li:focus-within a{
    border-bottom: 3px solid #990000;
}

/* privacy policy page */
.legalCheckbox{
    float: left;
    width: 100%;
    height: auto;
}
.legalCheckbox .checkboxOption{
    flex-wrap: wrap;
    font-size: 2rem;
    height: auto;
}
.legalCheckbox a{
    display: inline;
}
.privacyContainer{
    float: left;
    width: 100%;
    height: auto;
    padding: 30px;
    padding-bottom: 60px;
}
.privacyContainer h2{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2.5rem;
    margin-top: 60px;
    margin-bottom: 15px;
    padding-bottom: 5px;
}
.privacyContainer p{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    margin-bottom: 60px;
}

/* temp section */
.tempComtainer{
    float: left;
    width: 100%;
    height: auto;
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 60px;
    background-color: #FFFBFC;
}
.tempComtainer h2{
    color: #990000;
    font-size: 5rem;
    margin-bottom: 15px;
    margin-top: 15px;
}
.tempComtainer p{
    color: #0a100d;
    font-size: 2rem;
    margin-bottom: 30px;
    text-indent: 10px;
}
.tempComtainer p.noIndent{
    text-indent: 0;
}
/* responsive screen code */
@media only screen and (min-width: 1500px) {
/* Extra large devices (large laptops and desktops, 1500px and up) */
    html{
        float: left;
        width: 100%;
        height: auto;
        min-height: 100%;
        display: flex;
        justify-content: center;
    }
    body{
        float: left;
        width: 100%;
        max-width: 1500px;
        height: auto;
        margin: 0px auto;
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    }
}
@media only screen and (max-width: 1499px) {
/* Extra large devices (large laptops and desktops, 1200px and up) */

}
@media only screen and (max-width: 1199px) {
/* Large devices (laptops/desktops, 992px and up) */ 
    .indexHeader{
        background-image: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%), url(/images/colorado01-1200.png);
    }
    .header{
        background-image: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%), url(/images/colorado02-1200.png);
    }
    .mainImageContainer{
        max-height: 500px;
    }
    .imageTextContainer h1{
        font-size: 5rem;
    }
    .contactContainer p{
        font-size: 2.5rem;
    }
    .footerMessage{
        width: 70%;
        margin-left: 15%;
    }
}
@media only screen and (max-width: 991px) {
/* Medium devices (landscape tablets, 768px and up) */
    .indexHeader{
        background-image: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%), url(/images/colorado01-1000.png);
    }
    .header{
        background-image: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%), url(/images/colorado02-1000.png);
    }
    .imageTextContainer h2{
        font-size: 3rem;
    }
    .headerLogoContainer img{
        height: 50px;
    }
    .menuDropdownContainer{
        width: 98%;
    }
    .imageTextContainer h1{
        font-size: 4rem;
    }
    .dropDownMainContainer h2{
        font-size: 4rem;
    }
    .dropDownSectionHeading h3{
        font-size: 2.5rem;
    }
    .contactContainer{
        flex-wrap: wrap;
    }
    .contactContainer .firstP{
        width: 100%;
        margin-bottom: 15px;
    }
    .contactContainer .secondP, .contactContainer .thirdP{
        width: 50%;
    }
    .flyerContainer img{
        width: 100%;   
    }
}
@media only screen and (max-width: 767px) {
/* Small devices (portrait tablets and large phones, 600px and up) */  
    .indexHeader{
        background-image: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%), url(/images/colorado01-770.png);
    }
    .header{
        background-image: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%), url(/images/colorado02-770.png);
    }
    .footerMessage{
        width: 90%;
        margin-left: 5%;
    }
    .headerLogoContainer img{
        height: 40px;
    }
    .imageTextContainer h1{
        font-size: 3rem;
    }
    .formContainer .ctaButton{
        width: 50%;
        margin-left: 25%;
    }
    .videoSection{
        padding-left: 15px;
        padding-right: 15px;
    }
    .crewVideoContainer{
        flex-wrap: wrap;
    }
    .crewVideo{
        width: 100%;
        padding: 0;
    }
}
@media only screen and (max-width: 600px) {
/* Extra small devices (phones, 600px and down) */
    .indexHeader{
        background-image: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%), url(/images/colorado01-1000.png);
    }
    .header{
        background-image: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%), url(/images/colorado02-600.png);
    }
    .header{
        flex-wrap: wrap;
    }
    .contactContainer .firstP,
    .contactContainer .secondP{
        width: 100%;
        margin-bottom: 15px;
    }
    .contactContainer .thirdP{
        width: 100%;
    }

/* mobile menu start */
    .headerLogoContainer{
        width: 40%;
    }
    .menuContainer{
        float: left;
        width: 60%;
        height: 80px;
        padding-right: 5%;
    }
    .menuButton{
        float: left;
        width: 40%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
        border: 2px solid transparent;
        background-color: #FFFBFC;
        transition: .2s;
    }
    .menuButton p{
        font-size: 2rem;
        font-weight: bold;
    }
    .menuButton:hover, .menuButton:focus{
        border-radius: none;
        box-shadow: none;
        border-color: #cdcdcd;
        cursor: pointer;
        border-radius: 5px;
    }
    #menuItemContainer{
        display: none;
    }
    .menuDropdownContainer{
        position: absolute;
        z-index: 5;
        top: 80px;
        right: 0;
        width: auto;
        min-width: 60%;
        height: auto;
        background-color: #FFFBFC;
        transition: 1s;
        opacity: 1;
        box-shadow: 0px 8px 8px rgba(50, 50, 50, 0.75);
    }
    .menuDropdownContainer.open{
        animation: flyInRight 0.3s 1;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
        visibility: hidden;
    }
    @keyframes flyInRight{
        0%{
            visibility: hidden;
            opacity: 0;
            right: -100%;
        }
        2%{
            visibility: visible;
        }
        95%{
            right: 0;
            opacity: 1;
        }
        100%{
            visibility: visible;
            right: 0;
        }
    }
    .menuDropdownContainer.close{
        animation: flyOutRight 0.3s 1;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
        visibility: hidden;
    }
    @keyframes flyOutRight{
        0%{
            visibility: visible;
            right: 0;
            opacity: 1;
        }
        2%{
            visibility: visible;
        }
        95%{
            right: -125%;
            visibility: hidden;
            opacity: 0;
        }
        100%{
            
            right: -100%;
        }
    }
    .menuItem{
        width: 100%;
        height: 50px;
        background: #FFFBFC;
    }
    .menuItem p{
        float: left;
        width: auto;
        min-width: 100%;
        font-size: 2rem;
        font-weight: bold;
    }
    .menuItem p a{
        display: block;
        width: auto;
        min-width: 100%;
        padding: 10px;
        width: 100%;
        height: 50px;
        text-decoration: none;
        color: #990000;
    }
    .menuItem:hover, .menuItem:focus-within{
        cursor: pointer;
        height: 50px;
        background-color: #990000;
    }
    .menuItem:hover a, .menuItem:focus-within a{
        color: #FFFBFC;
    }
    .currentPage{
        height: 50px;
        background-color: #990000;
    }
    .currentPage p a{
        color: #FFFBFC;
    }
    .menuDropdownContainer .ctaButton.menuDonateButton{
        width: 80%;
        margin-left: 10%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
/* mobile menu end */

    .headerLeft{
        width: 100%;
        padding-left: 0;
    }
    .headerRight{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .headerRight .ctaButton{
        width: 50%;
    }
    .imageTextContainer{
        min-height: 150px;
    }
    .imageTextContainer h1{
        font-size: 4rem;
    }
    .mainImageContainer{
        width: 60%;
    }
    button{
        width: 50%;
    }
    .headerTop h1{
        font-size: 7rem;
    }
    .headerTop .ctaButton{
        width: 50%;
    }
    .whoIsJimRightContainer{
        padding-right: 30px;
    }
    .dropDownMainContainer ul{
        width: 90%;
        margin-left: 5%;
        padding-left: 10px;
        padding-right: 10px;
    }
    .dropDownMainContainer h2{
        font-size: 3rem;
    }
    .dropDownSectionHeading h3{
        font-size: 2.2rem;
    }
    .formContainer{
        width: 100%;
        margin-left: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
    .inputContainer label.checkboxOption, 
    .inputContainer label.radioOption{
        height: auto;
        min-height: 60px;
    }
    .formContainer .ctaButton{
        width: 90%;
        margin-left: 5%;
    }
    footer .ctaButton{
        width: 90%;
        margin-left: 5%;
    }
    .footerLinksContainer li{
        width: 100%;
    }
}
@media only screen and (max-width: 400px) {
/* Super Extra small devices (phones, 400px and down) */
    .headerLogoContainer{
        width: 60%;
    }
    .menuContainer{
        width: 40%;
    }
    .menuDropdownContainer{
        min-width: 100%;
    }
    .menuButton{
        width: 90%;
    }
    .imageTextContainer h1{
        font-size: 3rem;
    }
    .tempComtainer h2,
    .dropDownMainContainer h2, 
    .sectionContainer h2{
        font-size: 3.4rem;
    }
    .tempComtainer p,
    .dropDownMainContainer p, 
    .dropDownMainContainer li, 
    .sectionContainer p,
    .inputContainer label{
        font-size: 2rem;
    }
}