/*
	Theme Name: Armin Zadakbar
	Theme URI: https://arminzadakbar.com
	Description: Marketing
	Version: 1.4.3
	Tags: HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
	margin: 0;
	padding: 0;
	cursor: none !important;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:400 16px/1.4 'DM Sans', sans-serif;
	color:#fff;
	background-color: #000;
}

/** CURSORE ARMIN **/
#effetto-per-cursore {
    width: 100%;
    position: fixed;
    z-index: 1000;
    height: 100%;
    display: none;
    user-select: none;
    pointer-events: none;
    top: 0px;
    left: 0px;
    mix-blend-mode: difference;
}

#effetto-per-cursore .cursore-armin {
    width: 10px;
    height: 10px;
    background-color: white;
    display: block;
    position: relative;
    border-radius: 50%;
}

/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
.grecaptcha-badge {
	display: none;
}
img {
	max-width:100%;
	width: 100%;
	height: auto;
}
picture {
	display: grid;
}
.ios .parallax {
	background-attachment: scroll !important;
}
a {
	color:#fff;
	text-decoration:none;
}
a:hover {
	color:#fff;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
}
ul {
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6,p {
	padding: 0;
	margin: 0;
	font-weight: normal;
}
h1 {
	font-size: 35px;
	font-weight: 500;
}
h2 {
	font-weight: 700;
	font-size: 30px;
}
h3 {
	font-size: 20px;
	font-weight: 700;
}
strong {
	font-weight: 700;
}
b {
	font-weight: 500;
}
.divider {
	
}
.pulsante {
	
}
.pulsante:hover {
	
}
sup {
	font-size: 18px;
}
.blocco {
	position: relative;
	overflow: hidden;
	display: flex;
}
.text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100%;
	width: 100%;
	text-align: right;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-direction: column;
	padding-right: 5%;
}
.up {
	position: fixed;
	top: 95%;
	right: 2%;
	z-index: 2;
}
.up img {
	max-width: 30px;
	cursor: pointer;
}
.zoom {
	transition-duration: 2s;
	-webkit-transition-duration: 2s;
	-o-transition-duration: 2s;
	-moz-transition-duration: 2s;
	-ms-transition-duration: 2s;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
}
.zoom:hover {
	transition-duration: 4s;
	-webkit-transition-duration: 4s;
	-o-transition-duration: 4s;
	-moz-transition-duration: 4s;
	-ms-transition-duration: 4s;
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
}
.szoom {
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
}
.szoom:hover {
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transform: scale(0.9,0.9);
	-webkit-transform: scale(0.9,0.9);
	-o-transform: scale(0.9,0.9);
	-ms-transform: scale(0.9,0.9);
	-moz-transform: scale(0.9,0.9);
}

.rotation {
	transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-webkit-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	transition-duration: 0.8s;
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8;
	-o-transition-duration: 0.8s;
}
.rotation:hover {
	transform: rotateZ(360deg);
	-moz-transform: rotateZ(360deg);
	-webkit-transform: rotateZ(360deg);
	-ms-transform: rotateZ(360deg);
	-o-transform: rotateZ(360deg);
	transition-duration: 0.8s;
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8;
	-o-transition-duration: 0.8s;
}
.rotation-inverse {
	animation-name: rotation-inverse;
	-webkit-animation: rotation-inverse;
	-ms-animation-name: rotation-inverse;
	-moz-animation-name: rotation-inverse;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-duration: 6s;
	-webkit-animation-duration: 6s;
	-ms-animation-duration: 6s;
	-moz-animation-duration: 6s;
}
@keyframes rotation-inverse {
	0% {transform: rotateZ(0);}
	25% {transform: rotateZ(-90deg);}
	50% {transform: rotateZ(-180deg);}
	75% {transform: rotateZ(-270deg);}
	100% {transform: rotateZ(-360deg);}
}

