body, html{
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
}

/*------------------------
General styles
------------------------*/
.animated{
  -webkit-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}


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

/*------------------------
Header
------------------------*/
.header{
  background-color: #222;
  height: 80px;
  position: fixed;
  width: 100%;
  left: 0;
}

.logo{
  color: #fff;
  display: block;
  line-height: 80px;
  float: left;
  font-size: 16px;
  padding: 0 0 0 70px;
}

/*------------------------
Menu
------------------------*/
.header_menu{
  list-style: none;
  margin: 0;
  padding: 0 50px 0 0;
  float: right;
}

.menu_item{
  display: inline-block;
  line-height: 80px;
  margin-right: 20px;
}

.menu_item a{
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
  le
}

.icon_bar{
  display: block;
  float: right;
  display: none;
}

.icon_bar span{
  display: block;
  height: 2px;
  width: 26px;
  margin-bottom: 5px;
  background-color: #fff;
}

/*------------------------
Cover
------------------------*/
.cover{
  height: 70%;
  background-image: url("https://source.unsplash.com/category/nature");
  -webkit-background-size: cover;
  background-size: cover;
  -moz-webkit-background-size:cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.cover_caption{
  width: 100%;
  height: 100%;
  display: table;
}

/*------------------------
Cards
------------------------*/
.cards{
  max-width: 1200px;
  margin: 50px auto;
  padding: 0;
}

.card{
  width: 30%;
  margin: 0 1.5%;
  float: left;
  background-color: #f2f2f2;
}

.img_card{
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.card_copy{
  padding: 15px 30px;
}

.card_copy h3{
  font-size: 24px;
  font-weight: 400;
  margin-top: 14px;
}

/*------------------------
Newsletter
------------------------*/
.titolo-principale{
  font-size: 40px;
  font-weight: 700;
}

.sottotitolo{
  font-size: 26px;
  font-weight: 100;
}

/*------------------------
Form
------------------------*/
form{
  display: block;
}

#prenota form{
  width: 400px;
  margin: 40px auto;
  text-align: left;
}

#prenota input[type=text]{
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  color: #ddd;
}

#prenota input[type=submit]{
  background-color: #222;
  color: #fff;
  border-radius: 0;
  padding: 10px 30px;
  margin: 0 0 30px 0;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  border: none;
  -webkit-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}

#prenota input[type=submit]:hover{
  background-color: red;
}

*:focus {
    outline: none;
}

/*------------------------
Footer
------------------------*/
.footer{
  height: 300px;
  background-color: #222;
}

.footer p{
    color: #fff;
    line-height: 300px;
    margin: 0;
}













/*------------------------
Desktop
------------------------*/
@media (max-width:970px){

}


/*------------------------
Smartphone
------------------------*/
@media (max-width:767px){
    .icon_bar{
      display: block;
      padding: 32px 14px;
    }
    .header_menu{
      height: 0;
      overflow: hidden;
      width: 100%;
      padding-left: 20px;
    }
    .menu_item{
      display: block;
      border-bottom: 1px solid #333;
    }
    .is-open{
      height: 300px;
      overflow: auto;
    }
    .card{
      width: 90%;
      margin: 5%;
    }
    #prenota form{
      width: 360px;
      margin: 0 20px;
    }
    .logo{
      padding: 0 0 0 20px;
    }
}





.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 */
