@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Prata&display=swap');
@import url('https://fonts.googleapis.com/css?family=Fanwood+Text:400i&display=swap');

body, html {
	font-family: "Lato";
	font-weight: 400;
	font-size: 18px;
	color:#454545;
	line-height: 1.56;
	-webkit-text-size-adjust: 100%;
}

body, body * {
	box-sizing: border-box;
	border: none;
	margin: 0;
	padding: 0;
	outline: none;
	color: inherit;
	text-decoration: none;
	
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

a {
	transition: color 0.3s, border-color 0.3s, background 0.3s;
}

div, ul, li, img, a, label {
	display: block;
}

strong {
	font-weight: 700;
}

h1, h2, h3, h4, h5, h6, h7, h8, h9 {
	font-weight: 400;
	font-family: 'Prata';
	color: #034578;
}

.w {
	max-width: 1360px;
	padding: 0 80px;
	margin: auto;
	position: relative;
	width: 100vw;
}

.w .innerW {
	position: relative;
}

.icf:after {
	content: " ";
	display: block;
	clear: both;
}

section.hero {
	background: #C8DBEE;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

section.hero .vLine {
	display: block;
	width: 1px;
	position: absolute;
	top: 0;
	height: 0%;
	left: 50%;
	transform: translateX(-50%);
	background: #FFF;
	opacity: 0.2;
}

section.hero .logoWrapper {
	position: absolute;
	top: 45px;
	left: 0;
	right: 0;
	z-index: 10;
}

section.hero .logoWrapper a {
	display: inline-block;
	opacity: 0;
}

section.hero .logoWrapper a img {
	width: 280px;
	height: auto;
}

section.hero .logoWrapper .AC {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: auto;
	opacity: 0;
}

section.hero .centeredContents {
	padding: 160px 0;
	position: relative;
}

section.hero .centeredContents .ACbg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	height: 130%;
	pointer-events: none;
	opacity: 0;
}

section.hero .centeredContents .line.top,
section.hero .centeredContents .line.bottom {
	position: absolute;
	left: 0;
	width: 0%;
	height: 1px;
	background: #FFF;
	opacity: 0.2;
}

section.hero .centeredContents .line.top {
	top: 0;
}

section.hero .centeredContents .line.bottom {
	bottom: 0;
}

section.hero .centeredContents.absolute {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}

section.hero .centeredContents .innerWrapper {
	background: #C8DBEE;
	padding: 20px 0;
	position: relative;
}

section.hero .centeredContents .left,
section.hero .centeredContents .right {
	width: 50%;
	float: left;
}

section.hero .centeredContents .left h1 {
	color: #E84250;
	font-size: 100px;
	line-height: 0.65;
	padding-top: 32px;
}

section.hero .centeredContents .left h1 span.word {
	display: block;
	position: relative;
	padding-top: 20px;
}

section.hero .centeredContents .left h1 span.word:nth-child(1) {
	margin-bottom: 46px;
}

section.hero .centeredContents .left h1 label {
	opacity: 0;
}

section.hero .centeredContents .left h1 span .line {
	display: block;
	height: 1px;
	position: absolute;
	left: -25vw;
	width: 0vw;
	background: #FFF;
	opacity: 0.2;
	bottom: 0;
}

section.hero .centeredContents .left p {
	padding: 45px 100px 10px 100px;
	color: #FFF;
	font-size: 16px;
	line-height: 1.63;
	opacity: 0;
	font-weight: bold;
}

section.hero .centeredContents .right {
	padding-left: 10px;
}

section.hero .centeredContents .right .videoContainer {
	padding-bottom: 56.25%;
	position: relative;
	background: #C8DBEE;
	overflow: hidden;
	cursor: pointer;
	opacity: 0;
}

section.hero .centeredContents .right .videoContainer iframe {
	position: absolute;
	top: -80px;
	left: 0;
	right: 0;
	bottom: -80px;
	width: 100%;
	height: calc(100% + 160px);
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.3s;
}

section.hero .centeredContents .right .videoContainer:hover iframe,
section.hero .centeredContents .right .videoContainer.hover iframe{
	opacity: 1;
}

section.hero .centeredContents .right .ctas .view {
	padding-top: 15px;
	cursor: pointer;
	float: left;
	opacity: 0;
}

section.hero .centeredContents .right .ctas .view .ico {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: rgba(0,67,117,0.2);
	transition: all 0.2s;
	overflow: hidden;
}

section.hero .centeredContents .right .ctas .view:hover .ico,
section.hero .centeredContents .right .ctas .view.hover .ico {
	background: rgba(0,67,117,0.4);
}

section.hero .centeredContents .right .ctas .view .ico span.outer {
	display: block;
	width: 80px;
	height: 40px;
	transform: translateX(-50%);
	transition: all 0.2s;
} 

section.hero .centeredContents .right .ctas .view:hover .ico span.outer,
section.hero .centeredContents .right .ctas .view.hover .ico span.outer{
	transform: translateX(0%);
}

section.hero .centeredContents .right .ctas .view .ico span.outer span {
	display: block;
	width: 40px;
	height: 40px;
	background-image: url(../images/play.svg);
	background-size: 10px auto;
	background-position: center center;
	background-repeat: no-repeat;
	float: left;
}

section.hero .centeredContents .right .ctas .view span.label {
	font-size: 9px;
	letter-spacing: 2.67px;
	font-weight: bold;
	font-family: 'Prata';
	text-transform: uppercase;
	color: #004375;
}

section.hero .centeredContents .right .ctas .socials {
	float: right;
	font-size: 0;
	letter-spacing: 0;
	line-height: 1;
	padding-top: 21px;
}

section.hero .centeredContents .right .ctas .socials a {
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: rgba(0,67,117,0.2);
	margin-left: 10px;
	position: relative;
	opacity: 0;
}

section.hero .centeredContents .right .ctas .socials a span {
	display: block;
	position: absolute;
	width: 16px;
	height: 17px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0.5;
	transition: opacity 0.3s;
}

section.hero .centeredContents .right .ctas .socials a:hover span {
	opacity: 1;
}

section.hero .centeredContents .right .ctas .socials a.facebook span {
	background-image: url(../images/facebook.svg);
}
section.hero .centeredContents .right .ctas .socials a.twitter span {
	background-image: url(../images/twitter.svg);
}
section.hero .centeredContents .right .ctas .socials a.linkedin span {
	background-image: url(../images/linkedin.svg);
}

section.hero .centeredContents .bottomContents {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding-top: 15px;
}

section.hero .centeredContents .bottomContents .cta {
	margin-left: 100px;
	float: left;
	position: relative;
	cursor: pointer;
}

section.hero .centeredContents .bottomContents .cta .circle,
section.preFooter .right .cta .circle {
	width: 130px;
	height: 130px;
	border-radius: 100%;
	background-color: #D4E5F7;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-40%,-50%) scale(0);
	opacity: 0;
}

section.hero .centeredContents .bottomContents .cta label,
section.preFooter .right .cta label {
	padding: 30px 35px 60px 0;
	font-size: 15px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #004375;
	font-weight: 600;
	font-family: 'Prata';
	line-height: 18px;
	position: relative;
	opacity: 0;
	pointer-events: none;
}

section.hero .centeredContents .bottomContents .cta .arrow,
section.preFooter .right .cta .arrow {
	position: absolute;
	bottom: 12px;
	right: 0;
	opacity: 0;
	transition: right 0.3s;
}

section.hero .centeredContents .bottomContents .cta:hover .arrow,
section.preFooter .right .cta:hover .arrow{
	right: -10px;
}

section.hero .centeredContents .bottomContents .vectors {
	position: absolute;
	right: 125px;
	top: -50px;
}

.vectors .circle {
	position: relative;
	z-index: 0;
}

.vectors .circle .inner {
	border-radius: 100%;
	overflow: hidden;
	transform: translate(-100%,-100%);
}

.vectors .circle .inner img {
	transform: translate(100%,100%);
}

.vectors .line {
	position: absolute;
	overflow: hidden;
}
.vectors .line:nth-child(2) {
	bottom: 32px;
	left: 40%;
	z-index: 1;
}

.vectors .line:nth-child(3) {
	bottom: 0;
	left: -40%;
	z-index: 1;
}

.vectors .line img {
	visibility: hidden;
}

.vectors .line .inner {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0%;
	overflow: hidden;
}

.vectors .line .inner img {
	visibility: visible;
}

/* istituto */

section.istituto {
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
}

section.istituto .circleOuter {
	width: 220px;
	height: 220px;
	border: 2px solid #FFC409;
	border-radius: 100%;
	position: absolute;
	top: -40px;
	left: -40px;
	opacity: 0;
}

section.istituto .vectorArrows {
	width: 102px;
	height: 172px;
	background-image: url(../images/vector-arrows.svg);
	background-size: contain;
	position: absolute;
	bottom: 60px;
	right: calc(50% - 20px);
}

section.istituto .circle {
	width: 140px;
	height: 140px;
	position: absolute;
	top: 30px;
	left: 60px;
	background-image: url(../images/vector-circle-yellow.svg);
	background-size: contain;
}

section.istituto .w {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}

section.istituto .leftSide {
	width: 50%;
	position: relative;
}

section.istituto .leftSide .texts {
	padding-right: 155px;
	
}

section.istituto .leftSide .texts .subtitle {
	position: relative;
	margin-bottom: 35px;
}

section.istituto .leftSide .texts .subtitle .line {
	position: absolute;
	top: 50%;
	left: 0;
	width: 70px;
	height: 1px;
	margin-top: -1px;
}

section.istituto .leftSide .texts .subtitle .line div {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0%;
	background: #FFC409;
}

section.istituto .leftSide .texts .subtitle span {
	display: block;
	padding-left: 90px;
	font-size: 14px;
	letter-spacing: 7.88px;
	line-height: 1;
	text-transform: uppercase;
	color: #FFC409;
	font-weight: 400;
	font-family: 'Prata';
	opacity: 0;
}

section.istituto .leftSide .texts h2 {
	font-size: 40px;
	line-height: 1.12;
	color: #034578;
	font-weight: 400;
	font-family: 'Prata';
}

section.istituto .leftSide .texts h2 .row {
	display: block;
	opacity: 0;
}

section.istituto .leftSide .texts p {
	padding-left: 95px;
	font-size: 16px;
	color: #454545;
	line-height: 1.75;
	padding-top: 40px;
	opacity: 0;
}

section.istituto .gallery {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
}

.gallery .items {
	overflow: hidden;
	opacity: 0;
	position: relative;
	background: #034578;
}

section.istituto .gallery .items,
.gallery .items .item {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.gallery .items .item {
	opacity: 0;
	transition: opacity 0.5s;
}

.gallery .items .item:nth-child(1) {
	transform: translate(0,0);
}

.gallery .items .item {
	transform: translateX(100%);
}

.gallery .items .item.loaded {
	opacity: 1;
}

.gallery .items .item img {
	width: 1px;
	height: auto;
	visibility: hidden;
}

section.istituto .gallery .items .item span {
	position: absolute;
	z-index: 1;
	top: 60px;
	right: 50px;
	line-height: 1;
	font-size: 60px;
	font-family: 'Fanwood Text';
}

section.istituto .gallery .navigation {
	position: absolute;
	bottom: 50px;
	left: 50px;
	z-index: 2;
}

.gallery .navigation .bullets {
	display: none;
}

.gallery .navigation .arrows {
	font-size: 0;
	letter-spacing: 0;
	line-height: 1;
}

.gallery .navigation .arrows .arrow {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #FFF;
	display: inline-block;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transform: scale(0);
	opacity: 0;
}

section.istituto .gallery .navigation .arrows .arrow {
	margin-right: 20px;
}

.gallery .navigation .arrows .arrow .outer {
	width: 200%;
	position: absolute;
	top: 0;
	bottom: 0;
	
}

.gallery .navigation .arrows .arrow:hover .outer {
	transition: all 0.3s;
}

.gallery .navigation .arrows .arrow.arrowLeft .outer {
	left: 0;
}

.gallery .navigation .arrows .arrow.arrowLeft:hover .outer {
	left: -100%;
}

.gallery .navigation .arrows .arrow.arrowRight .outer {
	right: 0;
}

.gallery .navigation .arrows .arrow.arrowRight:hover .outer {
	right: -100%;
}

.gallery .navigation .arrows .arrow .outer span {
	display: block;
	width: 50%;
	height: 100%;
	float: left;
	background-size: 12px auto;
	background-repeat: no-repeat;
	background-position: center center;
}

.gallery .navigation .arrows .arrow.arrowLeft .outer span {
	background-image: url("../images/gallery-arrow-left.svg");
	
}

.gallery .navigation .arrows .arrow.arrowRight .outer span {
	background-image: url("../images/gallery-arrow-right.svg");
}

/* bigger gallery */

section.biggerGallery {
	background: #C8DBEE;
	position: relative;
	overflow: hidden;
}

section.biggerGallery .w {
	padding-top: 55px;
	padding-bottom: 55px;
	position: relative;
	z-index: 1;
}

section.biggerGallery .gallery .navigation {
	position: absolute;
	left: -65px;
	right: -65px;
	top: 50%;
	transform: translateY(-50%);
}

section.biggerGallery .gallery .navigation .arrow.arrowRight {
	float: right;
}

section.biggerGallery .vectors {
	position: absolute;
	left: -40px;
	top: 20px;
}

/* preFooter */

section.preFooter {
	background: #004375;
	color: #FFF;
}

section.preFooter .w {
	padding-top: 65px;
	padding-bottom: 65px;
}

section.preFooter .w .left {
	width: 50%;
	font-size: 40px;
	line-height: 1.25;
	font-weight: 400;
	font-family: 'Prata';
	padding-left: 100px;
	float: left;
	padding-top: 20px;
	opacity: 0;
}

section.preFooter .w .right {
	float: right;
}

section.preFooter .right .cta {
	position: relative;
	margin-right: 100px;
}

section.preFooter .right .cta .circle {
	background-color: #185583;
}

section.preFooter .right .cta label {
	color: #FFC409;
	font-size: 22px;
	letter-spacing: 7.33px;
	line-height: 1.23;
	padding: 40px 50px 86px 0;
}

section.preFooter .right .cta .arrow {
	width: 100px;
	bottom: 30px;
}

section.preFooter .right .cta .circle {
	width: 180px;
	height: 180px;
}

/* footer */

section.footer {
	background: #002B4C;
	font-size: 14px;
	line-height: 1.15;
	color: #FFF;
	padding: 30px 0;
}

section.footer a {
	display: inline;
	transition: color 0.3s;
}

section.footer a:hover {
	color: #FFC409;
}

section.footer table {
	width: 100%;
}

section.footer table tr td {
	vertical-align: top;
	line-height: 1.28;
}

section.footer table tr td:last-child {
	text-align: right;
	white-space: nowrap;
}

section.footer table a:nth-child(1) svg {
	margin-right: 20px;
}

section.footer table a svg path {
	fill: #FFF;
	transition: fill 0.3s;
}

section.footer table a svg {
	width: 30px;
}

section.footer table a:hover svg path {
	fill: #FFC409;
}

/* videoOverlay */

section.videoOverlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	
	opacity: 0;
	z-index: -2000;
	visibility: hidden;
	pointer-events: none;
}

section.videoOverlay .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(200,219,238,0.95);
}