.lampeggio {
	position: fixed;
	max-width: 50px;
	bottom: 2%;
	right: 2%;
	opacity: 0;
	animation-name: lampeggio;
	-webkit-animation: lampeggio;
	-ms-animation-name: lampeggio;
	-moz-animation-name: lampeggio;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-duration: 3s;
	-webkit-animation-duration: 3s;
	-ms-animation-duration: 3s;
	-moz-animation-duration: 3s;
}
@keyframes lampeggio {
	0% {opacity:0;}
	25% {opacity:0.5;}
	50% {opacity:1;}
	75% {opacity:0.5;}
	100% {opacity:0;}
}
.pulsazione {
	animation-name: pulsazione;
	-webkit-animation: pulsazione;
	-ms-animation-name: pulsazione;
	-moz-animation-name: pulsazione;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-duration: 5s;
	-webkit-animation-duration: 5s;
	-ms-animation-duration: 5s;
	-moz-animation-duration: 5s;
}
@keyframes pulsazione {
	0% {transform: scale(0.5,0.5);}
	25% {transform: scale(0.65,0.65);}
	50% {transform: scale(0.75,0.75);}
	75% {transform: scale(0.65,0.65);}
	100% {transform: scale(0.5,0.5);}
}
/* SLIDE */
.slick-dots {
	position: absolute;
    right: 0;
    bottom: 5%;
    z-index: 1;
    width: 100%;
    text-align: center;
}
.slick-dots .slick-active {
    background-color: #ff5028;
}
.slick-dots li {
    display: inline-block;
    width: 8px;
    height: 8px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 50%;
    margin: 20px 5px 0;
    border: 1px solid #ff5028;
}
.slick-dots button {
	color: transparent;
	background-color: transparent;
	display: contents;
}
.slick-prev {
	background-image: url(img/header/left-white.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	left: 5%;
	z-index: 1;
	outline: none;
}
.slick-next {
	background-image: url(img/header/right-white.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	right: 0;
	z-index: 1;
	outline: none;
}
.slick-slide,
.slick-slider {
	width: 100%;
}
/* FORM */
label {
	
}
input,
textarea {
	outline: none;
	padding: 5px;
	color: #000;
	margin-top: 20px;
	background-color: #fff;
	border: 1px solid #000;
	width: 100%;
}
input {
	height: 40px;
}
::placeholder {
	color: #000;
}
.wpcf7-form #privacy {
	height: auto;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #000;
	background-color: transparent;
	padding: 6px;
	margin-bottom: 0;
	max-width: 6px;
}
.wpcf7-form #privacy:checked {
	background-color: #000;
}
.wpcf7-form a {
	color: #000;
	text-transform: lowercase;
	font-size: 16px;
	text-decoration: underline;
}
span.wpcf7-list-item {
	margin: 0;
}
.wpcf7-submit {
	margin-top: 20px;
	border: 1px solid #000;
	background-color: #000;
	color: #fff;
	padding: 0 50px;
    height: 40px;
    line-height: 35px;
    margin-bottom: 0;
    max-width: 150px;
    text-transform: uppercase;
}
.wpcf7-submit:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}
div.wpcf7-response-output {
	padding: 0;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
	border: none;
	color: #000;
}
/* Style the tab */
.tab {
  	overflow: hidden;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  	background-color: inherit;
  	float: left;
  	border: none;
  	outline: none;
  	cursor: pointer;
  	transition: 0.3s;
  	width: 31%;
  	border-bottom: 2px solid #999;
  	margin: 0 1%;
  	text-transform: uppercase;
  	color: #666;
  	font-size: 16px;
}

/* Create an active/current tablink class */
.tab button.active {
  	color: #ff5028;
  	border-bottom: 2px solid #ff5028;
}

