@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700);

html, body {
    width: 100%;
    height: 100%;
}

body {
	background-color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
}

h3 {
	margin-top: 20px;
	margin-bottom: 20px;
}

p {
    margin: 0;
    font-size: 18px;
	font-size: 1.8rem;
    line-height: 1.8;
	font-weight: 400;
	font-style: normal;
	color: #777;
}

.page-text {
	margin-bottom: 55px;
}

a {
    color: #46add5;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #76D7FF;
}

.bg-light-gray {
	background-color: #f7f7f7;
}

.bg-midnight-blue {
	background-color: #34495e;
}

.bg-almost-black {
	background-color: #3f3f3f;
}

.bg-notquite-black {
	background-color: #222;
}

/* Navbar section */
.navbar-brand {
	padding: 5px 0;
}

.navbar-nav {
	margin: 10px 25px 0 0;
	float: right;
}

.navbar-custom {
	margin-bottom: 0;
	border-bottom: 1px solid rgba(147,149,152,.3);
	background-color: #fff;
}

.navbar-custom.top-nav-collapse > img {
	width: 100px;
	height: 60px;
}

@media(min-width:768px) {
    .navbar-custom {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: 1px solid rgba(147,149,152,.3);
		background-color: #fff;
    }
}

.button-container {
    position: absolute;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.button-container:hover {
    opacity: .7;
}

.button-container.active .top {
    -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
    transform: translateY(10px) translateX(0) rotate(45deg);
    background: #fff;
}

.button-container.active .middle {
    opacity: 0;
    background: #fff;
}

.button-container.active .bottom {
    -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
    transform: translateY(-10px) translateX(0) rotate(-45deg);
    background: #fff;
}

.button-container span {
    background: #939598;
    border: none;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
}

.button-container span:nth-of-type(2) {
    top: 10px;
}

.button-container span:nth-of-type(3) {
    top: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, width .35s;
    transition: opacity .35s, visibility .35s, width .35s;
    z-index: 50;
}

.overlay:before {
    content: '';
    background: #25aae1;
    left: -55%;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    -webkit-transition: left .35s ease;
    transition: left .35s ease;
}

.overlay:after {
    content: '';
    background: #25aae1;
    right: -55%;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
}

.overlay.open {
    opacity: .9;
    visibility: visible;
    height: 100%;
}

.overlay.open:before {
    left: 0;
}

.overlay.open:after {
    right: 0;
}

.overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .25s;
    animation-delay: .25s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}
.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}
.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
}

.overlay nav {
    position: relative;
    height: 70%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 40px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    text-align: center;
    z-index: 100;
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}

.overlay ul li {
    position: relative;
    opacity: 0;
	margin-bottom: 5px;
}

.overlay ul li a {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
	transition: all .40s ease-in-out;
	-webkit-transition: all .40s ease-in-out;
}

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
    width: 30%;
}

.overlay ul li a:hover {
	color: #2e2e38;
}

.overlay ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 5px;
    background: #2e2e38;
    -webkit-transition: .35s;
    transition: .35s;
}

.s-1, .s-2, .s-3, .s-4 {
	display: inline-block;
	margin: 0 15px;
	width: 50px;
	height: 50px;
}

.s-1 a, .s-2 a, .s-3 a, .s-4 a {
	display: block;
	line-height: 60px;
}


.knowhow-svg img {
	height: 65px;
}

