body {
  margin: 0;
  padding: 0;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <300>;
  font-style: normal;
  background: #82F58A;
}
.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <300>;
  font-style: normal;
}

/* Grow */
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    transition-property: all;
  }
  .hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  /* Shrink - rimpicciolisci */
  .hvr-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: all;
  }
  .hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
    -webkit-transform: scale(0.94);
    transform: scale(0.94);
  }
  
img {
    max-width: 100%;
}


a:link {
    text-decoration: none;
    color: #000000;
}
a:hover {
    text-decoration: none;
    color: #317E69;
}
h1, h2 {
    font-size: 3.4em;
    font-weight: 500;
}

h3, h4 {
    font-size: 2.2em;
    font-weight: 300;
}

p {
    font-size: 1.4em;
    line-height: 1.3;
}
.flex-container {
  display:flex

}
.contenitore-principale {
  max-width: 90%;
  margin: 0 auto;
}
.header .flex-container {
  justify-content: space-between;
  align-items: center;
}
.header i{
  font-size: 25px;
}
.header{
  padding: 20px 0;
}
.banner {
  position: relative;
}
.banner h1{
  color:  #317E69;
  text-transform: uppercase;
  text-align: center;
}
.banner img{
 margin: 0 auto;
  margin-top: -170px ;
  display: block;
}
.banner h2{
  font-weight: 400;
  font-size: 2em;
 color: #000000;
}
.pulsante{
  display: inline-block;
  padding: 20px;
  border-radius: 5px;
  background:#000000;
  color: #ffffff;
  box-shadow: 0 5px 5px rgba(255, 253, 253, 0.3);
  font-size: 1.2em;
}
.pulsante i{
  margin-left: 15px;
}
.banner .flex-container{
  justify-content: space-between;
}
.tabs{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  text-transform: uppercase;
  font-weight: 400;
  justify-content: space-between;
  padding: 50px 0;
}
.tabs .attivo {
  padding: 5px 10px;
  color:  #317e69;
  background: #ffffff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, .3);
}
.griglia-2-colonne {
  flex-wrap: wrap;
}
.griglia-2-colonne .prodotto {
flex-basis: 48%;
margin-left: 1%;
margin-right: 1%;
position: relative;
background: #ffffff;
border-radius: 5px;
box-shadow: 0 5px 5px #0000004d;
margin-bottom: 2%;
}
.prodotto .padding{
  padding: 10px;
}
.prodotto .fa-heart{
  position: absolute;
  top: 7px;
  right: 7px;
  transition: all 300ms;
}
.prodotto .fa-heart:hover{
  color: #f70000;
}
.prezzo-cta{
  justify-content: space-between;
  align-items: center;
}
.prodotto h5{
  font-size: 1.4em;
  color: #317E69;
  font-weight: 300;
  margin: 0;
}
.newsletter {
  background: #000000;
  margin-top: 50px;
  padding: 50px 0;
}
.newsletter h3{
  color: #ffffff;
  margin-top: 0;
}
input{
  border: none;
  padding: 20px;
  font-size: 1.2em;
  min-width: 60%;
  border-radius: 5px;
  box-shadow: 0 5px 5px rgba(0, 0, 0.2);
}
button{
  border: none;
  padding: 20px;
  background: #317E69;
  border-radius: 5px;
  box-shadow: 0 5px 5px rgba(0, 0, 0.2);
  margin-left: 5px;
  font-size: 1.2em;
  color: #f4f6f5;
}