@charset "UTF-8";

/*-- Reset --*/

* {
	padding:0;
	margin:0;
	outline:none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

* > :last-child { 
	margin-bottom:0;
}

img {
	width:100%;
	height:auto;
	display:block;
}

.clearfix::after {
	content:"";
	clear:both;
	display:table;
}

a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, 
em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, meter, nav,
object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, td, video, tt, u, ul, var, a img {
    background:transparent;
	border:0 none;
	outline:none;
	vertical-align:baseline;
	padding:0;
	margin:0;    
}

/*-- General --*/

html {
	background: #00a7e1;
	max-width: 100%;
	max-height: 100%;
	overflow-x: hidden;
}

body {
	background: #fff;
	max-width: 100%;
	max-height: 100%;
	overflow-x: hidden;
	position: relative;
	text-rendering: optimizeLegibility;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 75px;
}

h1 {
	font: 600 70px/76px "poppins", sans-serif;
	color: #003143;
	margin: 0 0 30px;
}

h2 {
	font: 600 34px/40px "poppins", sans-serif;
	color: #003143;
	margin: 0 0 20px;
}

h3 {
	font: 600 20px/26px "poppins", sans-serif;
	color: #003143;
	margin: 0 0 20px;
}

h4 {
	font: 600 16px/18px "poppins", sans-serif;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #00a7e1;
	margin: 0 0 20px;
}

p {
	font: 400 18px/28px "poppins", sans-serif;
	color: #003143;
	margin: 0 0 30px;
}

p.text-large {
	font-size: 22px;
	line-height: 32px;
}

p.text-small {
	font-size: 14px;
	line-height: 24px;
}

p.text-italic {
	font-style: italic;
}

a {
	color: #00a7e1;
	text-decoration: none;
	transition: all 0.2s ease;
}

a:hover {
	color: #003143;
}

a.button {
	font: 600 16px/18px "poppins", sans-serif;
	letter-spacing: 0.06em;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	background: #00a7e1;
	border-radius: 4px;
	padding: 18px 30px 15px;
	min-width: 200px;
	margin: 0 0 30px;
	display: inline-block;
	transition: all 0.2s ease;
}

a.button:hover {
	background: #003143;
}

ul.list {
	list-style: none;
}

ul.list li {
	position: relative;
	margin: 0 0 10px;
	padding: 0 0 0 20px;
}

ul.list li:before {
	content: "+";
	font-weight: 600;
	position: absolute;
	top: 2px;
	left: 0;
}


/*-- Navigation --*/

nav {
	background: #fff;
	border-bottom: 1px solid rgba(0, 20, 30, 0.1);
	width: 100%;
	height: 75px;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
}

nav .container,
nav .col1 {
	padding-top: 0;
	padding-bottom: 0;
}

nav .col1 {
	justify-content: space-between;
}

nav .logo {
	width: 235px;
	height: auto;
}

nav ul {
	list-style: none;
	display: flex;
	align-self: center;
}

nav ul li {
	margin: 0 0 0 60px;
}

nav ul li a {
	font: 600 16px/18px "poppins", sans-serif;
	letter-spacing: 0.03em;
	color: #00a7e1;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.2s ease;
}

nav ul li a:hover {
	color: #003143;
}

nav ul li:last-child a {
	font-size: 15px;
	line-height: 17px;
	letter-spacing: 0.06em;
	color: #fff;
	background: #00a7e1;
	border-radius: 4px;
	padding: 8px 20px 5px;
	transition: all 0.2s ease;
}

nav ul li:last-child a:hover {
	background: #003143;
}

#mobile-menu {
	width: 36px;
	height: 24px;
	position: absolute;
	top: 11px;
	right: 20px;
	cursor: pointer;
	z-index: 999;
	display: none;
}

#mobile-menu .bar {
	background: #00a7e1;
	width: 100%;
	height: 3px;
	margin: 0 auto 7px;
	cursor: pointer;
	position: relative;
}

#mobile-menu .bar.active:nth-child(1) {
	animation: bar1 0.1s ease forwards;
}