@media(max-width:768px) {
	.overlay nav {
		position: relative;
		height: 70%;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		font-size: 35px;
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 700;
		text-align: center;
		z-index: 100;
	}
	
	.overlay ul li {
    position: relative;
    opacity: 0;
	margin-bottom: 10px;
	}
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

/* Top image */
.top-img {
	background-repeat: no-repeat;
	background-size: cover;
	width: auto;
	height: 400px;
}

.voluntary-img {
	background-image: url("../img/voluntary-bg.jpg");
}

.about-img {
	background-image:url("../img/about-bg.jpg");
}

.contribute {
	background-image: url("../img/contribute-bg.jpg");
}

.projects {
	background-image: url("../img/projects-bg.jpg");
}

.top-wrapper {
	padding-top: 150px;
	padding-bottom: 150px;
}

/* Intro section */
.intro {
	display: table;
	width: 100%;
	height: auto;
	padding: 100px 0;
	text-align: center;
	color: #fff;
	background: url(../img/intro-bg.jpg) no-repeat bottom center scroll;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.intro .intro-body {
	display: table-cell;
	vertical-align: middle;
}

.intro-heading {
	font-size: 50px;
	margin-bottom: 5px;
	font-weight: 700;
}

.intro-text {
	font-size: 26px;
	opacity: 0.8;
	font-weight: 300;
	color: #fff;
	margin-bottom: 15px;
}

@media(min-width:768px) {
    .intro {
        height: 100%;
        padding: 0;
    }
}

/* Scroll Down Indicator */
.mouse-warp {
	margin: 40px auto;
	display: block;
	width: 28px;
	opacity: 0.5;
}

.mouse {
	width: 28px;
	height: 50px;
	border: 2px solid white;
	border-radius: 14px;
}

.scroll {
	width: 4px;
	height: 4px;
	border-radius: 2px;
	background: white;
	position: relative;
	left: 10px;
	-webkit-animation: scrolls 1.3s ease-out infinite;
}
@-webkit-keyframes scrolls {
	0% {top: 8px; opacity: 0; -webkit-transform: scaleY(1) scaleX(1);}
	5% {top: 8px; opacity: 0.8; -webkit-transform: scaleY(1.2) scaleX(1.2);}
	10% {top: 8px; opacity: 1; -webkit-transform: scaleY(1.6) scaleX(1.6);}
	15% {top: 8px; opacity: 1; -webkit-transform: scaleY(1.2) scaleX(1.2);}
	20% {top: 8px; opacity: 1; -webkit-transform: scaleY(1.2) scaleX(1.2);}
	30% {top: 15px; opacity: 1; -webkit-transform: scaleY(1.2) scaleX(1.2);}
	100% {top: 30px; opacity: 0; -webkit-transform: scaleY(1.2) scaleX(0.8);}
}
/* End Scroll Down Indicator */

.content-section {
	padding-top: 60px;
	padding-bottom: 70px;
}

.quote-section {
    width: 100%;
    padding: 50px 0;
    color: #fff;
    background: url(../img/downloads-bg.jpg) no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.btn {
	border-radius: 2px;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 700;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-highcontrast {
	border: 1px solid #46add5;
	color: #fff;
	background-color: #46add5;
}

.btn-highcontrast:hover, .btn-highcontrast:focus {
	border: 1px solid #46add5;
	outline: 0;
	color: #46add5;
	background-color: transparent;
}

.btn-default {
	border: 1px solid #46add5;
	color: #46add5;
	background-color: transparent;
}

.btn-default:hover, .btn-default:focus {
	border: 1px solid #46add5;
	outline: 0;
	color: #fff;
	background-color: #46add5;
}

@media(max-width:1199px) {
    ul.two-buttons {
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    ul.two-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.two-buttons li:last-child {
        margin-bottom: 0;
    }
}

.section-heading {
	color: #46add5;
	font-size: 32px;
	font-size: 3.2rem;
	margin: 0;
}

.title-bar {
	position: relative;
	margin-bottom: 45px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	height: 1px;
	width: 100px;
	background-color: #fff;
}

#quote .title-bar {
	margin-bottom: 0;
}

.text-muted {
	font-size: 15px;
}

/* Arcticles section */
#articles .articles-item, .knowhow-box {
	margin-bottom: 40px;
}

#articles .articles-item .articles-link {
	display: block;
	position: relative;
	max-width: 400px;
	margin: 0 auto;
}

#articles .articles-item .articles-link .articles-hover {
	background: rgba(70,173,213,.8);
	opacity: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
}

#articles .articles-item .articles-link .articles-hover:hover {
	opacity: 1;
}

