/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #404141;
    font-size: 1.2em;
    line-height: 1.53em;
    
    font-family: 'GT-Walsheim-Regular', sans-serif;
    font-style: normal;
    font-weight: 400;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

::focus{
    outline: none;
}


/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


p{
    line-height: 1.05em;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

address{
    font-style: normal;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
    display:block;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

@font-face {
    font-family: 'kg_summer_storm_roughregular';
    src: url('../fonts/kgsummerstormrough-webfont.woff2') format('woff2'),
         url('../fonts/kgsummerstormrough-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'GT-Walsheim-Regular';
    src: url('../fonts/GTWalsheim/GT-Walsheim-Regular.woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GT-Walsheim-Bold';
    src: url('../fonts/GTWalsheim/GT-Walsheim-Bold.woff');
    font-weight: normal;
    font-style: normal;
}


/*
 * Global styles
 */

#responsive-check{
    display: none;
}

a:link.button{
    
    background-color: #25AAE1;
    
    display:block;
    padding:0.6em;
    margin:0em 0.6em 0em 0em;
    border-radius: 0.5em;
    width:210px;
    text-align: center;
    text-decoration: none;
    color:#fff;
    cursor: pointer;
    outline: 0;
    font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size: 1em;
}

a:visited.button{
    
    display:block;
    padding:0.6em;
    margin:0em 0.6em;
    border-radius: 0.5em;
    width:190px;
    text-align: center;
    text-decoration: none;
    color:#fff;
    cursor: pointer;
    outline: 0;
}

a:hover.button{
    
    background-color: #0f84b4;
}

a:active.button{
    
    background-color: #0f84b4;
}

strong{
    font-weight: bold;
}

.col-wrapper{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

.col-wrapper .col{
    padding:2em 2em;
    width:50%;
}

.col-wrapper .col-centered{
    padding:2em 2em;
    width:50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
}

.col-wrapper .col-centered iframe{
       margin-left: auto;
    margin-right: auto;
}

.col-wrapper .col-centered table{
    margin-left: auto;
    margin-right: auto;
}

.text-small{
    font-size: 0.8em;
}

h3{
    font-size: 1.9em;
    line-height: 1.25em;
    color: #92278f;
    margin:0.3em 0;
    font-family: 'GT-Walsheim-Bold', sans-serif;
}

h4{
    font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size: 1.5em;
    margin:0.5em 0em;
    color: #92278f;
}

h5{
    font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size:1em;
    margin:0.5em 0em;
}

a:link{
    color: #92278f;
}

a:visited{
    color: #92278f;
}

a:hover{
    color: #fdb515;
}

a:active{
    color: #fdb515;
}

/*Popup styles*/

.white-popup {
    position: relative;
    background: #FFF;
    width: auto;
    max-width: 1000px;
    margin: 20px auto;
    border-radius: 5px;
    background-image: url('../img/textures/paper-light.jpg');
    background-size: cover;
    background-position: top center;
}

#new-name{
    background-image: url('../img/popup-background.png');
    background-size: cover;
    background-position: bottom center;
    color:#fff;
    min-height:50vh;
}

#new-name h3{
    padding:20px;
    color:#FDB515;
}

#new-name p{
    padding:5px 20px;
}

/*
 * Global Header styles
 */

header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-decoration: none;
    
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1000;
}

header a:link, a:visited, a:hover, a:active{
    text-decoration: none;
}

#logo{
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#logo img{
    height:65px;
    padding:20px 50px;
    
}

nav{
    
    padding:0.5em 1.5em;
    line-height: 1em;
    
}

nav ul{
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

nav ul li{
    display: inline;
    display: block;
    text-align: center;
    
}

nav ul li a:link{
    text-decoration: none;
    color:#fff;
    padding-left:1.5em;
}

nav ul li a:visited{
    text-decoration: none;
    color:#fff;
}

nav ul li a:hover{
    text-decoration: none;
    color:#fff;
}

nav ul li a:active{
    text-decoration: none;
    color:#fff;
}

.res-menu-indicator{
    display: none;
}

/* Header Hover Start */
header:hover nav ul li a:link{
    text-decoration: none;
    color:#92278f;
    padding-left:1.5em;
}

header:hover nav ul li a:visited{
    text-decoration: none;
    color:#92278f;
}

header:hover nav ul li a:hover{
    text-decoration: none;
    color:#92278f;
}

header:hover nav ul li a:active{
    text-decoration: none;
    color:#92278f;
}

#campjrf-logo-blue{
    display:none;
}

header:hover #campjrf-logo-blue{
    display:block;
}

header:hover #campjrf-logo-white{
    display:none;
}

/* Header Hover End */

#top-navigation{
    font-size:0.9em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

nav ul#menu-main-navigation li a:link{
    padding-bottom: 1.36em; 
}

nav #menu-main-navigation{
   font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size:1.05em;
   /*text-transform: uppercase;*/
    /*min-width: 780px;*/
}

nav #menu-main-navigation li a:link{
    padding-left:1em;
    font-size:1.05em;
}

nav #menu-main-navigation li a:hover{
    color: #fdb515;
}

nav #menu-main-navigation li a:active{
    color: #fdb515;
}

nav #top-navigation li a:hover{
    text-decoration: none;
    color:#fdb515;
}

nav #top-navigation li a:active{
    text-decoration: none;
    color:#fdb515;
}


nav ul li:hover > ul{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}

header:hover{
    background-color:#fff;
}

nav ul.sub-menu{ 
    font-family: 'GT-Walsheim-Regular', sans-serif;
    font-size: 0.8em;
    text-transform: none;
    position: absolute;
    left:0;
    /*
    background-image: url('../img/menu-paper-texture.png');
    background-position:bottom center;
    background-size: 100%;
    background-repeat: repeat-x;
    */
    background-color:#FDB515;
    width:100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding:1.2em 0em 1.2em 0em;
    margin-top:1.36em;
    display:none;
    z-index: -200;
    color:#fff;
    /*box-shadow: inset 0px 10px 0px #977921;*/
}

nav .sub-menu a:link{
    color:#fff !important;
    padding:1.5em 0.6em;
}

nav .sub-menu a:visited{
    color:#fff !important;
}

nav .sub-menu a:hover{
    color: #25AAE1 !important;
}


.nav-support a:link, .nav-support a:visited{
    color:#fff !important;
    background-color: #FDB515;
    
    display:block;
    padding:0.5em 1.5em;
    margin:0em 0em 0em 0.8em;
    border-radius: 0.5em;

    text-align: center;
    text-decoration: none;
    color:#fff;
    cursor: pointer;
    outline: 0;
    font-size: 0.9em;
}

.nav-support a:hover, .nav-support a:active{
    background-color: #e09d08;
    color:#fff !important;
}

#responsive-menu-icon{
    display: none;
    font-size: 1.3em;
}


/*
 * Homepage specific styles
 */

/* Video Header Styles */

#video-header{
    background-color: #000;
    height: 70vh;
    width:100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    position: relative;
}

.mobile-header{
    background-image: url('http://havayasummerprograms.org/wp-content/uploads/2018/11/HSP_videoLoad.png');
    background-size: cover;
    background-position: left center;
}

