.boxes * {
    box-sizing: border-box;
}
  
/* Float four columns side by side */
.column {
    float: left;
    width: 25%;
    padding: 0px 10px;
}


  
/* Remove extra left and right margins, due to padding */
.row {
    margin: 0 -5px;
}
  
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
  
/* Responsive columns */
@media screen and (max-width: 650px) {
    .column {
      width: 100%;
      display: block;
      margin-bottom: 5px;
    }
}

@media screen and (min-width: 650px) and (max-width: 980px) {
    .column {
      width: 50%;
    }
}

@media screen and (min-width: 980px) and (max-width: 1280px) {
    .column {
      width: 33%;
    }
}


@media screen and (min-width: 1280px) {
    .column {
      width: 25%;
    }
}


/* Style the counter cards */
/* .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 16px;
    text-align: center;
    background-color: #f1f1f1;
} */


.flip-card {
    background-color: transparent;
    height: 300px;
    perspective: 1000px;
    margin-bottom: 20px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .flip-card-front {
    background-color: rgba(187, 187, 187, 0.23);
    color: black;
  }
  
  .flip-card-back {
    background-color: #b4a282;
    color: white;
    transform: rotateY(180deg);
  }