@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600');

/* CSS Document */


/*------------------------------------------------------
CSS Created:	26/04/2019
CSS Author:		Alessandro Avallone
---------------------------------------------* GENERAL */

html,
body {
	padding: 0;
	margin: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
}

html {
  scroll-padding-top: 90px; /* height of sticky header */
}

a {
	text-decoration: none;
}

svg {
	fill: currentColor;
}

button:focus {
	outline: 0;
}

:root {
	--1st-color: #be1e2d;
	--2nd-color: #555045;
}

.animatedFast {
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}

.animatedMedium {
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.animatedMediumBezier {
	-webkit-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
	-moz-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
	-o-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
	-ms-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
	transition: all 0.5s cubic-bezier(1, 0, 0, 1);
}

.animatedSlow {
	-webkit-transition: all 1.5s ease-out;
	-moz-transition: all 1.5s ease-out;
	-o-transition: all 1.5s ease-out;
	-ms-transition: all 1.5s ease-out;
	transition: all 1.5s ease-out;
}

.clearfix::before,
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

.wrapper {
	margin: 0 auto;
	position: relative;
}

.desktop {
	display: none;
}

.mobile {
	display: none;
}


/*---------------------------------------------------------------------- */


/*---------------------------------------------* HEADER                  */


/*---------------------------------------------------------------------- */

header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 100;
	height: 90px;
}

header.change {
	background-color: rgba(0, 0, 0, 0.4);
}

header.no-change {
	background-color: #2f2a27;
}

header.is-colored {
	background-color: #2f2a27;
}

header .wrapper {
	height: inherit;
}

header .hamburgerWrapper {
	display: none;
}

header .logo {
	position: absolute;
	left: 50%;
	top: 10px;
	transform: translateX(-50%);
}

header .logo img {
	width: 180px;
	display: block;
}

header nav.mainNav {
	height: inherit;
}

header nav.mainNav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 90px;
}

header nav.mainNav ul li {
	width: calc(100% / 6);
	text-align: center;
	display: block;
	text-transform: uppercase;
	box-sizing: border-box;
}

header nav.mainNav ul li:nth-child(3) {
	padding-right: 6%;
}

header nav.mainNav ul li:nth-child(4) {
	padding-left: 6%;
}

header nav.mainNav ul li a {
	color: white;
	font-size: 24px;
	font-weight: 300;
}


/*---------------------------------------------------------------------- */


/*---------------------------------------------* ABOVE THE FOLD          */


/*---------------------------------------------------------------------- */

.aboveTheFold {
	position: relative;
	background-color: #2f2a27;
}

.aboveTheFold .image {
	opacity: 0;
}

.aboveTheFold.visible .image {
	opacity: 1;
}

.aboveTheFold .image img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.aboveTheFold .copy {
	position: absolute;
	z-index: 9;
	transform: translateY(-50%);
	top: 50%;
	left: 20%;
	width: 40%;
}

.aboveTheFold .copy h1,
.aboveTheFold .copy h2 {
	font-weight: 300;
	color: white;
}

.aboveTheFold .copy h1 {
	display: block;
	font-size: 36px;
}

.aboveTheFold .copy h1 span {
	display: inline-block;
	margin: 5px 0px;
	padding: 20px;
	background-color: var(--1st-color);
	opacity: 0;
	transform: translateY(15px);
}

.aboveTheFold .copy h1 span:nth-of-type(1) {
	transition-delay: 0.25s;
}

.aboveTheFold .copy h1 span:nth-of-type(2) {
	transition-delay: 0.5s;
}

.aboveTheFold .copy h1 span:nth-of-type(3) {
	transition-delay: 0.75s;
}

.aboveTheFold.visible .copy h1 span {
	opacity: 1;
	transform: translateY(0);
}

.aboveTheFold .copy h2 {
	display: block;
	background-color: #2f2a27;
	font-size: 24px;
	padding: 20px;
}