.vjs-waiting {
  visibility: hidden;
  background: transparent;
}
.vjs-loading-spinner {
  display: none !important;
}

.vjs-error-display{
    display: none !important;
}

/*

#video-header::after {
    content: "";
    background-image: url('../img/Bianca%20Grobbelaar%20-%20DSC_0190%20(2).JPG');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;   
    
    
}

*/



#campjrf-video-header{
    
    top: 0;
    left:0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
    
    width:108%;
    height: 90%;
    
}


@media (min-aspect-ratio: 16/9) {
  #campjrf-video-header { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
  #campjrf-video-header { width: 300%; left: -100%; height: 120%;}
}

#video-header h1{
    font-size: 4em;
    line-height: 1em;
    text-align: center;
    font-family: 'GT-Walsheim-Bold', sans-serif;
    color:#FFFFFF;
     z-index: 2; 
    padding-top:60px;
}

#video-header h1 ul{
    display:none;
}

#video-header #video-header-buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
     z-index: 2; 
    font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size: 1em;
}

#video-header #video-header-buttons a:link{
    background-color:#fff;
    display:block;
    padding:0.6em;
    margin:0em 0.6em;
    border-radius: 0.5em;
    width:190px;
    text-align: center;
    text-decoration: none;
    color:#ffffff;
}

#video-header #video-header-buttons a:link.video-button{
    background-color:#25AAE1;
    color:#fff;
}

#video-header #video-header-buttons a:hover.video-button{
    background-color:#0f84b4;
    color:#fff;
}

#video-header #video-header-buttons a:link.signup-button{
    background-color:#0f84b4;
    color:#fff;
}

#video-header #video-header-buttons a:hover.signup-button{
    background-color:#25AAE1;
    color:#fff;
}

#video-header #video-header-buttons a:visited{
    color:#fff;
}



/* eof Video Header Styles */

h2{
    font-family: 'GT-Walsheim-Bold', sans-serif;
    margin-bottom:0em;
    padding-bottom:0em;
    margin-top:0;
}

.homepage-section{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

.homepage-section-text{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding:1.5em;
    z-index: 2;
}

#homepage-section-one{
    
    color:#fff;
    background-color: #191D63;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    background-image: url('../img/CampHavaya_SitePattern.png');
    
     background-image: url('../img/textures/c6c095ca0345134dde2116a5ac7a9b5b.jpg');
    background-blend-mode: soft-light;
    
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#homepage-section-one .homepage-section-text{
    padding-bottom: 0;
}

#homepage-section-one .program{
   padding:20px;
    width:50%;
    height: 50vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

#homepage-section-one a.program:link{
    color:#fff;
    text-decoration: none;
}

#homepage-section-one a.program:visited{
    color:#fff;
    text-decoration: none;
}

#homepage-section-one .program:hover{
    width:80%;
    transition: all .3s;
    transition-timing-function:ease-in-out;
}

.program-logo{
    width:250px;
}

#homepage-section-one #camp-havaya{
    background-color: #27aae1;
    background-image: url(../img/camphavaya-bw-hspimage.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
}

#homepage-section-one #havaya-arts{
    background-color: #902c8e;
    background-image: url(../img/havayaarts-bw-hspimage.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
}

#homepage-section-one #havaya-israel{
    background-color: #192061;
    background-image: url(../img/havayaisrael-bw-hspimage.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
}

#homepage-section-one #homepage-programs li{
    list-style: none;
    text-align: center;
}

#homepage-section-one #homepage-programs li strong{
    display:block;
    font-family: 'GT-Walsheim-Bold', sans-serif;
    font-weight: normal;
}


#homepage-section-one .homepage-program-img{
    display:block;
    background-color: gainsboro;
    height: 230px;
    width:230px;
    border-radius: 230px;
    margin-bottom:0.5em;
    z-index: -1000;
    background-repeat: no-repeat;
}

@-webkit-keyframes apply-background2 {
    from {background-size: cover;}
    to {background-size: 160%;}
}

@keyframes apply-background2 {
    from {background-size: cover;}
    to {background-size: 160%;}
}

#homepage-section-one .homepage-program-img:hover{
    -webkit-animation-name: apply-background2;
            animation-name: apply-background2;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.nhie-program-image{
    background-image: url('../img/DSCF6845.jpg');
    background-size: cover;
    background-position: center;
}

.summercamp-program-image{
    background-image: url('../img/Bianca%20Grobbelaar%20-%20DSC_0032%20(2).JPG');
    background-size: cover;
    background-position: center;
}

.teen-program-image{
    background-image: url('../img/Bianca%20Grobbelaar%20-%20DSC_0055%20(7).JPG');
    background-size: cover;
    background-position: center;
}

.familycamp-program-image{
    background-image: url('../img/home-familycamp.JPG');
    background-size: cover;
    background-position: center;
}



#homepage-section-two{
    
    color:#fff;
    background-color:#25AAE1;
     background-image: url('../img/CampHavaya_SitePattern.png');

}

#homepage-section-two .homepage-section-image{
    background-image: url('../img/IMG_2581_small.JPG');
    background-size: cover;
    background-position:center;
    
    height: 50vh;
    width:120vw;
    -webkit-clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
    z-index: 2;
 
}

#homepage-section-two a:link.button{
    background-color:#FDB515;
}

#homepage-section-two a:hover.button{
    background-color:#e09d08;
}

#homepage-section-three{
    
    color:#fff;
    background-color:#FDB515;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
     background-image: url('../img/CampHavaya_SitePattern.png');
    background-position: bottom;

}

#homepage-section-three .homepage-section-image{
    background-image: url('../img/IMG_1172_small.JPG');
    background-size: 150%;
    background-position: center;
    
    height:50vh;
    width:160vw;
    -webkit-clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    z-index: 2;
 
}

/*
 * General Page styles
 */

#page-header{
    background-color:#336FB7;
    background-color:#000;
    height: 65vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: center;
    background-size: cover;
    background-position: center;
    position:relative;
}

#page-header::after {
    content: "";
    background-color:#336FB7;
    background-color:#000;
    opacity: 0.45;
    opacity: 0.2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;   
}

#page-header #page-header-text{
    height: 73%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
     z-index: 2; 
}

#page-header h1, h2{
    margin:0;
    padding:0;
    color:#fff;
}

#page-header h1{
    font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size:4em;
    line-height: 1em;
}

#page-header h2{
    font-family: 'GT-Walsheim-Regular', sans-serif;
    font-size:1.5em;
    font-weight: normal;
    width:60vw;
    line-height: 1.3em;
    padding-top:0.4em;
}

#page-content{
   /* background-image: url('../img/textures/treebark.jpg');
    background-size: 100% auto;
    background-repeat: repeat-y;
    */
    
    background-image:url('../img/textures/paper-light.jpg');
    background-size: cover;
    background-position: top center;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
    padding-bottom:50px;
}

#page-content img{
    max-width: 100%;
}

.page-content-top-buffer{
    padding-top:3em;
}

.wrapper{
    margin:1.5em 5em 1.5em 5em;
    width: 85vw;
    max-width: 85vw;
}

#page-section-navigation{
    background-color: #336FB7;
}

#page-section-navigation ul{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding:0;
    margin:0;
}

