
body {
	background-color:#fff;
	font-family: Nunito , sans-serif;
}

#container_page {
	width:100%;
	overflow-x:hidden;
	}

/* ========== Delay ========== */

.hover_delay {
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
	}

/* ========== Animate ========== */

.animate_linear1  {
	-webkit-transition:all 0.1s linear;
	-moz-transition:all 0.1s linear;
	transition:all 0.1s linear;
	}

.animate_easing {
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
	}

/* ========== Border Radius ========== */

.radius_3 {
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	}

/* ========== Box Sizing ========== */

.box_sizing {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	}

/* ========== Desaturate ========== */

.grayScale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	}

/* ========== 2x Columns ========== */

.colx2 {
	-webkit-columns: 2;
	-moz-columns: 2;
	columns: 2;
	-webkit-column-gap: 40px;
	-moz-column-gap: 40px;
	column-gap: 40px;
	}

/* ========== iframe Video ========== */

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	}

/* ========== Zoom Scale ========== */

.zoom_scale img {
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	}

.zoom_scale:hover img {
	-webkit-transition:all 0.4s ease-in-out;
	-moz-transition:all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	-o-transition:all 0.4s ease-in-out;
	transition:all 0.4s ease-in-out;
	-moz-transform:scale(1.1);
	-webkit-transform:scale(1.1);
	-o-transform:scale(1.1);
	-ms-transform:scale(1.1);
	transform:scale(1.1);
	}

/* ========== BG Cover ========== */

.bg_cover_fixed {
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  }

.bg_cover_scroll {
	background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	}

/* ========== Boxes ========== */

.box_fluid,
.box_med,
.box_small {
	margin:0 auto;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	}

.box_fluid { max-width:1140px; }
.box_med { max-width:900px;	}
.box_small { max-width:700px; }

.desktop_view_menu,
.desktop_view {display:block;}

.mobile_view_menu,
.mobile_view {display:none;}

/* ========== Custom ========== */

