/* -------------------------------- 

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: "Roboto", sans-serif;
  color: #3d3536;
  background-color: white;
}

body, html {
  /* important */
  height: 100%;
}
h1, h2, h3, h4, p, a {
  font-family: 'Barlow', sans-serif;
  padding: 0;
  margin: 0;
 }

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  opacity: .7;
}

/* -------------------------------- 

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: 69%;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.scrolled {
  background: #dc0a27 !important;
}
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  /*background: rgba(255, 255, 255, 0.95);*/
  /*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);*/
  z-index: 2;
	display: block;
}
.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;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
  }
  .cd-header #cd-logo {
    margin: 23px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/0.1.png") no-repeat center center;
  background-size: 27px 27px;
  cursor: pointer;
}
.scrolledtre {
 background: url("../img/0.png") no-repeat center center;
  background-size: 27px 27px   !important; 
}
.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);
}
.scrolledue {
  color: #fff !important;
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #2f292a;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
}
@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: 0em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #3d3536;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
  }
  
}

.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 {
  position: absolute;
  left: 50%;
  top: 31%;
  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: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
.cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 53%;
  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: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
.cd-fixed-bg h4 {
  position: absolute;
  left: 50%;
  top: 74%;
  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: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/5.png");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/9.2.png");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/16.3.png");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../img/cd-background-4.jpg");
}
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1 {
    font-size: 70px;
    font-weight: 300;
  }
	.cd-fixed-bg h2 {
    font-size: 43px;
    font-weight: 100;
  }
	.cd-fixed-bg h4 {
    font-size: 33px;
    font-weight: 100;
  }
	.cd-fixed-bg p {
    font-size: 30px;
		font-weight: 100;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
   .cd-fixed-bg h1 {
    font-size: 70px;
    font-weight: 300;
  }
	.cd-fixed-bg h2 {
    font-size: 43px;
    font-weight: 100;
  }
	.cd-fixed-bg h4 {
    font-size: 33px;
    font-weight: 100;
  }
	.cd-fixed-bg p {
    font-size: 30px;
		font-weight: 100;
  }
}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #3d3536;
  color: #a6989a;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #fff;
	font-size: 18px;
	line-height: 24px;
	text-align: justify;
  color: #595959;
	padding-top: 12%;
}
.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;
  }
}

.testo {
  width: 200px;
	height: 100px;
	background-color: #000;
	margin: 0 auto;
}
.testodue {
  width: 200px;
	height: 60px;
	margin: 0 auto;
}
.testodue h3 {
  font-size: 40px;
	text-align: center;
	text-transform: uppercase;
	color: #000;
}
.testotre {
  margin-top: 35px;
}
.border {
    display: block;
    width: 80px;
    height: 2px;
    background: #060606;
    margin: 0 auto;
	margin-top: 24px;
}
.testodue2 {
  width: 200px;
	height: 60px;
	margin: 0 auto;
	padding-top: 80px;
}
.testodue2 h3 {
  font-size: 40px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}
.border2 {
    display: block;
    width: 80px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
	margin-top: 24px;
}
.cont {
  width: 100%;
	height: 80px;
	padding-top: 26px;
}
.cont2 {
  width: 100%;
	height: 175px;
	margin-top: 150px;
}
.cont3 {
  width: 70%;
	height: 175px;
	margin: 0 auto;
}
.text {
  width: 11vw;
	min-width: 60px;
	height: 11vw;
	min-height: 60px;
	float: left;
}
.contimg {
  width: 100%;
	height: 100%;
	min-height: 80px;
	min-width: 80px;
	overflow: hidden;
}
.text h3 {
  font-size: 20px;
	text-align: center;
	color: #fff;
	padding-top: 8px;
}
.text2 {
  width: 11vw;
	min-width: 60px;
	height: 11vw;
	min-height: 60px;
	float: left;
	margin: 0 5%;
}
.text2 h3 {
  font-size: 20px;
	text-align: center;
	color: #fff;
	padding-top: 8px;
}
.contimg2 {
  width: 100%;
	height: 100%;
	min-height: 80px;
	min-width: 80px;
	overflow: hidden;
}
.contimg3 {
  width: 100%;
	height: 100%;
	min-height: 80px;
	min-width: 80px;
	overflow: hidden;
}
.contimg4 {
  width: 100%;
	height: 100%;
	min-height: 80px;
	min-width: 80px;
	overflow: hidden;
}
.contimg5 {
  width: 100%;
	height: 100%;
	min-height: 80px;
	min-width: 80px;
	overflow: hidden;
}
.zoom img {
       width: 100%;
  height: 100%;
       -webkit-transition: all 1s ease;
       -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
       -ms-transition: all 1s ease;
       transition: all 1s ease;
 }
 .zoom img:hover {
      
	 -moz-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
 } 