#articles .articles-item .articles-link .articles-hover .articles-hover-content {
	position: absolute;
	width: 100%;
	height: 20px;
	font-size: 20px;
	text-align: center;
	top: 50%;
	margin-top: -12px;
	color: #fff;
}

#articles .articles-item .articles-link .articles-hover .articles-hover-content i {
	margin-top: -12px;
	font-size: 3em;
}

#articles .articles-item .articles-link .articles-hover .articles-hover-content h3,#articles .articles-item .articles-link .articles-hover .articles-hover-content h4 {
	margin: 0;
}

#articles .articles-item .articles-caption {
	max-width: 400px;
	margin: 0 auto;
	background-color: #f7f7f7;
	text-align: center;
	padding: 20px;
}

#articles .articles-item .articles-caption h4 {
	text-transform: none;
	margin: 0 0 5px 0;
}

#articles .articles-item .articles-caption p, .post-info p {
	font-size: 16px;
	margin: 0;
	line-height: 1.2;
}

#articles * {
	z-index: 2;
}

.articles-caption h4, .articles-caption h5, .articles-caption p {
    text-align: left;
}

.post-date {
    margin: 0 0 15px 0;
    font-size: 10px;
}

/* Testimonial section */
#quote-carousel {
	padding: 0 10px 30px 10px;
	margin-top: 30px;
}

#quote-carousel .carousel-indicators {
	right: 50%;
	top: auto;
	bottom: 0px;
	margin-right: -19px;
}

#quote-carousel .carousel-indicators li {
	width: 10px;
	height: 10px;
	margin: 5px;
	cursor: pointer;
	border: 2px solid #46add5;
	border-radius: 50px;
	opacity: 0.4;
	overflow: hidden;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}

#quote-carousel .carousel-indicators .active {
	background: #46add5;
	width: 12px;
	height: 12px;
	border-radius: 100px;
	opacity: 1;
	overflow: hidden;
}

.img-testimonial {
	background: #333333;
	width: 60px;
	height: 60px;
	border-radius: 100px;
	opacity: 1;
	overflow: hidden;
	margin: 0 auto 20px auto;
}

.quote-testimonial {
	font-size: 24px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 15px;
}

.author-testimonial {
	font-weight: 700;
	color: #46add5;
}

.carousel-inner i {
	font-size: 1em;
	margin: 0;
	top: 2px;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
	opacity: 0.6;
}

.item blockquote {
	border-left: none;
}

/* Partners Section */
#partners h2 {
    color: #f7f7f7;
}

/* Footer Section */
#contact-page {
	height: 100%;
}

.footer-col {
	padding: 10px 0;
}

footer .legal p {
	font-size: 15px;
	margin: 0 15%;
	padding: 0;
}

/* About page */
.intro-img {
    position: relative;
    background: transparent 50% 40% / cover no-repeat;
    padding: 100px 0;
    height: 450px;
}

.photo-container {
	margin-bottom: 25px;
}

.photo-container img {
    padding-bottom: 20px;
}

#team h3 {
    margin: 0 0 5px 0;
}

/* Contact Form */
form {
	padding: 25px 0;
}

.col-lg-6 #contact {
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

#contact input[type="text"], #contact input[type="email"], 
#contact input[type="tel"], #contact textarea, #contact button[type="submit"], #contact select, #contact button[type="reset"] {
	font: 400 12px/16px;
}

fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	min-width: 100%;
	padding: 0;
	width: 100%;
}

#contact input[type="text"], #contact input[type="email"], 
#contact input[type="tel"], #contact textarea, #contact select {
	width: 100%;
	border: 1px solid #ccc;
	background: #fff;
	margin: 0 0 5px;
	padding: 10px;
}

#contact textarea {
	height: 100px;
	max-width: 100%;
	resize: none;
}

