/* GENERALI */
body,html{
	font-family: 'NanumBarunGothic', sans-serif;
    color: #000;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*overflow-x: hidden;*/
}

a:hover{
	text-decoration: none;
}

a{
	color: #171717;
}

.badge-css-awards{
	position: fixed;
	right: 20px;
	bottom: 20px;
}

a.link{
	margin-top: 30px;
	display: block;
	float: right;
	transition: 0.3s;
}

.table a.link{
	margin-top: 0;
}

a.link:hover{
	color: #24C9BA;
	transform: scale(0.98);
}


a:hover{
	color: inherit;
}

/* FINE GENERALI */

/* LOGO, NAV, HERO */

h1
{
	font-family: 'NanumBarunGothic', sans-serif;
	font-weight: 300;
	font-size: 42px;
	line-height: 1.3;
	width: 80%;
}

    h1.brand {
        padding-top:50px;
        font-size: 30px;
        font-letter-spacing: -0.4px;
        font-family: 'Righteous', cursive;
    }

h1.brand a{
	color: #171717;
}

h1.brand a:hover {
    color: #00adee;
}

h2.bigtitle, h2.secondtitle {
    padding-top: 0px;
    margin: 50px 0px;
    font-size: 60px;
    font-family: 'NanumBarunGothic', sans-serif;
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 600;
}

h2.secondtitle{
	margin-top: 100px;
	margin-bottom: 120px;
	font-size: 39px;
	font-family: 'NanumBarunGothic', sans-serif;
	line-height: 1;
	letter-spacing: -0.4px;
}

    h2.bigtitle span, h2.secondtitle span {
        color: #00adee;
    }


.hero {
    height: auto;
    padding: 15vh 0;
    position: relative;
}

.hero.second-page{
	min-height: 1200px;
}

.hero.progetti{
	display:table;
	margin-bottom: 0;
}

.hero_second_img{
	height: 620px;
	background-color: #f2f3f5;
	overflow:hidden;
	margin-right: calc((100vw - 1110px)/-2);
}

.hero_second_img.careers{
	background-color: #E9D0B2;
}

.hero_second_img.contact{
	background-color: #A1BBCA;
}