.aboveTheFold .slick-dots {
    position: absolute;
    bottom: 4vh;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.aboveTheFold .slick-dots li {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 0 12px;
    padding: 0;
    cursor: pointer;
}

.aboveTheFold .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 32px;
    height: 32px;
    padding: 12px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: white;
	opacity: 0.6;
	border-radius: 100%;
	border: 4px solid black;
}

.aboveTheFold .slick-dots li.slick-active button {
	border: 4px solid var(--1st-color);
	opacity: 1;
}

/*---------------------------------------------------------------------- */
/*---------------------------------------------* CONTENT                 */
/*---------------------------------------------------------------------- */

.content.has-hero {
	/* padding-top: 60px; */
}

.content.has-no-hero {
	/* padding-top: 90px; */
}

.content a {
	color: var(--1st-color);
}

.content .block.no-margin {
	margin: 0;
}

.content .block::before,
.content .block::after {
	content: "";
	display: table;
	clear: both;
}

.content h3 {
	font-weight: 300;
	text-align: center;
	margin: 40px auto;
	width: 60%;	
}

.content h4 {
	font-weight: 300;
	text-align: center;
	width: 60%;
	margin: 20px auto;
}


/*-------------------------------------------------*/

.content form {
	font-size: 16px;
}

.content form .field {
	height: 40px;
	position: relative;
	margin-bottom: 40px;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.20);
}

.content form .textarea,
.content form .dropzone {
	width: 100%;
	height: 160px;
	border: 1px dashed rgba(0, 0, 0, 0.20);
}

.content form input,
.content form label {
	-webkit-transition: all .2s;
	transition: all .2s;
}

.content form input,
.content form textarea {
	appearance: none;
}

.content form label {
	position: absolute;
	top: -20px;
	left: 5px;
	line-height: 1;
}

.content form label.control {
	position: relative;
	top: 10px;
}

.content form input[type="text"]:focus+label,
.content form input[type="email"]:focus+label {
	left: 40px;
	color: var(--1st-color);
}

.content form input[type="submit"] {
	display: block;
	background-color: transparent;
	cursor: pointer;
}

.content form input[type="text"],
.content form input[type="number"],
.content form input[type="email"],
.content form textarea {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	color: #000000;
	width: 100%;
	border: none;
	background-color: transparent;
	padding: 10px;
	box-sizing: border-box;
}

.content form input:focus[type="text"],
.content form input:focus[type="email"],
.content form input:focus[type="number"] {}

.content form input[type="checkbox"] {
	padding: 10px;
	width: 20px;
	height: 20px;
	border: 1px solid var(--1st-color);
}

/*-------------------------------------------------*/

.control-group {
	position: relative;
	display: flex;
}

.control {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-right: 30px;
	padding-top: 3px;
	cursor: pointer;
}

.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.control_indicator {
	position: absolute;
	top: 2px;
	left: 0;
	height: 20px;
	width: 20px;
	background: #e6e6e6;
	border: 0px solid #000000;
	border-radius: 20px;
}

.control:hover input~.control_indicator,
.control input:focus~.control_indicator {
	background: #cccccc;
}

.control input:checked~.control_indicator {
	background: #be1e2d;
}

.control:hover input:not([disabled]):checked~.control_indicator,
.control input:checked:focus~.control_indicator {
	background-color: #0e6647;
}

.control input:disabled~.control_indicator {
	background: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}

.control_indicator:after {
	box-sizing: unset;
	content: '';
	position: absolute;
	display: none;
}

.control input:checked~.control_indicator:after {
	display: block;
}

.control-checkbox .control_indicator:after {
	left: 8px;
	top: 4px;
	width: 3px;
	height: 8px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.control-checkbox input:disabled~.control_indicator:after {
	border-color: #7b7b7b;
}

.control-checkbox .control_indicator::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 2rem;
	height: 2rem;
	margin-left: -0.4rem;
	margin-top: -0.4rem;
	background: #2aa1c0;
	border-radius: 3rem;
	opacity: 0.6;
	z-index: 99999;
	transform: scale(0);
}

