html, body {
  height: 100%
}

* {
  margin: 0px;
  padding: 0px;
}

body {
  background-color: #dadada;
  font-family: 'Roboto';
}

/*--------------- TODO:GENERALI ------------------*/
h1, h2, h3, h4 {
  color: #000000;
  font-size: 40px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 900;
}

p {
  line-height: 23px;
  font-size: 20px;
  font-weight: 300;
  color: #000
}

a {
  color: #333333
}

/* TODO:HOME */
.home {
  height: 100%;
  background-image: url(images/steli_al_vento.jpg);
  background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  background-position: center center;
}

.home_filter {
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.5;
}

.home_container{
  width: 100%;
  margin: auto;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0099ff;
  -moz-box-shadow: 0 0 15px #2f2d2d;
  -webkit-box-shadow:0 0 15px #2f2d2d;
  box-shadow: 0 0 15px #2f2d2d;
}

.home_container_centering{
  max-width: 1200px;
  margin: auto;
  height: 400px;
}

.title_home {
  height: 100%;
  width: 100%;
  position: relative;
}

.title_home h1{
  font-size: 60px;
  width: 750px;
  color: #fff;
  text-align: left;
  font-weight: 700;
  position: relative;
  margin: 0px;
  left: 3%;
  top: 50%;
  transform: translate(0, -50%);
}

.img_center img{
  position: absolute;
  width: 630px;
  bottom: 0px;
  right: 0px;
}

/* TODO:MENU */
.nav {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  background: #212125;
}

.nav_mobile{
  display: none;
}


.nav_container {
  max-width: 1200px;
  height: 60px;
  margin: auto;
  display: block;
}

.nav_container svg {
  position: relative;
  width: 70px;
  top: 50%;
  left: 2.5%;
  transform: translate(0%, -50%);
}

.menu_container {
  float: right;
}

.menu_container a {
  color: #fff;
  list-style: none;
  line-height: 60px;
  padding: 0PX 30PX;
  font-size: 15px;
  text-decoration: none;
}