.hero_second_img .image{
	background: url("../images/about/hero_about.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	height: 100%;
	opacity: 0;
	-webkit-animation: fade-img 1s 1s forwards cubic-bezier(0.6, 0.2, 0.1, 1); /* Safari 4+ */
  	-moz-animation:    fade-img 1s 1s forwards cubic-bezier(0.6, 0.2, 0.1, 1); /* Fx 5+ */
  	-o-animation:      fade-img 1s 1s forwards cubic-bezier(0.6, 0.2, 0.1, 1); /* Opera 12+ */
  	animation:         fade-img 1s 1s forwards cubic-bezier(0.6, 0.2, 0.1, 1); /* IE 10+, Fx 29+ */
}

.hero_second_img.careers .image{
	background: url("../images/careers/hero_careers.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

.hero_second_img.contact .image{
	background: url("../images/hero_contact.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

@-webkit-keyframes fade-img {
  0%   { opacity: 0; transform: scale(1.1);}
  100% { opacity: 1; transform: scale(1.0);}
}
@-moz-keyframes fade-img {
  0%   { opacity: 0; transform: scale(1.1);}
  100% { opacity: 1; transform: scale(1.0);}
}
@-o-keyframes fade-img {
  0%   { opacity: 0; transform: scale(1.1);}
  100% { opacity: 1; transform: scale(1.0);}
}
@keyframes fade-img {
  0%   { opacity: 0; transform: scale(1.1);}
  100% { opacity: 1; transform: scale(1.0);}
}

.freccia{
	height: 32px;
	width: 24px;
	border-radius: 60px;
	background-color: rgba(0,0,0,0.15);
	z-index: 1;
	display: inline-block;
	position: fixed;
	bottom: 40px;
	left: 50%;
	margin-left: -12px;
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

/*.freccia::before{
	font-family: "Helvetica neue";
	content: "scroll";
	color: #ccc;
	font-size: 13px;
	text-align: center;
	position: fixed;
	bottom: 40px;
	left: 50%;
}*/

.about .freccia{
	background-color: rgba(255,255,255,0.2);
}

@keyframes freccia {
	0% {
		opacity: 1;
		transform: translatey(0px) scale(1);
	}
	20% {
		opacity: 1;
		transform: scale(0.8);
	}
	60% {
		transform: translatey(-24px) scale(0.8);
		opacity: 1;
	}
	80%,100% {
		transform: translatey(-24px);
		opacity: 0;
	}
}

/* FINE LOGO, NAV, HERO */

/* PAGE TITLE A SINISTRA */

.hamburger{
	position: fixed;
	z-index: 100;
	top: 50%;
	left: 20px;
    -webkit-transition: transform 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
    -moz-transition: transform 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
    -o-transition: transform 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
    transition: transform 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.hamburger a{
	padding: 4px;
	padding-left: 0px;
}

.hamburger:hover{
	-webkit-transform: scale(0.90);
	-moz-transform: scale(0.90);
	-o-transform: scale(0.90);
	transform: scale(0.90);
	-webkit-transition: transform 0.2s ease-out;
	-moz-transition: transform 0.2s ease-out;
	-o-transition: transform 0.2s ease-out;
}


.hamburger.hidden{
	-webkit-transform: translate(-100px, 0px);
	-moz-transform: translate(-100px, 0px);
	-o-transform: translate(-100px, 0px);
	transform: translate(-100px, 0px);


    -webkit-transition: transform 0.2s cubic-bezier(0.6, 0.2, 0.1, 1);
    -moz-transition: transform 0.2s cubic-bezier(0.6, 0.2, 0.1, 1);
    -o-transition: transform 0.2s cubic-bezier(0.6, 0.2, 0.1, 1);
    transition: transform 0.2s cubic-bezier(0.6, 0.2, 0.1, 1);
}

#page-title {
	font-family: 'NanumBarunGothic', sans-serif;
	position: fixed;
	z-index: 10;
	margin: 0 0 0 0;
	padding: 0;
	text-align: right;
	top: 80px;
	left: -28px;
	-webkit-transform: rotate(-90deg) translate(0, 0);
	-moz-transform: rotate(-90deg) translate(0, 0);
	-o-transform: rotate(-90deg) translate(0, 0);
	transform: rotate(-90deg) translate(0, 0);
	-webkit-transition: transform 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
	-moz-transition: transform 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
	-o-transition: transform 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
	transition: transform 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
}

#page-title a.name {
    font-family: 'NanumBarunGothic', sans-serif;
    font-size: 18px;
    /*left: 16px;*/
}

#page-title a.contact span {
    font-style: italic;
}

#page-title.hidden {
    -webkit-transform: rotate(-90deg) translate(0, -100px);
	-moz-transform: rotate(-90deg) translate(0, -100px);
	-o-transform: rotate(-90deg) translate(0, -100px);
	transform: rotate(-90deg) translate(0, -100px);


    -webkit-transition: transform 0.2s cubic-bezier(0.6, 0.2, 0.1, 1);
    -moz-transition: transform 0.2s cubic-bezier(0.6, 0.2, 0.1, 1);
    -o-transition: transform 0.2s cubic-bezier(0.6, 0.2, 0.1, 1);
    transition: transform 0.2s cubic-bezier(0.6, 0.2, 0.1, 1);
}

#page-title span {
    color: #b0b0b0;
}

#page-title:hover{
	-webkit-transform: rotate(-90deg) translate(0, 0) scale(0.95);
	-moz-transform: rotate(-90deg) translate(0, 0) scale(0.95);
	-o-transform: rotate(-90deg) translate(0, 0) scale(0.95);
	transform: rotate(-90deg) translate(0, 0) scale(0.95);
	-webkit-transition: transform 0.2s ease-out;
	-moz-transition: transform 0.2s ease-out;
	-o-transition: transform 0.2s ease-out;
}


/* FINE PAGE TITLE A SINISTRA */


/* MENU */

.menu{
	background-color: #171717;
	position: fixed;
	z-index: 100;
	width: 100%;
	height: 100%;
	padding-top: 50px;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: transform 0.2s ease-out;
	-moz-transition: transform 0.2s ease-out;
	-o-transition: transform 0.2s ease-out;
/*	opacity: 0;
	visibility: hidden;*/
}

.menu.open{
 	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: transform 0.2s ease-out;
	-moz-transition: transform 0.2s ease-out;
	-o-transition: transform 0.2s ease-out;
/*	opacity: 1;
	visibility: visible;*/
}

.menu .close{
	position: fixed;
	top: 50%;
	left: 20px;
}

.menu h1.brand{
	color: white;
}

.menu ul.menu-list li.active a{
	color: white;
}

.menu ul.menu-list li a{
	color: #A3A3A3;
}

.menu ul.menu-list li a{
	display: inline-block;
	-webkit-transform: scale(0.95) translateX(0px) translateY(20px);
	-moz-transform: scale(0.95) translateX(0px) translateY(20px);
	-o-transform: scale(0.95) translateX(0px) translateY(20px);
	transform: scale(0.95) translateX(0px) translateY(20px);
	opacity: 0;
    transition-property: opacity, transform;
	transition-duration: .3s;
	transition-timing-function: cubic-bezier(0.6, 0.2, 0.1, 1);
	transition-delay: 0s;
}

.menu ul.menu-list li a.animate{
	-webkit-transform: scale(1) translateX(0px) translateY(0px);
	-moz-transform: scale(1) translateX(0px) translateY(0px);
	-o-transform: scale(1) translateX(0px) translateY(0px);
	transform: scale(1) translateX(0px) translateY(0px);
	opacity: 1;
    transition-property: opacity, transform;
	transition-duration: .3s;
	transition-timing-function: cubic-bezier(0.6, 0.2, 0.1, 1);
}

.menu ul.links li a{
	opacity: 0;
	transition-property: opacity, transform;
	transition-duration: .5s;
	transition-timing-function: cubic-bezier(0.6, 0.2, 0.1, 1);
	transition-delay: 0s;
}

.menu ul.links li a.animate{
	opacity: 1;
    transition-property: opacity, transform;
	transition-duration: .5s;
	transition-timing-function: cubic-bezier(0.6, 0.2, 0.1, 1);
}

.menu ul.menu-list li a:hover{
	color: white;
}

.menu ul.menu-list li a:hover, .menu ul.links li a:hover{
	transition-property: opacity, transform, color;
	transition-delay: 0s!important;
	transition-duration: .3s;
	transition-timing-function: cubic-bezier(0.6, 0.2, 0.1, 1);
	
	-webkit-transform: scale(0.98) translateX(10px) translateY(0px);
	-moz-transform: scale(0.98) translateX(10px) translateY(0px);
	-o-transform: scale(0.98) translateX(10px) translateY(0px);
	transform: scale(0.98) translateX(10px) translateY(0px);
	opacity: 1;
}

.menu .links li a{
	transition-property: opacity, transform, color;
	transition-duration: .3s;
	transition-delay: 0;
	transition-timing-function: cubic-bezier(0.6, 0.2, 0.1, 1);
}

.menu ul.menu-list{
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 10vh;
	padding-top: 10vh;
	height: 70vh;
}

.menu ul.menu-list li{
	font-size: 50px;
	font-family: 'NanumBarunGothic', sans-serif;
	margin:0;
	padding: 0;
	padding-bottom: 4vh;
}

.menu .question{
	color: white;
}

.close{
	opacity: 0;
	transition-delay: 0.5s;
    transition-property: opacity;
	transition-duration: .5s;
	transition-timing-function: ease-out;
}

.close.animate{
	opacity: 1;
	transition-delay: 0.5s;
    transition-property: opacity;
	transition-duration: .5s;
	transition-timing-function: ease-out;
}

/* FINE MENU */


/* ABOUT */


section.about-page{
	margin-top: 0px;
}

section.about-page .qanda{
	margin-bottom: 40px;
}

section.about-page .qanda img{
	margin-bottom: 20px;
}

section.about-page .question h3 {
	padding-top: 0;
}

section.about-page .question.padding h3 {
	padding-top: 4px;
}

section.about-page .bigtitle{
	margin-top: 140px;
}

section.about-page .bigtitle:first-child{
	margin-top: 0px;
}

section.about-page .table{
	font-size: 16px;
	margin-top: -21px;
}

section.about-page .table td.name{
	font-family: 'NanumBarunGothic'Medium, "Arial", sans-serif;
}

section.about-page .table th{
	font-weight: normal;
}

section.about-page .table th, section.about-page .table td {
	font-weight: normal;
	border-bottom: 1px solid #eaeaea;
	border-top: none;
	padding: 20px;
}

.about-page h3{
	font-size: 18px;
	color: #171717;
}

/*#about h2 span{
	color: #81F6DC;
}*/



.question h3{
	font-family: 'NanumBarunGothic'Medium, "Arial", sans-serif;
	font-size: 18px;
	padding-top: 4px;
}

.question span {
    color: #00adee;
}

.answer span{
	color: #171717;
}

.qa {
    margin-top: 60px;
    margin-bottom: 10px;
}

.answer {
    color: #707070;
    font-size: 18px;
    line-height: 30px;
}


a.email:hover {
    color: #6eca52;
}

/* FINE ABOUT */



/* PROJECTS */

.project h2{
	font-family: 'NanumBarunGothic'Medium, "Arial", sans-serif;
	
	font-size: 22px;
	font-weight: medium;
	text-align: center;
	margin-bottom: 10px;
}

.project p.description{
	font-size: 18px;
	width: 80%;
	margin: auto;
	line-height: 1.6;
	font-weight: medium;
	color: #707070;
	text-align: center;
}

.project .qms {
    background: url("../images/QMS.png") center center no-repeat;
    background-size: 100%;
}

.project .rms {
    background: url("../images/RMS.png") center center no-repeat;
    background-size: 100%;
}

.project .pms {
    background: url("../images/PMS.png") center center no-repeat;
    background-size: 100%;
}

.project .money {
    background: url("../images/MMS.png") center center no-repeat;
    background-size: 100%;
}

.project .work{
	height: 263px;
	margin-bottom: 30px;
}

.project{
	margin-bottom: 80px;
}

.project a .work, .project a h2, .project a p.description{
	transition: all 0.3s;
}

.project a:hover .work{
	transform: scale(0.98);
	background-size: 104%;
}

.project a:hover h2, .project a:hover p.description{
	transform: translateY(-10px);
}

/* FINE PROJECTS */

/* CONTACTS */

.maillink{
	transition: 0.3s;
	display: block;
}

.maillink:hover{
	color: #24C9BA;
	transform: scale(0.99);
}

/* FINE CONTACTS */

/* GALLERIA */

.galleria {
    width: 100%;
    margin: 0;
    margin-top: 200px;
}

.slick-slide {
    padding: 40px 0;
    font-size: 30px;
    font-family: 'NanumBarunGothic';
    text-align: center;
    margin-right:30px;
}


.galleria .slick-slide img {
    width:100%;
    height:auto;
    max-width: 840px;
 }

.slick-track{
	margin-left: -5%!important;
}

.slick-prev{
	display: block;
	position: absolute;
	left: 28.3%;
	bottom: -20px;
	width: 18px;
	height: 10px;
	padding: 8px;
	transition: all 0.3s;
}

.slick-next{
	display: block;
	position: absolute;
	left: 30%;
	bottom: -20px;
	width: 18px;
	height: 10px;
	padding: 8px;
	transition: all 0.3s;
}

.slick-prev #left g, .slick-next #right g{
	transition: all 0.3s;	
}