#page-section-navigation ul li{
    display:inline;
    font-family: proxima-nova, sans-serif;
    font-weight: bold;
    font-size:0.95em;
}

#page-section-navigation ul li a:link{
    color:#fff;
    display: block;
    padding:1em 1.5em;
}

#page-section-navigation ul li a:visited{
    color:#fff;
}

#page-section-navigation ul li a:hover{
    background-color:#3097BF;
}

/* New Families Video Callout */

#page-video-callout{
    min-height: 314px;
    width:85vw;
    background-color: #191D63;
    color:#fff;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin:0 0 0.5em 0;
}

#page-video-callout #page-video-callout-text{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin:0 1em;
}

#page-video-callout h3{
    font-size:1.5em;
    line-height: 1.4em;
    margin-bottom: 0em;
    color: #fff;
}

#page-video-callout span{
    font-family: 'GT-Walsheim-Bold', sans-serif;
    margin-bottom:20px;
}

#page-video-callout img{
    height:314px;
    min-width: 44vw;
    cursor: pointer;
}

.parent-cols .col{
    padding:2em 0em;
}

.parent-cols .col:first-child{
    padding-right: 1.5em;
}

.parent-cols .col:last-child{
    padding-left: 1.5em;
}

.parent-cols .col h4{
    font-size:1.25em;
    color:#191D63;
}

.parent-cols .section-image{
    width:100%;
    height: 40vh;
    margin-bottom: 1.5em;
    overflow: hidden;
    background-position:center;
    background-size:cover;
    background-repeat: no-repeat;
}

.parent-cols .section-image img{
  width: 100%;
}

.page-quote{
    text-align: center;
    width: 70vw;
    margin-left: auto;
    margin-right:auto;
    margin:0.5em auto 1em auto;
    font-size:1.5em;
    font-family: 'Covered By Your Grace', cursive;
    orphans: 3;
}

.page-quote span{
    color:#191D63;
    font-family: 'GT-Walsheim-Bold', sans-serif;
}

.page-quote .quote-name{
    display:block;
    text-align: right;
     font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size:0.6em;
}

/*
 * Registered Families Call Out
 */


#page-callout{
    min-height: 314px;
    width:85vw;
    background-color: #25AAE1;
    color:#fff;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin:0 0 0.5em 0;
}

#page-callout #page-callout-text{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin:0.5em 1em;
}

#page-callout h3{
    font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size:1.5em;
    line-height: 1.4em;
    margin-bottom: 0em;
    color: #fff;
    font-size:1.5em;
}

#page-callout span{
    font-family: 'GT-Walsheim-Bold', sans-serif;
    margin-bottom:20px;
}

#page-callout #page-callout-text p{
    margin:0.5em 0px;
}

#page-callout .page-call-out-image{
    min-height:314px;
    min-width: 40%;
    background-size: cover;
    background-position: center;
}

.landing-page-cols .col{
    padding:2em 0em;
}

.landing-page-cols .col:first-child{
    padding-right: 1.5em;
}

.landing-page-cols .col:last-child{
    padding-left: 1.5em;
}

.landing-page-cols .col h4{
    font-size:1.5em;
    color:#191D63;
}

.landing-page-cols .section-image{
    width:100%;
    height: 40vh;
    margin-bottom: 1.5em;
    overflow: hidden;
    background-position:center;
    background-size:cover;
    background-repeat: no-repeat;
}

.landing-page-cols .section-image img{
  width: 100%;
}

/*
 * Bottom CTA Section styles
 */

/*Join us*/

#join-us-section{
    background-color: #191D63;
    color:#ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    text-align: center;
    min-height:23vh;
    width: 100%;

     padding:30px 0px;
    padding-bottom:50px;
    background-image: url('../img/Bianca%20Grobbelaar%20-%20DSC_0236%20(2).JPG');
    background-image: url('../img/textures/c6c095ca0345134dde2116a5ac7a9b5b.jpg');
    background-blend-mode: soft-light;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#join-us-section .join-us-section-text{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0px 2em; 
}

#join-us-section .join-us-section-text #join-us-section-buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size: 1em;
}

#join-us-section .join-us-section-text #join-us-section-buttons a:link{
    
    background-color:#fff;
    display:block;
    padding:0.6em;
    margin:0em 0.6em;
    border-radius: 0.5em;
    width:190px;
    text-align: center;
    text-decoration: none;
    color:#fff;
}

#join-us-section .join-us-section-text a:link{
    color:#fff;
}

#join-us-section .join-us-section-text a:visited{
    color:#fff;
}

#join-us-section .join-us-section-text #join-us-section-buttons a:link.signup-button{
    background-color: #FDB515;
}

#join-us-section .join-us-section-text #join-us-section-buttons a:hover.signup-button{
    background-color: #e09d08;
}

#join-us-section .join-us-section-text #join-us-section-buttons a:link.request-information{
    background-color: #25AAE1;
}

#join-us-section .join-us-section-text #join-us-section-buttons a:hover.request-information{
    background-color: #0f84b4;
}



/*Contact us*/

#contact-us-section{
    background-color: #191D63;
    color:#ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    text-align: center;
    
    min-height:23vh;
    width: 100%;
    padding:30px 0px;
    padding-bottom:50px;
    
  background-image: url('../img/Bianca%20Grobbelaar%20-%20DSC_0243%20(2).JPG');
    background-image: url('../img/textures/c6c095ca0345134dde2116a5ac7a9b5b.jpg');
    background-position: center;
    background-size: cover;
    background-blend-mode: soft-light;
     background-repeat: no-repeat;
}

#contact-us-section .contact-us-section-text{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
   
}

#contact-us-section .contact-us-section-text #contact-us-section-buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size: 1em;
}

#contact-us-section .contact-us-section-text #contact-us-section-buttons a:link{
    
    background-color:#fff;
    display:block;
    padding:0.6em;
    margin:0em 0.6em;
    border-radius: 0.5em;
    width:190px;
    text-align: center;
    text-decoration: none;
    color:#fff;
}

#contact-us-section .contact-us-section-text a:link{
    color:#fff;
}

#contact-us-section .contact-us-section-text a:visited{
    color:#fff;
}

#contact-us-section .contact-us-section-text #contact-us-section-buttons a:link.social-button{
    background-color: #25AAE1;
}

#contact-us-section .contact-us-section-text #contact-us-section-buttons a:hover.social-button{
    background-color: #0f84b4;
    background-position: bottom;
}

#contact-us-section .contact-us-section-text #contact-us-section-buttons a:link.contact-button{
    background-color: #0f84b4;
}

#contact-us-section .contact-us-section-text #contact-us-section-buttons a:hover.contact-button{
    background-color: #25AAE1;
}


/*
 * Footer styles
 */

footer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #0d104a;
    padding-top:40px;
    font-size: 0.85em;
    color:#fff;
    
-webkit-clip-path: polygon(0 0, 100% 6%, 100% 100%, 0% 100%);
clip-path: polygon(0 0, 100% 6%, 100% 100%, 0% 100%);

    margin-top:-25px;
  
    
}

.home-page footer{
    background-color:#0d104a !important;
}

footer ul li{
    list-style: none; 
}