/* Style the tab content */
.tabcontent {
 	display: none;
 	padding: 20px 0 0;
  	border-top: none;
}
.tabcontent h4 {
	margin-top: 20px;
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
	background-color: transparent;
	cursor: pointer;
	padding: 30px;
	width: 100%;
	text-align: center;
	border: none;
	outline: none;
	transition: 0.4s;
	border: 1px solid #199095;
	border-radius: 100px;
}
.accordion :after {
	content: ">";
	color: #f7c231;
	margin-top: 20px;
	transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
}
.accordion h3 {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordions .active, 
.accordion:hover {
	
}
.accordions {
	margin-top: 30px;
}
.active :after {
	transform: rotateZ(90deg);
	-o-transform: rotateZ(90deg);
	-webkit-transform: rotateZ(90deg);
	-moz-transform: rotateZ(90deg);
	-ms-transform: rotateZ(90deg);
	transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
	padding: 0 20px;
	background-color: #199095;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
	border-radius: 20px;
	margin: 20px auto;
	color: #fff;
	text-align: left;
}
.panel p {
	margin: 30px auto;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
}
.content {
	max-width:1400px;
	width:90%;
	margin:0 auto;
	position:relative;
}

/* header */
.header {
	position: relative;
	width: 100%;
	height: 80px;
	line-height: 80px;
}
/* logo */
.logo {
	position: absolute;
	top: 0;
	left: 5%;
	z-index: 20;
	margin-top: 10px;
}
.logo img {
	max-width: 90px;
}
/* nav */
.nav {
	display: none;
	background-color: #000;
	color: #fff;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	justify-content: center;
	align-items: center;
}
.nav a {
	color: #fff;
	font-size: 15px;
	line-height: 2;
}
.nav a:hover {
	text-decoration: underline;
}
.nav .current_page_item a {
	text-decoration: underline;
}
.nav ul {
	list-style-type: none;
	text-align: left;
	width: 90%;
}
.nav ul li {
	padding: 15px 0;
	line-height: 1;
}
.openclose {
	position: absolute;
	top: 35%;
	right: 5%;
	z-index: 90;
	cursor: pointer;
}
.openclose .iconbar {
	height: 2px;
	width: 20px;
	background-color: #fff;
	display: block;
	margin: 5px 0;
}
.openclose img {
	max-width: 20px;
}
.openclose .uno {
	width: 20px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.openclose .tre {
	width: 20px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.openclose:hover .uno {
	width: 5px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.openclose:hover .tre {
	width: 10px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
/* footer */
.footer {
	padding: 30px 0;
}
.footer .content {
	border-top: 1px solid #fff;
}
.footer .column-1 img {
	max-width: 150px;
}
.footer .column-2 img {
	max-width: 30px;
	margin-right: 10px;
}
.footer .column-3 {
	font-size: 14px;
}
.footer div {
	padding: 10px 0;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/


/*--------------HOME------------------*/
#home .row-1 {
	position: relative;
}
#home .row-1 h1 {
	font-size: 20px;
	font-weight: 700;
}
#home .row-1 h3 {
	margin-top: 20px;
	font-size: 16px;
}
#home .row-2 {
	padding: 30px 5%;
}
#home .row-2 p {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 30px 0;
}
#home .menu {
	padding: 0 5%;
}
#home .menu a {
	font-size: 5vw;
	line-height: 2;
}
#home .menu li {
	padding: 5px 0;
}
/*--------------ENTERPRENEURSHIP------------------*/
#enterpreneurship .row-1 {
	padding: 30px 5%;
}
#enterpreneurship .row-1 h1 {
	padding-bottom: 20px;
}
#enterpreneurship sup {
	font-size: 18px;
}
#enterpreneurship .row-2 {
	padding: 30px 5%;
}
#enterpreneurship .row-2 .flex {
	border-bottom: 1px solid #fff;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
#enterpreneurship .row-2 .flex:last-child {
	border-bottom: none;
}
#enterpreneurship .row-2 .right {
	padding-top: 30px;
}
#enterpreneurship .row-2 .right img {
	max-width: 150px;
	margin-bottom: 10px;
}
#enterpreneurship h4 {
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 14px;
}
#enterpreneurship .row-2 .right a {
	text-decoration: underline;
}
#enterpreneurship .row-3 {
	padding: 30px 5%;
	text-align: center;
}
#enterpreneurship .row-3 h3 {
	margin-bottom: 10px;
}
#enterpreneurship .row-3 a {
	text-decoration: underline;
	font-weight: 700;
}
/*--------------CORPORATE TRAINING------------------*/
#training .row-1 {
	padding: 30px 5%;
}
#training .row-1 h1 {
	padding-bottom: 20px;
}
#training .row-2 {
	padding: 30px 5%;
	overflow-x: auto;
}
#training .row-2 img {
	max-width: 30px;
	margin-right: 10px;
}
#training .row-2 table {
	overflow: hidden;
	min-width: 1024px;
}
#training .row-2 tr {
	border-bottom: 1px solid #fff;
	margin-bottom: 10px;
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
#training .row-2 th {
	font-weight: 500;
	text-align: left;
}
#training .row-2 td img {
	display: none;
}
#training .row-2 th:nth-child(1) {
	width: 8%;
}
#training .row-2 th:nth-child(2) {
	width: 12%;
}
#training .row-2 th:nth-child(3) {
	width: 30%;
}
#training .row-2 th:nth-child(4) {
	width: 30%;
}
#training .row-2 td:nth-child(1) {
	width: 8%;
}
#training .row-2 td:nth-child(2) {
	width: 12%;
}
#training .row-2 td:nth-child(3) {
	width: 30%;
	display: flex;
    align-items: center;
}
#training .row-2 td:nth-child(3) img {
	display: block;
}
#training .row-2 td:nth-child(4) {
	width: 30%;
}
#training .row-3 {
	padding: 60px 5% 30px;
}
#training .row-4 {
	padding: 30px 5%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
}
#training .row-4 img {
	width: 50%;
	padding: 2%;
}
#training .row-5 {
	padding: 30px 5%;
	text-align: center;
}
#training .row-5 h3 {
	margin-bottom: 10px;
}
#training .row-5 a {
	text-decoration: underline;
	font-weight: 700;
}
iframe {
	width: 100%;
}
/*--------------BOOKS------------------*/
#books .row-1 {
	padding: 30px 5%;
}
#books .row-1 h1 {
	padding-bottom: 20px;
}
#books sup {
	font-size: 18px;
}
#books .row-2 {
	padding: 30px 5%;
}
#books .row-2 img {
	margin-bottom: 30px;
}
#books .row-2 h2 {
	margin-bottom: 20px;
}
#books .row-2 h3 {
	margin-bottom: 20px;
}
#books .row-2 a {
	text-decoration: underline;
}
/*--------------PRESS------------------*/
#press .row-1 {
	padding: 30px 5%;
}
#press .row-1 h1 {
	padding-bottom: 20px;
}
#press .row-1 h2 {
	margin-top: 20px;
}
#press .row-1 img {
	max-width: 100px;
	margin-top: 20px;
}
#press sup {
	font-size: 18px;
}
#press .row-2 {
	text-align: center;
	border-top: 1px solid #fff;
	padding-top: 30px;
}
#press .row-2 h3 {
	margin-bottom: 30px;
}
#press .row-2 .loghi {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
}
#press .row-2 .loghi .logo-press {
	width: 50%;
	padding: 2%;
}
#press .row-2 .loghi .logo-press img {
	max-width: 120px;
	max-height: 100px;
}
#press .row-3 {
	padding: 30px 5%;
	text-align: center;
}
#press .row-3 h3 {
	margin-bottom: 10px;
}
#press .row-3 a {
	text-decoration: underline;
	font-weight: 700;
}