#mobile-menu .bar.active:nth-child(2) {
	animation: bar2 0.1s ease forwards;
}

#mobile-menu .bar.active:nth-child(3) {
	animation: bar3 0.1s ease forwards;
}

@keyframes bar1 { 
	to {
		background: #fff;
		transform: rotate(45deg);
		top: 10px;
	}
}

@keyframes bar2 { 
	to {
		opacity: 0;
	}
}

@keyframes bar3 { 
	to {
		background: #fff;
		transform: rotate(-45deg);
		top: -10px;
	}
}


/*-- Layout --*/

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex-center {
	align-items:center;
}

.no-pad {
	padding: 0 !important;
}

.no-pad-top {
	padding-top: 0 !important;
}

.no-pad-bottom {
	padding-bottom: 0 !important;
}

.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px;
}

.container-small {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px;
}

.container-large {
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	padding: 40px;
}

.center {
	text-align: center;
}

.col1 {
	width: 100%;
	padding: 40px;
	position: relative;
	z-index: 2;
}

.col2 {
	width: 50%;
	padding: 40px;
	position: relative;
	z-index: 2;
}

.col3 {
	width: 33.33%;
	padding: 40px;
	position: relative;
	z-index: 2;
}

.col4 {
	width: 25%;
	padding: 40px;
	position: relative;
	z-index: 2;
}

.boxes .col4 {
	padding: 20px;
}

.boxes .col4 article {
	border-radius: 8px;
	height: 100%;
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.boxes .col4 .photo {
	width: -webkit-calc(100% + 80px);
	width: -moz-calc(100% + 80px);
	width: calc(100% + 80px);
	height: 220px;
	position: relative;
	top: -40px;
	left: -40px;
}

.boxes .col4 .photo img {
	height: 220px;
}

.photo {
	position: relative;
	overflow: hidden;
}

.photo img {
	object-fit: cover;
	width: 100%;
	height: 420px;
}


/*-- Colors --*/

.bg-light {
	background: #f0f8fa;
}

.bg-dark {
	background: #003143;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark p,
.bg-dark a {
	color: #fff;
}

.bg-dark a.button:hover {
	background: #fff;
	color: #003143;
}

.bg-blue {
	background: #00a7e1;
}

.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue h4,
.bg-blue p,
.bg-blue a,
.bg-blue ul.list li:before {
	color: #fff;
}

.bg-purple {
	background: #325fcd;
}

.bg-purple h1,
.bg-purple h2,
.bg-purple h3,
.bg-purple h4,
.bg-purple p,
.bg-purple ul.list li:before {
	color: #fff;
}


.bg-yellow {
	background: #e6b93c;
}

.bg-yellow h1,
.bg-yellow h2,
.bg-yellow h3,
.bg-yellow h4,
.bg-yellow p,
.bg-yellow ul.list li:before {
	color: #fff;
}

.bg-orange {
	background: #e68232;
}

.bg-orange h1,
.bg-orange h2,
.bg-orange h3,
.bg-orange h4,
.bg-orange p,
.bg-orange ul.list li:before {
	color: #fff;
}


/*-- Homepage --*/

#home-header {
	height: -webkit-calc(100vh - 301px);
	height: -moz-calc(100vh - 301px);
	height: calc(100vh - 301px);
	min-height: 450px;
	position: relative;
	overflow: hidden;
}

#home-header:after {
	content: "";
	background: rgba(0, 20, 30, 0.2);
	background-image:linear-gradient(to right, rgba(0, 20, 30, 0.6), rgba(0, 20, 30, 0) 60%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#home-header img {
	object-fit: cover;
	width: 100%;
	height: -webkit-calc(100vh - 301px);
	height: -moz-calc(100vh - 301px);
	height: calc(100vh - 301px);
	min-height: 450px;
	opacity: 0;
	transform: translate(-50%, -50%) scale(1);
	position: absolute;
	top: 50%;
	left: 50%;
	animation: headerimg 5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes headerimg { 
	40% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.08);
	}
}