@keyframes s-ripple {
	0% {
		transform: scale(0);
	}
	20% {
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1);
	}
}

@keyframes s-ripple-dup {
	0% {
		transform: scale(0);
	}
	30% {
		transform: scale(1);
	}
	60% {
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1);
	}
}

.control-checkbox input+.control_indicator::before {
	animation: s-ripple 250ms ease-out;
}

.control-checkbox input:checked+.control_indicator::before {
	animation-name: s-ripple-dup;
}


/*-------------------------------------------------*/

.content .contentBox h4 {
	text-align: left;
	font-weight: 400;
	margin: 40px auto;
}

.content .subtitle {
	font-size: 21px;
	line-height: 21px;
	font-weight: 600;
	margin: 0;
}

.content .little {
	font-size: 12px;
	font-weight: 600;
	opacity: 0.4;
	text-transform: uppercase;
}

.content a.iconLink {
	display: block;
	padding-left: 30px;
	background-repeat: no-repeat;
	background-size: contain;
}

.content a.iconLink.download {
	display: block;
	padding-left: 25px;
	margin-bottom: 40px;
	background-image: url(../images/template/link-download.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.content a.iconLink.map {
	display: block;
	padding-left: 30px;
	background-image: url(../images/template/link-map.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.content a.learnMore,
.content input[type="submit"] {
	appearance: none;
	background-color: transparent;
	font-weight: 600;
	padding: 10px 20px;
	border: 1px solid;
	display: block;
	text-transform: uppercase;
	border-radius: 20px;
	margin: 20px auto;
	width: 180px;
	text-align: center;
	cursor: pointer;
	color: var(--1st-color);
}

.content .gridBox {
	display: flex;
	flex-flow: row wrap;
}

.content .gridBox.gridBoxPeople {
	justify-content: center;
} 

.content .gridBox .singleBox {
	box-sizing: border-box;
	padding: 1rem;
}

.content .gridBox .singleBox.is-hidden {
	opacity: 0;
	visibility: hidden;
}

.content .gridBox .singleBox.is-removed {
	display: none;
}

.content .gridBox .singleBox p:first-of-type {
	margin-top: 0;
}

.content .gridBox .singleBox.noPad {
	padding: 0;
}

.content .gridBox .singleBox.border {
	border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.content .gridBox .singleBox.shadow {
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}

.content .gridBox .singleBox img {
	display: block;
	width: 100%;
}

.content .gridBox .singleBox.menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.content .gridBox .singleBox.menu ul li {
	padding: 5px 0;
	font-size: 14px;
}

.content .gridBox .singleBox.peopleBox h4 {
	width: 100%;
	padding: 12px;
}

.content .gridBox .singleBox img.peopleThumb {
	cursor: pointer;
	height: auto;
}

.content .gridBox .singleBox.singleBox-8 {
	width: 66.33%;
}

.content .gridBox .singleBox.singleBox-6 {
	width: 50%;
	padding: 20px;
}

.content .gridBox .singleBox.singleBox-4 {
	width: 33.33%;
}

.content .gridBox .singleBox.singleBox-3 {
	width: 25%;
}

.content .gridBox.gridBoxServices {
	justify-content: space-between;
}

.content .gridBox.gridBoxServices .singleBox.singleBox-4 {
	position: relative;
}

.content .gridBox.gridBoxServices .singleBox.singleBox-4 .copy {
	position: absolute;
	z-index: 2;
	left: 20px;
	top: 20px;
	color: white;
	width: calc(100% - 40px);
}

.content .gridBox.gridBoxServices .singleBox.singleBox-4 .copy .subTitle {
	text-transform: uppercase;
	font-size: 24px;
	padding-bottom: 20px;
}

.content .gridBox.gridBoxServices .singleBox.singleBox-4 .copy .list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.content .gridBox.gridBoxServices .singleBox.singleBox-4 .cta {
	position: absolute;
	z-index: 3;
	bottom: 0px;
	right: 20px;
}

.content .gridBox.gridBoxServices .singleBox.singleBox-4 .cta a {
	color: white;
}

.content .gridBox.gridBoxServices .singleBox.singleBox-4 .image {
	position: relative;
}

.content .gridBox.gridBoxServices .singleBox.singleBox-4 .image::after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	background-color: var(--2nd-color);
	mix-blend-mode: multiply;
}

.content .gridBox.gridBoxTags {
	justify-content: center;
	margin: 20px 0;
}


.content .gridBox.gridBoxTags .tag {
	color: var(--1st-color);
	border: 1px solid rgba(35, 55, 112, 0.40);
	background-color: transparent;
	text-align: center;
	font-size: 14px;
	line-height: 14px;
	display: inline-block;
	box-sizing: border-box;
	padding: 20px 40px;
	margin: 0 10px;
	cursor: pointer;
	transition: all 0.2s linear;
	border-radius: 40px;
}

.content .gridBox.gridBoxTags .tag.red {
	color: var(--2nd-color);
	border: 1px solid rgba(223, 32, 39, 0.40);
}

.content .gridBox.gridBoxTags .tag.is-active {
	background-color: var(--1st-color);
	color: white;
}

.content .gridBox.gridBoxTags .tag.red.is-active {
	background-color: var(--2nd-color);
	color: white;
}

.content .wrapperBoxTagged {
	min-height: 480px;
}

.content .wrapperBoxTagged.hasBackground {
	background-color: rgb(233, 233, 233);
}

.content .gridBox.gridBoxArticles {
	justify-content: flex-start;
}

.content .gridBox.gridBoxArticles .singleBox {
	transition: all 0.2s ease-in;
	position: relative;
}

.content .gridBox.gridBoxArticles .singleBox img.icon {
    width: 32px;
    position: absolute;
    right: 36px;
    top: 24px;
	z-index: 1;
}

.content .gridBox.gridBoxArticles .singleBox img.thumbnail {
	width: 100%;
	object-fit: cover;
	object-position: top center;
}

.content .gridBox.gridBoxArticles .singleBox-3 img.thumbnail {
	height: 9vw;
}

.content .gridBox.gridBoxArticles .singleBox-4 img.thumbnail {
	height: 12vw;
}

.content .gridBox .singleBox .category {
	opacity: 0.6;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
}

.content .gridBox .singleBox .date {
	margin: 0;
	padding: 6px;
	border: 1px solid rgba(0, 0, 0, 0.6);
	opacity: 0.6;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
	float: left;
	margin-right: 12px;
	border-radius: 6px;
}

.content .gridBox .singleBox .date span {
	line-height: 1;
	display: block;
}

.content .gridBox .singleBox .date span.day {
	font-size: 24px;
}

.content .gridBox .singleBox .title {
	font-size: 24px;
	line-height: 24px;
	margin: 0;
	font-weight: 400;
}

.content .gridBox .singleBox.idle {
	opacity: 0.2;
}

.content .gridBox .singleBox .peopleCv {
	display: none;
}

.content .gridBox .singleBox.active .peopleCv {
	display: block;
}

.content .contentBox {
	width: 80%;
	margin: 20px auto;
	font-size: 16px;
	line-height: 24px;
	overflow-wrap: break-word;
}

.content .contentBox.longText {
	font-size: 14px;
	line-height: 21px;
	text-align: justify;
}

.content .contentBox.longText a {
	font-weight: bold;
}

.content .contentBox img {
	width: 100%;
}

.content .contentBox .iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 (100%/16*9 = 56.25%) */
    height: 0;
}

.content .contentBox .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content .contentBox img,
.content .contentBox .iframe-container {
	display: block;
	margin-bottom: 24px;
}

.content .fullWidth {
	width: 100%;
	position: relative;
}

.content .fullWidth .background {
	position: relative;
}

.content .fullWidth .background img {
	width: 100%;
	display: block;
}

.content .fullWidth .background::after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--1st-color);
	mix-blend-mode: multiply;
	z-index: 1;
}

.content .fullWidth .fifteenYears {
	width: 20vw;
	border: 5px solid white;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: white;
	padding: 40px;
	text-align: center;
}

.content .fullWidth .fifteenYears span {
	display: block;
}

.content .fullWidth .fifteenYears span:nth-of-type(1) {
	font-size: 60px;
	font-weight: 600;
}

.content .fullWidth .fifteenYears span:nth-of-type(2) {
	font-size: 36px;
}

.content .quoteBox {
	display: flex;
	flex-flow: row wrap;
	background-color: rgb(233, 233, 233);
}

.content .quoteBox:nth-of-type(even) {
	flex-flow: row-reverse wrap;
}

.content .quoteBox .singleBox {
	width: 50%;
	position: relative;
	transition: all 0.2s ease-in;
}

.content .quoteBox .singleBox.is-hidden {
	opacity: 0;
	visibility: hidden;
}

.content .quoteBox .singleBox.is-removed {
	display: none;
}

.content .quoteBox .singleBox:nth-of-type(1) img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.content .quoteBox .singleBox img.founderImage {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	opacity: 1;
}

.content .quoteBox .singleBox img.founderImage.hidden {
	opacity: 0;
}

.content .quoteBox .singleBox:nth-of-type(1) .map {
	width: 100%;
	height: 100%;
}

.content .quoteBox .singleBox {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5%;
	min-height: 33.33vw;
	box-sizing: border-box;
	position: relative;
}

.content .quoteBox .singleBox:nth-of-type(2)::before {
	content: "";
	width: 60px;
	height: 60px;
	position: absolute;
	left: 20%;
	top: 20%;
	background-image: url(../images/template/quote.png);
	background-size: cover;
	opacity: 0.1;
}

.content .quoteBox .singleBox:nth-of-type(2) p:nth-of-type(1) {
	font-size: 24px;
	font-weight: 300;
}

.content .quoteBox .singleBox:nth-of-type(2) p:nth-of-type(2) span:nth-of-type(2) {
	font-size: 12px;
	font-weight: 600;
	opacity: 0.4;
	text-transform: uppercase;
}

.content #map-world {
	width: 100%;
	height: 600px;

}

