/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: 'Poppins', sans-serif;
  color: #7c6568;
  background-color: #f4f1f2;
}

body, html {
  /* important */
  height: 100%;
    width:  calc(100% - 20px);
	 
  margin: 0 auto;
}
  .none  {
 display:none;
}



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

body, html {
  /* important */
  height: 100%;
    width:  calc(100% - 50px);
  margin: 0 auto;
}
  .none  {
 display:block;
}
}
strong{
	font-weight: 500; 
}
.txts{
	font-size: 0.8em;
	width: calc(100% - 10px);
}

.txts a{
	  color: #f4f1f2;
	text-decoration: none;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 70%;
   max-width: 1000px;
  margin: 0 auto;
 
}

.cd-container2 {
	/* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
	width: 90%;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

.cd-container2::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  
  height: 70px;
    background-color: #f4f1f2;

  z-index: 2;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
  max-width:100px;
}
.txtcentra {
	text-align: center;
	padding-bottom: 40px;
}
.txtcentras {
	text-align: center;
	font-size: 0.8em;
	
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

.txtcentras a{
	text-decoration: none;	
	color:#7c6568;
}



@media only screen and (min-width: 768px) {
  .cd-header {
    height: 150px;
  }
  .cd-header #cd-logo {
    margin: 23px 0 0 5%;
  }
  
  .cd-header #cd-logo img {

  max-width:200px;
}
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding-left: 5%;
	background: #c76682;
	border-top: 1px solid #FFFFFF;
	color: #FFFFFF;
	text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #c76682;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .no-touch .cd-main-nav a:hover {
    color: #7c6568;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: calc(50% + 70px);
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
  text-align: center;
font-size: 3em;
ont-weight: 300;
	text-transform: uppercase;
  
  color: #c76682;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/cd-background-1.jpg");
    min-height: 95%;
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/cd-background-2.jpg");
   min-height: 60%;
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/cd-background-3.jpg");
    min-height: 60%;
}
.cd-fixed-bg.cd-bg-4 {
   background-image: url("../img/cd-background-4.jpg");
    min-height: 60%;
}

.cd-fixed-bg.cd-bg-5{
    min-height: 40px;
}
.cd-fixed-bg.cd-bg-6 {

    min-height: 60%;
}

.cd-fixed-bg.cd-bg-7 {
   background-image: url("../img/cd-background-5.jpg");
    min-height: 60%;
}

.cd-fixed-bg.cd-bg-8 {
   background-image: url("../img/cd-background-6.jpg");
    min-height: 60%;
}
.cd-fixed-bg.cd-bg-9 {
  background-image: url("../img/cd-background-7.jpg");
    min-height: 95%;
}
 h2 {
	font-size: 2em;
	font-weight: 300;
	text-transform: uppercase;
	color: #C76682;
	text-align: center;
  }
   h3 {
	font-size: 1em;
	font-weight: 500;
	text-transform: uppercase;
	color: #C76682;
	text-align: center;
  }
  
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 4em;
	font-weight: 300;
	text-transform: uppercase;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
	
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
	font-size: 6em;
	font-weight: 300;
	text-transform: uppercase;
  }
  h2 {
	font-size: 3em;
	font-weight: 300;
	text-transform: uppercase;
	color: #C76682;
	text-align: center;
  }
    h3 {
	font-size: 1em;
	font-weight: 500;
	text-transform: uppercase;
	color: #C76682;
	text-align: center;
  }
}

.cd-scrolling-bg {
  position: relative;

  padding: 4em 0;
  line-height: 1.6;

  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #7c6568;
  color: #c8bfbf;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #99a478;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #b4d7a8;
  color: #3d3536;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 8em 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
  

}


.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	display: block;
	
	width: 100%;
 } 

@media only screen and (min-width: 1170px) {
/* Griglia */
.grid_1 { width: 8.33333333%; } 
.grid_2 { width: 16.6666667%; } 
.grid_3 { width: 25%; } 
.grid_4 { width: 33.33333333%; } 
.grid_5 { width: 41.666667%; }
.grid_6 { width: 50%; } 
.grid_7 { width: 58.33333333%; } 
.grid_8 { width: 66.666667%; } 
.grid_9 { width: 75%; } 
.grid_10 { width: 83,333334%; } 
.grid_11 { width: 91.6666667%; } 
.grid_12 { width: 100%; } 

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	float: left;
	display: block;

	
	
}
.l {
	margin-left: 16.6666667%;	
}
.grid_4{
	border-right: thin solid #C76682;
	min-height: 400px;
}
.grid_4:last-child{
	border-right: none;
}

.grid_6{
	border-right: thin solid #C76682;
	min-height: 400px;
}
.grid_6:last-child{
	border-right: none;
}
}

.grid_12 img{
	display: block;
	width: 100%;
	height: auto;
 } 
/* Wrap responsive */
.googlemap_wrap  {
    position: relative;
    padding-bottom: 65.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
/* iframe posizionato in maniera assoluta */
.googlemap_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Required */

.hidden{
	opacity: 0;
}

.visible{
	opacity: 1;
}
.pad{
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
@media only screen and (max-width: 800px) {


.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%;
}
}

table, th, td {
   font-size: 0.9em;
}