﻿@charset "UTF-8";

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

:root {
	--section-padding: 100px;
}

html {
    -webkit-text-size-adjust: none;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body, div {
  margin: 0;
  padding: 0;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 300;
	text-align: center;
	color: #1C1C1C;
	line-height: 1.5;
	background: #fff;
}

/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-size: 16px;
	overflow: hidden;
}

@supports (overflow:clip) {
	#mainWrapper {
		overflow: clip;
	}
}

/* Section */

.section {
	max-width: 1280px;
	margin: 0 auto;
}

/* Header */

#header {
	background: #1C1C1C;
}

#header .section {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 163px;
	padding-top: 30px;
	padding-bottom: 30px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#header .siteLogo {
	position: absolute;
	left: 0;
	top: 30px;
}

.siteLogo {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 326px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.siteLogo:after {
	content: "";
	position: absolute;
	right: 32.51533742331288%;
	margin-top: 3.6%;
	width: 1px;
	height: 86.51685393258427%;
	background: #fff;
}

.siteLogo img:first-child {
	width: 59.50920245398773%;
}

.siteLogo img:last-child {
	width: 26.99386503067485%;
	margin-left: auto;
	margin-top: 5.828220858895706%;
}

#header .right {
	margin-left: auto;
	margin-top: 14px;
	padding-left: 15px;
}

#header .right .options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	margin-bottom: 27px;
}

#header .right .options .linkBtn {
	margin: 0 0 0 19px;
}

#header .right #navigation ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

#header .right #navigation ul li {
	position: relative;
	margin: 0 0 0 22px;
	padding: 0;
	list-style: none;
	font-size: 16px;
}

#header .right #navigation ul li a {
	display: inline-block;
	color: #fff;
}

#header .right #navigation ul li:before {
	background-color: #fff;
	bottom: -.15em;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transform-origin: right;
	    -ms-transform-origin: right;
	        transform-origin: right;
	-webkit-transition: -webkit-transform .75s cubic-bezier(.19,1,.22,1);
	transition: -webkit-transform .75s cubic-bezier(.19,1,.22,1);
	-o-transition: transform .75s cubic-bezier(.19,1,.22,1);
	transition: transform .75s cubic-bezier(.19,1,.22,1);
	transition: transform .75s cubic-bezier(.19,1,.22,1), -webkit-transform .75s cubic-bezier(.19,1,.22,1);
}

#header .right #navigation ul li:hover:before,
#header .right #navigation ul li.active:before {
	-webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	        transform: scaleX(1);
	-webkit-transform-origin: left;
	    -ms-transform-origin: left;
	        transform-origin: left;
}

/* Intro */

#intro {
	position: relative;
	z-index: 1;
}

#intro .section {
	position: static;
	min-height: 514px;
	padding-top: 55px;
	padding-bottom: 55px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#intro video {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;
	z-index: -1;
}

#intro .text {
	width: 568px;
	margin-left: auto;
	padding-right: 50px;
	color: #fff;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

#intro .text>:last-child {
	margin-bottom: 0;
}

/* Banner */