.content .dropzone {
	text-align: center;
}


/*---------------------------------------------------------------------- */


/*---------------------------------------------* FOOTER                  */


/*---------------------------------------------------------------------- */

footer {
	margin-top: 48px;
}

footer .row:nth-child(1) {
	background-color: var(--1st-color);
	display: flex;
	flex-flow: wrap row;
}

footer .row:nth-child(1)>div {
	width: 50%;
	font-size: 48px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

footer .row:nth-child(1)>div a {
	color: white;
}

footer .row:nth-child(1)>div img {
	max-width: 100%;
	display: block;
	position: relative;
}

footer .row:nth-child(1) div:nth-child(2)::after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--1st-color);
	mix-blend-mode: multiply;
}

footer .row:nth-child(2) {
	background-color: #2f2a27;
	padding: 40px 0;
	color: white;
	font-size: 14px;
	display: flex;
	flex-flow: row wrap;
}

footer .row:nth-child(2) ul {
	display: block;
	width: 100%;
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 20px 0;
}

footer .row:nth-child(2) ul li {
	display: inline-block;
}

footer .row:nth-child(2) ul:nth-of-type(1) li {
	width: 200px;
	padding: 10px;
	font-weight: bold;
}

footer .row:nth-child(2) ul:nth-of-type(2) li {
	width: 60px;
	padding: 20px;
}