.bgWhite { background-color: #FFF; }

/* ========== Text ========== */

.gridTesto .divider {
	height:2px;
	background-color:black;
	width:90px;
	}

.gridTesto .divider2 {
	height:2px;
	background-color:#fff;
	width:90px;
	}

.gridTesto h2 {
  color:#222;
	font-size:35px;
	line-height:1.4em;
	font-family: EB Garamond , serif;
	text-transform: uppercase;
	letter-spacing:.06em;
	}

.gridTesto h3 {
	color:#222;
	font-size:20px;
	line-height:1.4em;
	font-family: EB Garamond , serif;
	font-weight:700;
		letter-spacing:.07em;
	}

.gridTesto h4 {
	color:#333;
	font-size:33px;
	line-height:1.4em;
	font-family: EB Garamond , serif;
	text-transform: uppercase;
	}

.gridTesto h5 {
	color:#333;
	font-size:17px;
	line-height:1.4em;
	font-family: EB Garamond , serif;
	}

.gridTesto p strong {font-weight:bold}

.gridTesto,
.gridTesto p {
	font-size:16px;
	color: #333;
	line-height: 1.9em;
	margin-bottom:0;
	padding-bottom:0;
	display:block;
	}

.gridTesto strong { font-weight:bold; }

.gridTesto a {
	text-decoration: none;
	font-family: EB Garamond, serif;
	font-style: italic ;
	font-size:1.3em;
	color:#111;

	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	transition:all 0.2s linear;
	}
.gridTesto a:hover {
	color:rgb(225,65,81);
	}

.gridTesto a.rem {
	color:inherit;
	text-decoration:none;
	font-weight:normal;
	font-family:Nunito,sans-serif;
	font-style: normal;
	}
.gridTesto a.rem:hover {
	text-decoration:underline;
	}

.gridTesto a.btn {
	display:inline-block;
	padding:6px 33px 7px;
	border:2px solid #AD3034;
	background-color:#AD3034;
	color: #fff;
	margin:0 5px;
	font-family: Nunito, sans-serif;
	font-style: normal;
	text-transform: uppercase;
	font-size:.96em;
	letter-spacing:.05em;
	font-weight:600;

	-webkit-transition:all 0.1s linear;
	-moz-transition:all 0.1s linear;
	transition:all 0.1s linear;
	margin-bottom: 30px;
	}

.gridTesto a.btn:hover {
	background-color:#fff;
  border:2px solid #CD373D;
  color:#CD373D;
  -webkit-transition:all 0.1s linear;
  -moz-transition:all 0.1s linear;
  transition:all 0.1s linear;
	}


.gridTesto a.btn.btn-reverse{
	background-color:#fff;
	border:2px solid #aaa;
	color:#888;
}
.gridTesto a.btn.btn-reverse:hover{
	border:2px solid #AD3034;
	background-color:#AD3034;
	color: #fff;
}

.gridTesto .ulRow {
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	border-radius:6px;
	overflow: hidden;
	}

.gridTesto .ulRow li { padding:5px 15px 5px 15px; }
.gridTesto .ulRow li:nth-child(odd) {	background-color:rgba(0,0,0,0.1); }
.gridTesto .ulRow li:nth-child(even) { background-color:rgba(0,0,0,0.05); }

.gridTesto .table_grid {
	border-collapse:collapse;
	width:100%;
	}

.gridTesto .table_grid thead { background-color:rgba(0,0,0,0.8); }
.gridTesto .table_grid thead p { color:#FFF; }

.gridTesto .table_grid thead th {
	padding:6px 0;
	border-spacing:0;
  border-collapse:collapse;
	border:1px solid rgba(255,255,255,0.2);
	}

.gridTesto .table_grid tr:nth-child(odd) {	background-color:rgba(0,0,0,0.1); }
.gridTesto .table_grid tr:nth-child(even) { background-color:rgba(0,0,0,0.05); }

.gridTesto .table_grid td {
	border-spacing:0;
  border-collapse:collapse;
  border-right:1px solid rgba(0,0,0,0.2);
	border:1px solid rgba(0,0,0,0.2);
	padding:13px 13px;
	}

.gridTesto .table_grid td p {
	text-align:center;
	display:block;
	}

/* =============
Media Queries
============= */

/* ====== Switch Menu ======  */
@media only screen and (min-width : 0) and (max-width : 766px),
only screen and (min-device-width : 0) and (max-device-width : 766px),
only screen and (min-device-width : 0) and (max-device-width : 766px) and (-webkit-min-device-pixel-ratio : 2),
only screen and (min-device-width: 0) and (max-device-height: 766px) and (-webkit-device-pixel-ratio: 3) {

  .desktop_view_menu {display:none;}
  .mobile_view_menu {display:block;}

}




/* ====== Small ======  */
@media only screen and (min-width : 0) and (max-width : 766px),
only screen and (min-device-width : 0) and (max-device-width : 766px),
only screen and (min-device-width : 0) and (max-device-width : 766px) and (-webkit-min-device-pixel-ratio : 2),
only screen and (min-device-width: 0) and (max-device-height: 766px) and (-webkit-device-pixel-ratio: 3) {

.gridTesto .table_grid { width:auto; }

.gridTesto .table_grid td {
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	}

.gridTesto h2 {
	font-size:35px;
	}

.gridTesto h3 {
	color:#666;
	font-size:17px;
	line-height:1.4em;
	}

.bg_cover_fixed { background-attachment: scroll; }
.pad0x20 { padding:0 20px; }

.box_fluid,
.box_med,
.box_small { width:100%; }

.colx2 {
	-moz-column-count:1;
	-moz-column-gap:0;
	-webkit-column-count:1;
	-webkit-column-gap:0;
	}

.desktop_view {display:none;}
.mobile_view {display:block;}

.gridTesto a.btn {
	display:block;
	}

}

/* ====== Med ======  */
@media only screen and (min-width : 767px) and (max-width : 959px),
only screen and (min-device-width : 767px) and (max-device-width : 959px),
only screen and (min-device-width : 767px) and (max-device-width : 959px) and (-webkit-min-device-pixel-ratio : 2),
only screen and (min-device-width: 767px) and (max-device-height: 959px) and (-webkit-device-pixel-ratio: 3) {

.center_med,
.box_fluid {width:100%;}
.bg_cover_fixed { background-attachment: scroll; }
.pad0x20 { padding:0 20px; }

}

/* ====== Big ======  */
@media only screen and (min-width : 960px) and (max-width : 1299px),
only screen and (min-device-width : 960px) and (max-device-width : 1299px),
only screen and (min-device-width : 960px) and (max-device-width : 1299px) and (-webkit-min-device-pixel-ratio : 2),
only screen and (min-device-width: 960px) and (max-device-height: 1299px) and (-webkit-device-pixel-ratio: 3) {

.box_fluid {width:960px;}

}


/* =========DECORAZIONI========== */

.deco-left:after,
.deco-right:before {
	content:'';
	display:inline-block;

	margin:.3em 2ch;
	width: 2.3em;
	height:2px;
	background-color:black;
}


/* ========= STILI BOX ========== */
/* Stile rosa Dietro */
.em_text{
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-image:url('../images/rosa_bn.png');
}
.em_text.no_bk{
	background: inherit ;
}
.em_text p{
  color:#111;
  font-size:1.2em;
	letter-spacing:.1ch;
  font-style: italic;
  font-family: Playfair Display, serif;
}
/* Stile bk grigio topo */
.bk_marmo{
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-image:url('../images/bk_marmo.jpg');

	box-shadow: inset 0 -10px 20px rgba(0,0,0,.02);
}
.bk_marmo,
.bk_marmo p,
.bk_marmo a,
.bk_marmo h3,
.bk_marmo h4{
	color:#fff;
	font-size:1.1em;
	letter-spacing:.05em;
}
.bk_marmo .deco-left:after,
.bk_marmo .deco-right:before {
	background-color:#fff;
}

/*
================================
*/

sup{ font-size:.7em }