.slick-prev:hover #left g{
	fill: #171717;
	transition: all 0.5s;
}

.slick-next:hover #right g{
	fill: #171717;
	transition: all 0.5s;
}

/* FINE GALLERIA */




/* CONTACT */


#contact{
	margin-top: 240px;
}

#contact h2 a{
	color: #CBCFD3;
	transition: 0.3s;
	display: inline-block;
	text-overflow: ellipsis;
}

#contact .bigtitle{
	padding-top: 0;
}

#contact .question h3{
	padding-top: 4px;
}

#contact h2 a:hover{
	color: #171717;
	transform: scale(0.98);
}

#contact ul.links, .menu ul.links {
    padding: 0;
}

#contact ul.links li, .menu ul.links li {
    display: inline;
    font-size: 18px;
}
#contact ul.links li:not(:first-child):before, .menu ul.links li:not(:first-child):before {
    content: "/";
    display: inline-block;
    text-indent: 0;
    text-align: center;
    margin-right: 6px;
    margin-left: 4px;
    color: #DBDBDB;
}

.menu ul.links li:not(:first-child):before {
	color: rgba(255,255,255,0.3);
}

#contact ul.links li a, .menu ul.links li a {
	color: #707070;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.menu ul.links li a {
	color: rgba(255,255,255,0.6);
}

