<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Lora:400i');
@import url('https://fonts.googleapis.com/css?family=Encode+Sans+Semi+Condensed:200,300,400,500');

/* CSS Document */
/*------------------------------------------------------
CSS Created:	14/10/2019
CSS Author:		Alessandro Avallone
---------------------------------------------* GENERAL */

:root {
	--color-blue-light: #11a8ce;
	--color-blue-dark: #222f5c;
}

html, body {
	padding:0;
	margin:0;
	font-family: 'Encode Sans Semi Condensed', sans-serif;
	font-weight: 300;
	font-style: normal;
	background-color: #f7f7f7;
}

body.menu-visible {
	overflow: hidden;
}

a {
	text-decoration:none;
}

svg {
	fill: currentColor;
}

button:focus {
	outline:0;
}

div {
	box-sizing: border-box;
}

img {
	display: block;
	box-sizing: border-box;
}

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

.desktop {
	display:none;
}

.mobile {
	display:none;
}

.wrapper {
	margin: 0 auto;
	position: relative;
}

/*---------------------------------------------------------------------- */
/*---------------------------------------------* HEADER                  */
/*---------------------------------------------------------------------- */

header {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    z-index: 100;
}

header #mainNav {
    width: 100%;
    height: 100px;
    background-color: var(--color-blue-light);
    box-shadow: 0px 5px 0px 0px rgba(0,0,0,0.1);
    z-index: 90;
    position: fixed;
    left: 0;
    top: 0;
}

header #mainNav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

header #mainNav ul li,
header #mainNav ul li a {
	color: white;
}

header #mainNav &gt; ul {
	width: 100%;
	height: inherit;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
    flex-direction: row;
    align-items: stretch;
}

header #mainNav &gt; ul &gt; li {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Lora', serif;
	font-style: italic;
	position: relative;
	cursor: pointer;
	box-sizing: border-box;
}

header #mainNav &gt; ul &gt; li.active::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 5px;
	background-color: rgba(0,0,0,0.2);
	top: 0;
	left: 0;
	z-index: 10;
}

header #mainNav &gt; ul &gt; li:last-of-type {
	border: none;
}

header #mainNav &gt; ul &gt; li.subnav {
	background-image: url(../images/template/hamburger.png);
	background-position: top 10px right 10px;
	background-repeat: no-repeat;
	background-size: 20px;
	/* */
	transition: all 0.25s linear;
}

header #mainNav &gt; ul &gt; li.subnav:hover {
    background-color: var(--color-blue-dark);	
}

header #mainNav &gt; ul &gt; li.subnav &gt; ul {
	opacity: 0;
	visibility: hidden;
    background-color: var(--color-blue-dark);
	box-shadow: 0px 5px 0px 0px rgba(0,0,0,0.1);
	box-sizing: border-box;
    position: absolute;
	z-index: 100;
    top: 100px;
    left: 0;
	/* */
	transition: all 0.25s ease-in;
}

header #mainNav &gt; ul &gt; li.subnav:hover &gt; ul {
	opacity: 1;
	visibility: visible;

}

header #mainNav &gt; ul &gt; li.subnav &gt; ul &gt; li {
	font-weight: 300;
	font-family: 'Encode Sans Semi Condensed', sans-serif;
	font-style: normal;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.20);
}

header #mainNav &gt; ul &gt; li.subnav &gt; ul &gt; li:last-of-type {
	margin-bottom: 0;
}

header #secondRow {
    width: 100%;
    position: fixed;
    z-index: 80;
    top: 100px;
}

header #secondRow.hidden {
	height: 30px;
	transition: all 0.5s cubic-bezier(1,0,0,1);
}

header #secondRow #logo {
	position: absolute;
	z-index: 10;
	left: 50%;
	top: 50%;
	opacity: 1;	
	visibility: visible;	
	transform: translate(-50%, -50%) scale(1);
	transition: all 0.5s cubic-bezier(1,0,0,1);
}

header #secondRow.hidden #logo {
	transform: translate(-50%, -50%) scale(0.5);
	opacity: 0;
	visibility: hidden;	
}