#contact button[type="submit"], #contact button[type="reset"] {
	cursor: pointer;
	width: 25%;
	border: none;
	border-radius: 2px;
	margin: 0 0 5px;
	padding: 10px;
	font-size: 15px;
}

#contact button[type="submit"] {
	border: 1px solid #46add5;
	background: #46add5;
	color: #fff;
}

#contact button[type="reset"] {
	border: 1px solid #46add5;
	background: transparent;
	color: #46add5;
}

#contact button[type="submit"]:hover {
	background: #2A687F;
	border: 1px solid #2A687F;
	-webkit-transition: all 0.3s ease-in-out;
	moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#contact button[type="reset"]:hover {
	background: #2A687F;
	border: 1px solid #2A687F;
	color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#contact button[type="submit"]:active, #contact button[type="reset"]:active {
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

#contact input:focus, #contact textarea:focus, #contact select:focus {
	outline: 0;
	border: 1px solid #999;
}
/* Contact Form End */


::-webkit-input-placeholder {
	color: #888;
}

:-moz-placeholder {
	color: #888;
}

::-moz-placeholder {
	color: #888;
}

::-ms-input-placeholder {
	color: #888;
}

#join-us {
	background-image: url('../img/form-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

#be-voluntary .requirements, #contribute .requirements {
	padding: 25px;
}

#be-voluntary .requirements p, #contribute .requirements p {
	color: #5f6273;
	position: relative;
	line-height: 2;
	font-size: 15px;
	padding: 15px 0;
}

#be-voluntary .requirements h4, #contribute .requirements h4 {
	color: #5f6273;
	line-height: 2;
	margin:25px 0 35px 0;
	text-align: center;
}

#be-voluntary .requirements hr, #contribute .requirements hr {
	margin: 0;
}

#be-voluntary .requirements li, #contribute .requirements ul li {
	list-style: none;
}

#contact-page > .container, #blog > .container {
	padding-top: 100px;
}

::-moz-selection {
    background: rgba(70, 173, 213, 0.5);
}

::selection {
	background: rgba(70, 173, 213, 0.5);
}

img::selection, img::-moz-selection {
    background: 0 0;
}

#executed-projects figure img {
	position: relative;
	min-width: 320px;
	max-width: 100%;
	transition: all .8s ease;
}

#executed-projects figure img:hover {
	transform: scale(1.1);
}

#executed-projects figcaption {
	margin: 25% 0;
	color: #5f6273;
}

#executed-projects h3, #about-project h2 {
	font-weight: 400;
}

#executed-projects p, #about-project p {
	font-weight: 300;
}

#about-project img {
	margin-top: 20px;
	max-width: 100%;
}

.tags {
	text-transform: uppercase;
}

/* Blog Page */
.blog-post {
	background-color: #fff;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid rgba(119,119,119,.2);
}

.post-image img {
	width: 100%;
	height: auto;
	transition: opacity 0.5s;
}

.post-image img:hover {
	opacity: 0.5;
}

/* Post Page */
.post {
	margin-top: 110px;
}

.post h1 {
	font-size: 55px;
	font-weight: 700;
}

.post p, .post li {
	font-weight: 300;
}

.post ul, .comment ul {
	padding: 0;
}

.post-meta ul li, .post-buttons ul li {
	display: inline;
	list-style: none;
}

.post-buttons {
	margin-top: 10px;
}

.post-buttons i {
	margin: 0 15px 0 5px;
}

.post-meta ul li:nth-child(-n+2):after {
    content: '|';
	margin: 0 5px;  
}

.post img {
	width: 100%;
	height: auto;
	margin: 35px 0;
}

@media(max-width: 767px) {
	.post {
		margin-top: 50px;
	}
}

@media(min-width: 767px) {
	.gobottom {
		position: absolute;
		width: 100%;
		bottom: 0;
	}
}

/* contacts page */
.fa-envelope-o {
	font-size: 4em !important;
	margin-bottom: 15px !important;
	color: #46add5 !important;
}