/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
    background-color: transparent;
    width: 100%;
    height: 250px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
  }
  
  /* This container is needed to position the front and back side */
  .flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 2px 2px 8px rgb(0 0 0 / 5%);
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    padding:10px;
  }
  
  /* Style the front side */
  .flip-box-front {
    color: black;
  }

  /* Icon Image */
  .flip-box-front img {
    max-width:80px;
    text-align:center;
  }

  @media (max-width: 767.5px) {
    .flip-box-front img {
      margin-top:8%;
    }
  }

  @media (min-width: 768px) {
    .flip-box-front img {
      margin-top:15%;
    }
  }

  /* Title */
  .flip-box-front h3.title {
    display:block;
    margin-top: 10px;
  }
  
  /* Style the back side */
  .flip-box-back {
    background-color: #005AA4;
    color: white;
    transform: rotateY(180deg);
  }

  /* Description */
  .flip-box-back .description {
    font-size:0.85em;
    line-height: 1.2em;
  }

  @media (max-width: 1260px) {
    .flip-box-back .description {
      display: block;
      font-size: 1.2em;
      line-height: 1.4em;
      padding-top: 40px;
  }
  }