section.videoOverlay .w {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%,-50%);
	
}

section.videoOverlay .w .innerW {
	width: 100%;
	height: 100vh;
	max-height: calc(100vh - 200px);
}

section.videoOverlay .w .innerW .close {
	position: absolute;
	right: 0;
	top: -15px;
	transform: translateY(-100%);
	cursor: pointer;
}
section.videoOverlay .w .innerW .close svg {
	width: 50px;
	height: 50px;
	display: block;
}

section.videoOverlay .w .innerW .close svg path {
	fill:none;
	stroke:#E84250;
	stroke-width:2;
	transition: all 0.3s;
}

section.videoOverlay .w .innerW .close:hover svg path {
	fill:none;
	stroke:#FFC409;
	stroke-width:2;
}

section.videoOverlay .w .videoContainer {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 361px;
	transform: translate(-50%, -50%);
	height: 203px;
}

section.videoOverlay .w .videoContainer iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media all and (max-width: 1359px) {
	
	section.hero .centeredContents .left h1 {
		font-size: 80px;
	}
	
	section.hero .centeredContents .left h1 span.word:nth-child(1) {
		margin-bottom: 30px;
	}
	
	section.hero .centeredContents .left p {
		padding: 40px;
		font-size: 14px;
	}
	
	section.hero .centeredContents {
		padding: 120px 0;
	}
	
	section.hero .centeredContents .bottomContents .cta .circle {
		width: 110px;
		height: 110px;
	}
	
	section.hero .centeredContents .bottomContents .cta label {
		padding: 25px 35px 50px 0;
	}
	
	section.hero .centeredContents .bottomContents .vectors {
		top: -30px;
	}
	
	.vectors .circle .inner img {
		height: 140px;
	}
	
	section.istituto .leftSide .texts {
		padding-right: 100px;
	}
	
	section.istituto .leftSide .texts .subtitle {
		margin-bottom: 25px;
	}
	
	section.istituto .leftSide .texts h2 {
		font-size: 38px;
	}
	
	section.istituto .leftSide .texts p {
		padding-left: 40px;
	}
	
	section.istituto .circleOuter {
		width: 160px;
		height: 160px;
		left: -90px;
	}
	
	section.istituto .circle {
		width: 100px;
		height: 100px;
		left: 0;
		top: -30px;
	}
	
	section.istituto .vectorArrows {
		width: 80px;
		height: 150px;
	}
	
	section.istituto .gallery .navigation {
		bottom: 30px;
		left: 30px;
	}
	
	section.preFooter .w .left {
		padding-left: 40px;
		font-size: 30px;
	}
	
	section.preFooter .right .cta {
		margin-right: 40px;
	}
	
	section.preFooter .right .cta .circle {
		width: 160px;
		height: 160px;
	}
	
	section.preFooter .right .cta label {
		font-size: 18px;
		padding: 40px 50px 75px 0;
	}
	
	section.preFooter .right .cta .arrow {
		bottom: 15px;
	}
	
	section.footer {
		font-size: 12px;
	}
	
	section.videoOverlay .w .innerW .close svg {
		width: 30px;
		height: 30px;
	}
}