footer #footer-main-content{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding:0px 2.5em;
}

footer #footer-left-col{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
        -ms-flex-direction:column;
            flex-direction:column;
    width:200px;
    line-height: 1.125em;
}

footer #footer-left-col img{
    width:170px;
}

footer #footer-left-col #aca-logo{
    margin-top:20px;
    width:100px;
}


footer #footer-columns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 1.5rem;
    -webkit-box-align: flex-start;
        -ms-flex-align: flex-start;
            align-items: flex-start;
}

footer #footer-columns a:link{
    text-decoration: none;
    color:#fff;
}

footer #footer-columns a:visited{
    text-decoration: none;
    color:#fff;
}

footer #footer-columns a:hover{
    text-decoration: none;
    color:#fff;
    text-decoration: underline;
}

footer #footer-columns a:active{
    text-decoration: none;
    color:#fff;
    text-decoration: underline;
}

footer #footer-columns .social-icons li{
    margin-bottom:15px;
}

footer #footer-countdown{
    color:#fff;
    text-align: center;
    padding:0px 0px 0px 30px;
}



footer #footer-countdown #footer-countdown-wrapper{
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
    background-color: #F1B71C;
    background-size: 150%;
    display: block;
    
    width:160px;
    height: 60px;
    margin-bottom: 6px;

}

footer #footer-countdown #footer-countdown-wrapper::after {
    content: "";
    background-image: url('../img/textures/c6c095ca0345134dde2116a5ac7a9b5b.jpg');
    background-size: 150%;
    opacity: 0.2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;   
}

footer #footer-countdown #footer-countdown-wrapper strong{
    font-family: 'kg_summer_storm_roughregular';
    font-size:1.6em;
    font-weight: 100;
    display:inline;
    z-index: 2;
  
}

footer #footer-countdown #footer-countdown-wrapper span{
    position: absolute;
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
    margin-top:20px;
    margin-left:-50px;
    z-index: 2;
}



footer #copyright{
    color:#fff;
    font-size:0.6em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    max-width: 100vw;
    padding-right: 1.5rem;
}


/*
 * Donation Form Styles
 */

#donation-cta-wrapper{
    background-color:#191D63;
    width: 100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    
    background-image: url('../img/CampHavaya_SitePattern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

form{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding:2em 5em;
}

input[type=text], input[type=email], input[type=tel], textarea{
    min-width:98%;
    padding:0.3em;
    border-radius: 5px;
    border:2px solid #191D63;
    background-color: #fff;
    
}

input[type=submit]{
    
    background-color: #191D63;
    background-image: url('../img/textures/button-textures-two.jpg');
    
    display:block;
    padding:0.6em;
    margin:0em 0.6em 0em 0em;
    border-radius: 0.5em;
    width:190px;
    text-align: center;
    text-decoration: none;
    color:#fff;
    cursor: pointer;
    outline: 0;
    font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size: 1em;
    border:0;
}

input[type=submit]:hover{
    
    background-color: #191D63;
    background-image: url('../img/textures/button-textures-two.jpg');
    background-position: bottom;
}


#donation-text{
    width:77vw;
    padding:1.5em 0.5em 1.5em 3em;
    color: #fff;
    font-size:1.8em;
    line-height: 1.2em;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#donation-form-wrapper{
    width: 100vw;
    
}

#donation-form input[type=radio]{
    display:none;
}

#donation-form input[type=text], #donation-form input[type=email], #donation-form input[type=phone]{
    min-width:98%;
    padding:0.3em;
    border-radius: 5px;
    border:2px solid #0d104a;
    background-color: #0d104a;
    color:#fff;
}


.styled-select {
   background: url('../img/select-arrow.png') no-repeat 96% center;
   height: 29px;
   overflow: hidden;
    background-color: #0d104a; 
    width:98%;
    border-radius: 5px;
    border:2px solid #0d104a;
    padding:0.3em;
    margin-bottom: 0.25em;
    
}

.styled-select select {
   background: transparent;
   border: none;
   height: 39px;
   padding: 5px; /* If you add too much padding here, the options won't show in IE */
width:105%;
    color:#fff;
    -webkit-appearance:none;
    appearance:none;
    -moz-appearance:none;
}

.styled-select select:focus{
   background: transparent;
   border: none;
   height: 39px;
   padding: 5px; /* If you add too much padding here, the options won't show in IE */
width:105%;
    color:#000;
    -webkit-appearance:none;
    appearance:none;
    -moz-appearance:none;
}



#donation-form label{
    cursor: pointer;
    color:#fff;
}

#donation-form #donation-type{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

#donation-form #donation-type label{
    background-color:#0d104a;
    text-align: center;
    color:#fff;
    padding:0.6em 0em;
    margin: 0;
    min-width: 50%;
}

#donation-form #donation-type #monthly-label{
    border-radius: 5px 0px 0px 5px;
    border-right:1px solid #fff;
    border-top:2px solid #fff;
    border-bottom:2px solid #fff;
    border-left:2px solid #fff;
}

#donation-form #donation-type #once-label{
    border-radius: 0px 5px 5px 0px;
    border-left:1px solid #fff;
    border-top:2px solid #fff;
    border-bottom:2px solid #fff;
    border-right:2px solid #fff;
}

#donation-form #donation-amount{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top:20px;
}

#donation-form #donation-amount label{
    background-color:#0d104a;
    text-align: center;
    color:#fff;
    padding:0.6em;
    width:100%;
    margin: 0;
    border-top:2px solid #fff;
    border-bottom:2px solid #fff;
    border-right:2px solid #fff;
}

#donation-form #donation-amount label:first-of-type{
    border-radius: 5px 0px 0px 5px;
    border-left:2px solid #fff;
}

#donation-form #donation-amount label:last-of-type{
    border-radius: 0px 5px 5px 0px;
    border-right:2px solid #fff;
}

#donation-form input{
    display:block;
}

#donation-form label{
    margin-top:0.5rem;
    font-size:0.9em;
    display:block;
}


#donation-form #donation-honoree-info label{
    margin-top:0.5rem;
    font-size:0.9em;
    display:block;
}

#donation-form #donation-memory-info input{
    display:block;
}

#donation-form #donation-memory-info label{
    margin-top:0.5rem;
    font-size:0.9em;
    display:block;
}

#donation-form #donation-honoree-info input{
    display:block;
}

#donation-form label em{
    font-style: normal;
    font-size:0.85em;
}

#donation-form #donation-type input[type="radio"]:checked + label{
    background-color:#FDB515;
}

#donation-form #donation-amount input[type="radio"]:checked + label{
    background-color:#FDB515;
}

#donation-form .form-small-text{
    
    font-size:0.8em;
    margin-top:0.5em;
    text-align: right;
    color:#fff;
}

#donation-form #donation-for-ask div{
    display:inline;
}

#donation-form button{
    margin:0.5rem 0;
    font-family: 'GT-Walsheim-Bold', sans-serif;
    font-size: 0.9em;
}

#donation-form #honor-ask, #memory-ask{
    text-decoration: underline;
    cursor: pointer;
}

#donation-form #honor-ask:hover{
    text-decoration: none;
    cursor: pointer;
}

#donation-form #memory-ask:hover{
    text-decoration: none;
    cursor: pointer;
}