footer .row:nth-child(2) ul li img {
	width: 100%;
	display: block;
}

footer .row:nth-child(2) ul li a {
	color: white;
}

footer .row:nth-child(2)>div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	text-align: center;
}

footer .row:nth-child(2) form input {
	padding: 20px;
	display: block;
	box-sizing: border-box;
	border: none;
	color: white;
	text-align: center;
	width: 300px;
	margin: 0 auto;
	font-size: 14px;
}

footer .row:nth-child(2) form input[type="email"] {
	background-color: black;
	font-family: 'Source Sans Pro', sans-serif;
	opacity: 0.8;
	color: white;
}

footer .row:nth-child(2) form input[type="submit"] {
	background-color: var(--1st-color);
}

footer .row:nth-child(3) {
	background-color: #27221f;
	padding: 40px;
	text-align: center;
	color: white;
	font-size: 12px;
}

footer .row:nth-child(3) a {
	font-weight: 600;
	opacity: 0.8;
	color: white;
}


/*---------------------------------------------------------------------- */


/*---------------------------------------------* MEDIA QUERY [ LARGE ]   */


/*---------------------------------------------------------------------- */

@media screen and (min-width:1440px) {
	
	.desktop {
		display: block;
	}
	
	.content .wrapper {
		width: 80%;
	}
	
	.content h3 {
		font-size: 48px;
		line-height: 42px;
	}
	
	.content h4 {
		font-size: 24px;
	}
	
	.content .block {
		margin: 90px 0;
	}
}