header #secondRow #languages {
	position: absolute;
	z-index: 10;
	right: 40px;
	top: 40px;
	font-weight: 500;
	font-size: 14px;	
}

header #secondRow #languages a {
	color: var(--color-blue-light);
}

/*---------------------------------------------------------------------- */
/*---------------------------------------------* CONTENT                 */
/*---------------------------------------------------------------------- */

#content {
	opacity: 1;
}

#content input[type="email"],
#content input[type="password"],
#content input[type="text"] {
	font-family: 'Encode Sans Semi Condensed', sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	background-color: #f7f7f7;
	padding: 20px;
	border: none;
	border-bottom: 1px solid rgba(0,0,0,0.10);
	width: 100%;
}

#content input[type="checkbox"] {
	width: 15px;
	height: 15px;
	border: 1px solid rgba(0,0,0,0.10);
}

#content .hidden {
	display: none;
}

#content.subnav {
	opacity: 0.2;
}

#content .readMore {
	background-color: var(--color-blue-light);
    display: block;
    border-radius: 200px;
    padding: 20px;
    width: 160px;
    text-align: center;
    font-size: 14px;
    border: none;
    color: white;
	font-family: 'Encode Sans Semi Condensed', sans-serif;
	font-weight:500;
	cursor: pointer;
	opacity: 1;
	visibility: visible;
	transition: all 0.25s ease-out;
}

#content .readMore.not-visible {
	opacity: 0;
	visibility: hidden;
}

#content .contentWrapper {
	margin: 0 auto;
}

#content .contentRow {
	background-color: white;
	padding: var(--padding-box) 0;	
}

#content h2.sectionTitle {
	font-weight: 200;
	color: var(--color--blue-dark);
	margin: 10px;
	position: relative;
	display: block;
}

#content h2.sectionTitle::first-letter {
	text-transform: uppercase;
}

#content h2.sectionTitle a {
	color: #11a8ce;
}

#content h2.sectionTitle::before {
	content: "";
	height: 3px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--color-blue-dark);
}

#content h3 {
	font-weight: 500;
	margin-top: 0;
}

#content h3::first-letter {
	text-transform: uppercase;
}

#content h3 a {
	color: var(--color-blue-light);
}


/*---------------------------------------------------------------------- */
/*---------------------------------------------* CONTENT &gt; GRID BOX      */
/*---------------------------------------------------------------------- */

#content .gridBox {
	display: flex;
	flex-flow: row wrap;
}

#content .gridBox .intro p {
	overflow: hidden;
}

#content .gridBox .intro p.overflow.plain {
	height: auto;
}

#content .gridBox .intro a,
#content .gridBox .intro .more {
	color: var(--color-blue-light);
	font-weight: 500;
	cursor: pointer;
}

#content .gridBox .intro p:last-of-type {
	margin-bottom: 0;
}

#content .gridBox .col {
	position: relative;
}

#content .gridBox .col .intro {
	padding: var(--padding-box);
}

/*---------------------------------------------------------------------- */
/*----------------------------------------* CONTENT &gt; GRID BOX FOCUS     */
/*---------------------------------------------------------------------- */

#content .gridBox.gridBoxFocus {
	display: flex;
}

#content .contentRow:nth-of-type(odd) .gridBox.gridBoxFocus {
	flex-flow: row-reverse wrap;
}

#content .contentRow:nth-of-type(even) .gridBox.gridBoxFocus {
	flex-flow: row wrap;
}

#content .gridBox.gridBoxFocus .col {
	padding: 0 calc(var(--padding-box) / 2);
}	

#content .gridBox.gridBoxFocus .col img {
	width: 100%;
    height: 100%;
    object-fit: cover;
	transition: all 0.5s ease-in;
}

#content .gridBox.gridBoxFocus .col .intro {
	border: 1px solid rgba(0,0,0,0.10);
	height: 100%;
}

#content .gridBox.gridBoxFocus .col .map {
	width: 100%;
	height: 100%;
}