#contact ul.links li a:hover, .menu ul.links li a:hover {
	transform: scale(0.97);
	transition: 0.3s;
}

#contact ul.links li a.dribbble:hover, .menu ul.links li a.dribbble:hover {
    color: #ea4c89;
}

#contact ul.links li a.facebook:hover, .menu ul.links li a.facebook:hover {
    color: #3b5998;
}

#contact ul.links li a.behance:hover, .menu ul.links li a.behance:hover {
    color: #1769ff;
}

#contact ul.links li a.twitter:hover, .menu ul.links li a.twitter:hover {
    color: #55acee;
}

#contact ul.links li a.linkedin:hover, .menu ul.links li a.linkedin:hover {
    color: #007bb5;
}

#contact ul.links li a.instagram:hover, .menu ul.links li a.instagram:hover {
    color: #bc2a8d;
}

#contact h4{
	font-family: 'NanumBarunGothic';
	font-weight: medium;
	margin-top: 140px;
	margin-bottom: 40px;
	font-size: 14px;
	font-weight: 400;
}


/* FINE CONTACT */


/* ANIMAZIONI CAMBIO PAGINA */
/*  .is-exiting *{
        animation-name: uscita;
		animation-duration: 2000ms;
		animation-fill-mode: forwards;
  }

  @keyframes uscita{
		0%{
		    opacity: 1;
		}
		100%{
		    opacity: 0;
		    display: none;
		}
	}
*/

.is-exiting *{
	animation-name: uscita;
	animation-duration: 700ms;
	animation-delay: 300ms;
	animation-fill-mode: forwards;
}


@keyframes uscita{
	0%{
    	opacity: 1;
    	/*transform: scale(1);*/
	}
	/*50%{*/
    	/*opacity: 0.5;*/
    	/*transform: scale(0.95);*/
	/*}*/
	100%{
    	opacity: 0;
    	/*transform: scale(0.9);*/
    	/*display: none;*/
	}
}

/* FINE ANIMAZIONI */


/* PROJECT */

.projectpage h2.projecttitle{
	font-family: 'NanumBarunGothic'Medium, "Arial", sans-serif;
	margin-top: 130px;
	font-size: 30px;
	line-height: 38px;
	padding-top: 0px;
	margin-bottom: 40px;
}

.projectpage p.description, .projectpage p.text{
	font-size: 18px;
	line-height: 30px;
}

.projectpage p.text{
	margin-top: 240px;
	margin-bottom: 70px;
}

.projectpage .hero{
	margin-bottom: 200px;
}

/*.projectpage .hero.taskhunters{
	background: url("../images/projects/taskhunters/taskhunters_cover@2x.png"), #e7ebee; /* Old browsers 
	background: url("../images/projects/taskhunters/taskhunters_cover@2x.png"), -moz-linear-gradient(top, #e7ebee 0%, #ffffff 65%); /* FF3.6-15 
	background: url("../images/projects/taskhunters/taskhunters_cover@2x.png"), -webkit-linear-gradient(top, #e7ebee 0%,#ffffff 65%);  Chrome10-25,Safari5.1-6 
	background: url("../images/projects/taskhunters/taskhunters_cover@2x.png"), linear-gradient(to bottom, #e7ebee 0%,#ffffff 65%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7ebee', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	z-index: 0;
}*/

/*.projectpage .shadebg.taskhunters{
	background: -moz-linear-gradient(top, #e7ebee 0%, #ffffff 65%); /* FF3.6-15 
	background: -webkit-linear-gradient(top, #e7ebee 0%,#ffffff 65%); /* Chrome10-25,Safari5.1-6 
	background: linear-gradient(to bottom, #e7ebee 0%,#ffffff 65%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7ebee', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 
}*/