.honor-mail-ask{
    cursor: pointer;
}

#checkoutSubmit{
    background-color:#fff;
    display:block;
    padding:0.6em;
    border-radius: 0.5em;
    width:190px;
    text-align: center;
    text-decoration: none;
    color:#ffffff;
    border:none;
    margin-left: auto;
    margin-right: auto;
}

#checkoutSubmit{
    background-color:#FDB515;
    color:#fff;
}

#checkoutSubmit:hover{
    background-color:#e09d08;
    color:#fff;
}

/*Donation Page Styles*/

#donation-thankyou{
    background-color: #7EC357;
    background-image: url('../img/CampHavaya_SitePattern.png');
    color: #fff;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    
}

#donation-thankyou .col-centered{
    width:99%;
}

#donation-thankyou h3{
    color:#fff;
    margin:0px;
}

#donation-thankyou p{
    margin:0.5em 0.8em;
}

#donor-list{
    padding-top:20px;
}


#donation-thankyou .button{
    background-image: url('../img/textures/button-textures-four.jpg');
    margin-left: auto;
    margin-right: auto;
}

#donation-thankyou .button:hover{
    background-color:#2A7EA0;
    background-image: url('../img/textures/button-textures-four.jpg');
    background-position: bottom;
    color:#fff;
}

.donation-legacy-wrapper{
    background-color: #fff2cf;
}

.donation-legacy-wrapper h3{
    color: #fff;
    padding:0px 30px 0px 0px;
}

#donation-legacy{
    background-color: #FDB515;
    background-image: url('../img/campjrf-ll-background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
}

#donation-legacy h3{
    font-size:1.6em;
}

#donation-legacy-info p{
    margin:0px 1.5em;
}

#donation-ll-thankyou{
    background-color: #d59c05;
    background-image: url('../img/CampHavaya_SitePattern.png');
    color: #fff;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    
}

#donation-ll-thankyou .col-centered{
    width:85%;
}

#donation-ll-thankyou p{
    margin:0.5em 0.8em;
}

#donation-legacy-info a{
    float: right;
    background-color:#FDB515;
    background-image: url('../img/textures/button-textures-four.jpg');
    background-position: top;
    color:#fff;
}

#donation-legacy-info a:hover{
    float: right;
    background-color:#FDB515;
    background-image: url('../img/textures/button-textures-four.jpg');
    background-position: bottom;
    color:#fff;
}


/*
 * Application page styles
 */

@-webkit-keyframes apply-background {
    from {background-size:100%;}
    to {background-size:120%;}
    
     
}

@keyframes apply-background {
    from {background-size:100%;}
    to {background-size:120%;}
    
     
}

#apply-soon{
    background-color:#7D4D9F;
    background-image: url('../img/CampHavaya_SitePattern.png');
    background-size: 100%;
    width:100vw;
    font-size:1.3em;
    font-weight: bold;
    background-position: center;
    color:#fff;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding:50px 0px;
    text-align:center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.apply-online{
    
    background-color:#191D63;
    background-image: url('../img/CampHavaya_SitePattern.png');
    background-size: 100%;
    background-position: center;
    color:#fff !important;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    
}

.apply-full-width{
     min-width:100% !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
}

.apply-online h3{
    color:#fff;
    font-size:1.3em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.apply-online h3 img{
    padding-right:10px;
}

.apply-online:hover{
    
    background-image: url('../img/CampHavaya_SitePattern.png');
    background-position: center;
    background-size:130%;
    
    -webkit-animation-name: apply-background;
    
            animation-name: apply-background;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
   
}

.apply-paper{
    
    background-color:#5a267e;
    background-image: url('../img/CampHavaya_SitePattern.png');
    background-size: 100%;
    background-position: center;
    color:#fff;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-decoration: none;
}

.apply-paper h3{
    color:#fff;
    font-size:1.3em;
}

.apply-online img, .apply-paper img{
    height: 60px;
    padding-left:20px;
}

.apply-online:hover img, .apply-paper:hover img{
    height: 67px;
    margin-top:-7px;
}

.apply-paper:hover{
    
    background-color:#5a267e;
    background-image: url('../img/CampHavaya_SitePattern.png');
    background-position: center;
    background-size:130%;
    
    -webkit-animation-name: apply-background;
    
            animation-name: apply-background;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.apply-financial-wrapper{
    background-color: #f6eaff;
}

.apply-financial-wrapper h3{
    color: #fff;
}

#apply-financial{
    background-color: #7d4d9f;
    background-image: url('../img/apply-camper-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
}

#apply-financial h3{
    font-size:1.6em;
}

#apply-financial-info{
    background-color: #f6eaff;
}

#apply-financial-info a:link.button{
    background-color:#7EC357;
    background-image: url('../img/textures/button-textures-three.jpg');
}

#apply-financial-info a:hover.button{
    background-color:#7EC357;
    background-image: url('../img/textures/button-textures-three.jpg');
    background-position: bottom;
}

#financial-image{
    background-image: url('../img/Bianca%20Grobbelaar%20-%20DSC_0054%20(10).JPG');
    background-size: cover;
    background-position: center;
    border-radius: 5px 0px 0px 5px;
    float:left; 
    width:45%; 
    height:850px; 
    display:block;
}

#financial-text{
    float:left; 
    width:50%; 
    padding: 20px;
}

.apply-dates-rates-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width:100%;
}

.apply-rate-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #fff;
    border:5px solid #25AAE1;
    border-radius: 5px;
    text-align: center;
    margin:1em 0em 1em 5vw;
    min-width: 230px;
}

.apply-rate-header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #25AAE1;
    padding:0.5em;
    color: #fff;
}

.apply-rate-header h6{
    margin:0;
    padding:0;
    font-size:1.1em;
}

.apply-rate{
    padding:1em 0.5em;
    font-size: 1.3em;
    color:#191D63;
    font-weight: bold;
}

.apply-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #7d4d9f;
    border:5px solid #7d4d9f;
    border-radius: 5px;
    text-align: center;
    margin:1em 0em 1em 5em;
    min-width: 260px;
    color: #fff;
    background-image: url(../img/CampHavaya_SitePattern.png);
    background-size: 250%;
    cursor: pointer;
}

.apply-box h6{
    margin:0;
    padding:0;
    font-size:1.1em;
    color:#fff;
}

.apply-box:link{
    text-decoration: none;
    color:#fff;
}

.apply-box:visited{
    text-decoration: none;
    color:#fff;
}

.apply-box:hover{
    text-decoration: none;
    color:#fff;
    background-color:#5A267E;
}

.apply-details-link{
    width: 100%;
    text-align: right;
    padding-top:2em;
    cursor: pointer;
}

/*
 * Schedule styles
 */

.sch-wrapper-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
}

.sch-half-wrapper-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
}

.sch-details{
    background-color:#fff;
    /*background-image: url('../img/textures/paper-texture-2.jpg');*/
    background-image: url('../img/textures/paper-light.jpg');
    background-image: url('../img/textures/woodgrain-light.jpg');
    background-size: cover;
    background-position: top center;
    width:90vw;
    margin-bottom: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0px 0px 16px #000;
            box-shadow: 0px 0px 16px #000;
-webkit-box-shadow: 0px 0px 56px 3px rgba(0,0,0,0.42);
        box-shadow: 0px 0px 56px 3px rgba(0,0,0,0.42);
}