.banner {
	position: relative;
	background: -webkit-gradient(linear, left top, right top, from(#01FEAF), to(#01A1FE));
	background: -o-linear-gradient(left, #01FEAF 0%, #01A1FE 100%);
	background: linear-gradient(90deg, #01FEAF 0%, #01A1FE 100%);
	z-index: 1;
}

.banner:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(255,255,255,0.4);
	z-index: -1;
}

.banner .section {
	min-height: 278px;
	padding-top: 55px;
	padding-bottom: 55px;
}

.banner h2 {
	color: #fff;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* Content */

.content .section {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}

.content.grayBg {
	background: #EFEFEF;
}

.content.grayBg .section {
	padding-top: 50px;
	padding-bottom: 50px;
}

/* Funders */

.funders {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.funders .left {
	padding-right: 30px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.funders .right {
	width: 870px;
	margin-left: auto;
}

.funders .right .logos {
	margin: 30px 0 -20px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.funders .right .logos li {
	margin: 0 60px 20px 0;
	padding: 0;
	list-style: none;
}

.funders .right .logos li img {
	display: block;
	height: 88px;
}

.funders .right .logos li a {
	display: inline-block;
	-webkit-transition: -webkit-transform 0.6s;
	transition: -webkit-transform 0.6s;
	-o-transition: transform 0.6s;
	transition: transform 0.6s;
	transition: transform 0.6s, -webkit-transform 0.6s;
}

.funders .right .logos li a:hover {
	-webkit-transform: scale(1.03);
	    -ms-transform: scale(1.03);
	        transform: scale(1.03);
}

/* Searching Box */

.searchingBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 704px;
	margin: 0 auto 100px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.searchingBox .query {
	margin: 0;
	padding: 0 30px 0 89px;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	border: 1px solid #02A4FC;
	border-radius: 40px;
	background: url(../images/search-ico2.svg) no-repeat 30px center;
	height: 70px;
	outline: none;
	font-family: 'Poppins', sans-serif;
	font-size: 21px;
	font-weight: 400;
	color: #1C1C1C;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

.searchingBox .submitBtn {
	margin: 0 0 0 20px;
	padding: 0;
	width: 150px;
	height: 70px;
	border: none;
	border-radius: 40px;
	font-family: 'Poppins', sans-serif;
	font-size: 21px;
	font-weight: 400;
	background: #02A4FC;
	color: #fff;
	cursor: pointer;
	outline: none;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.searchingBox .submitBtn:hover {
	background-color: #32b5ff;
	color: #fff;
}

/* Links Image */

.linksImage {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.linksImage .col {
	width: 370px;
	margin-right: 100px;
}

.linksImage .col>:last-child {
	margin-bottom: 0;
}

.linksImage .image {
	width: 265px;
	margin-left: auto;
	margin-bottom: 30px;
	-ms-flex-item-align: end;
	    align-self: flex-end;
}

/* Links */

.links {
	margin: -20px 0 35px;
	padding: 0;
}

.links li {
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #000;
}

.links li a {
	position: relative;
	display: block;
	padding: 20.5px 0;
}

.links li a:after {
	position: absolute;
	content: "";
	left: 0;
	width: 0;
	bottom: 0;
	height: 1px;
	background: #000;
	-webkit-transition: width 0.5s;
	-o-transition: width 0.5s;
	transition: width 0.5s;
}

.links li a:hover:after {
	width: 100%;
}

/* Two Cols */

.twoCols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.twoCols .col {
	width: 568px;
}

.twoCols .col:last-child {
	margin-left: auto;
}

.twoCols .col>:last-child {
	margin-bottom: 0;
}

/* Search Box */

.searchBox {
	position: relative;
}

.searchBox .query {
	display: block;
	margin: 0 0 0 19px;
	padding: 2px 40px 0 10px;
	background: none;
	width: 211px;
	height: 32px;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	border: 1px solid #02A4FC;
	border-radius: 40px;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

.searchBox .searchBtn {
	position: absolute;
	right: 0;
	top: 0;
	width: 32px;
	height: 32px;
	border: 1px solid #02A4FC;
	background: url(../images/search-ico1.svg) no-repeat center;
	outline: none;
	text-indent: -9999em;
	border-radius: 100%;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

/* Results */

.results .item {
	font-weight: normal;
	margin-bottom: 30px;
}

/* Image Text */

.imageText {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-bottom: var(--section-padding);
}

.imageText .image {
	width: 500px;
}

.imageText .image img {
	display: block;
	width: 100%;
	border-radius: 40px;
}

.imageText .text {
	width: 640px;
	margin-left: auto;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}

.imageText .text>:last-child {
	margin-bottom: 0;
}

/* Team */

.team h2 {
	text-align: center;
	margin-bottom: 50px;
}

.team .listing {
	--gap: 30px;
	margin: 0 calc(var(--gap) * -1) -10px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.team .listing li {
	margin: 0 0 20px;
	padding: 0 var(--gap);
	list-style: none;
	width: 33.33333333333333%;
}

.team .listing li>:last-child {
	margin-bottom: 0;
}

.team .listing li img {
	display: block;
	height: 150px;
	border-radius: 40px;
	margin-bottom: 18px;
}

.team .listing li h3 {
	margin-bottom: 9px;
}

/* Intro Text */

.introText {
	text-align: center;
	margin-bottom: 50px;
}

/* Posts Listing */

.postsListing {
	--gap: 30px;
	margin: 0 calc(var(--gap) * -1);
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.postsListing li {
	margin: 0 0 25px;
	padding: 0 var(--gap);
	list-style: none;
	width: 33.33333333333333%;
}

.postsListing li .image {
	margin-bottom: 28px;
	border-radius: 40px;
	overflow: hidden;
}

.postsListing li .image img {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 1s;
	transition: -webkit-transform 1s;
	-o-transition: transform 1s;
	transition: transform 1s;
	transition: transform 1s, -webkit-transform 1s;
}

.postsListing li a:hover .image img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.postsListing li a:hover .linkBtn {
	background-color: #32b5ff;	
}

/* Table Data */

.tableData table {
	margin: 0;
	padding: 0;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.tableData table th,
.tableData table td {
	font-style: normal;
	font-weight: normal;
	text-align: left;
	vertical-align: top;
	padding: 10px;
	border: 1px solid #B9B9B9;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: normal;
}

.tableData table th {
	font-weight: 600;
	background: #f0f0f0;
}

.tableData table th:nth-child(1) {
	width: 111px;
}

.tableData table th:nth-child(2) {
	width: 160px;
}

.tableData table th:nth-child(3) {
	width: 205px;
}

.tableData table th:nth-child(4) {
	width: 804px;
}

/* Gallery Text */

.galleryText {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.galleryText .gallery {
	width: 500px;
}

.galleryText .text {
	width: 568px;
	margin-left: auto;
}

.galleryText .text>:last-child {
	margin-bottom: 0;
}

.galleryText .text h2 {
	position: relative;
	margin: 0 0 10px;
}

.galleryText .text h2 img {
	position: absolute;
	left: -1.805555555555556em;
	top: 0.3333333333333333em;
	height: 0.8888888888888889em;
}

.galleryText .gallery .images {
	--gap: 2%;
	margin: 0 calc(var(--gap) * -1);
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.galleryText .gallery .images li {
	margin: 0 0 var(--gap);
	padding: 0 var(--gap);
	list-style: none;
	width: 33.33333333333333%;
}

.galleryText .gallery .images li a {
	display: block;
	overflow: hidden;
	border-radius: 20px;
}

.galleryText .gallery .images li:first-child {
	width: 100%;
	margin-bottom: 5%;
}

.galleryText .gallery .images li:first-child a {
	border-radius: 40px;
}

.galleryText .gallery .images li img {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 1.5s;
	transition: -webkit-transform 1.5s;
	-o-transition: transform 1.5s;
	transition: transform 1.5s;
	transition: transform 1.5s, -webkit-transform 1.5s;
}

.galleryText .gallery .images li a:hover img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.galleryText .text ol li::marker {
	font-weight: bold;
}

/* Quotes */

.quotes .section {
	padding-top: 55px;
	padding-bottom: 55px;
}

.quotes .listing {
	--gap: 40px;
	margin: 0 calc(var(--gap) * -1) -20px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.quotes .listing li {
	margin: 0 0 20px;
	padding: 0 var(--gap);
	list-style: none;
	width: 33.33333333333333%;
}

.quotes .listing li blockquote {
	margin: 0;
	padding: 0 0 0 44px;
	font-style: normal;
	background: url(../images/quote-sign.svg) no-repeat 0 5px;
}

.quotes .listing li blockquote cite {
	margin: 0;
	padding: 0;
	font-style: italic;
}

.quotes .listing li blockquote>:last-child {
	margin-bottom: 0;
}

/* Partners Logos */

.partners {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.partners li {
	margin: 0 40px 40px 0;
	padding: 0;
	list-style: none;
}

.partners li img {
	display: block;
	height: 88px;
	-webkit-transition: -webkit-transform 0.6s;
	transition: -webkit-transform 0.6s;
	-o-transition: transform 0.6s;
	transition: transform 0.6s;
	transition: transform 0.6s, -webkit-transform 0.6s;
}

.partners li a {
	display: inline-block;
}

.partners li a:hover img {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

/* Hr */

hr {
	margin: 0;
	padding: 0;
	height: 30px;
	border: 0;
	height: 10px;
	background: -webkit-gradient(linear, left top, right top, from(#01FEAF), to(#01A1FE));
	background: -o-linear-gradient(left, #01FEAF 0%, #01A1FE 100%);
	background: linear-gradient(90deg, #01FEAF 0%, #01A1FE 100%);
}

strong {
	font-weight: bold;
}

/* Footer */

#footer {
	background: #1C1C1C;
	color: #fff;
}

#footer .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 50px;
	padding-bottom: 50px;
}

#footer .left {
	width: 568px;
}

#footer .right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
	padding-left: 30px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#footer .left .flinks {
	margin: 0 0 40px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#footer .left .flinks li {
	margin: 0 20px 0 0;
	padding: 0;
	list-style: none;
	font-weight: 400;
}

#footer .left .flinks li a:hover {
	text-decoration: underline;
}

#footer .left .disclaimer {
	font-size: 12px;
}

#footer .left .disclaimer>:last-child {
	margin-bottom: 0;
}

#footer .right .searchBox {
	margin-bottom: 13px;
}

/* Hamburger */

.hamburger {
	display: none;
	position: absolute;
	right: 5px;
	top: 0;
	overflow: visible;
	margin-top: 5px;
	margin-left: 5px;
	-webkit-transform: scale(0.8);
	    -ms-transform: scale(0.8);
	        transform: scale(0.8);
	-webkit-transition-timing-function: linear;
	     -o-transition-timing-function: linear;
	        transition-timing-function: linear;
	-webkit-transition-duration: .15s;
	     -o-transition-duration: .15s;
	        transition-duration: .15s;
	-webkit-transition-property: opacity, -webkit-filter;
	transition-property: opacity, -webkit-filter;
	-o-transition-property: opacity, filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	text-transform: none;
	color: inherit;
	border: 0;
	background-color: transparent;
	z-index: 2;
}

.hamburger.is-active:hover,
.hamburger:hover {
	opacity: 1
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
	background-color: #fff;
}

.hamburger-box {
	display: inline-block;
	width: 32px;
	height: 24px;
}

.hamburger-inner {
	top: 50%;
	display: block;
	margin-top: -4px
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	position: absolute;
	width: 32px;
	height: 4px;
	-webkit-transition-timing-function: ease;
	     -o-transition-timing-function: ease;
	        transition-timing-function: ease;
	-webkit-transition-duration: .15s;
	     -o-transition-duration: .15s;
	        transition-duration: .15s;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	border-radius: 4px;
	background-color: #fff;
}

.hamburger-inner:after,
.hamburger-inner:before {
	display: block;
	content: ""
}

.hamburger-inner:before {
	top: -10px
}

.hamburger-inner:after {
	bottom: -10px
}

.hamburger .hamburger-inner {
	-webkit-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	     -o-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	        transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	-webkit-transition-duration: .22s;
	     -o-transition-duration: .22s;
	        transition-duration: .22s
}

.hamburger .hamburger-inner:before {
	-webkit-transition: top .1s ease-in .25s, opacity .1s ease-in;
	-o-transition: top .1s ease-in .25s, opacity .1s ease-in;
	transition: top .1s ease-in .25s, opacity .1s ease-in
}

.hamburger .hamburger-inner:after {
	-webkit-transition: bottom .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
	-o-transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19), -webkit-transform .22s cubic-bezier(.55, .055, .675, .19)
}

.hamburger.is-active .hamburger-inner {
	-webkit-transition-delay: .12s;
	     -o-transition-delay: .12s;
	        transition-delay: .12s;
	-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	     -o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	-webkit-transform: rotate(225deg);
	    -ms-transform: rotate(225deg);
	        transform: rotate(225deg)
}

.hamburger.is-active .hamburger-inner:before {
	top: 0;
	-webkit-transition: top .1s ease-out, opacity .1s ease-out .12s;
	-o-transition: top .1s ease-out, opacity .1s ease-out .12s;
	transition: top .1s ease-out, opacity .1s ease-out .12s;
	opacity: 0
}

.hamburger.is-active .hamburger-inner:after {
	bottom: 0;
	-webkit-transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	-o-transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg)
}

.mm-navbar>* {
	background: #1C1C1C;
}

.mm-listitem__text {
	padding-left: 10px;
}

.mm-navbar__title {
	/*border-bottom: 1px solid #fff;*/
}

.mm-navbar__title>span {
	color: #fff;
}

.mm-panel {
	background: #02A4FC;
	font-size: 16px;
	font-weight: bold;
}

.mm-panel * {
	text-align: center;
}

.mm-listitem:after {
	border-color: none;
}

.mm-listitem.active {
	background: #0092e9;
}

/* Miscelleneous */

p {
	margin: 0 0 23px;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	margin: 0 0 19px;
	line-height: 1.2;
}

h2 {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.5;
	margin-bottom: 31px;
}

h3 {
	font-size: 28px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 14px;
	color: #000;
}

h4 {
	font-size: 21px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 14px;
	color: #000;
}

h5 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 10px;
}


a {
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
}

img {
	border: 0;
	max-width: 100%;
}

ul,
ol {
	padding: 0 0 0 25px;
	margin-bottom: 27px;
	text-align: left;
}

.linkBtn {
	position: relative;
	display: table;
	line-height: 1.2;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: normal;
	margin: 23px 0;
	color: #fff;
	background: #02A4FC;
	padding: 7.61px 12px 5.61px;
	border: 1px solid #02A4FC;
	border-radius: 40px;
	cursor: pointer;
	outline: none;
	text-align: center;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.linkBtn:hover,
.linkBtn.linkBtnHollow:hover {
	background-color: #32b5ff;
	color: #fff;
}

.linkBtn.linkBtnHollow {
	background: none;
	color: #000;
}

.linkBtn.pullRight {
	margin-left: auto;
}

.linkBtns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.linkBtns .linkBtn {
	margin: 0 20px 0 0;
}

.clear {
	clear: both;
}

.clearfix:after { 
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden; 
}

.clearfix { 
  display: inline-block;  
}

* html .clearfix{  
  height: 1%;  
}

.clearfix {  
  display: block;  
}

input::-moz-focus-inner { 
    border: 0;
    padding: 0;
}

form {
	margin: 0;
	padding: 0;
}

input, select, textarea {
    border-radius: 0;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

:-moz-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {  
	color: inherit;
	opacity: 1;
}

.showOnMobile {
	display: none;
}

/* Media Queries */

/* Large Screens (Desktops) */

@media only screen and (max-width : 1450px) {
	.section {
		max-width: 1200px;
	}	

	.linksImage .col {
		width: 365px;
	}

	.team .listing,
	.postsListing {
		--gap: 20px;
	}

	.quotes .listing {
		--gap: 25px;
	}

}

/* Tablet Screens (Landscape) */

@media only screen and (max-width : 1260px) {
	.section {
		max-width: 970px;
	}	

	.twoCols .col {
		width: 460px;
	}

	#intro .section {
		min-height: 400px;
	}

	#intro .text {
		width: 460px;
		padding-right: 0;
	}

	.funders .right {
		width: 650px;
	}

	.funders .right .logos {
		margin-top: 39px;
		margin-bottom: -10px;
	}

	.funders .right .logos li {
		margin-right: 40px;
		margin-bottom: 10px;
	}

	.funders .right .logos li img {
		height: 70px;
	}

	.linksImage .col {
		margin-right: 60px;
		width: 292px;
	}

	.imageText .image {
		width: 363px;
	}

	.imageText .text {
		width: 564px;
	}

	.team .listing,
	.postsListing {
		--gap: 15px;
	}

	.galleryText .text {
		width: 460px;
	}

	.galleryText .text h2 img {
		left: -1.35em;
	}

	.galleryText .gallery {
		width: 428px;
	}
	
	.quotes .listing {
		--gap: 15px;
	}
	
}

/* Tablet Screens (Portrait) */

@media only screen and (max-width : 991px) {
	.section {
		max-width: 750px;
		padding-left: 15px;
		padding-right: 15px;
	}	

	:root {
		--section-padding: 60px;
	}

	#header .siteLogo {
		width: 290px;
		top: 20px;
		left: 15px;
	}

	#intro .section {
		min-height: 340px;
	}

	.twoCols .col,
	#intro .text {
		width: 345px;
	}

	.content .section {
		padding-top: var(--section-padding);
		padding-bottom: var(--section-padding);
	}
	
	.linksImage .col {
		margin-right: 40px;
		width: 235px;
	}

	.funders .right {
		width: 400px;
	}

	.funders .right .logos {
		margin-top: 0;
	}

	.searchingBox {
		margin-bottom: 60px;
	}

	.imageText .image {
		width: 302px;
	}

	.imageText .text {
		width: 385px;
	}

	.team .listing {
		--gap: 13px;
	}

	.partners li {
		margin-right: 30px;
	}

	.galleryText .text {
		width: 345px;
	}

	.galleryText .gallery {
		width: 308px;
	}
		
	.quotes .listing {
		--gap: 10px;
	}

	#footer .left {
		width: 443px;
	}

	#footer .left .flinks {
		margin-bottom: 17px;
	}

	#footer .siteLogo {
		width: 230px;
	}

	.linksImage .image {
		width: 170px;
		margin-bottom: 65px;
	}

	h2 {
		font-size: 30px;
	}

	h3 {
		font-size: 24px;
	}

	h4 {
		font-size: 19px;
	}
}

/* Mobile Screens */

@media only screen and (max-width : 767px) {
	.hamburger {
		display: block;
	}

	:root {
		--section-padding: 50px;
	}

	#mainWrapper {
		text-align: center;
	}

	#header .section {
		display: block;
		height: auto;
		padding-top: 31px;
		padding-bottom: 41px;
		text-align: center;
	}

	#header #navigation {
		display: none;
	}

	#header .siteLogo {
		position: relative;
		left: 0;
		top: 0;
		width: 280px;
		margin: 0 auto 20px;
	}

	#header .right {
		padding: 0;
	}

	#header .right .options {
		display: block;
		margin: 0;
	}

	#header .right .options .searchBox {
		display: inline-block;
		margin: 0 0 15px;
	}

	#header .right .options .searchBox .query {
		margin-left: 0;
	}

	#header .right .options .linkBtn {
		margin: 0 auto;
	}

	#intro .section {
		padding-top: 50px;
		padding-bottom: 50px;
		min-height: 1px;
		text-align: center;
	}

	.content .section {
		padding-top: var(--section-padding);
		padding-bottom: var(--section-padding);
	}

	.banner .section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.twoCols {
		display: block;
	}

	.twoCols .col {
		margin-bottom: 30px;
	}

	.twoCols .col:last-child {
		margin-bottom: 0;
	}

	.twoCols .col, #intro .text {
		width: 100%;
	}

	.searchingBox {
		display: block;
		max-width: 400px;
		margin-bottom: 50px;
	}

	.searchingBox .query {
		width: 100%;
		height: 55px;
		font-size: 16px;
		margin-bottom: 20px;
		padding-left: 58px;
		padding-right: 24px;
		background-size: 30px;
		background-position: 16px center;
	}

	.searchingBox .submitBtn {
		font-size: 16px;
		margin-left: 0;
		width: 130px;
		height: 55px;
	}

	.funders {
		display: block;
	}

	.funders .left {
		padding-right: 0;
	}

	.funders .right {
		width: 100%;
	}
	
	.funders .right .logos {
		display: block;
		margin: 0 0 30px;
		text-align: center;
	}

	.funders .right .logos li {
		margin: 0;
	}

	.funders .right .logos li img {
		height: 55px;
	}

	.imageText {
		display: block;
	}

	.imageText .image {
		width: auto;
		max-width: 300px;
		margin: 0 auto 30px;
	}

	.imageText .text {
		width: 100%;
	}

	.team .listing {
		display: block;
		margin-bottom: 0;
	}

	.team .listing li {
		width: 100%;
		text-align: center;
		margin-bottom: 40px;
	}

	.team .listing li:last-child {
		margin-bottom: 0;
	}

	.team .listing li img {
		margin-left: auto;
		margin-right: auto;
	}

	.partners {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.postsListing {
		display: block;
	}

	.postsListing li {
		width: 100%;
		text-align: center;
	}

	.postsListing li .image {
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
	}

	.tableData {
		overflow-x: auto;
 		-webkit-overflow-scrolling: touch;
	}
	
	.tableData table {
		min-width: 800px;
	}

	.quotes .section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.quotes .listing {
		display: block;
		margin-bottom: 0;
	}

	.quotes .listing li {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}

	.quotes .listing li:last-child {
		margin-bottom: 0;
	}

	.quotes .listing li blockquote {
		background-position: center top;
		padding-left: 0;
		padding-top: 45px;
		background-size: 40px;
	}

	.partners li {
		margin: 0 10px 20px;
	}

	.galleryText {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.galleryText .text {
		width: 100%;
		margin-bottom: 30px;
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
	}

	.galleryText .text ul,
	.galleryText .text ol {
		display: table;
		margin-left: auto;
		margin-right: auto;
	}

	.galleryText .text h2 img {
		position: static;
		display: block;
		margin: 0 auto 8px;
		height: 1.4em;
	}

	.galleryText .gallery {
		width: 100%;
		max-width: 350px;
		margin: 0 auto;
	}

	#footer .section {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	#footer .left {
		width: 100%;
	}

	#footer .right {
		width: 100%;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		padding-left: 0;
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
	}

	#footer .left .flinks {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		margin-bottom: 15px;
	}

	#footer .left .flinks li {
		margin: 0 10px 5px;
	}

	#footer .siteLogo {
		width: 270px;
		margin-bottom: 30px;
	}

	.linksImage {
		display: block;
	}

	.linksImage .col {
		margin: 0 0 30px;
		width: 100%;
	}

	.linksImage .col ul {
		text-align: center;
	}

	.linksImage .image {
		margin-bottom: 0;
		margin-top: 10px;
		width: 180px;
	}
	
	.linkBtn {
		margin-left: auto;
		margin-right: auto;
	}

	.linkBtn.showOnMobile {
		display: table;
	}

	.linkBtns {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.showOnMobile.linkBtns {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.linkBtns .linkBtn {
		margin-left: 7px;
		margin-right: 7px;
	}

	.hideOnMobile {
		display: none;
	}

	.showOnMobile {
		display: block;
	}

	h2 {
		margin-bottom: 20px;
	}
	
}

@media only screen and (max-width : 479px) {

}