/*---------------------------------------------------------------------- */
/*----------------------------------------* CONTENT &gt; GRID BOX ICONS     */
/*---------------------------------------------------------------------- */

#content .gridBox.gridBoxIcons img {
	display: block;
	width: 100%;
	height: 100%;
	padding: 33.33%;
	position: relative;
	background-color: var(--color-blue-dark);
}

#content .gridBox.gridBoxIcons .col:nth-of-type(1)::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.40);	
}

#content .gridBox .col:nth-of-type(3) .gridBoxIcons,
#content .gridBox .col:nth-of-type(4) .gridBoxIcons{
	flex-flow: row-reverse wrap;
}

/*---------------------------------------------------------------------- */
/*----------------------------------------* CONTENT &gt; GRID BOX SERVICES  */
/*---------------------------------------------------------------------- */

#content .gridBox.gridBoxServices .col .copy {
	margin: 0 20px;
	height: calc(100% - (var(--padding-box) * 2));
}

#content .gridBox.gridBoxServices .col .icon {
	height: calc(var(--padding-box) * 2);
	background-image: url(../images/template/services.png);
	background-size: calc(var(--padding-box) * 2) auto;
	background-repeat: no-repeat;
}

#content .gridBox.gridBoxServices .col:nth-of-type(1) .icon {
	background-position: center top 0;
}

#content .gridBox.gridBoxServices .col {
	margin-bottom: var(--padding-box);
}

#content .gridBox.gridBoxServices .col:nth-of-type(2) .icon {
	background-position: center top calc(var(--padding-box) * -2);
}

#content .gridBox.gridBoxServices .col:nth-of-type(3) .icon {
	background-position: center top calc(var(--padding-box) * -4);
}

#content .gridBox.gridBoxServices .col:nth-of-type(4) .icon {
	background-position: center top calc(var(--padding-box) * -6);
}

#content .gridBox.gridBoxServices .col:nth-of-type(5) .icon {
	background-position: center top calc(var(--padding-box) * -8);
}

#content .gridBox.gridBoxServices .col:nth-of-type(6) .icon {
	background-position: center top calc(var(--padding-box) * -10);
}

/*---------------------------------------------------------------------- */
/*------------------------------------* CONTENT &gt; GRID BOX SHAREHOLDERS  */
/*---------------------------------------------------------------------- */

#content .gridBox.gridBoxShareholders .col img {
	width: 100%;
	padding: 40px;
	border: 1px solid rgba(0,0,0,0.1);
}

#content .gridBox.gridBoxShareholders .col {
	position: relative;
	padding: var(--padding-box);
}

/*---------------------------------------------------------------------- */
/*------------------------------------* CONTENT &gt; COPY BOX               */
/*---------------------------------------------------------------------- */

#content .copyBox {
	margin: 0 auto;
}

#content .copyBox a {
	color: var(--color-blue-light);
	font-weight: 500;
}

#content table {
	width: 100%;
}

#content table tr:nth-of-type(even) {
	background-color: rgba(0,0,0,0.05);
}

#content .copyBox table tr td {
	width: 50%;
	padding: 20px;
	border-top: 1px solid rgba(0,0,0,0.2);
}

#content .copyBox table tr:last-of-type td {
	border-bottom: 1px solid rgba(0,0,0,0.2);
}

#content .copyBox table.filters tr td {
	width: 33.33%;
	padding: 20px;
	border: 1px solid rgba(0,0,0,0.2);
}

#content .copyBox.project .logos {
	margin: 60px 0;	
}

#content .copyBox.project .logos img {
	
	display: inline-block;
	margin-right: 20px;
	height: 100px;
	box-sizing: border-box;
	padding: 20px;
	border: 1px solid rgba(0,0,0,0.1);
	
}


/*---------------------------------------------------------------------- */
/*---------------------------------------------* CONTENT &gt; HOME SLIDER   */
/*---------------------------------------------------------------------- */

#content #homeSlider {
	display: flex;
	flex-flow: row wrap;
    align-items: stretch;	
} 

#content #homeSlider a {
	color: white;
}