#home-header .container-large {
	height: 100%;
	align-items: center;
}

#home-header .col1 {
	max-width: 700px;
}

#make-a-difference {
	background: url("../images/make-a-difference.jpg") no-repeat center center / cover;
	background-attachment: fixed;
	position: relative;
}

#make-a-difference:after {
	content: "";
	background: rgba(0, 20, 30, 0.7);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.icon {
	background: #00a7e1;
	border-radius: 116px;
	width: 116px;
	height: 116px;
	margin: 0 auto 30px;
	position: relative;
}

.icon img {
	width: 58px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

ul.partners {
	list-style: none;
	margin: 0 auto 30px;
}

ul.partners li {
	width: 16.66%;
	padding: 0 10px;
	transition: all 0.2s ease;
	cursor: pointer;
}

ul.partners li:hover {
	transform: scale(1.1);
}


/*-- Subpages --*/

header h1 {
	position: relative;
	top: 80px;
	opacity: 0;
	animation: headertext 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.1s;
}

header h4 {
	opacity: 0;
	animation: headertext 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.15s;
}

header p {
	position: relative;
	top: 80px;
	opacity: 0;
	animation: headertext 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.15s;
}

header a.button {
	position: relative;
	top: 80px;
	opacity: 0;
	animation: headertext 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

@keyframes headertext { 
	to {
		top: 0;
		opacity: 1;
	}
}

#about-us {
	background: url("../images/header-who-we-are.jpg") no-repeat center center / cover;
	position: relative;
}

#about-us:after {
	content: "";
	background: rgba(0, 20, 30, 0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#the-treasured-king img {
	max-width: 450px;
	margin: 0 auto;
}

#contact-us {
	background: url("../images/header-contact-us.jpg") no-repeat center center / cover;
	position: relative;
}

#contact-us:after {
	content: "";
	background: rgba(0, 20, 30, 0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#our-work {
	background: url("../images/header-our-work.jpg") no-repeat center center / cover;
	position: relative;
}

#our-work:after {
	content: "";
	background: rgba(0, 20, 30, 0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#get-involved {
	background: url("../images/header-get-involved.jpg") no-repeat center center / cover;
	position: relative;
}

#get-involved:after {
	content: "";
	background: rgba(0, 20, 30, 0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


/*-- Give Now --*/

#give-header {
	background: url("../images/satisfy-their-deepest-thirst.jpg") no-repeat center center / cover;
	position: relative;
}

#give-header:after {
	content: "";
	background: rgba(0, 20, 30, 0.7);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


/*-- Fancybox --*/

.fancybox-bg {
	background: #001923 !important;
}

.fancybox-content {
	padding: 0 !important;
	border-bottom: 20px solid #00a7e1;
	border-radius: 8px;
}

.fancybox-popup {
	display: none;
	border-top: 0 !important;
	border-right: 0 !important;
	border-left: 0 !important;
	max-width: 1000px !important;
	padding: 0 !important;
}

.fancybox-slide {
	padding: 5% !important;
}

.fancybox-toolbar {
	opacity: 1 !important;
	visibility: visible !important;
}

.fancybox-button--zoom,
.fancybox-button--play,
.fancybox-button--thumbs,
.fancybox-navigation,
.fancybox-button--close svg {
	display: none !important;
}

.fancybox-button--close {
	background: url("../images/icon-close-white.svg") no-repeat center center !important;
	background-size: 30px 30px !important;
	border: 0 !important;
	width: 54px !important;
	height: 54px !important;
	text-indent: -999999px !important;
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	cursor: pointer !important;
	z-index: 10 !important;
}


/*-- Footer --*/

footer .col2:nth-child(2) {
	text-align: right;
	justify-content: flex-end;
}

footer .col2:nth-child(2) ul {
	list-style: none;
	margin: 0 0 30px;
}

footer .col2:nth-child(2) ul li {
	background: #fff;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	margin: 0 0 0 15px;
}

footer .logo {
	width: 160px;
	height: auto;
	position: absolute;
	bottom: 40px;
	right: 35px;
	opacity: 0.6;
}