/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width:414px) {
	.nav a {
		line-height: 1;
		font-size: 16px;
	}
	#home .menu a {
		font-size: 4vw;
		line-height: 1.4;
	}
	#home .row-1 h1 {
		font-size: 25px;
	}
	#home .row-1 h3 {
		font-size: 20px;
	}
}
@media only screen and (min-width:768px) {
	.wpcf7-form label {
		
	}
	.wpcf7-form .flex {
		display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	    justify-content: space-between;
	    align-items: flex-start;
	    align-content: center;
	}
	.wpcf7-form .flex div {
		width: 48%;
	}
	.touch .parallax {
		background-attachment: scroll !important;
	}
	.nav ul li {
		padding: 15px 0;
	}
	.nav a {
		font-size: 20px;
	}
	.footer .content {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.footer ul li {
		display: inline-block;
		margin-left: 20px;
	}
	.footer .column-1 {
		width: 50%;
	}
	.footer .column-2 {
		width: 35%;
	}
	.footer .column-2 img {
		margin: 0 10px;
	}
	.footer .column-3 {
		width: 100%;
	}
	h1 {
		font-size: 55px;
	}
	.slick-next {
		right: -5%;
	}
	.slick-prev {
		left: -2%;
	}
/*--------------HOME------------------*/
	#home .row-1 .text div {
		text-align: left;
	}
	#home .row-1 h1 {
		font-size: 35px;
	}
	#home .row-1 h3 {
		font-size: 25px;
	}
/*--------------ENTERPRENEURSHIP------------------*/
	#enterpreneurship .row-1 p {
		max-width: 650px;
	}
	#enterpreneurship .row-2 .flex {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
	}
	#enterpreneurship .row-2 .flex div {
		width: 48%;
	}
	#enterpreneurship .row-2 .right {
		padding-top: 0;
	}
	#enterpreneurship sup {
		font-size: 25px;
	}
/*--------------CORPORATE TRAINING------------------*/
	#training .row-1 p {
		max-width: 650px;
	}
	#training sup {
		font-size: 25px;
	}
	#training .row-2 table {
		min-width: 100%;
	}
	#training .row-2 th:nth-child(1) {
		width: 10%;
	}
	#training .row-2 th:nth-child(2) {
		width: 14%;
	}
	#training .row-2 th:nth-child(3) {
		width: 38%;
	}
	#training .row-2 th:nth-child(4) {
		width: 38%;
	}
	#training .row-2 td:nth-child(1) {
		width: 10%;
	}
	#training .row-2 td:nth-child(2) {
		width: 14%;
	}
	#training .row-2 td:nth-child(3) {
		width: 38%;
		display: flex;
	    align-items: center;
	}
	#training .row-2 td:nth-child(4) {
		width: 38%;
	}
