/*
	Theme Name: Silvia Possamai
	Theme URI: https://silviapossamai.com
	Description: Fotografia
	Version: 1.4.3
	Author: Jacopo Zane
	Author URI: https://www.jacopozane.it
	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;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:500 16px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#000;
}
/* 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;
}
a {
	color:#000;
	text-decoration:none;
	font-weight: normal;
}
a:hover {
	color:#000;
}
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;
}
.pulsante {
	
}
.pulsante:hover {
	
}
.blocco {
	position: relative;
	overflow: hidden;
	display: flex;
}
.text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100%;
}
.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);}
}


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

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

/* header */
.header {
	width: 90%;
	height: 80px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
/* logo */
.logo {
	width: 50%;
}
.logo h1 {
	font-size: 20px;
}
/* nav */
.nav {
	display: block;
	background-color: transparent;
	height: auto;
	width: 50%;
	position: relative;
}
.nav ul {
	margin-top: 0;
	text-align: right;
}
.nav ul li {
	padding: 0;
	display: inline-block;
	text-transform: none;
}
.nav ul li a {
	padding: 0 0 0 15px;
	height: 30px;
	line-height: 30px;
	color: #000;
	text-transform: capitalize;
	font-size: 20px;
}
.nav .titolo {
	display: none;
}
/* footer */
.footer {
	padding: 10px 0;
}
.footer .copyright {
	font-size: 12px;
}

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


/*--------------HOME------------------*/
#home h2 {
	padding-bottom: 30px;
	font-size: 18px;
}
/*--------------ABOUT------------------*/
#about .fascia-1 a {
	margin-top: 30px;
	display: block;
}
#about .fascia-2 {
	padding: 60px 0 30px;
}
#about .fascia-2 .left {
	margin-bottom: 30px;
}
#about .fascia-2 .italic {
	font-style: italic;
	margin-bottom: 10px;
}
#about .fascia-2 a {
	display: inline-block;
	margin-right: 10px;
}
#about .fascia-2 a img {
	max-width: 25px;
	max-height: 25px;
}
/*--------------WORK------------------*/
#works {
	padding-bottom: 30px;
}
#works .elenco:first-child {
	border-top: 2px solid #000;
}
#works .elenco {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-bottom: 2px solid #000;
	padding: 5px 0;
}
#works .cerchio {
	display: block;
	background-color: black;
	border-radius: 50%;
	width: 15px;
	height: 15px;
}
#works p {
	text-transform: lowercase;
}
#works p,
#works a {
	font-size: 20px;
	width: 45%;
}
#works .elenco div {
	width: 10%;
}
/*--------------SINGOLO WORK------------------*/
.single-work .header .none {
	display: none;
}
.single-work .titolo {
	display: inline-block;
	letter-spacing: 1px;
	font-size: 18px;
	font-weight: normal;
	text-align: right;
}
.single-work .nav {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
.single-work .mfp-arrow {
	display: none;
}
.single-work .mfp-bottom-bar {
	display: none;
}
#singolo-works img {
	padding-bottom: 30px;
}
.call-to-action {
	padding: 30px 0;
}
.call-to-action a {
	font-size: 22px;
}



/*------------------------------------*\
	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:320px) {

}
@media only screen and (min-width:414px) {

}
@media only screen and (min-width:768px) {
	.single-work .titolo {
		font-size: 20px;
		margin-left: 15px;
	}
/*--------------HOME------------------*/
	#home h2 {
		padding-bottom: 60px;
	}
	.row {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-around;
	}
	.row-33-0-33 a:first-child {
		width: 33%;
	}
	.row-33-0-33 a:nth-child(2) {
		width: 33%;
	}
	.row-33-0-33 a:nth-child(3) {
		width: 33%;
	}
	.row-0-100 a:first-child {
		width: 33%;
	}
	.row-0-100 a:nth-child(2) {
		width: 33%;
		margin-left: -10%;
	}
	.row-33-33-0 a:first-child,
	.row-33-33-0 a:nth-child(2),
	.row-33-33-0 a:nth-child(3) {
		width: 30%;
	}
	.row-25-0-50 a:first-child {
		width: 25%;		
		margin-top: 15%;
	}
	.row-25-0-50 a:nth-child(2) {
		width: 23%;		
	}
	.row-25-0-50 a:nth-child(3) {
		width: 50%;		
	}
	.row-0-33-33 a:first-child,
	.row-0-33-33 a:nth-child(2),
	.row-0-33-33 a:nth-child(3) {
		width: 30%;
	}
	.row-50-50 a:first-child,
	.row-50-50 a:nth-child(2) {
		width: 45%;
	}
	.row-33-33-33 a:first-child,
	.row-33-33-33 a:nth-child(2),
	.row-33-33-33 a:nth-child(3) {
		width: 30%;
	}
/*--------------SINGOLO WORK------------------*/
	#singolo-works img {
		padding-bottom: 60px;
	}
}
@media only screen and (min-width:1024px) {
	/* nav */
	.nav {
		display: block;
		background-color: transparent;
		height: auto;
		width: 95%;
		position: relative;
	}
	.nav ul {
		margin-top: 0;
		text-align: right;
	}
	.nav ul li {
		padding: 0;
		display: inline-block;
		text-transform: none;
	}
	.nav ul li a {
		padding: 0 0 0 15px;
		height: 30px;
		line-height: 30px;
		color: #000;
		text-transform: capitalize;
		letter-spacing: 1px;
	}
	.nav .black a {
		background-color: #000;
		color: #fff;
		padding: 5px 10px;
		margin-left: 20px;
	}
	.nav .blu a {
		background-color: #287fc3;
		color: #fff;
		padding: 5px 10px;
	}
	.openclose img {
		display: none;
	}
	.logo img {
		max-width: 120px;
	}
	.footer .copyright {
		text-align: center;
	}
/*--------------HOME------------------*/
	#home {
		padding-top: 30px;
	}
	#home a {
		position: relative;
		display: flex;
	}
	#home h2 {
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		font-size: 30px;
		color: #fff;
		padding-bottom: 0;
		background-color:rgba(0, 0, 0, 0.60);
		opacity: 0;
	}
	#home a:hover h2 {
		opacity: 1;
	}
/*--------------ABOUT------------------*/
	#about .fascia-1 {
		padding-top: 30px;
	}
	#about .fascia-2 {
		font-size: 14px;
	}
/*--------------WORK------------------*/
	#works {
		padding-top: 30px;
		padding-bottom: 60px;
	}
	#works .cerchio {
	    width: 20px;
		height: 20px;
	}
	#works p, #works a {
		width: 20%;
	}
	#works .elenco div {
	    width: 60%;
	}
/*--------------SINGOLO WORK------------------*/
	#singolo-works {
		padding-top: 30px;
	}

}
@media only screen and (min-width:1280px) {
	.nav ul li a {
		font-size: 25px;
	}
	.logo h1 {
		font-size: 25px;
	}
	.single-work .titolo {
		font-size: 25px;
		margin-left: 30px;
	}
/*--------------HOME------------------*/
	#home img {
		padding: 0;
	}
	#home .row {
		padding-bottom: 200px;
	}
/*--------------ABOUT------------------*/
	#about {
		display: flex;
		justify-content: flex-end;
	}
	#about .flex {
		width: 50%;
	}
	#about .fascia-2 {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		padding: 60px 0;
	}
	#about .fascia-2 div {
		width: 49%;
	}
/*--------------SINGOLO WORK------------------*/
	#singolo-works img {
		padding: 0;
	}
	#singolo-works .row {
		padding-bottom: 200px;
	}
}
@media only screen and (min-width:1600px) {

}


