.gb-grid-column:first-child .bevande-card {
  float: right;
}
.gb-grid-column:first-last .bevande-card {
  float: right;
}
.bevande-card {
  position: relative;
  /*top: 30%;*/
  left: 0;
  right: 0;
  width: 430px;
  height: 430px;
  /*margin: -150px;*/
  /*float: left;*/
  perspective: 600px;
}

.content {
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);

  transition: transform 1s;
  transform-style: preserve-3d;
}

.bevande-card:hover .content, .bevande-card:active .content, .bevande-card:focus .content {
  transform: rotateY( 180deg ) ;
  transition: transform 0.5s;
}
.front,
.back {
  padding: 15px;
  position: absolute;
  height: 100%;
  width: 100%;
  background: #ffdc69;
  /**line-height: 300px;**/
  color: #03446A;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  /*border-radius: 5px;*/
  backface-visibility: hidden;
  text-transform: unset;
}
.front .bevande-card-header {
  background: #fff;
  text-align: center;
  border-radius: 0 !important;
  height: 100%;
}
.front h2 {
  margin-top: 15px;
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 900;
}
.back {
  /*justify-content: center;
  align-content: center;*/
  background: #1c61a0;
  color: #ffffff;
  transform: rotateY( 180deg );
}
.bevande-card .back {
  flex-wrap: wrap;  
  display: flex;
  justify-content: center;
  align-content: center;
}
.back hr {
  color: #ffffff;
}
.front img.bevande {
  width: 100%;
  transform-origin: center center;
  transform: translatey(0);
}
@media only screen and ( max-width: 1200px ) { /** Tablet verticale **/
  .bevande-card {
    width: 480px;
    height: 480px;
  }
  .front h2 {
    font-size: 2.5rem;
  }
}
@media only screen and ( max-width: 1000px ) { /** Tablet verticale **/
  .bevande-card {
    width: 380px;
    height: 380px;
  }
  .front h2 {
    font-size: 1.75rem;
  }
}
@media only screen and ( max-width: 480px ) { /** Smartphone Verticale **/
  .bevande-card {
    width: 100%;
    height: 100vw;
  }
  .front h2 {
    font-size: 2rem;
  }
}