.menu_container a:hover {
  color: #0099ff;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* la classe verrà aggiunta quando andiamo sulla sezione dei tag a*/
.active{
  color: #0099ff!important;
  background-color: #212125!important;
}

/* la classe verrà aggiunta quando scrogliamo la pagina*/
.fixed {
  position: fixed;
  height: 60px;
  z-index: 1;
}

/* TODO:CHI SIAMO */
/*PARRALLAX*/
.parallax_chi_simao {
  background-image: url('images/macchia_di_colore.jpg');
  height: 150px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.chi_siamo_container {
  max-width: 1200px;
  height: 500px;
  margin: auto;
  display: table;
}

.testo_chi_siamo {
  padding: 0px 30px;
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}

.img_stampanti_chisiamo {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}

.testo_chi_siamo h3 {
  text-align: left;
  font-size: 55px;
  margin: 0px;
  font-weight: 700;
}

.perche_sceglierci {
  text-align: center;
  font-weight: 700;
}

.testo_chi_siamo p {
  padding-top: 10px;
  padding-left: 3px;
  font-size: 18px
}

/* TODO:CARDS */
/*cards perchè sceglierci*/
.cards_scelta {
  max-width: 1500px;
  margin: auto;
  padding-bottom: 100px
}

.card_titoli_scelta {
  width: 33%;
  float: left;
  text-align: center;
  padding-top: 10px;
}

.card_titoli_scelta h4 {
  font-size: 25px;
  margin: 0px;
  padding-top: 10px;
  font-weight: 700;
}

.card_titoli_scelta svg {
  height: 90px;
  stroke: #000000;
  stroke-width: 0.2px
}

/* TODO:SLIDER */
.mySlides {
  display: none
}

.mySlides img {
  vertical-align: middle;
}

.text img {
  height: 30px
}

/* Slideshow container */
.slideshow-container {
  z-index: -1;
  position: relative;
  margin: auto;
  max-width: 900px;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 13px;
  margin-top: -22px;
  color: #333333;
  font-size: 25px;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Caption text */
.text {
  height: 30px;
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
.dot {
  position: static;
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 10px 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* TODO:PRODOTTI */
.banner_prodotti {
  width: 100%;
  min-height: 400px
}

.banner_prodotti_container {
  max-width: 1500px;
  margin: auto;
}

.banner_prodotti_img {
  width: 50%;
  height: 400px;
  display: table;
  float: right;
}

.img_prod_dx{
  float: left;
}

.banner_prodotti_testo h2 {
  margin: 0px;
  margin-bottom: 10px;
  line-height: 40px
}

.banner_prodotti_testo p {
  padding: 0px 60px;
  text-align: center;
}

.testo_prodotti_bianco p, .testo_prodotti_bianco h2 {
  color: #fff
}

.contatti_prodotti_container {
  width: 100px;
  margin: auto;
  margin-top: 10px
}

.contatti_prodotti {
  background-color: #0099ff;
  border-radius: 15px;
  border-bottom-right-radius: 5px;
  width: 35px;
  height: 35px;
  margin: 0 5px;
  border: none;
  float: left;
  text-align: center;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
}

.contatti_prodotti i {
  font-size: 20px;
  color: #fff;
  position: relative;
  top: 50%;
  transform: translate(0%, -50%);
}

.contatti_prodotti:hover {
  background-color: #ecc000;
  -ms-transform: scale(1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2);
  /* Safari 3-8 */
  transform: scale(1.2);
}

.img_prod_centering {
  display: table-cell;
  vertical-align: middle;
}

.banner_prodotti_img img {
  width: 85%;
  display: block;
  margin: auto;
}

.img_cartelloni {
  vertical-align: bottom;
}

.img_cartelloni img, .img_timbri img {
  width: 340px;
}

.img_magliette img {
  width: 80%;
}

.banner_prodotti_testo {
  height: 400px;
  width: 50%;
  display: inline-table;
}

.prod_testo_centrato {
  display: table-cell;
  vertical-align: middle;
}

.parallax_prodotti {
  height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax_grande_formato {
  background-image: url('images/prodotti/strada_urbana.jpg');
}

.parallax_drone {
  background-image: url('images/prodotti/cielo.jpg');
}

.parallax_timbri {
  background-image: url('images/prodotti/ufficio.jpg');
}

/* TODO:CONTATTI */
.cards_conatti {
  max-width: 1500px;
  text-align: center;
  margin: 200px auto;
}

.chiamaci_per_info {
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
}

.card_copia_contatti {
  padding: 50px 40px;
  float: left;
  width: 33%;
}

.card_copia_contatti i {
  font-size: 55px;
  padding-bottom: 10px;
  color: #0099ff
}

.card_copia_contatti p {
  line-height: 33px;
  font-size: 22px
}

.card_copia_contatti a:hover {
  color: #0099ff
}

.card_copia_contatti h4 {
  margin: 5px 1px;
  font-size: 28px;
  font-weight: 700;
}

.card_copia_contatti img {
  width: 70px;
  height: 70px;
}

/* TODO: POSIZIONE */
.banner_maps {
  width: 100%;
  height: 50%;
}

.banner_maps iframe {
  width: 100%;
  height: 100%;
}

/* TODO:FOOTER */
.footer {
  background-color: #e2e2e2;
  display: block;
}

.footer_copy {
  max-width: 1000px;
  margin: auto;
}

.footer_copy_text {
  width: 25%;
  float: left;
  margin: 5% 6%;
  height: 30%;
}

.footer_copy_text p{
  font-size: 12px;
}

.footer_copy_text h5{
  font-size: 15px;
}


.footer_logo {
  text-align: center;
  width: 20%;
  float: left;
  margin: 6% 3%;
}

.footer_logo svg {
  width: 100%;
  position: relative;
  top: 5px;
}

.footer_logo a {
  font-size: 12px;
  font-family: 'Roboto';
  font-weight: 300;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* html .clearfix {
  zoom: 1;
}

/* IE6 */
*:first-child+html .clearfix {
  zoom: 1;
}

/* IE7 */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