.trasp a:hover {
  opacity: .9;
}
.freccia { 
	width: 50%;
	height: 20px;
	margin: 0 auto;
	margin-top: 72px;
}
.demo a {
  position: absolute;
  bottom: 15px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font : normal 400 20px/1 'Josefin Sans', sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}
.demo a:hover {
  opacity: .5;
}
.freccia p {
  font-size: 14px;
	text-align: center;
	color: #fff;
	padding-top: 0px;
}
#section06 a {
  padding-top: 70px;
}
#section06 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
  -webkit-animation: sdb06 1.5s infinite;
  animation: sdb06 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb06 {
  0% {
    -webkit-transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateY(720deg) rotateZ(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb06 {
  0% {
    transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotateY(720deg) rotateZ(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
.cont4 {
  width: 100%;
	height: 2405px;
}
.superfascia {
  width: 100%;
	height: 20%;
}
.fascia {
  width: 100%;
	height: 100%;
}
.titolo {
 width: 65%;
    height: 0px;
    position: relative;
    z-index: 10010;
    top: 5px;
}
.titolo h3 {
  font-size: 130px;
	font-weight: 500;
	color: #737272;
	padding-left: 38%;
}
.immagine {
  width: 50%;
	height: 100%;
	float: left;
}
.immagine img {
  width: 100%;
	height: 100%;
}
.testo2 {
  width: 50%;
	height: 100%;
	float: left;
}
.elenco {
 width: 63%;
    height: 57%;
    /* background-color: aqua; */
    margin: 27% 0 0 24%;
}
.elenco p {
  font-size: 20px;
	color: #3C3C3C;
	font-weight: 200;
	text-align: justify;
}
.circle {
      width: 10px;
      height: 10px;
      background: red;
      border-radius: 50%;
	float: left;
	margin-top: 5px;
		
    }
.elenco2 {
  width: 117%;
    height: 50%;
}
.uno {
  width: 100%;
    height: 18%;
}

/*fascia2*/
.fascia2 {
  width: 100%;
	height: 100%;
}
.titolo2 {
 width: 65%;
    height: 0px;
    position: relative;
    z-index: 10010;
    top: 5px;
	float: right;
}
.titolo2 h3 {
  font-size: 130px;
	font-weight: 500;
	color: #737272;
	padding-left: 23%;
}
.immagine2 {
  width: 50%;
	height: 100%;
	float: right;
}
.immagine2 img {
  width: 100%;
	height: 100%;
}
.testo2due {
  width: 50%;
	height: 100%;
	float: left;
}
.elenco3 {
 width: 63%;
    height: 57%;
    /* background-color: aqua; */
    margin: 27% 0 0 24%;
}
.elenco3 p {
  font-size: 20px;
	color: #3C3C3C;
	font-weight: 200;
	text-align: justify;
}
.elenco2due {
  width: 100%;
    height: 50%;
}

/*Fascia3*/
.titolo3 {
 width: 74%;
    height: 0px;
    position: relative;
    z-index: 10010;
    top: 5px;
}
.titolo3 h3 {
  font-size: 130px;
	font-weight: 500;
	color: #737272;
	padding-left: 7%;
}
.titolo4 {
 width: 65%;
    height: 0px;
    position: relative;
    z-index: 10010;
    top: 5px;
}
.titolo4 h3 {
  font-size: 130px;
	font-weight: 500;
	color: #737272;
	padding-left: 47%;
}
.grup {
  width: 90%;
	height: 118px;
	position: absolute;
	top: 49%;
	left: 5%;
}
.grup p {
 font-size: 20px;
	font-weight: 300;
	color: #fff;
	text-align: center;
}
.testodue3 {
  width: 200px;
	height: 60px;
	margin: 0 auto;
	padding-top: 140px;
}
.testodue3 h3 {
  font-size: 40px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}
.border3 {
    display: block;
    width: 80px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
	margin-top: 24px;
}
.grup2 {
  width: 100%;
	height: 800px;
	background-color: #1b1918;
}
.sette {
  width: 100%;
  height: 220px; 
  float: left;
	background-color: #1b1918;
}
.sette p {
  font-size: 35px;
    font-weight: 500;
	color: #fff;
	text-align: center;
	padding-top: 70px;
	text-transform: uppercase;
}
.otto {
  width: 56%;
  height: 395px; 
  float: left;
	margin-left: 5%;
}
.otto p {
  font-size: 19px;
    font-weight: 300;
    color: #fff;
    line-height: 40px;
    padding-left: 135px;
}
.nove {
  width: 29%;
  height: 395px; 
	float: left;
}
.dieci {
  width: 100%;
  height: 60px; 
	background-color: #737272;
}
.undici {
  width: 43%;
  height: 40px; 
	margin: 0 auto;
	padding-top: 23px;
}
.dodici {
  width: 100%;
  height: 20px;
	float: left;
}
.tredici {
  width: 35%;
  height: 20px; 
	float: left;
}
.dodici p {
  font-size: 16px; 
	color: #000; 
	text-align: center;
}
.tredici a {
	font-size: 16px; 
	color: #000; 
	display: block;
}
.tredici a:hover {
	
	text-decoration: underline;
}
.font {
font-size: 28px;
}
.campoform {
	font-size: 13px;  
	padding: 13px;
	color: #fff;
}
td {
	padding-left: 10px;
	border: none;
	text-decoration: none;
	background-color: transparent;
}
td p {
	color: #fff;
}
input {
	background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
	outline: none;
}
textarea {
	background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
	outline: none;
}
.width {
  width: 290px;
}
.width2 {
  width: 290px;
}
.titolettoRosso { font-family:'Raleway', sans-serif; font-size:15px;}
.zero {
  width: 50px;
	height: 50px;
    margin: 13px 0 0 162px;  
}
.btn-toolset {
 display: inline-block;
 text-align: center;
 white-space: nowrap;
 color: #dc0a27;
 text-decoration: none;
 font-weight: normal;
 font-size: 18px;
 /*background-color: rgb(115, 114, 114);*/
 border-radius: 5px;
	border: 1px solid #dc0a27;
 padding: 7px 11px;
 cursor: pointer;
}
.btn-toolset:hover {
 border: 1px solid #fff;
 color: #fff;
}
.btn-toolset > strong {
 font-size: 24px;
}
/*perchè*/
.perche {
	width: 90%;
	height: 609px;
	margin: 0 auto;
	background-color: #1b1918;
}
.primo {
	width: 55%;
	height: 500px;
	background-color: #fff;
	float: left;
	margin: 5% 0;
}
.primo2 {
	width: 80%;
	height: 308px;
	margin: 4% 10%
}
.primo2 p {
	font-size: 1.6vw;
	text-align: justify;
	line-height: 29px;
}
.secondo {
	width: 45%;
	height: 500px;
	float: right;
	margin: 5% 0;
}
.secondo img {
	width: 100%;
	height: 100%;
}

.cookie {
    width: 78%;
	height: auto;
	margin: 0 auto;
	margin-top: 70px;
}
.cookie p {
    padding: 30px 30px 30px 30px;	
}

@media only screen and (max-width: 962px) {
.cd-fixed-bg h1 {
  font-size: 2.600rem;
}
.cd-fixed-bg h2 {
  font-size: 1.600rem;
}
.cd-fixed-bg h4 {
  font-size: 1.300rem;
}
}
@media only screen and (max-width: 912px) {
.sette {
  width: 100%;
  height: 220px; 
  float: none;
	margin: 0 auto;
	background-color: #1b1918;
}
.sette p {
  font-size: 3.4vw;
    font-weight: 500;
	color: #fff;
	text-align: center;
	padding-top: 70px;
	text-transform: uppercase;
}
.font {
font-size: 3.1vw;
}
.otto {
  width: 58%;
  height: 395px; 
  float: none;
	margin: 0 auto;
}
.otto p {
  font-size: 19px;
    font-weight: 300;
    color: #fff;
    line-height: 40px;
    padding-left: 135px;
}	
.nove {
  width: 34%;
  height: 450px; 
	float: none;
	margin: 0 auto;
}
.grup2 {
  width: 100%;
	height: 1259px;
	background-color: #1b1918;
}
/*	fascia grafica*/
	
.titolo h3 {
  font-size: 14.4vw;
	font-weight: 500;
	color: #737272;
	padding-left: 38%;
}
.titolo2 h3 {
  font-size: 14.4vw;
	font-weight: 500;
	color: #737272;
	padding-left: 23%;
}
.titolo3 h3 {
  font-size: 14.4vw;
	font-weight: 500;
	color: #737272;
	padding-left: 7%;
}
.titolo4 h3 {
  font-size: 14.4vw;
	font-weight: 500;
	color: #737272;
	padding-left: 47%;
}
.primo2 p {
	font-size: 14px;
	text-align: justify;
	line-height: 22px;
	padding-top: 50px;
}

.primo {
	width: 100%;
	height: 480px;
	background-color: #fff;
	float: none;
	margin: 5% 0;
}
.secondo {
	width: 239px;
	height: 229px;
	float: none;
	margin: 0 auto;
}
.secondo img {
	width: 100%;
	height: 100%;
}
}
@media only screen and (max-width: 700px) {
.cd-fixed-bg h1 {
  font-size: 2.300rem;
}
.cd-fixed-bg h2 {
  font-size: 1.600rem;
}
.cd-fixed-bg h4 {
  font-size: 1.300rem;
}
.sette p {
  font-size: 22px;
}
.font {
font-size: 22px;
}
.otto {
  width: 84%;
}	
.nove {
  width: 54%;
}
.dieci {
 height: 90px;
}

}
@media only screen and (max-width: 618px) {
	
	/*fascia grafica*/
.titolo {
 width: 65%;
    height: 0px;
    position: relative;
    z-index: 10010;
    top: 5px;
}
.titolo h3 {
  font-size: 14.4vw;
	font-weight: 500;
	color: #737272;
	padding-left: 38%;
}
.immagine {
  width: 100%;
	height: 45%;
	float: none;
}

.testo2 {
  width: 100%;
	height: 100%;
	float: none;
}
.elenco {
 width: 81%;
    height: 57%;
    /* background-color: aqua; */
    margin: 5% 0 0 10%;
}

.elenco2 {
  width: 100%;
    height: 50%;
}
/*fascia web*/
.titolo2 {
 width: 65%;
    height: 0px;
    position: relative;
    z-index: 10010;
    top: 5px;
	float: right;
}

.immagine2 {
  width: 100%;
	height: 45%;
	float: none;
}

.testo2due {
  width: 100%;
	height: 100%;
	float: none;
}
.elenco3 {
 width: 81%;
    height: 57%;
    /* background-color: aqua; */
    margin: 5% 0 0 10%;
}
.elenco2due {
  width: 100%;
    height: 50%;
}
/*titoli*/
.cd-fixed-bg h1 {
  font-size: 2.000rem;
}
.cd-fixed-bg h2 {
  font-size: 1.400rem;
}
.cd-fixed-bg h4 {
  font-size: 1.100rem;
}
	
}
@media only screen and (max-width: 566px) {
.text2 {
  width: 11vw;
	min-width: 60px;
	height: 11vw;
	min-height: 60px;
	float: left;
	margin: 0 7%;
}
.contimg5 {
  width: 100%;
	height: 100%;
	min-height: 80px;
	min-width: 80px;
	overflow: hidden;
	margin-top: 80px;
}
.cont2 {
  width: 100%;
	height: 282px;
	margin-top: 150px;
}
.cont3 {
  width: 70%;
	height: 264px;
	margin: 0 auto;
}
.otto {
  width: 90%;
}	
.nove {
  width: 53%;
}
}
@media only screen and (max-width: 530px) {
.text2 {
  width: 11vw;
	min-width: 60px;
	height: 11vw;
	min-height: 60px;
	float: left;
	margin: 0 20%;
}
.contimg4 {
	margin-top: 80px;
}
.otto {
  width: 100%;
}	
.nove {
  width: 90%;
}
}
@media only screen and (max-width: 426px) {
/*.contimg5 {
  width: 100%;
	height: 100%;
	min-height: 80px;
	min-width: 80px;
	overflow: hidden;
	margin-top: 160px;
}
.contimg3 {
	margin-top: 80px;
}
	.contimg4 {
	margin-top: 80px;
}*/
.text2 {
	margin: 0 16%;
}
.cont2 {
  width: 100%;
	height: 282px;
	margin-top: 150px;
}
.cd-fixed-bg h1 {
  font-size: 1.300rem;
}
.cd-fixed-bg h2 {
  font-size: 1.000rem;
}
.cd-fixed-bg h4 {
  font-size: 0.800rem;
}
/*.cont4 {
 height: 3100px;
}*/
.titolo h3 {
  font-size: 60px;
}
.titolo2 h3 {
  font-size: 60px;
}
.titolo3 h3 {
  font-size: 60px;
}
.titolo4 h3 {
  font-size: 60px;
}
.immagine {
height: 36%;
}
.immagine2 {
height: 36%;
}
.elenco p {
  font-size: 18px;
	color: #3C3C3C;
	font-weight: 200;
	text-align: justify;
}
.elenco3 p {
  font-size: 18px;
	color: #3C3C3C;
	font-weight: 200;
	text-align: justify;
}
.dieci {
	height: 110px;
}
.cd-container {
	width: 85%;
}

}
@media only screen and (max-width: 400px) {
.otto {
  width: 100%;
}	
.otto p {
padding-left: 62px;
}
.nove {
  width: 90%;
}
.zero {
    margin: 13px 0 0 87px;  
}
.cd-fixed-bg h1 {
  font-size: 2.000rem;
}
.cd-fixed-bg h2 {
  font-size: 1.600rem;
}
.cd-fixed-bg h4 {
  font-size: 1.300rem;
}
.text2 {
	margin: 0 10%;
}
.primo {
    height: 531px;
}
}