@charset "utf-8";
/* CSS Document */
/*  --  css reset  --  */
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}
@font-face {
    font-family: 'tex_gyre_bonumregular';
    src: url('/fonts/texgyrebonum-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
html{
    font-size: 62.5%;
}
body{
    float: left;
    width: 100%;
    max-width: 1500px;
    margin: auto auto;
    height: auto;
    font-family: tex_gyre_bonumregular;
}
/* inputs */
.formContainer{
    float: left;
    width: 100%;
    height: auto;
    padding: 40px;
}
.inputContainer{
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
.checkboxInputContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}
.checkboxInputContainer .inputLabel:hover{
    cursor: pointer;
}
input[type=text]{
    width: 100%;
    height: 40px;
    padding: 5px;
    box-sizing: border-box;
    font-family: tex_gyre_bonumregular;
}
textarea{
    font-family: tex_gyre_bonumregular;
}
.inputLabel{
    float: left;
    font-size: 2rem;
    margin-bottom: 5px;
}
.textInput{
    float: left;
    width: 100%;
    height: 30px;
    border: 2px solid #0a3161;
    border-radius: 5px;
    font-size: 2rem;
    background-color: #fdfdfd;
    transition: .4s;
}
.textareaInput{
    float: left;
    min-width: 100%;
    max-width: 100%;
    min-height: 250px;
    max-height: 500px;
    border: 2px solid #0a3161;
    border-radius: 5px;
    padding: 15px;
    font-size: 2rem;
    background-color: #fdfdfd;
    transition: .4s;
}
.inputContainer:focus-within .textInput,
.inputContainer:focus-within .textareaInput{
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
    border-color: #fcd200;
}
.checkboxOptionsContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}
.checkboxInput{
    float: left;
    width: 20px;
    height: 20px;
    margin-right: 15px;
}
.checkboxInput:hover{
    cursor: pointer;
}
/* buttons */
.ctaButton{
    float: left;
    width: 80%;
    height: 50px;
    margin-top: 15px;
    background-color: #fcd200;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}
.ctaButton:hover,
.ctaButton:focus-within{
    cursor: pointer;
    background-color: #E2BD00;
    box-shadow: none;
}
.ctaButton p{
    float: left;
    width: auto;
    height: auto;
    padding: 10px;
    color: #0a3161;
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
}
.ctaButton a{
    text-decoration: none;
    color: #0a3161;
}
.mainButton{
    float: left;
    width: 80%;
    height: 50px;
    margin-top: 15px;
    background-color: #fdfdfd;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #0a3161;
}
.mainButton:hover,
.mainButton:focus-within{
    cursor: pointer;
    box-shadow: none;
}
.mainButton p{
    float: left;
    width: auto;
    height: auto;
    padding: 10px;
    color: #0a3161;
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
}
/* animation */
.loadingAnimationContainer{
    display: none;/*flex*/
    float: left;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
}
.ballContainer{
    float: left;
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: center;
}
.ballBox{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ballOne{
    float: left;
    width: 10px;
    height: 10px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 10px;
    background-color: #0a3161;
    transition: .5s ease 0s;
    animation: scaleBall 2s infinite;
    animation-delay: 0s;
    transform-style: preserve-3d;
}
.ballTwo{
    float: left;
    width: 10px;
    height: 10px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 10px;
    background-color: #0a3161;
    transition: .5s ease 0s;
    animation: scaleBall 2s infinite;
    animation-delay: 0.5s;
    transform-style: preserve-3d;
}
.ballThree{
    float: left;
    width: 10px;
    height: 10px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 10px;
    background-color: #0a3161;
    transition: .5s ease 0s;
    animation: scaleBall 2s infinite;
    animation-delay: 1s;
    transform-style: preserve-3d;
}
@keyframes scaleBall{
    0% {
          transform: scale(1);
    }
    50% {
        transform: scale(2);
        border-radius: 0px;
    }
    100%{
           transform: scale(1); 
    }
}
.wrapper{
    float: left;
    width: 100%;
    height: auto;
}
header{
    float: left;
    width: 100%;
    height: auto;
    min-height: 20vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    padding: 15px;
}
.logoContainer{
    float: left;
    width: 15%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.logoContainer a{
    float: left;
    width: 100%;
    height: auto;
}
.logoContainer img{
    float: left;
    display: block;
    width: 80%;
}
.mobileMenuButton{
    display: none;
}
.headerMenuContainer{
    float: left;
    width: 85%;
    height: auto;
    margin-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.headerMenuItem{
    float: left;
    width: 16.66%;
    height: auto;
    min-height: 50px;
    background-color: #fdfdfd;
}
.headerMenuItem:after {
  content: '';
  display: block;
  margin: auto;
  height: 3px;
  width: 0px;
  background: transparent;
  transition: width .4s ease, background-color .4s ease;
}
.headerMenuItem:focus-within:after, .headerMenuItem:hover:after {
  width: 100%;
  background: #b31942;
}
.headerMenuItem:focus-within, .headerMenuItem:hover{
    cursor: pointer;
}
.headerMenuItem:focus-within a, .headerMenuItem:hover a{
    color: #b31942;
}
.inTheNewsMenuItem{
    width: auto;
}
.headerMenuItem p{
    float: left;
    width: 100%;
    font-weight: bold;
    text-align: center;
    font-size: 1.8rem;
}
.headerMenuItem a{
    float: left;
    width: 100%;
    text-decoration: none;
    color: #999999;
    padding: 10px;
}
.currentPage a{
    color: #b31942;
}
.currentPage:after {
  content: '';
  display: block;
  margin: auto;
  height: 3px;
  width: 100%;
  background: #b31942;
}
header .ctaButton{
    width: 15%;
    margin-top: 0;
    justify-self: flex-end;
}
.topSection{
    float: left;
    width: 100%;
    height: auto;
    min-height: 80vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    background-color: #f2f2f2;
    background-image: url(/images/flag_1500.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}
.leftSide{
    float: left;
    width: 50%;
    height: auto;
}
.rightSide{
    float: left;
    width: 50%;
    height: auto;
}
.topSection .leftSide{
    width: 60%;
    align-self: flex-end;
    padding-top: 15px;
    padding-bottom: 15px;
    background: linear-gradient(130deg, rgb(204, 204, 204) 0%, rgb(242, 242, 242) 15%, rgba(242,242,242,0.8) 70%, rgba(242,242,242,0) 90%);
    margin-bottom: 30px;
}
.topSection .rightSide{
    width: 40%;
    margin-right: 0;
    max-height: 80vh;
}
/* temp remove when have images */
.mainJeffImage{
    float: left;
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mainJeffImage img{
    display: block;
    width: auto;
    max-width: 85%;
    height: auto;
    max-height: 70vh;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
}
.textContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.textContainer h1{
    display: block;
    width: 100%;
    font-size: 6rem;
    color: #b31942;
    text-align: center;
    text-shadow: 1px 1px 0 white;
}
.textContainer p{
    display: block;
    width: 100%;
    font-size: 3rem;
    color: #0a3161;
    text-align: center;
    text-shadow: 1px 1px 0 white;
}
.pageHeadingContainer{
    float: left;
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding: 15px;/*
    background-image: url(https://gregorycarlson.com/jeffLindsey/images/flag2.png);
    background-color: rgba(221,221,221,0.7);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: lighten;
    background-position: center;*/
}
.pageHeading{
    float: left;
    width: 100%;
    height: auto;
    font-size: 6rem;
    color: #b31942;
    text-shadow: 1px 1px 0 #0a3161;
    text-align: center;
}
/* index page */
.pressReleaseContainer{
    float: left;
    width: 100%;
    height: auto;
    padding: 30px;
}
.pressReleaseContainer p{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
}
.campaignThemesContainer{
    float: left;
    width: 100%;
    height: auto;
    padding-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    background: #660000;
}
.campaignThemesTextContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
}
.leftContainer, .centerContainer, .rightContainer{
    float: left;
    width: 33.33%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.campaignThemeHeader{
    float: left;
    width: 33.33%;
    height: auto;
    font-size: 2.5rem;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #fdfdfd;
}
.leftContainer h2, .centerContainer h2, .rightContainer h2{
    display: none;
}
.leftContainer a, .centerContainer a, .rightContainer a{
    float: left;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    scale: 1;
}
.leftContainer a:hover, .centerContainer a:hover, .rightContainer a:hover,
.leftContainer a:focus, .centerContainer a:focus, .rightContainer a:focus{
    scale: 1.05;
}
.campaignThemeImageContainer{
    float: left;
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
}
.leftContainer .campaignThemeImageContainer{
    background-image: url(/images/badge.png);
    background-size: cover;
    background-position: center;
}
.centerContainer .campaignThemeImageContainer{
    background-image: url(/images/kids.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.rightContainer .campaignThemeImageContainer{
    background-image: url(/images/award.png);
    background-size: cover;
    background-position: center;
}
.campaignThemeImageContainer img{
    float: left;
    display: block;
    width: 100%;
    height: auto;
}
.campaignThemeDetailContainer{
    float: left;
    width: 100%;
    height: auto;
    padding: 30px;
    padding-bottom: 60px;
}
.campaignThemeDetailContainer h2{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2.5rem;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 3px solid #0a3161;
    color: #0a3161;
}
.campaignThemeDetailContainer p{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
}
.campaignThemeDetailContainer ul{
    float: left;
    width: 80%;
    height: auto;
    padding-left: 60px;
    margin-top: 30px;
}
.campaignThemeDetailContainer li{
    font-size: 2rem;
}
.imageRowContainer{
    float: left;
    width: 20%;
    height: auto;
    min-height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
}
.imageRowContainer img{
    display: block;
    width: 100%;
    height: auto;
}
/* image slideshow */
.imageSlideshowContainer{
    float: left;
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}
.imageSlideshow{
    float: left;
    width: 80%;
    height: auto;
    margin-left: 10%;
    border-radius: 5px;
    background-color: #f2f2f2;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
    position: relative;
}
.previousSlide, .nextSlide{
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #0a3161;
    background-color: #f2f2f2;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 4;
}
.previousSlide{
    left: 0;
}
.nextSlide{
    right: 0;
    border-radius: 3px 0 0 3px;
}
.previousSlide:hover, .previousSlide:focus,
.nextSlide:hover, .nextSlide:focus{
    background-color: #0a3161;
    color: #fdfdfd;
}
.slideBox{
    float: left;
    width: 100%;
    height: auto;
    display: none;/* flex */
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.slideBox1::before{
    
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url(/images/JeffLindsey-speech01.png);
    background-size: cover;
    filter: opacity(25%) blur(2px);
    background-size: cover;
}
.slideBox2::before{
    
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url(/images/JeffLindsey-buildingFront01.png);
    background-size: cover;
    filter: opacity(25%) blur(2px);
    background-size: cover;
}
.slideBox3::before{
    
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url(/images/JeffLindsey-grayScale01.png);
    filter: opacity(25%) blur(2px);
    background-size: cover;
}
.slideBox4::before{
    
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url(/images/fishing.jpg);
    filter: opacity(25%) blur(2px);
    background-size: cover;
}
.slideBox5::before{
    
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url(/images/JeffLindsey-child.png);
    filter: opacity(25%) blur(2px);
    background-size: cover;
}
.slideBox img{
    display: block;
    width: auto;
    height: 500px;
    z-index: 2;
}
.slideNumber{
    font-size: 2rem;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    left: 0;
    color: #0a3161;
    background: #f2f2f2;
    z-index: 4;
}
.slideTextContainer{
    float: left;
    width: 100%;
    height: auto;
    text-align: center;
    background-color: #fdfdfd;
    padding: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.slideTextContainer p{
    font-size: 2rem;
}
.slideshowThumbnailContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    background-color: #fdfdfd;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
}
.slideshowThumbnail{
    float: left;
    width: 20%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.thumbnail{
    display: block;
    width: auto;
    height: 100%;
    opacity: 0.6;
    transition: 0.5s;
    scale: 1;
}
.thumbnail:hover{
    cursor: pointer;
}
.active{
    opacity: 1;
}
.thumbnail:hover, .thumbnail:focus{
    opacity: 1;
    scale: 1.1;
}
/* image divider */
.imageDividerContainer{
    float: left;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    margin-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
}
.imageDividerContainer img{
    display: block;
    width: 200px;
    height: auto;
}
hr {
    display: block;
    height: 1px;
    width: calc(50% - 100px);
    border: 0;
    border-top: 6px solid #660000;
    margin: 1em 0;
    padding: 0;
}
/* contact page */
.contactContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background: #0a3161;
    background-image: url(/images/columns_1500.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-position: center;
}
.contactContainer .leftSide{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.contactSection{
    float: left;
    width: 100%;
    height: auto;
    padding: 30px;
}
.contactImage{
    float: left;
    width: 100%;
    height: auto;
    padding: 5px;
}
.contactImage img{
    display: block;
    width: auto;
    height: auto;
    max-height: 250px;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
}
.contactSection h2{
    font-size: 4rem;
    color: #fdfdfd;
    margin-bottom: 15px;
}
.contactSection p{
    font-size: 2rem;
    color: #fdfdfd;
}
.contactContainer .rightSide label{
    color: #fdfdfd;
}
.contactContainer .textInput, .contactContainer .textareaInput{
    border-color: #030d1a;
}
/* volunteer page */
.volunteerContainer{
    float: left;
    width: 100%;
    height: auto;
    background-image: url(/images/ladyJustice_1500.png);
    background-color: rgba(221,221,221,0.7);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: lighten;
    background-position: center;
    
}
.volunteerTopSection{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.volunteerImageContainer{
    float: left;
    width: 15%;
    height: auto;
}
.volunteerImageContainer img{
    display: block;
    width: auto;
    height: auto;
    max-height: 250px;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
}
.volunteerContainer .leftSide{
    width: 50%;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.volunteerContainer .rightSide{
    width: 50%;
    margin-right: 0;
    padding: 15px;
}
.volunteerContainer .textInput, .volunteerContainer .textareaInput{
    border-color: #4c0b1c;
}
.volunteerMessage{
    float: left;
    width: 85%;
    height: auto;
    font-size: 3rem;
    padding: 60px;
}
.checkboxOptionsContainer p{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    margin-bottom: 15px;
}
.checkboxOptionsContainer p.checkboxOptionMessage{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    margin-left: 30px;
}
.formContainer .ctaButton{
    width: 100%;
}
/* platform page */
.platformContainer{
    float: left;
    width: 100%;
    height: auto;
    padding: 30px;
    padding-bottom: 60px;
}
.platformTopSection{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.platformImageContainer{
    float: left;
    width: 15%;
    height: auto;
}
.platformImageContainer img{
    display: block;
    width: auto;
    height: auto;
    max-height: 250px;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
}
.platformFirstTextContainer{
    float: left;
    width: 85%;
    height: auto;
    padding-left: 60px;
    padding-right: 60px;
}
.platformContainer .platformFirstTextContainer p{
    font-size: 3rem;
}
.platformContainer h2{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2.5rem;
    margin-top: 60px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 3px solid #0a3161;
    color: #0a3161;
}
.platformContainer p{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
}
/* in the news page */
.inTheNewsLinksContainer{
    float: left;
    width: 100%;
    height: auto;
    padding: 60px;
}
.newsImageContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.newsImageContainer img{
    display: block;
    width: auto;
    height: auto;
    max-height: 250px;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
}
.inTheNewsLink{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15px;
    border-bottom: 2px solid #ccc;
}
.inTheNewsLink:hover, .inTheNewsLink:focus-within{
    background-color: #999;
    cursor: pointer;
}
.linkImageContainer{
    display: block;
    float: left;
    width: 10%;
    height: auto;
    max-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inTheNewsLink img{
    display: block;
    float: left;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100px;
}
.linkTextContainer{
    float: left;
    width: 90%;
    height: auto;
    padding-left: 30px;
}
.inTheNewsLink p{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
}
.inTheNewsLink a{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
}
/* footer */
footer{
    float: left;
    width: 100%;
    height: auto;
    min-height: 200px;
    background: #660000;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.footerLinksContainer{
    float: left;
    width: 100%;
    height: auto;
}
.footerLinksContainer h3{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 3px solid #fdfdfd;
    color: #fdfdfd;
}
.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: #fdfdfd;
    padding-bottom: 5px;
    text-decoration: none;
    border-bottom: 3px solid transparent;
}
.footerLinksContainer li:hover a,
.footerLinksContainer li:focus-within a{
    border-bottom: 3px solid #fdfdfd;
}
.footerLinksContainer .ctaButton{
    width: 33.33%;
    margin-left: 33.33%;
    margin-bottom: 60px;
}
.footerLinksContainer .ctaButton a{
    color: #0a3161;
}
.footerMessage{
    float: left;
    width: auto;
    height: auto;
    margin: auto auto;
    margin-top: 60px;
    background-color: #f2f2f2;
    border: 3px solid #4c0b1c;
    padding: 30px;
}
.footerMessage p{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    text-align: center;
}
/* modals */
#submitModal{
    display: none;
}
.modal{
    display: block;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.6);
}
.modalContainer{
    display: block;  
    width: 90%;
    max-width: 1000px;
    height: auto;
    max-height: calc(100% - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    margin: 80px auto;
    border-radius: 3px;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
.modalHeading{
    float: left;
    width: 100%;
    min-height: 50px;
    height: auto;
    display: flex;
    align-items: center;
    background-color: #0a3161;
    position: sticky;
    top: 0;
    z-index: 600;
    padding-left: 13px;
    padding-right: 13px;
}
.modalHeading h2{
    float: left;
    display: block;
    width: calc(100% - 90px);
    font-size: 4rem;
    font-weight: normal;
    text-align: left;
    color: #fdfdfd;
    margin-left: 10px;
    margin-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.modalHeading p{
    float: left;
    display: block;
    width: 40px;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    color: #fdfdfd;
}
.modalHeading p:hover, .modalHeading p:focus{
    cursor: pointer;
    background-color: rgba(12,12,12,0.4);
    border-radius: 3px;
}
.modalContentContainer{
    float: left;
    width: 100%;
    height: auto;
    background-color: #fdfdfd;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 5%;
    padding-left: 13px;
    padding-right: 13px;
}
.modalContentContainer p{
    display: block;
    float: left;
    width: 100%;
    height: auto;
    padding: 13px;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 13px;
    font-size: 2rem;
}
.modalButtonContainer{
    float: left;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 2%;
    background-color: #fdfdfd;
}
.modalButtonContainer .mainButton{
    width: 33.33%;
}

/* 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) */ 
    header{
        justify-content: space-between;
    }
    .logoContainer{
        order: 2;
        width: 33.33%;
    }
    .logoContainer img{
        width: 40%;
    }
    header .ctaButton{
        order: 3;
        margin-top: 13px;
    }
    .headerMenuContainer{
        order: 1;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        justify-content: flex-start;
    }
    .campaignThemeHeader{
        font-size: 2rem;
    }
    .topSection{
        background-image: url(/images/flag_1200.png);
    }
    .contactContainer{
        background-image: url(/images/columns_1200.png);
    }
    .volunteerContainer{
        background-image: url(/images/ladyJustice_1200.png);
    }
}
@media only screen and (max-width: 991px) {
/* Medium devices (landscape tablets, 768px and up) */
    .logoContainer img{
        width: 50%;
    }
    .headerMenuItem{
        width: 25%;
    }
    header .ctaButton{
        width: 25%;
    }
    .topSection{
        align-content: flex-start;
    }
    .topSection .leftSide{
        width: 100%;
        margin-bottom: 15px;
    }
    .topSection .rightSide{
        width: 100%;
        margin-bottom: 15px;
    }
    .mainJeffImage img{
        width: 40%;
        margin-left: 30%;
    }
    .imageSlideshow{
        width: 95%;
        margin-left: 2.5%;
    }
    .topSection{
        background-image: url(/images/flag_1000.png);
    }
    .contactContainer{
        background-image: url(/images/columns_1000.png);
    }
    .volunteerContainer{
        background-image: url(/images/ladyJustice_1000.png);
    }
    .volunteerImageContainer, .platformImageContainer{
        width: 30%;
    }
    .volunteerMessage{
        width: 70%;
        font-size: 3rem;
        padding: 10px;
    }
    .platformFirstTextContainer{
        width: 70%;
        padding: 10px;
    }
    .platformFirstTextContainer p{
        font-size: 3rem;
    }
}
@media only screen and (max-width: 767px) {
/* Small devices (portrait tablets and large phones, 600px and up) */  
    .pageHeading{
        font-size: 5rem;
    }
    header{
        position: relative;
    }
    .mobileMenuButton{
        display: block;
        float: left;
        width: 50%;
        height: auto;
        min-height: 30px;
        padding: 5px;
        padding-right: 10px;
        margin-left: 50%;
        color: #b31942;
        font-size: 3rem;
        text-align: right;
        font-weight: bold;
    }
    .mobileMenuButton:hover{
        cursor: pointer;
        background-color: #f2f2f2;
        border-radius: 5px;
    }
    .logoContainer,
    header .ctaButton{
        width: 50%;
    }
    .logoContainer img{
        width: 70%;
    }
    .headerMenuContainer{
        display: none;
        z-index: 5;
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.6);
    }
    .headerMenuItem{
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    } 
    .headerMenuItem p{
        text-align: right;
        padding-right: 30px;
    } 
    .mainJeffImage img{
        width: 50%;
        margin-left: 25%;
    }
    .campaignThemesContainer{
        flex-wrap: wrap;
    }
    .campaignThemesTextContainer{
        display: none;
    }
    .leftContainer h2, .centerContainer h2, .rightContainer h2{
        display: block;
        width: 100%;
    }
    .campaignThemesContainer .leftContainer, .campaignThemesContainer .centerContainer, .campaignThemesContainer .rightContainer{
        width: 100%;
    }
    .contactContainer{
        flex-wrap: wrap;
        background-image: url(/images/columns_770.png);
    }
    .contactContainer .leftSide, .contactContainer .rightSide{
        width: 100%;
    }
    .volunteerContainer{
        background-image: url(/images/ladyJustice_770.png);
    }
    .volunteerContainer .leftSide, .volunteerContainer .rightSide{
        width: 100%;
    }
    .volunteerContainer .formContainer{
        padding: 15px;
    }
    .topSection{
        background-image: url(/images/flag_770.png);
    }
    .inTheNewsLinksContainer{
        padding: 15px;
    }
    .newsImageContainer img{
        max-height: 300px;
    }
}
@media only screen and (max-width: 600px) {
/* Extra small devices (phones, 600px and down) */
    .pageHeading{
        font-size: 4rem;
    }
    .topSection .leftSide h1{
        font-size: 4rem;
    }
    .mainJeffImage img{
        width: 60%;
        margin-left: 20%;
    }
    .campaignThemeHeader, .campaignThemeDetailContainer h2{
        font-size: 2.5rem;
    }
    #servingMyCommunity{
        display: flex;
        flex-wrap: wrap;
    }
    .campaignThemeDetailContainer ul{
        order: 1;
        width: 100%;
    }
    .imageRowContainer{
        order: 2;
        width: 100%;
    }
    .topSection{
        background-image: url(/images/flag_600.png);
    }
    .contactContainer{
        background-image: url(/images/columns_600.png);
    }
    .volunteerContainer{
        background-image: url(/images/ladyJustice_600.png);
    }
    .volunteerTopSection, .platformTopSection{
        flex-wrap: wrap;
    }
    .volunteerImageContainer, .platformImageContainer{
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .volunteerMessage, .platformFirstTextContainer{
        width: 100%;
    }
    .inTheNewsLinksContainer{
        padding: 10px;
    }
    .footerLinksContainer .ctaButton{
        width: 80%;
        margin-left: 10%;
    }
    .footerLinksContainer li{
        width: 100%;
        min-height: 30px;
    }
}
@media only screen and (max-width: 400px) {
/* Super Extra small devices (phones, 400px and down) */
    .mobileMenuButton{
        width: 100%;
        margin-left: 0;
    }
    .slideshowThumbnailContainer{
        overflow: hidden;
    }
    .topSection .leftSide, .topSection .rightSide{
        width: 100%;
    }
    .topSection .leftSide h1{
        font-size: 4rem;
    }
    .mainJeffImage img{
        width: 90%;
        margin-left: 5%;
    }
    .campaignThemeHeader, .campaignThemeDetailContainer h2{
        font-size: 2.5rem;
    }
}