.projectpage .hero.taskhunters::before{
	background: url("../images/projects/taskhunters/taskhunters_cover.png"), #e7ebee;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
  	content: "";
  	position: absolute;
  	top: 0; right: 0; bottom: 0; left: 0;
  	z-index: 0;
  	opacity: 0;
  	animation-name: bgopacity;
	animation-duration: 1000ms;
	animation-delay: 400ms;
	animation-fill-mode: forwards;
	-webkit-transform:translate3d(0,0,0);
}

.projectpage .hero.taskhuntersapp::before{
	background: url("../images/projects/taskhuntersapp/01_cover.png"), #e7ebee;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
  	content: "";
  	position: absolute;
  	top: 0; right: 0; bottom: 0; left: 0;
  	z-index: 0;
  	opacity: 0;
  	animation-name: bgopacity;
	animation-duration: 1000ms;
	animation-delay: 400ms;
	animation-fill-mode: forwards;
	-webkit-transform:translate3d(0,0,0);
}

.projectpage .hero.spedity::before{
	background: url("../images/projects/spedity/spedity_cover.jpg"), #e7ebee;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
  	content: "";
  	position: absolute;
  	top: 0; right: 0; bottom: 0; left: 0;
  	z-index: 0;
  	opacity: 0;
  	animation-name: bgopacity;
	animation-duration: 1000ms;
	animation-delay: 400ms;
	animation-fill-mode: forwards;
	-webkit-transform:translate3d(0,0,0);
}

@keyframes bgopacity{
	0%{
	    opacity: 0;
	}
	100%{
	    opacity: 1;
	}
}

.projectpage .secondcover{
	margin-top: 100px;
}

.projectpage .hero{
  position: relative;
}

.projectpage .hero * {
	position: relative;
	z-index: 2;
}

.projectpage .img_background{
	text-align: center;
}

.projectpage .img_full .immagine{
	width: 100%;
	max-width: 100%;
	height: auto;
}

.projectpage .img_background .immagine{
	margin-top: 80px;
	margin-bottom: 80px;
	max-width: 90%;
	height: auto;
}

.projectpage .img_background.taskhunters{
	background-color: #F9F9F9;
}

.projectpage .img_background.taskhuntersapp{
	background-color: #F9F9F9;
}

/* FINE PROJECT */



/* MOBILE */


@media (max-width: 576px) and (orientation: portrait) {
	/*#page-title{
		display: none;
	}*/
	.container{
		width: 90%;
		padding-left: 10%;
	}
	section.about-page .table th, section.about-page .table td{
		padding: 0px;
		border-bottom: none;
		display: block;
	}
	section.about-page .table tr{
		border-bottom: 1px solid #eaeaea;
		display: block;
		padding: 20px;
		padding-left: 0px;
	}
	.menu ul.menu-list li {
		font-size: 5vh;
	}
	.menu ul.menu-list {
		padding-top: 15vh;
		padding-bottom: 15vh;
		height: 65vh;
	}
	#contact ul.links li, .menu ul.links li {
		font-size: 16px;
	}
	/*.hero_second_img{
		margin-right: calc((85vw - 316px)/-1);
	}*/
}

.mobile {
    display: none;
}

.tablet {
    display: none;
}

.web {
    display: block;
}