.sch-details-half{
    background-color:white;
    /*background-image: url('../img/textures/paper-texture-2.jpg');*/
    background-image: url('../img/textures/paper-light.jpg');
    background-size: cover;
    background-position: top center;
    width:40vw;
    margin-bottom: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0px 0px 16px #000;
            box-shadow: 0px 0px 16px #000;
    height: 100%;
}

.sch-details h3{
    color:#191D63;
}

.sch-details a:link.button{
    margin-left:0;
    margin-top:1em;
    background-color: #191D63;
    background-image: url('../img/textures/button-textures.jpg');
    background-position: top;
}

.sch-details a:hover.button{
    margin-left:0;
    margin-top:1em;
    background-color: #191D63;
    background-image: url('../img/textures/button-textures.jpg');
    background-position: bottom;
}


.sch-time{
    margin:0em 0em 1em 0em;
    font-family: 'kg_summer_storm_roughregular';
    font-size:1.2em;
    color:#191D63;
 
}

.sch-image-box{
    background-color: #191D63;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    -ms-flex-preferred-size: 10em;
        flex-basis: 10em;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sch-text-box{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 20em;
        flex-basis: 20em;
    padding:2em 2em 3em 2em;
    
}

.special-program-wrapper{
    background-color: #c6efff;
     background-color: #125574;;
    color:#fff;
    margin-top: 2.5em;
}

#special-program-image{
    background-color: #2a7ea0;
    background-image: url('../img/special-programs.jpg');
    background-size: cover;
    background-position: bottom center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
}

#special-program-image h3{
    font-size:1.9em;
    color:#fff;
    padding:0px 30px 0px 20px;
}

.program-wrapper{
    background-color: #c6efff;
     background-color: #125574;;
    color:#fff;
    min-height: 40vh;
    background-image: url(../img/CampHavaya_SitePattern.png);
    background-repeat: no-repeat;
  
}

.summer-camp-program-wrapper{
    background-color: #191D63;
}

.family-camp-program-wrapper{
    background-color: #FDB515;
}

.teen-program-wrapper{
    background-color: #25AAE1;
}

.programs-for-everyone{
    background-color: #191D63;
    color: #fff;
     background-image: url(../img/CampHavaya_SitePattern.png);
    background-repeat: no-repeat;
}

#program-image-left{
    background-color: #2a7ea0;
    //background-image: url('../img/special-programs.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
}

#program-image-right{
    background-color: #2a7ea0;
    //background-image: url('../img/special-programs.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
}

.familycamp-program-image{
    background-position:top center;
}

#program-image-left h3, #program-image-right h3{
    font-size:1.9em;
    color:#fff;
    padding:0px 30px 0px 20px;
    font-family: 'GT-Walsheim-Bold', sans-serif;
}

.program-info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
}


/*
 * New Families Landing
 */

.boxes{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

/*
 * Maps Styles
 */

#campus-description{
    background-color: #25AAE1;
    background-image: url('../img/CampHavaya_SitePattern.png');
    padding: 1.5em 2em;
    color: #fff;
}

#campus-description h3{
    color: #fff;
}

 #campmap{
    height:90vh;
    width:100%;
    background-color:#528535;
    background-color: #538335;
}

.staff-image{
    background-image: url('../img/Bianca%20Grobbelaar%20-%20DSC_0062%20(7).JPG');
    background-size: cover;
    background-position: center;
    
     background-color: #FDB515;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    
    font-size:1.6em;
    line-height: 1.2em;
}

.staff-image h3{
    font-size:1.3em;
    line-height: 1.2em;
    padding-right:30px;
}

/*
 * Family Camp
 */

#familycamp-sch table{
    width:85%;
    background-image: url('../img/textures/woodgrain-light.jpg');
    background-size: cover;
    background-position: top center;
    -webkit-box-shadow: 0px 0px 16px #000;
            box-shadow: 0px 0px 16px #000;
    margin-left: auto;
    margin-right: auto;
    margin-top:30px;
    margin-bottom: 30px;
}

#familycamp-sch table tbody{
    padding: 20px 10px;
    display: block;
}

#familycamp-sch table tr td:first-child{
    padding:0.5em 2em 0.5em 2em;
    font-family: 'kg_summer_storm_roughregular';
    font-size:0.95em;
    color:#125574;
    text-align: right;
    
}

#familycamp-footer{
    background-color: #7EC357;
    
    color:#fff;
    font-size:1.6em;
    font-weight: bold;
    line-height: 1.2em;
    margin-top:1em;
}

#familycamp-footer .col{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#familycamp-footer p{
        margin:0px 1.5em;
}

#familycamp-footer span{
    font-size:0.6em;
    font-weight: normal;
    display: block;
    float:right;
    text-align: right;
}

.familycamp-image{
    background-image: url('../img/familycamp-footer.JPG');
    background-size: cover;
    background-position: center;
    
    background-color: #7EC357;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    min-height: 25vh;
}

.bio-wrapper{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.bio-image{
    background-color:#25AAE1;
    min-width: 15em;
    height: 15em;
    border-radius: 15em;
    border:15px solid #191D63;
    background-size:cover;
    background-repeat: no-repeat;
    margin: 2em 2em 2em 0em;
    
}

.bio-wrapper .contact-info{
    font-family: 'GT-Walsheim-Bold', sans-serif;
}

#board-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            flex-flow: column wrap;
    height: 60vh;
}

#accordion h3{
    font-size:1.2em;
    padding-top: 0.5em;
    cursor: pointer;
    outline: none;
}

#accordion .ui-accordion-header:hover{
    color: #25AAE1;
}

#action-button-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding:20px 0px;
}

#action-button-wrapper a:link{
    text-decoration: none;
    color:#fff;
}

#action-button-wrapper a:visited{
    text-decoration: none;
    color:#fff;
}

.action-button{
    background-color: #7EC357;
    color: #fff;
    padding:40px;
    width: 250px;
    min-height:150px;
    text-align: center;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 30px;
    margin-right: 10px;
}

.action-button h5{
    font-size: 1.3em;
}

.action-button p{
    margin:0;
    padding: 0;
    font-size: 0.8em;
    line-height: 1.2em;
}

.action-button img{
    height:73px;
}

.action-button:hover{
    background-color: #5b9341;
    padding-bottom: 0px;
}

.action-button:hover img{
    height: 80px;
}

/*
 * 404 Error Page
 */

.error-page{
    
    height:120vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: url('https://camphavaya.org/wp-content/uploads/2015/09/IMG_1654-Jump.jpg') !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    
}

.error-page h3, .error-page p, .error-page ul li{
    color:#fff;
}

.error-page ul li{
    font-weight: bold;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */


/*Media Quries*/

@media screen and (min-width:1400px){
    
    #video-header h1{
        font-size: 5.5em;
    }
}

@media screen and (min-width:801px){
    
}