@media all and (max-width: 1023px) {
	
	.w {
		padding: 0 70px;
	}
	
	section.hero .logoWrapper {
		top: 55px;
	}
	
	section.hero .centeredContents .ACbg {
		height: 50%;
		top: 20%;
	}
	
	section.hero .logoWrapper a img {
		width: 240px;
	}
	
	section.hero .logoWrapper .AC {
		height: auto;
		width: 160px;
	}
	
	section.hero .centeredContents .innerWrapper {
		margin-top: -30px;
	}
	
	section.hero .centeredContents {
		padding: 150px 0;
	}
	
	section.hero .centeredContents .left, section.hero .centeredContents .right {
		width: auto;
		float: none;
	}
	
	section.hero .centeredContents .left {
		padding-top: 0!important;
		padding-bottom: 0!important;
	}
	
	section.hero .centeredContents .left h1 {
		padding-top: 20px;
		font-size: 70px;
	}
	
	section.hero .centeredContents .left p {
		padding-left: 75px;
	}
	
	section.hero .centeredContents .right {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 0!important;
		padding-bottom: 0!important;
	}
	
	section.hero .centeredContents .right .videoContainer iframe {
		opacity: 1;
	}
	
	section.hero .centeredContents .right .ctas .view span.label {
		font-size: 8px;
		display: block;
		margin-top: 8px;
	}
	
	section.hero .centeredContents .bottomContents .cta .circle {
		width: 105px;
		height: 105px;
	}
	
	section.hero .centeredContents .bottomContents .cta label {
		font-size: 16px;
		line-height: 24px;
		padding-right: 25px;
	}
	
	section.hero .centeredContents .bottomContents .cta .arrow {
		bottom: 24px;
		width: 55px;
	}
	
	section.hero .centeredContents .bottomContents .vectors {
		right: 20px;
	}
	
	.vectors .line img {
		width: 270px;
	}
	
	.vectors .line:nth-child(2) {
		bottom: 20px;
	}
	
	section.istituto {
		padding-bottom: 0;
	}
	
	section.istituto .circleOuter {
		width: 210px;
		height: 210px;
		left: -100px;
		top: -170px;
	}
	
	section.istituto .circle {
		width: 140px;
		height: 140px;
		top: 0;
		left: -5px;
	}
	
	section.istituto .vectorArrows {
		width: 100px;
		height: 170px;
		bottom: auto;
   		top: 30%;
    	right: 30px;
	}
	
	section.istituto .w {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: auto;
	}
	
	section.istituto .leftSide {
		width: auto;
		padding: 110px 80px;
	}
	
	section.istituto .leftSide .texts {
		padding-right: 0;
	}
	
	section.istituto .leftSide .texts h2 {
		font-size: 40px;
	}
	
	section.istituto .leftSide .texts p {
		padding-top: 35px;
		padding-left: 80px;
		padding-right: 30px;
	}
	
	section.istituto .gallery {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		width: auto;
	}
	
	section.istituto .gallery .items {
		padding-bottom: 113%;
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		background: #034578;
	}
	
	.gallery .navigation .arrows {
		display: none;
	}
	
	.gallery .navigation .bullets {
		display: block;
		text-align: center;
		padding: 45px 0;
		line-height: 1;
	}
	
	.gallery .navigation .bullets .bullet {
		display: inline-block;
		margin: 0 8px;
		width: 12px;
		height: 12px;
		border-radius: 100%;
		background: #004375;
		opacity: 0.15;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	
	.gallery .navigation .bullets .bullet:hover,
	.gallery .navigation .bullets .bullet.current {
		opacity: 1;
	}
	
	.gallery .navigation,
	section.istituto .gallery .navigation {
		position: relative;
		left: auto;
		top: auto;
		bottom: auto;
		right: auto;
	}
	
	section.biggerGallery {
		padding-bottom: 110px;
	}
	
	section.biggerGallery .w {
		padding-top: 35px;
		padding-bottom: 35px;
		padding-left: 20px;
		padding-right: 20px;
	}
	
	section.biggerGallery .gallery .navigation {
		left: -30px;
		right: -30px;
		top: 100%;
		transform: none;
		margin-top: 35px;
		background: #FFF;
	}
	
	section.preFooter .w .left {
		width: 100%;
		float: none;
		padding-left: 80px;
		font-size: 40px;
		line-height: 1.13;
	}
	
	section.preFooter .w .right {
		float: left;
		margin-left: 135px;
		margin-top: 30px;
	}
	
	section.preFooter .right .cta {
		margin-right: 0;
	}
	
	section.preFooter .right .cta .circle {
		width: 135px;
		height: 135px;
	}
	
	section.preFooter .right .cta label {
		font-size: 16px;
		padding: 30px 30px 65px 0;
	}
	
	section.preFooter .right .cta .arrow {
		width: 70px;
		bottom: 25px;
	}
	
	section.footer {
		padding: 40px 0;
		font-size: 14px;
	}
	
	section.footer table {
		overflow: hidden;
	}
	
	section.footer table,
	section.footer table tbody,
	section.footer table tr,
	section.footer table td {
		display: block;
	}
	
	section.footer table td {
		float: left;
	}
	
	section.footer table td:nth-child(1) {
		width: 100%;
		padding-bottom: 30px;
	}
	
	section.footer table td:nth-child(2) {
		width: 47%;
	}
	
	section.footer table td:nth-child(3) {
		width: 37%;
	}
	
	section.footer table td:last-child {
		width: 16%;
	}
	
	section.footer table td:last-child a:nth-child(1) svg {
		margin-right: 10px;
	}
	
}

@media all and (max-width: 767px) {
	
	.w {
		padding: 0 28px;
	}
	
	section.hero .logoWrapper {
		top: 40px;
	}
	
	section.hero .logoWrapper a img {
		width: 136px;
	}
	
	section.hero .logoWrapper .AC {
		width: 114px;
	}
	
	section.hero .centeredContents {
		padding: 145px 0;
	}
	
	section.hero .centeredContents .left h1 {
		font-size: 50px;
		padding-top: 0;
	}
	
	section.hero .centeredContents .left h1 span.word:nth-child(1) {
		margin-bottom: 15px;
	}
	
	section.hero .centeredContents .left p {
		padding-left: 30px;
		padding-top: 35px;
		padding-right: 5px;
		padding-bottom: 25px;
	}
	
	section.hero .centeredContents .left p br {
		display: none;
	}
	
	section.hero .centeredContents .right {
		padding-left: 0;
		padding-right: 0;
	}
	
	section.hero .centeredContents .bottomContents .cta .circle {
		width: 95px;
		height: 95px;
	}
	
	section.hero .centeredContents .bottomContents .cta {
		margin-left: 0;
	}
	
	section.hero .centeredContents .bottomContents .cta label {
		font-size: 14px;
		line-height: 22px;
		padding-right: 30px;
		letter-spacing: 4px;
		padding-left: 40px;
	}
	
	section.hero .centeredContents .bottomContents .cta .circle {
		left: 38px;
	}
	
	section.hero .centeredContents .right .ctas .view .ico {
		width: 25px;
		height: 25px;
	}
	
	section.hero .centeredContents .right .ctas .view .ico span.outer {
		width: 50px;
		height: 25px;
	}
	
	section.hero .centeredContents .right .ctas .view .ico span.outer span {
		width: 25px;
		height: 25px;
		background-size: 6px auto;
	}
	
	section.hero .centeredContents .right .ctas .view span.label {
		font-size: 9px;
		letter-spacing: 3px;
	}
	
	section.hero .centeredContents .right .ctas .view,
	section.hero .centeredContents .right .ctas .socials {
		padding-top: 8px;
	}
	
	section.hero .centeredContents .right .ctas .socials a {
		width: 25px;
		height: 25px;
		margin-left: 8px;
	}
	
	section.hero .centeredContents .right .ctas .socials a span {
		width: 12px;
		height: 12px;
	}
	
	.vectors .line img {
		width: 220px;
	}
	
	.vectors .circle .inner img {
		height: 118px;
	}
	
	section.hero .centeredContents .bottomContents .vectors {
		right: -80px;
	}
	
	section.istituto .circleOuter {
		width: 180px;
		height: 180px;
		top: -170px;
	}
	
	section.istituto .leftSide {
		padding: 160px 0 160px 40px;
	}
	
	section.istituto .circle {
		width: 110px;
		height: 110px;
		top: -5px;
		left: -5px;
	}
	
	section.istituto .leftSide .texts .subtitle .line {
		width: 40px;
	}
	
	section.istituto .leftSide .texts .subtitle span {
		padding-left: 50px;
	}
	
	section.istituto .leftSide .texts p {
		padding-top: 10px;
		padding-left: 0;
		padding-right: 0;
	}
	
	section.istituto .vectorArrows {
		width: 100px;
		height: 150px;
		bottom: auto;
		top: 42%;
		right: 30px;
	}
	
	section.istituto .gallery .items {
		padding-bottom: 190%;
	}
	
	.gallery .navigation .bullets {
		padding: 25px 0;
	}
	
	.gallery .navigation .bullets .bullet {
    	margin: 0 6px;
    	width: 9px;
		height: 9px;
	}
	
	section.biggerGallery .w {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	
	section.biggerGallery .gallery .navigation {
		margin-top: 15px;
	}
	
	section.biggerGallery {
		padding-bottom: 68px;
	}
	
	section.preFooter .w .left {
		padding-top: 0;
		padding-left: 10px;
	}
	
	section.preFooter .w .left br {
		display: none;
	}
	section.preFooter .mobilebr {
		display: block;
	}
	
	section.preFooter .w .right {
		margin-left: 65px;
		margin-top: 50px;
	}
	
	section.footer table td:nth-child(2) {
		padding-bottom: 30px;
	}
	
	section.footer table td:nth-child(2),
	section.footer table td:nth-child(3) {
		width: 100%;
	}
	
	section.footer table td:nth-child(4) {
		position: absolute;
		top: 60px;
		right: 0;
		width: auto;
	}
	
	section.footer table td .mobilebr {
		display: block;
		height: 0px;
		visibility: hidden;
	}
	
	section.videoOverlay .w .innerW .close svg {
		width: 20px;
		height: 20px;
	}
}