@media (max-width: 767px){
	#contact h2 span.mobile{
		display: block;
	}
	.hero{
		padding: 10vh 0;
	}
	.menu{
		padding-top: 20px;
	}
	.hero.second-page {
		min-height: 100vh;
	}
	.hero_second_img{
		height: 420px;
	}
	section.about-page .qanda {
		margin-bottom: 20px;
	}
	h2.bigtitle, h2.secondtitle{
		font-size: 28px;
		margin-bottom: 60px;
	}
	h2.secondtitle{
		margin-top: 30px;
	}
	.morph {
		top: 85%;
		transform: scale(1);
	}
	.morph2 {
		top: 85%;
		transform: scale(1);
	}
	.freccia{
		bottom: 20px;
	}
	.project{
		margin-bottom: 0px;
	}
	section#about{
		margin-top: 0;
	}
	.answer{
		font-size: 16px;
		line-height: 28px;
	}
	.projectpage h2.projecttitle{
		font-size: 22px;
		line-height: 30px;
	}
	.projectpage p.description, .projectpage p.text{
		font-size: 16px;
		line-height: 28px;
	}
	.question h3{
		font-size: 18px;
	}

	.project .work{
		height: 60vh;
	}
	.project p.description{
		font-size: 16px;
		width: 90%;
		margin-bottom: 60px;
	}
	#contact{
		margin-top: 160px;
	}
	#contact ul.links li{
		font-size: 16px;
	}
	#contact h4{
		font-size: 11px;
	}	
	.projectpage h2.projecttitle{
		font-size: 22px;
		line-height: 32px;
	}

	.projectpage .img_background .immagine{
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.projectpage .img_background.taskhunters .immagine{
		margin-top: 40px;
		margin-bottom: 20px;
	}

	.projectpage p.text{
		margin-top: 100px;
		margin-bottom: 50px;
	}


	.project .immagine{
		margin-top: 40px;
		margin-bottom: 40px;
		max-width: 90%;
	}

	.project .img_full img{
		width: 130%;
		max-width: 130%;
		margin-left: -15%;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
	.slick-track{
		margin-left: -9%!important;
	}
	.slick-prev{
		left: 11.5%;
	}
	.slick-next{
		left: 15%;
	}
	.menu ul.menu-list{
		margin-bottom: 5vh;
		padding-top: 15vh;
	}
	.menu ul.menu-list li{
		font-size: 40px;
	}

    }

/* ----------- iPhone 5, 5S, 5C and 5SE ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-width: 320px) 
  and (max-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
  	.container{
		width: 85%;
		padding-left: 15%;
	}
	.galleria{
		width: 85%;
		margin: 0;
		margin-top: 60px;
		margin-left: 15%;
	}
	.slick-next{
		left: 15%;
	}
	.slick-prev{
		left: 0;
	}
	.galleria .slick-slide img{
		width: auto;
		max-height: 180px;
	}
	.menu .info{
		display: none;
	}
    .mobile {
        display: block;
    }

    .tablet {
        display: none;
    }

    .web {
        display: none;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

/* Portrait */
@media only screen 
  and (min-width: 320px) 
  and (max-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
  	.hero_second_img{
		margin-right: calc((85vw - 241px)/-1);
	}
	h2.bigtitle, h2.secondtitle {
		font-size: 28px;
		margin-bottom: 40px;
	}
	.hero_second_img {
		height: 280px;
	}
	.hero_second_img .image{
		background-position-x: 20%;
	}
}

/* Landscape */
@media only screen 
  and (min-width: 320px) 
  and (max-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  	.hero_second_img{
		margin-right: calc((85vw - 439px)/-1)!important;
	}
	.slick-next{
		left: 15%;
	}
	.galleria{
		width: 90%;
		margin: 0;
		margin-top: 60px;
		margin-left: 10%;
	}
	.slick-prev{
		left: 0;
	}
	.galleria .slick-slide img{
		width: auto;
		max-height: 340px;
	}
	.menu ul.menu-list li{
		float: left;
		margin-right: 5vw;
		font-size: 6vw;
	}


}

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-width: 375px) 
  and (max-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2) { 
  	.hero_second_img{
  		height: 360px;
		margin-right: calc((85vw - 285px)/-1);
	}
	.galleria{
		width: 85%;
		margin: 0;
		margin-top: 60px;
		margin-left: 15%;
	}
	.slick-next{
		left: 15%;
	}
	.slick-prev{
		left: 0;
	}
	.galleria .slick-slide img{
		width: auto;
		max-height: 220px;
	}
	.menu .info{
		display: block;
	}
	.container{
		width: 90%;
		padding-left: 10%;
	}
    .mobile {
        display: block;
    }

    .tablet {
        display: none;
    }

    .web {
        display: none;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

/* Portrait */
@media only screen 
  and (min-width: 375px) 
  and (max-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) { 
  	.menu ul.menu-list {
		margin-bottom: 5vh;
	}
	.menu ul.menu-list li {
		font-size: 4vh;
		padding-bottom: 4vh;
	}
}

/* Landscape */
@media  (min-width: 375px) 
  and (max-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) { 
  	.hero_second_img{
		margin-right: calc((100vw - 510px)/-2);
	}
	section.about-page {
		margin-top: 300px;
	}
	.galleria{
		width: 90%;
		margin: 0;
		margin-top: 200px;
		margin-left: 10%;
	}
	.slick-next{
		left: 15%;
	}
	.slick-prev{
		left: 4%;
	}
	.galleria .slick-slide img{
		width: auto;
		max-height: 310px;
	}
	.menu ul.menu-list li{
		float: left;
		margin-right: 5vw;
		font-size: 6vw;
	}
	.menu ul.menu-list li{
		margin-right: 6vw;
		font-size: 5vw;
	}
	.menu ul.menu-list{
		padding-top: 23vh;
	}
	.menu .info{
		display: none;
	}
}


/* ----------- iPhone 6+, 7+ and 8+ ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-width: 414px) 
  and (max-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
  	.galleria{
		width: 85%;
		margin: 0;
		margin-top: 60px;
		margin-left: 15%;
	}
	.slick-next{
		left: 15%;
	}
	.slick-prev{
		left: 0;
	}
	.galleria .slick-slide img{
		width: auto;
		max-height: 240px;
	}
    .mobile {
        display: block;
    }

    .tablet {
        display: none;
    }

    .web {
        display: none;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

/* Portrait */
@media only screen 
  and (min-width: 414px) 
  and (max-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 
  	.hero_second_img {
		height: 460px;
		margin-right: calc((85vw - 316px)/-1);
	}		
}

/* Landscape */
@media only screen 
  and (min-width: 414px) 
  and (max-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
  	.hero_second_img{
		margin-right: calc((100vw - 510px)/-2);
	}
	section.about-page {
		margin-top: 300px;
	}
	.galleria{
		width: 90%;
		margin: 0;
		margin-top: 200px;
		margin-left: 10%;
		height: 60%;
	}
	.slick-next{
		left: 15%;
	}
	.slick-prev{
		left: 6%;
	}
	.galleria .slick-slide img{
		width: auto;
		max-height: 340px;
	}
	.menu ul.menu-list li{
		float: left;
		margin-right: 5vw;
		font-size: 6vw;
	}
	.menu ul.menu-list li{
		margin-right: 6vw;
		font-size: 5vw;
	}
	.menu ul.menu-list{
		padding-top: 23vh;
	}
	.menu .info{
		display: none;
	}
}

/* ----------- iPhone X ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) {
    .mobile {
        display: block;
    }

    .tablet {
        display: none;
    }

    .web {
        display: none;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 

}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 

}

/* ----------- iPad 1, 2, Mini and Air ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-width: 768px) 
  and (max-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 1) {
  	 .container{
		width: 90%;
	}
	.galleria{
		width: 85%;
		margin-left: 15%;
	}
	.slick-prev{
		left: 0;
	}
	.slick-next{
		left: 10%;
	}
	.galleria .slick-slide img{
		width: auto;
		max-height: 490px;
	}
    .hero {
        height: auto;
        padding: 10vh 0;
        position: relative;
    }

    .swiper-button-prev, .swiper-button-next {
    display:none;
    }

    .mobile {
        display: none;
    }
    .tablet {
        display: block;
    }
    .web {
        display: none;
    }

    h2.bigtitle, h2.secondtitle {
        font-size: 55px;
    }
}

/* Portrait */
@media only screen 
  and (min-width: 768px) 
  and (max-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
  	.hero_second_img{
		margin-right: calc((85vw - 599px)/-1);
	}
}

/* Landscape */
@media only screen 
  and (min-width: 768px) 
  and (max-width: 1024px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1) {
  	.hero_second_img{
		margin-right: calc((85vw - 804px)/-1);
	}
	.menu ul.menu-list {
		margin-bottom: 0vh;
	}
	.menu ul.menu-list li {
		font-size: 5vh;
		padding-bottom: 4vh;
	}

}

/* ----------- iPad 3, 4 and Pro 9.7" ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .mobile {
        display: none;
    }

    .tablet {
        display: block;
    }

    .web {
        display: none;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

/* Portrait */
@media only screen 
  and (min-width: 768px) 
  and (max-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
  	.hero_second_img{
		margin-right: calc((90vw - 607px)/-2);
	}
  	
}

/* Landscape */
@media only screen 
  and (min-width: 768px) 
  and (max-width: 1024px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
  	
}

/* ----------- iPad Pro 10.5" ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-width: 834px) 
  and (max-width: 1112px)
  and (-webkit-min-device-pixel-ratio: 2) {
  	.galleria .slick-slide img{
		width: auto;
		max-height: 510px;
	}
	 .slick-prev{
		left: 8.5%;
	}
	.slick-next{
		left: 16%;
	}
    .mobile {
        display: none;
    }

    .tablet {
        display: block;
    }

    .web {
        display: none;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

/* Portrait */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen 
  and (min-width: 834px) 
  and (max-width: 834px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
  	.galleria .slick-slide img{
		width: auto;
		max-height: 380px;
	}

}

/* Landscape */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen 
  and (min-width: 1112px) 
  and (max-width: 1112px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
  	.hero_second_img{
		margin-right: calc((100vw - 930px)/-2);
	}
	.slick-prev{
		left: 8.5%;
	}
	.slick-next{
		left: 16%;
	}
	.menu ul.menu-list {
		margin-bottom: 0vh;
	}
	.menu ul.menu-list li {
		font-size: 5vh;
		padding-bottom: 4vh;
	}

}

/* ----------- iPad Pro 12.9" ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-width: 1024px) 
  and (max-width: 1366px)
  and (-webkit-min-device-pixel-ratio: 2) {
  	.galleria .slick-slide img{
		width: auto;
		max-height: 510px;
	}
	 .slick-prev{
		left: 10%;
	}
	.slick-next{
		left: 20%;
	}
    .mobile {
        display: none;
    }

    .tablet {
        display: block;
    }

    .web {
        display: none;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

/* Portrait */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen 
  and (min-width: 1024px) 
  and (max-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
  	.hero_second_img{
		margin-right: calc((90vw - 791px)/-2);
	}
}

/* Landscape */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen 
  and (min-width: 1366px) 
  and (max-width: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
  	.galleria .slick-slide img{
		width: auto;
		max-height: 540px;
	}
	 .slick-prev{
		left: 10%;
	}
	.slick-next{
		left: 20%;
	}
	.slick-track{
		margin-left: -9%!important;
	}
	.menu ul.menu-list {
		padding-top: 15vh;
	}

}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
    .project .taskhunters{
		background: url("../images/taskhunters_cover_home%402x.png") center center no-repeat;
		background-size: 100%;
	}

	.project .taskhuntersapp{
		background: url("../images/taskhuntersapp_cover_home%402x.png") center center no-repeat;
		background-size: 100%;
	}

	.project .spedity{
		background: url("../images/spedity_cover_home%402x.png") center center no-repeat;
		background-size: 100%;
	}

	.projectpage .hero.taskhunters::before{
		background: url("../images/projects/taskhunters/taskhunters_cover%402x.png"), #e7ebee;
		background-size: cover;
		background-position: top center;
	}

	.projectpage .hero.taskhuntersapp::before{
		background: url("../images/projects/taskhuntersapp/01_cover%402x.png"), #e7ebee;
		background-size: cover;
		background-position: top center;
	}

	.projectpage .hero.spedity::before{
		background: url("../images/projects/spedity/spedity_cover%402x.jpg"), #e7ebee;
		background-size: cover;
		background-position: top center;
	}
}

@media screen and (min-width: 1600px) {
	.projectpage .hero.taskhunters::before{
  		background: url("../images/projects/taskhunters/taskhunters_cover%402x.png"), #e7ebee;
  		background-size: cover;
  		background-size: cover;
		background-repeat: no-repeat;
		background-position: top center;
  	}
  	.projectpage .hero.spedity::before{
  		background: url("../images/projects/spedity/spedity_cover%402x.jpg"), #e7ebee;
  		background-size: cover;
  		background-size: cover;
		background-repeat: no-repeat;
		background-position: top center;
  	}
  	.projectpage .hero.taskhuntersapp::before{
  		background: url("../images/projects/taskhuntersapp/01_cover%402x.png"), #e7ebee;
  		background-size: cover;
  		background-size: cover;
		background-repeat: no-repeat;
		background-position: top center;
  	}
}

@media screen and (min-width: 1000px) and (max-width: 1300px) {
	.project .work{
		height: 56vh;
	}
}

	

/* FINE MOBILE */


.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

    .swiper-container-autoheight .swiper-wrapper {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-transition-property: height,-webkit-transform;
        transition-property: height,-webkit-transform;
        -o-transition-property: transform,height;
        transition-property: transform,height;
        transition-property: transform,height,-webkit-transform
    }

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

    .swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d
    }

    .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10
    }

    .swiper-container-3d .swiper-slide-shadow-left {
        background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
        background-image: -webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
        background-image: -o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
        background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-container-3d .swiper-slide-shadow-right {
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
        background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
        background-image: -o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
        background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-container-3d .swiper-slide-shadow-top {
        background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
        background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
        background-image: -o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
        background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-container-3d .swiper-slide-shadow-bottom {
        background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
        background-image: -webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
        background-image: -o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
        background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat
}

    .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
        opacity: .35;
        cursor: auto;
        pointer-events: none
    }

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 10
}

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0
    }

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        -webkit-transform: scale(.33);
        -ms-transform: scale(.33);
        transform: scale(.33);
        position: relative
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
        -webkit-transform: scale(.66);
        -ms-transform: scale(.66);
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
        -webkit-transform: scale(.33);
        -ms-transform: scale(.33);
        transform: scale(.33)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        -webkit-transform: scale(.66);
        -ms-transform: scale(.66);
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
        -webkit-transform: scale(.33);
        -ms-transform: scale(.33);
        transform: scale(.33)
    }

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0)
}

    .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 6px 0;
        display: block
    }

    .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 8px
    }

        .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            display: inline-block;
            -webkit-transition: .2s top,.2s -webkit-transform;
            transition: .2s top,.2s -webkit-transform;
            -o-transition: .2s transform,.2s top;
            transition: .2s transform,.2s top;
            transition: .2s transform,.2s top,.2s -webkit-transform
        }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap
}

    .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        -webkit-transition: .2s left,.2s -webkit-transform;
        transition: .2s left,.2s -webkit-transform;
        -o-transition: .2s transform,.2s left;
        transition: .2s transform,.2s left;
        transition: .2s transform,.2s left,.2s -webkit-transform
    }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: .2s right,.2s -webkit-transform;
    transition: .2s right,.2s -webkit-transform;
    -o-transition: .2s transform,.2s right;
    transition: .2s transform,.2s right;
    transition: .2s transform,.2s right,.2s -webkit-transform
}