#content #homeSlider .slideBox {
	flex: 1;
	overflow: hidden;
	position: relative;
} 

#content #homeSlider .slideBox h3 {
	display: block;
	font-weight: 300;
	text-transform: uppercase;
	font-size: 18px;
	margin: 0;
	position: absolute;
	z-index: 10;
} 

#content #homeSlider .slideBox#slideBoxCopy {
	background-color: var(--color-blue-dark);
	color: white;
}

#content #homeSlider .slideBox#slideBoxCopy div h2 {	
	font-family: 'Lora', serif;
	font-style: italic;
	font-weight: normal;
	margin: 0;
}

#content #homeSlider .slideBox#slideBoxImage {
	position: relative;
}

#content #homeSlider .slideBox#slideBoxImage img {
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#content #homeSlider .slideBox#slideBoxImage::after {
	content: "";
	position: absolute;
	left: 40px;
	right: 40px;	
	top: 40px;
	bottom: 40px;
	background-color: transparent;
	border: 1px solid rgba(255,255,255,0.40);
}

#content #homeSlider .slideBox .slideWrapper {
	transition: all 0.5s cubic-bezier(1,0,0,1);
}

#content #homeSlider .slideBox#slideBoxCopy .slideWrapper .readMore {
    position: absolute;
    z-index: 10;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

#content #homeSlider .slideBox#slideBoxImage .slideWrapper {
	transition-delay: 0.10s;
}

#content #homeSlider .slideBox .slideWrapper.count-0 {
	margin-top: 0;
}

#content #homeSlider .slideBox .slideWrapper.count-1 {
	margin-top: calc(var(--slider-height) * -1);
}

#content #homeSlider .slideBox .slideWrapper.count-2 {
	margin-top: calc(var(--slider-height) * -2);
}

#content #homeSlider .slideBox,
#content #homeSlider .slideBox .slideWrapper div {
	height: var(--slider-height);
}

#content #homeSlider .slideBox .slideWrapper div {
	display: flex;
	align-items: center;
	position: relative;	
}

/*---------------------------------------------------------------------- */
/*---------------------------------------* CONTENT &gt; SLIDER CONTROLLER   */
/*---------------------------------------------------------------------- */

#content #sliderController {
	width: 120px;
	border-radius: 200px;
	background-color: var(--color-blue-light);
	text-align: center;
	margin: 40px auto;
    box-sizing: border-box;
    padding: 10px;	
}

#content #sliderController .sliderButton {
	width: 15px;
	height: 15px;
	border-radius: 200px;
	background-color: white;
	border: 2px solid white;
	display: inline-block;
	margin: 0 5px;
	cursor: pointer;
}

#content #sliderController .sliderButton.active {
	background-color: transparent;
	transition: all 0.5s linear;
}

/*---------------------------------------------------------------------- */
/*---------------------------------------* FOOTER                        */
/*---------------------------------------------------------------------- */

footer h1 {	
	margin: 0 0 40px 0;
	text-align: center;
	font-size: 36px;
	font-family: 'Lora', serif;
	font-style: italic;
	font-weight: normal;
}

footer .info {
	display: flex;
	padding: 0 40px;
    margin: 0 0 40px 0;	
}

footer .info div {
	flex: 1;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
}

footer .info div img {
    display: inline-block;
    margin-right: 20px;
    height: 100px;
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.1);
}

footer .bar {
	height: 120px;
	padding: 60px 0;
	position: relative;
	background-color: var(--color-blue-dark);
	background-image: url(../images/template/circles.png);
	background-repeat: no-repeat;
	background-position: 20% center;
	background-size: 400px auto;
	text-align: center;
	font-size: 12px;
}

footer .bar a.credits {
	font-size: 12px;
	color: white;
	opacity: 0.6;
} 

footer .bar img {
	display: block;
	position: absolute;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);	
}



/*---------------------------------------------------------------------- */
/*---------------------------------------------* MEDIA QUERY [ XLARGE ]  */
/*---------------------------------------------------------------------- */