/*---------------------------------------------------------------------- */


/*---------------------------------------------* MEDIA QUERY [ MEDIUM ]  */


/*---------------------------------------------------------------------- */

@media screen and (min-width:768px) and (max-width:1439px) {
	
	.desktop {
		display: block;
	}
	
	.aboveTheFold .copy {
		transform: translateY(-50%);
		top: 50%;
		left: 10%;
		width: 80%;
	}
	
	.content .wrapper {
		width: 100%;
	}
	
	.content h3 {
		font-size: 42px;
		line-height: 36px;
	}
	
	.content h3.articleTitle {
		margin: 20px auto;
	}	
	
	.content h4 {
		font-size: 21px;
	}
	
	.content .block {
		margin: 90px 0;
	}
	
	.content .gridBox.gridBoxServices .singleBox.singleBox-4 .copy .subTitle {
		font-size: 24px;
		padding-bottom: 10px;
	}
	
	.content .fullWidth .fifteenYears {
		width: 40vw;
	}
	
	.content .gridBox.gridBoxArticles .singleBox p.title {
		font-size: 21px;
		line-height: 21px;
	}
	
	.content .gridBox .singleBox {
		padding: 1rem;
	}
}


/*---------------------------------------------------------------------- */


/*---------------------------------------------* MEDIA QUERY [ MOBILE ]  */


/*---------------------------------------------------------------------- */