@media screen and (max-width:800px){
    
    
    
    #logo img{
    height:45px;
    padding:20px 20px;
    
    }
    
    #homepage-section-one{
        flex-direction: column;
    }
    
    #homepage-section-one .program{
        width:100%;
        padding:0px;
    }
    
    #homepage-section-one .program:hover{
        width: 100%;
    }
    
    #homepage-section-one .program:hover .program-logo{
        width:350px;
         transition: all .3s;
    transition-timing-function:ease-in-out;
    }
    
    #homepage-section-two, #homepage-section-three{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    #homepage-section-three .homepage-section-image, #homepage-section-two .homepage-section-image{
        -webkit-clip-path:none;
        clip-path:none;
        height: 250px;
        width: 100%;
        display:block;
    }
    
     #responsive-check{
        display: inline;
    }
    
    /*
* Responsive Nav
*/
    
    #responsive-menu-icon{
        display: block;
        color:#92278f;
        float:right;
        cursor: pointer;
    }
    
        header{
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            text-decoration: none;

            width: 100%;
            position: relative;
            left: 0px;
            top: 0px;
            z-index: 1000;
            background-color: #fff;
        }

        header a:link, a:visited, a:hover, a:active{
            text-decoration: none;
        }

        #logo{
            padding:0.5em 0.5em;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
        }



        header #campjrf-logo-blue{
            display:block;
        }

        header #campjrf-logo-white{
            display:none;
        }
    
        nav{

            padding:0.5em 0em;
            line-height: 1em;
            display: none;
            -webkit-box-orient: vertical;
            -webkit-box-direction: reverse;
                -ms-flex-direction: column-reverse;
                    flex-direction: column-reverse;
            background-color: #fff;
            color:#92278f;
            background-image: url(../img/textures/menu-shadow.jpg);
            background-repeat: repeat-x;

        }

        nav ul{
            list-style: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            padding-left:0px;
        }

        nav ul li{
            display: inline;
            display: block;
            padding: 0.25em 0em;
            text-align: left;
            
        }

        nav ul li a:link{
            text-decoration: none;
            color:#92278f;
            padding-left:1.5em;
        }

        nav ul li a:visited{
            text-decoration: none;
            color:#92278f;
        }

        nav ul li a:hover{
            text-decoration: none;
            color:#fff;
        }

        nav ul li a:active{
            text-decoration: none;
            color:#fff;
        }


        #top-navigation{
            font-size:0.9em;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start;
        }

        nav ul#menu-main-navigation li a:link{
            padding-bottom: 1.36em; 
        }

        nav #menu-main-navigation{
           font-family: 'GT-Walsheim-Bold', sans-serif;
           /*text-transform: uppercase;*/
            font-weight: bold;
        }

        nav #menu-main-navigation li a:link{
            padding-left:1em;
            font-size:1.05em;
        }

        nav #menu-main-navigation li a:hover{
            color: #25AAE1;
        }

        nav #menu-main-navigation li a:active{
            color: #25AAE1;
        }

        nav #top-navigation li a:hover{
            text-decoration: none;
            color:#25AAE1;
        }

        nav #top-navigation li a:active{
            text-decoration: none;
            color:#25AAE1;
        }


        nav ul li:hover > ul{
            display:none;
        }

        header:hover{
            background-color:#fff;
        }

        .res-menu-indicator{
            float:right;
            margin-right:1.5em;
            cursor:pointer;
            display: block;
        }
    
        nav ul.sub-menu{ 
            font-family: 'GT-Walsheim-Regular', sans-serif;
            font-size: 0.8em;
            text-transform: none;
            position: relative;
            /*
            background-image: url('../img/menu-paper-texture.png');
            background-position:bottom center;
            background-size: 100%;
            background-repeat: repeat-x;
            */
            background-color:#E6B638;
            background-image: url('../img/submenu-texture.jpg');
            width:100vw;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            padding:1.2em 0em 1.2em 0em;
            margin-top:1.36em;
            margin-bottom:1.36em;
            display:none;
            z-index: 200;
            color:#fff;
            /*box-shadow: inset 0px 10px 0px #977921;*/
        }

        nav .sub-menu li{
            padding-top:0.6em;
            padding-bottom:0.6em;
        }
    
        nav .sub-menu a:link{
            color:#fff !important;
             padding-top:0.6em;
            padding-bottom:0.6em;
            padding-left:1em;
        }

        nav .sub-menu a:visited{
            color:#fff !important;
        }
    
        nav .sub-menu a:hover{
            color: #25AAE1 !important;
        }

        .nav-support a:link, .nav-support a:visited{
           color:#fff !important;
           margin-left:1.6em;
        }



/*
 *  eof Responsive Nav
 */
    
     #page-header{
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    
    #board-list{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: column wrap;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                flex-flow: column wrap;
        height: 80vh;
    }
    
    
}

@media screen and (max-width:650px){
    
    body{
        overflow-x:hidden;
    }

    
    #responsive-check{
        display: inline;
    }

    #video-header h1{
        font-size:2em;
    }
    
    #video-header{
        height:50vh;    
    }
    
    #video-header #video-header-buttons{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        z-index: 2;
    }
    
    #video-header #video-header-buttons a:link.video-button{
        margin-bottom: 20px;
    }
    
   
    #homepage-section-one #homepage-programs{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
        padding-bottom: 0px;
    }
    
    #homepage-programs ul li{
        padding-left: 0px;
        margin-left: 0px;
        width: 100%;
    }
    
     #homepage-section-one #homepage-programs .homepage-program-img{
        border-radius: 0px;
         width: 100vw;
         
    }
    
    #join-us-section{
        padding:20px 0px;
        max-width: 100%;
        padding-bottom:80px;
    }
    
    #join-us-section .join-us-section-text{
        padding:0px 20px;
    }
    
    #join-us-section .join-us-section-text #join-us-section-buttons{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    #join-us-section .join-us-section-text #join-us-section-buttons a:link{
        margin:0.6em 0em;
    }
    
    #contact-us-section{
        padding:20px 0px;
        max-width: 100%;
        padding-bottom:80px;
    }
    
    #contact-us-section .contact-us-section-text{
        padding:0px 20px;
    }
    
    #contact-us-section .contact-us-section-text #contact-us-section-buttons{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    #contact-us-section .contact-us-section-text #contact-us-section-buttons a:link{
        margin:0.6em 0em;
    }
    
    #page-header h2{
        width: 80vw;
    }
    
    .col-wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    .col-wrapper .col{
        width: 100%;
        padding:1.5em 0px;
    }
    
    .col-wrapper .col-centered{
        width:100%;
        padding:1.5em 0px;
    }
    
    .parent-cols .col:last-child{
        padding-left: 0em;
    }
    
    .landing-page-cols .col:last-child{
        padding-left: 0em;
    }
    
    #page-callout{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    #page-callout #page-callout-text{
        padding:1.25em 0px;
    }
    
    footer{
        margin-top:-80px;
    }
    
    footer #footer-main-content{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-top:30px;
    }
    
    footer #footer-left-col{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -ms-flex-line-pack: center;
            align-content: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: center;
        width: 100%;
    }
    

    
    footer #footer-columns .social-icons{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        
    }
    
    footer #footer-columns .social-icons li{
        margin:0px;
        margin-top:20px;
        margin-left:30px;
    }

    footer #footer-columns{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        padding-right: 1.5rem;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    
    footer #footer-countdown{
        text-align: left;
    }
    
    footer #footer-countdown #footer-countdown-wrapper span{
        position: absolute;
        -webkit-transform: rotate(3deg);
                transform: rotate(3deg);
        margin-top:20px;
        margin-left:25px;
        z-index: 2;
    }
    
    footer #aca-logo{
        margin-left:40px;
    }
    
    /*New Families Responsive*/
    
    #page-video-callout{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-bottom:20px;
    }
    
    #page-video-callout img{
        width:100%;
        height: 50%;
        padding-bottom:20px;
    }
    
    /*eof New Families Responsive*/
    
    .bio-wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    .bio-image{
        margin: 2em;
    }
    
    /*Donation Page Responsive*/
    
    #donation-cta-wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    
    form{
        padding:2em 1em;
    }
    
    #donation-text{
        padding:1em 0em;
        width: 100%;
        font-size:1.25em;
        text-align: center;
    }
    
    /*eof Donation Page Responsive*/
    
    .sch-details{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    .sch-text-box{
        padding-bottom: 2em;
        -ms-flex-preferred-size: 0em;
            flex-basis: 0em;
    }
    
    #financial-text{
        width: 95%;
        float:none;
        padding:5px;
    }
    
    #financial-image{
        width:100%;
        height: 120px;
        float:none;
        border-radius:5px 5px 0px 0px;
    }
    
    .familycamp-image{
    -webkit-clip-path:none;
    clip-path: none;
    }
    
    #donation-legacy{
    -webkit-clip-path:none;
    clip-path:none;
}
    