@media screen and (min-width:1600px) {
	
	:root {
		--slider-height: 540px;
		--padding-box: 40px;
	}
	
	.desktop {
		display: block;
	}
	
	header #mainNav &gt; ul &gt; li {
    	font-size: 24px;
		border-right: 1px solid rgba(255,255,255,0.20);		
	}		
	
	header #mainNav &gt; ul &gt; li.subnav &gt; ul {
		width: 25vw;
		padding: 40px;		
	}
	
	header #mainNav &gt; ul &gt; li.subnav &gt; ul &gt; li {
		font-size: 21px;
	}
	
	header #secondRow {
		height: 200px;
		top: 100px;
	}
	
	header #secondRow #logo img {
		width: 200px;
	}
	
	#content {
		margin-top: 300px;
	}

	#content h3 {
		font-size: 24px;
		line-height: 32px;
	}
	
	#content section {
		margin-bottom: 80px;
	}
	
	#content section.not-visible {
		display: none;
	}
	
	#content .contentWrapper {
		width: 1440px;
	}
	
	#content h2.sectionTitle {
		font-size: 48px;
		padding: 0 calc((100% - 1440px) / 2);
		margin: 40px;
	}

	#content h2.sectionTitle::before {
		width: calc((100% - 1440px) / 2);
	}	
	
	#content .gridBox .col.xl-12 {
		width: 100%;
	}
	
	#content .gridBox .col.xl-8 {
		width: 66.33%;
	}	
	
	#content .gridBox .col.xl-6 {
		width: 50%;
	}
	
	#content .gridBox .col.xl-4 {
		width: 33.33%;
	}
	
	#content .gridBox .col.xl-3 {
		width: 25%;
	}	
	
	#content .gridBox .col.xl-2 {
		width: 16.66%;
	}
	
	#content .gridBox .intro p {
		font-size: 18px;
    	line-height: 30px;
	}
	
	#content .gridBox .intro p.overflow {
    	height: 150px;
	}	
	
	#content .gridBox.gridBoxServices .col:nth-child(n+1):nth-child(-n+3) .copy {
		border-bottom: 1px dotted rgba(0,0,0,1.00);
	}	
	
	#content .copyBox {
		width: 80%;
		margin: 0 auto;
		font-size: 18px;
		line-height: 30px;
	}	
	
	#content #homeSlider .slideBox h3 {
		left: 80px;
		top: 80px;
	} 
	
	#content #homeSlider .slideBox#slideBoxCopy div h2 {	
		font-size: 36px;
		line-height: 48px;
		padding: 80px;
	}
	
	footer .bar img {
		right: calc((100% - 1440px) / 2);
	}	
	
}

/*---------------------------------------------------------------------- */
/*---------------------------------------------* MEDIA QUERY [ LARGE ]   */
/*---------------------------------------------------------------------- */

