* {
	box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    font-family: Montserrat, sans-serif;
    background: url(images/bg.jpg);
    background-size: cover;
    height: 100%;
}

p {
    font-size: 14px;
    line-height: 22px;
}

header {
    box-shadow: 0px 2px 5px 0px #000000;
    height: 70px;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background: #d4e0f1;
    border-bottom: 2px solid #6bc539;
    z-index: 99;
}

#headerSiteTitle {
    font-family: Aleo;
    position: absolute;
    margin-left: 60px;
    top: -10px;
    border-left: 1px solid;
    padding-bottom: 10px;
    padding-left: 5px;
    left: 10px;
}

#headerNavigation {
    position: absolute;
    right: 10px;
    height: 100%;
    width: calc(100% - 400px);
    text-align: right;
    z-index: 99;
}

#headerNavigation ul {
    list-style: none;
    margin: 0;
    padding: 0 5px 0 0;
    border-right: 5px solid #6bc539;
    background: #d4e0f1;
    padding-bottom: 5px;
    position: absolute;
    top: 20px;
    right: 0;
}

#headerNavigation ul li {
	cursor: pointer;
    margin-bottom: 1px;
    display: inline-block;
    border-color: #569efd;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
    padding: 2px;
    margin-left: 5px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s ease-in-out;
}

#headerNavigation ul li:hover {
	border-bottom: 1px solid #569efd;
}

#headerLogo {
    width: 47px;
    position: absolute;
    top: 3px;
    left: 5px;
}

#theJourneyChurchSubtitle {
    display: inline-block;
    position: absolute;
    top: 44px;
    left: 78px;
    font-weight: bold;
    font-size: 13px;
}

.current-section {
	border: 1px solid #569efd;
	border-color: #569efd !important;
}

#navHideShowButton {
    display: none;
}

.collapsed {
	transform: rotateX(90deg) translateX(-100%) !important;
}

.section.active {
    opacity: 100;
    top: 70px;
    display: block;
}

.section {
    background: #ffffffd4;
    max-width: 800px;
    margin: 40px 40px;
    border: 1px solid;
    padding: 40px 40px 20px 40px;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 20px;
    padding-left: 40px;
    position: absolute;
    border-radius: 0 15px 15px 15px;
    z-index: 9;
    transition: all 1.5s ease-in-out;
    display: block;
    top: -1000px;
    opacity: 0;
}

.section-title {
    margin: 0;
    border: 1px solid;
    display: inline-block;
    padding: 10px 20px;
    position: absolute;
    left: -20px;
    top: -20px;
    background: #d4e0f1;
    border-radius: 15px 0 0 0;    
} 

.summer-youtube-video {
    max-width: 100%;
}

@media screen and (max-width: 581px) {
    .section.active {
        opacity: 100;
        top: 140px;
        display: block;
    }

	#headerSiteTitle {
	    font-size: 24px;
	    top: 0;
	}

	#theJourneyChurchSubtitle {
        font-size: 12px;
        top: 41px;
    }

    #headerNavigation ul {
        border-right: none;
        padding: 10px 5px 15px;
        top: 0;
    }

    #headerNavigation {
        left: 0;
        width: 100%;
        text-align: center;
        top: 70px;
        transition: transform 1s ease-in-out;
        transform: rotateX(0deg) translateX(0%);
    }

    #navHideShowButton {
        cursor: pointer;
        font-size: 10px;
        background: #6bc539;
        display: inline-block;
        padding: 2px 5px;
        position: fixed;
        color: white;
        right: 5px;
        top: 60px;
        text-align: center;
        text-transform: uppercase;
        z-index: 99;
    }

    #navDropShadow {
        position: absolute;
        bottom: 0px;
        margin-left: -5px;
        height: 10px;
        width: 100%;
        box-shadow: 0px 3px 11px 0 #0000004f;
        background: #d4e0f1;
        border-top: 1px solid #6bc539;
    }
}

@media screen and (max-width: 333px) {
	#headerSiteTitle {
	    line-height: 18px;
	    font-size: 17px;
	    top: 7px;
	}

	#theJourneyChurchSubtitle {
    	font-size: 10px;
    	top: 34px;
	}
}

@media screen and (max-width: 244px) {

	#headerSiteTitle {
	    line-height: 18px;
	    font-size: 13px;
	    top: 7px;
	}

	#theJourneyChurchSubtitle {
    	font-size: 8px;
    	top: 34px;
	}

}

#headerLogo {
    animation: rotateIcon 10s ease-in-out infinite;
}

@keyframes rotateIcon {
    0% {
        transform: rotateY(0deg)
    }
    40% {
        transform: rotateY(0deg)
    }
    45% {
        transform: rotateY(360deg)
    }
    55% {
        transform: rotateY(720deg)
    }
    60% {
        transform: rotateY(720deg)
    }
    100% {
        transform: rotateY(720deg)
    }
}