@media screen and (min-width:320px) and (max-width:767px) {
	.mobile {
		display: block;
	}
	header {
		background-color: rgba(0, 0, 0, 0.2);
		height: 60px;
	}
	header.collapsed {
		height: 100vh;
		background-color: #2f2a27;
	}
	header .logo img {
		width: 120px;
	}
	header .hamburgerWrapper {
		display: block;
		position: absolute;
		left: 0;
		top: 2px;
	}
	header nav.mainNav ul {
		display: block;
		padding-top: 60px;
	}
	header nav.mainNav ul li:nth-child(n) {
		transform: translateX(-100vw);
		width: 100%;
		text-align: left;
		padding: 5vh 10vw;
		opacity: 0;
	}
	header.collapsed nav.mainNav ul li:nth-child(n) {
		transform: translateX(0);
		opacity: 1;
	}
	.aboveTheFold .copy {
		left: 5vw;
		width: 90vw;
	}
	.aboveTheFold .copy h1 span {
		padding: 10px;
		line-height: 56px;
	}
	.aboveTheFold .copy h2 {
		font-size: 16px;
		padding: 10px;
	}
	.aboveTheFold .copy h1 {
		font-size: 24px;
	}
	.content.has-hero {
		/* padding-top: 30px; */
	}
	.content.has-no-hero {
		/* padding-top: 60px; */
	}	
	.content .wrapper {
		width: 90%;
	}
	.content h3 {
		font-size: 36px;
		line-height: 32px;
		margin: 0px auto 20px;
		width: 90%;
	}
	.content h3.articleTitle {
		font-size: 32px;
		line-height: 28px;
		margin: 20px auto;
	}
	.content h4 {
		font-size: 18px;
		width: 100%;
		margin: 20px auto;
	}
	.content .block {
		margin: 60px 0;
	}
	.content .gridBox {
		display: block;
	}
	.content .gridBox.gridBoxTags {
		display: flex;
	}
	.content .gridBox .singleBox.singleBox-2,
	.content .gridBox .singleBox.singleBox-3,
	.content .gridBox .singleBox.singleBox-4,
	.content .gridBox .singleBox.singleBox-6,
	.content .gridBox .singleBox.singleBox-8 {
		width: 100%;
		padding: 0;
	}
	.content .gridBox .singleBox.shadow,
	.content .gridBox .singleBox.border {
		padding: 20px;
	}
	.content .gridBox .singleBox {
		padding: 0rem;
	}
	.content .gridBox.gridBoxTags .tag {
		font-size: 12px;
		padding: 8px;
		margin: 0 5px;
	}
	.content .gridBox.gridBoxArticles .singleBox {
		margin-bottom: 10vh;
	}
	.content .gridBox.gridBoxArticles .singleBox img.thumbnail {
		height: 100vw;
	}
	.content .gridBox .singleBox a.learnMore {
		margin: 10px 0;
	}
	.content .gridBox.gridBoxServices .singleBox.singleBox-4 .copy .subTitle {
		font-size: 24px;
		padding-bottom: 10px;
	}
	.content .fullWidth .fifteenYears {
		width: 60vw;
		padding: 20px;
	}
	.content .fullWidth .fifteenYears span:nth-of-type(1) {
		font-size: 30px;
	}
	.content .fullWidth .fifteenYears span:nth-of-type(2) {
		font-size: 16px;
	}
	.content .fullWidth .background img {
		width: 100%;
		height: 33vh;
		object-fit: cover;
		display: block;
	}
	.content .quoteBox:nth-of-type(even),
	.content .quoteBox:nth-of-type(odd) {
		flex-flow: nowrap column-reverse;
	}
	.content .quoteBox .singleBox {
		width: 100%;
		padding: 12px;
		display: block;
	}
	.content .quoteBox .singleBox img.founderImage {
		position: relative;
		height: 100vw;
	}
	.content .quoteBox .singleBox .cvButtonFounders {
		display: none;
	}
	.content .quoteBox .singleBox:nth-of-type(1) .map {
		height: 66.66vh;
	}
	.content .contentBox {
		width: 100%;
		font-size: 21px;
		line-height: 24px;
	}
	.content #map-world {
		width: 100%;
		height: 50vh;
	}
	footer .row:nth-child(1) {
		flex-flow: nowrap column-reverse;
		height: 80vh;
	}
	footer .row:nth-child(1)>div {
		width: 100%;
		font-size: 32px;
		flex: 1 1 100%;
	}
	footer .row:nth-child(1)>div img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	footer .row:nth-child(2) {
		padding: 40px 0;
		color: white;
		flex-flow: nowrap column;
	}
	footer .row:nth-child(2)>div {
		width: 100%;
	}
	footer .row:nth-child(2)>div:nth-child(2) {
		display: none;
	}
}