@media screen and (min-width:1360px) and (max-width:1599px) {
	
	:root {
		--slider-height: 450px;
		--padding-box: 40px;		
	}
	
	.desktop {
		display: block;
	}	
	
	header #mainNav &gt; ul &gt; li {
    	font-size: 21px;
		border-right: 1px solid rgba(255,255,255,0.20);		
	}
	
	header #mainNav &gt; ul &gt; li.subnav &gt; ul {
		width: 25vw;
		padding: 40px;
	}
	
	header #mainNav &gt; ul &gt; li.subnav &gt; ul &gt; li {
		font-size: 18px;
	}

	header #secondRow {
		height: 200px;
		top: 100px;
	}
	
	header #secondRow #logo img {
		width: 200px;
	}
	
	#content {
		margin-top: 300px;
	}	
	
	#content h3 {
		font-size: 21px;
		line-height: 28px;
	}	
	
	#content p.intro {
		font-size: 16px;
		line-height: 32px;
	}
	
	#content section {
		margin-bottom: 80px;
	}
	
	#content .contentWrapper {
		width: 1200px;
	}	
	
	#content h2.sectionTitle {
		font-size: 48px;
		padding-left: calc((100% - 1200px) / 2);
		margin: 40px;
	}

	#content h2.sectionTitle::before {
		width: calc((100% - 1200px) / 2);
	}
	
	#content .gridBox .col.lg-12 {
		width: 100%;
	}
	
	#content .gridBox .col.lg-8 {
		width: 66.33%;
	}	
	
	#content .gridBox .col.lg-6 {
		width: 50%;
	}
	
	#content .gridBox .col.lg-4 {
		width: 33.33%;
	}
	
	#content .gridBox .col.lg-3 {
		width: 25%;
	}	
	
	#content .gridBox .col.lg-2 {
		width: 16.66%;
	}	

	#content .gridBox .intro p {
		font-size: 18px;
    	line-height: 30px;
	}
	
	#content .gridBox .intro p.overflow {
    	height: 210px;
	}	
	
	#content .gridBox.gridBoxServices .col:nth-child(n+1):nth-child(-n+3) .copy {
		border-bottom: 1px dotted rgba(0,0,0,1.00);
	}	
	
	#content .copyBox {
		width: 90%;
		margin: 0 auto;
		font-size: 18px;
		line-height: 30px;
	}	
	
	#content #homeSlider .slideBox h3 {
		left: 60px;
		top: 60px;
	} 
	
	#content #homeSlider .slideBox#slideBoxCopy div h2 {	
		font-size: 30px;
		line-height: 34px;
		padding: 60px;
	}
	
	footer .bar img {
		right: calc((100% - 1200px) / 2);
	}	
	
}
	
/*---------------------------------------------------------------------- */
/*---------------------------------------------* MEDIA QUERY [ MEDIUM ]  */
/*---------------------------------------------------------------------- */

@media screen and (min-width:1024px) and (max-width:1359px) {
	
	:root {
		--slider-height: 384px;
		--padding-box: 20px;		
	}
	
	.desktop {
		display: block;
	}	
	
	header #mainNav &gt; ul &gt; li {
    	font-size: 18px;
		border-right: 1px solid rgba(255,255,255,0.20);		
	}
	
	header #mainNav &gt; ul &gt; li.subnav &gt; ul {
		width: 33.33vw;
		padding: 30px;
	}
	
	header #mainNav &gt; ul &gt; li.subnav &gt; ul &gt; li {
		font-size: 16px;
	}
	
	header #secondRow {
		height: 160px;
		top: 100px;
	}
	
	header #secondRow #logo img {
		width: 160px;
	}
	
	#content {
		margin-top: 260px;
	}	
	
	#content h3 {
		font-size: 21px;
		line-height: 28px;
	}	
	
	#content p.intro {
		font-size: 16px;
		line-height: 32px;
	}
	
	#content section {
		margin-bottom: 80px;
	}
	
	#content .contentWrapper {
		width: 1024px;
	}	
	
	#content h2.sectionTitle {
    	font-size: 36px;
    	padding-left: calc((100% - 1024px) / 2);
    	margin: 20px;
	}

	#content h2.sectionTitle::before {
		width: calc((100% - 1024px) / 2);
	}
	
	#content .gridBox .col.md-12 {
		width: 100%;
	}
	
	#content .gridBox .col.md-8 {
		width: 66.33%;
	}	
	
	#content .gridBox .col.md-6 {
		width: 50%;
	}
	
	#content .gridBox .col.md-4 {
		width: 33.33%;
	}
	
	#content .gridBox .col.md-3 {
		width: 25%;
	}	
	
	#content .gridBox .col.md-2 {
		width: 16.66%;
	}	

	#content .gridBox .intro p {
		font-size: 16px;
    	line-height: 28px;
	}
	
	#content .gridBox .intro p.overflow {
    	height: 140px;
	}	
	
	#content .gridBox.gridBoxServices .col:nth-child(n+1):nth-child(-n+3) .copy {
		border-bottom: 1px dotted rgba(0,0,0,1.00);
	}
	
	#content .gridBox.gridBoxShareholders .col img {
		padding: 80px;
	}
	
	#content .copyBox {
		width: 90%;
		margin: 0 auto;
		font-size: 16px;
		line-height: 28px;
	}	
	
	#content #homeSlider .slideBox h3 {
		left: 60px;
		top: 60px;
	} 
	
	#content #homeSlider .slideBox#slideBoxCopy div h2 {	
    	font-size: 24px;
    	line-height: 32px;
    	padding: 40px;
	}
	
	footer .bar img {
		right: calc((100% - 1024px) / 2);
	}	
	
}
	