.swiper-pagination-progressbar {
    background: rgba(0,0,0,.25);
    position: absolute
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: #007aff;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top
    }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

    .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
        width: 4px;
        height: 100%;
        left: 0;
        top: 0
    }

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255,255,255,.25)
}

    .swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
        background: #fff
    }

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0,0,0,.25)
}

    .swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
        background: #000
    }

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0,0,0,.1)
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0,0,0,.5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

    .swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
        max-width: 100%;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain
    }

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12,end) infinite;
    animation: swiper-preloader-spin 1s steps(12,end) infinite
}

    .swiper-lazy-preloader:after {
        display: block;
        content: '';
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        background-position: 50%;
        background-size: 100%;
        background-repeat: no-repeat
    }

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity
}

    .swiper-container-fade .swiper-slide .swiper-slide {
        pointer-events: none
    }

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

    .swiper-container-cube .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
        visibility: hidden;
        -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        transform-origin: 0 0;
        width: 100%;
        height: 100%
    }

        .swiper-container-cube .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-container-cube.swiper-container-rtl .swiper-slide {
        -webkit-transform-origin: 100% 0;
        -ms-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    .swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
        pointer-events: auto;
        visibility: visible
    }

    .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

    .swiper-container-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .6;
        -webkit-filter: blur(50px);
        filter: blur(50px);
        z-index: 0
    }

.swiper-container-flip {
    overflow: visible
}

    .swiper-container-flip .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1
    }

        .swiper-container-flip .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px
}