.donation-legacy-wrapper h3{
    color: #fff;
    padding:30px 0px 30px 0px;
}
    
    .apply-dates-rates-wrapper{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        max-width:100%;
    }
    
    .apply-rate-box{
       margin:1em 1em 1em 1em; 
    }
    
    #apply-financial{
        -webkit-clip-path:none;
        clip-path:none;
    }
    
    #apply-financial h3{
        padding:2em 0.5em;
    }
    
    #apply-financial-info p{
        padding:0em 1.3em;
    }
    
    #special-program-info p{
        padding:0em 1.3em;
    }
    
    #special-program-image{
        -webkit-clip-path: none;
        clip-path: none;
    }
    
    #special-program-image h3{
        padding:30px 10px;
    }
    
    
    #action-button-wrapper{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding:20px 0px;
    }
    
    #action-button-wrapper .action-button{
        margin-bottom: 20px;
        padding-bottom:30px;
        margin-right: 0px;
    }
    
    #action-button-wrapper .action-button:hover{
        padding-bottom:30px;
    }
    
    #program-image-left, #program-image-right{
        -webkit-clip-path:none;
        clip-path:none;
        height: 30vh;
    }
    
    .program-info{
        margin-left:10px;
        padding-right:20px;
        max-width: 95%;
    }
    
    .teen-program-wrapper{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    
    .staff-image{
        -webkit-clip-path:none;
        clip-path:none;
        height:30vh;
    }
    
    #board-list{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: column wrap;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                flex-flow: column wrap;
        height: auto;
    }
    
    
    #donation-thankyou{
        padding-bottom:80px;
    }
    
    
}

@media screen and (max-width:510px){
    
}

/* Landscape */
@media only screen 
  and (min-width: 414px) 
  and (max-width: 736px) 
  and (orientation: landscape) { 
      
      #responsive-check{
        display: inline;
    }
/*
* Responsive Nav
*/
    
    #responsive-menu-icon{
        display: block;
        color:#92278f;
        float:right;
        cursor: pointer;
    }
    
        header{
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            text-decoration: none;

            width: 100%;
            position: relative;
            left: 0px;
            top: 0px;
            z-index: 1000;
            background-color: #fff;
        }

        header a:link, a:visited, a:hover, a:active{
            text-decoration: none;
        }

        #logo{
            padding:0.5em 1.5em;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
        }

        #logo img{
            height:70px;

        }   

        header #campjrf-logo-blue{
            display:block;
        }

        header #campjrf-logo-white{
            display:none;
        }
    
        nav{

            padding:0.5em 0em;
            line-height: 1em;
            display: none;
            -webkit-box-orient: vertical;
            -webkit-box-direction: reverse;
                -ms-flex-direction: column-reverse;
                    flex-direction: column-reverse;
            background-color: #fff;
            color:#92278f;
            background-image: url(../img/textures/menu-shadow.jpg);
            background-repeat: repeat-x;

        }

        nav ul{
            list-style: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            padding-left:0px;
        }

        nav ul li{
            display: inline;
            display: block;
            padding: 0.25em 0em;
            text-align: left;
            
        }

        nav ul li a:link{
            text-decoration: none;
            color:#92278f;
            padding-left:1.5em;
        }

        nav ul li a:visited{
            text-decoration: none;
            color:#92278f;
        }

        nav ul li a:hover{
            text-decoration: none;
            color:#fff;
        }

        nav ul li a:active{
            text-decoration: none;
            color:#fff;
        }


        #top-navigation{
            font-size:0.9em;
        }

        nav ul#menu-main-navigation li a:link{
            padding-bottom: 1.36em; 
        }

        nav #menu-main-navigation{
           font-family: 'GT-Walsheim-Bold', sans-serif;
           /*text-transform: uppercase;*/
            font-weight: bold;
        }

        nav #menu-main-navigation li a:link{
            padding-left:1em;
            font-size:1.05em;
        }

        nav #menu-main-navigation li a:hover{
            color: #25AAE1;
        }

        nav #menu-main-navigation li a:active{
            color: #25AAE1;
        }

        nav #top-navigation li a:hover{
            text-decoration: none;
            color:#25AAE1;
        }

        nav #top-navigation li a:active{
            text-decoration: none;
            color:#25AAE1;
        }


        nav ul li:hover > ul{
            display:none;
        }

        header:hover{
            background-color:#fff;
        }

        .res-menu-indicator{
            float:right;
            margin-right:1.5em;
            cursor:pointer;
            display: block;
        }
    
        nav ul.sub-menu{ 
            font-family: 'GT-Walsheim-Regular', sans-serif;
            font-size: 0.8em;
            text-transform: none;
            position: relative;
            /*
            background-image: url('../img/menu-paper-texture.png');
            background-position:bottom center;
            background-size: 100%;
            background-repeat: repeat-x;
            */
            background-color:#E6B638;
            background-image: url('../img/submenu-texture.jpg');
            width:100vw;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            padding:1.2em 0em 1.2em 0em;
            margin-top:1.36em;
            margin-bottom:1.36em;
            display:none;
            z-index: 200;
            color:#fff;
            /*box-shadow: inset 0px 10px 0px #977921;*/
        }

        nav .sub-menu a:link{
            color:#fff !important;
            padding:1.2em 0em;
        }

        nav .sub-menu a:visited{
            color:#fff !important;
        }

        .nav-support a:link, .nav-support a:visited{
           color:#fff !important;
            margin-left:1.6em;
        }



/*
 *  eof Responsive Nav
 */

      #page-header{
          height: 65vh;
      }

}


@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        -webkit-box-shadow: none !important;
                box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