/*---------------------------------------------------------------------- */
/*---------------------------------------------* MEDIA QUERY [ SMALL ]   */
/*---------------------------------------------------------------------- */

@media screen and (min-width:320px) and (max-width:1023px) {	
	
	:root {
		--window-height: calc(var(--vh) * 100);
		--slider-height: calc(var(--window-height) - 220px);
		--padding-box: 20px;		
	}
	
	.mobile {
		display: block;
	}
	
	header #hamburgerWrapper {
		position: fixed;
		z-index: 1000;
		top: 20px;
		right: 20px;
	}
	
	header #mainNav {
    	height: 100vh;
		overflow-y: scroll;
		transform: translateX(-100vw);
		transition: all 0.5s cubic-bezier(1,0,0,1);
	}
	
	header #mainNav.visible {
		transform: translateX(0);
	}
	
	header #mainNav &gt; ul {
		display: block;
	}
	
	header #mainNav &gt; ul &gt; li {
    	font-size: 21px;
		text-align: left;
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
		box-sizing: border-box;
    	border-bottom: 1px solid rgba(255,255,255,0.20);
		height: 14.28vh;
	}
	
	header #mainNav &gt; ul &gt; li.active::after {
		width: 5px;
    	height: 100%;
	}
	
	header #mainNav &gt; ul &gt; li.subnav {
		background-size: 15px;	
		background-position: top 15px right 15px;
		background-image: url(../images/template/down.png);
		transition: none;
	}
	
	header #mainNav &gt; ul &gt; li.subnav:hover {
    	background-color: transparent;
	}	
	
	header #mainNav &gt; ul &gt; li.subnav.visible {
		height: auto;
		background-color: var(--color-blue-dark);
		background-image: url(../images/template/up.png);
	}	
	
	header #mainNav &gt; ul &gt; li.subnav.visible ul {
		display: block;
	}
	
	header #mainNav &gt; ul &gt; li.subnav &gt; ul {
		width: 100%;
    	padding: 20px 0;
    	opacity: 1;
    	visibility: visible;
		position: relative;
		display: none;
		top: 0;
		left: 0;
		box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
	}	
	
	header #mainNav &gt; ul &gt; li.subnav &gt; ul &gt; li {
		font-size: 16px;
	}
	
	header #secondRow #languages {
		left: 20px;
		right: auto;
		top: 20px;
	}
	
	header #secondRow {
		height: 100px;
		top: 0px;
		background-color: #f7f7f7;
	}
	
	header #secondRow.hidden {
    	height: 70px;
	}
	
	header #secondRow #logo img {
		width: 120px;
	}
	
	#content {
		margin-top: 100px;
	}	
	
	#content h3 {
		font-size: 18px;
		line-height: 21px;
	}	
	
	#content p.intro {
		font-size: 16px;
		line-height: 32px;
	}
	
	#content section {
		margin-bottom: 80px;
	}
	
	#content .readMore {
		margin: 0 auto;
	}
	
	#content .contentWrapper {
		width: 100%;
	}	
	
	#content h2.sectionTitle {
    	font-size: 36px;
    	padding-left: 10px;
    	margin: 20px;
	}

	#content h2.sectionTitle::before {
		width: calc((100% - 1024px) / 2);
	}
	
	#content .gridBox .col.sm-12 {
		width: 100%;
	}
	
	#content .gridBox .col.sm-8 {
		width: 66.33%;
	}	
	
	#content .gridBox .col.sm-6 {
		width: 50%;
	}
	
	#content .gridBox .col.sm-4 {
		width: 33.33%;
	}
	
	#content .gridBox .col.sm-3 {
		width: 25%;
	}	
	
	#content .gridBox .col.sm-2 {
		width: 16.66%;
	}	

	#content .gridBox .intro p {
		font-size: 16px;
    	line-height: 28px;
	}
	
	#content .gridBox .intro p.overflow {
    	height: 140px;
	}	
	
	#content .gridBox.gridBoxServices .col:nth-child(n+1):nth-child(-n+3) .copy {
		border-bottom: 1px dotted rgba(0,0,0,1.00);
	}
	
	#content .gridBox.gridBoxServices .col:nth-of-type(2) .icon {
		background-position: center top calc(var(--padding-box) * -4);
	}
	
	#content .gridBox.gridBoxServices .col:nth-of-type(3) .icon {
		background-position: center top calc(var(--padding-box) * -8);
	}
	
	#content .gridBox.gridBoxServices .col:nth-of-type(4) .icon {
		background-position: center top calc(var(--padding-box) * -12);
	}
	
	#content .gridBox.gridBoxServices .col:nth-of-type(5) .icon {
		background-position: center top calc(var(--padding-box) * -16);
	}
	
	#content .gridBox.gridBoxServices .col:nth-of-type(6) .icon {
		background-position: center top calc(var(--padding-box) * -20);
	}	
	
	#content .gridBox.gridBoxServices .col .icon {
		height: calc(var(--padding-box) * 4);
		background-size: calc(var(--padding-box) * 4) auto;
	}
	
	#content .gridBox.gridBoxIcons img {
		margin: 0 auto;
		width: 33.33vw;
		height: 33.33vw;
		padding: 40px;
	}
	
	#content .gridBox.gridBoxIcons .col:nth-of-type(1)::after {
    	width: 25vw;
    	height: 25vw;
    	left: 37.5vw;
    	right: 37.5vw;
    	top: 4.5vw;
    	bottom: 4.5vw;
	}	
	
	#content .gridBox.gridBoxShareholders .col img {
		padding: 10px;
	}
	
	#content .gridBox.gridBoxFocus .col .map {
		height: 80vw;
	}
	
	#content .copyBox {
		width: 90%;
		margin: 0 auto;
		font-size: 16px;
		line-height: 28px;
	}
	
	#content .copyBox.project .logos img {
    	display: block;
    	margin: 10px 0;
    	width: 100%;
    	height: 100px;
		object-fit: contain;
	}
	
	#content .copyBox table.filters tr td {
		font-weight: 500;
    	padding: 10px;
    	width: 100%;
    	display: block;
    	box-sizing: border-box;
		border-bottom: none;
	}
	
	#content .copyBox table.filters tr td:last-of-type {
		border-bottom: 1px solid rgba(0,0,0,0.2);
	}	
	
	#content #homeSlider {
		display: block;
	}
	
	#content #homeSlider .slideBox, 
	#content #homeSlider .slideBox .slideWrapper div {
    	transition: all 0.5s cubic-bezier(1,0,0,1);
    	height: calc(var(--slider-height)/2);
	}
	
	#content #homeSlider .slideBox h3 {
		left: 20px;
    	top: 20px;
	} 
	
	#content #homeSlider .slideBox#slideBoxCopy div h2 {	
    	font-size: 21px;
    	line-height: 21px;
    	padding: 20px;
	}
	
	#content #homeSlider .slideBox .slideWrapper.count-1 {
		margin-top: calc((var(--slider-height) * -1) / 2);
	}

	#content #homeSlider .slideBox .slideWrapper.count-2 {
		margin-top: calc((var(--slider-height) * -2) / 2);
	}
	
	#content #homeSlider .slideBox#slideBoxCopy .slideWrapper .readMore {
		border-radius: 200px;
    	padding: 10px;
    	width: 120px;
		bottom: 20px;
		background-color: transparent;
    	color: var(--color-blue-light);		
	}
	
	#content #sliderController {
    	margin: 20px auto;
    	padding: 10px;
	}
	
	footer .bar img {
		right: 20px;
	}	
	
}

</pre></body></html>