/*--------------BOOKS------------------*/
	#books .row-1 p {
		max-width: 650px;
	}
	#books sup {
		font-size: 25px;
	}
	#books .row-2 {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	#books .row-2 .left {
		width: 40%;
	}
	#books .row-2 .right {
		width: 55%;
	}
/*--------------PRESS------------------*/
	#press .row-1 h2 {
		font-size: 55px;
	}
	#press .row-1 p {
		max-width: 650px;
	}
	#press sup {
		font-size: 25px;
	}
	#press .row-2 .loghi .logo-press {
		width: 33.3333333%;
	}

}
@media only screen and (min-width:1024px) {
	.logo {
		max-width: 120px;
		width: 100%;
	}
	.logo img {
		max-width: 120px;
	}
	h1 {
		font-size: 65px;
	}
	h3 {
		font-size: 30px;
	}
	.nav a {
		font-size: 40px;
	}
	.header {
		line-height: 100px;
		height: 90px;
	}
	.footer {
		margin-top: 30px;
	}
	.footer .column-1 {
		width: 20%;
	}
	.footer .column-2 {
		width: 20%;
		text-align: center;
	}
	.footer .column-3 {
		width: 60%;
	}
	.footer ul {
		display: flex;
	    flex-direction: row;
	    justify-content: space-between;
	    align-items: center;
	}
	.footer ul li {
		margin-left: 0;
	}
	sup {
		top: -1em;
		font-size: 16px;
	}
	.slick-prev {
		left: -3%;
	}
/*--------------HOME------------------*/
	#home .row-1 h1 {
		font-size: 45px;
	}
	#home .row-2 {
		padding: 60px 5%;
	}
	#home .row-2 p {
		padding: 60px 0;
	}
	#home .menu {
		padding: 0 5%;
	}
	#home .menu a {
	    font-size: 40px;
	}
/*--------------ENTERPRENEURSHIP------------------*/
	#enterpreneurship .row-1 p {
	    max-width: 700px;
	}
	#enterpreneurship .row-2 {
		padding: 60px 5%;
	}
	#enterpreneurship .row-2 .flex {
	    padding-bottom: 60px;
		margin-bottom: 60px;
	}
	#enterpreneurship .row-2 .flex .right p {
		max-width: 450px;
	}
/*--------------CORPORATE TRAINING------------------*/
	#training .row-1 p {
	    max-width: 700px;
	}
	#training .row-3 {
		text-align: center;
		margin: 0 auto;
		padding: 60px 5% 30px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
	}
	#training .row-3 .video {
		width: 50%;
		padding: 2%;
	}
	iframe {
		aspect-ratio: 16 / 9;
		height: auto;
	}
/*--------------BOOKS------------------*/
	#books .row-1 p {
	    max-width: 700px;
	}
	#books .row-2 h2 {
		margin-bottom: 5px;
	}
	#books .row-2 h3 {
		font-size: 20px;
	}
	#books .row-2 img {
		margin-bottom: 60px;
	}
	#books .row-3 .right {
		text-align: right;
	}
/*--------------PRESS------------------*/
	#press .row-1 h2 {
		font-size: 65px;
	}
	#press .row-1 p {
	    max-width: 700px;
	}
	#press .row-1 {
		padding: 30px 5% 60px;
	}
	#press .row-2 .loghi .logo-press {
		width: 25%;
	}
	#press .row-2 {
		padding-top: 60px;
	}
}
@media only screen and (min-width:1280px) {
	sup {
		font-size: 18px;
	}
	#effetto-per-cursore {
		display: block;
	}
	.footer .content {
		max-width: 100%;
	}
/*--------------BOOKS------------------*/
	#books .row-2 p {
		max-width: 500px;
	}
	#books .row-3 .right {
		display: flex;
	    flex-direction: column;
	    align-items: end;
	}
/*--------------PRESS------------------*/
	#press .row-2 .loghi .logo-press {
		width: 20%;
	}
}
@media only screen and (min-width:1600px) {
	.slick-next,
	.slick-prev {
		width: 30px;
		height: 30px;
	}
	.slick-next {
		right: -4%;
	}
/*--------------HOME------------------*/
	#home .row-1 h1 {
		font-size: 60px;
	}

}


