 .card-box-container{
    display: flex;
    flex-wrap: wrap;
 }

 .card-box-container .card{
     
 }
 
 .card-content{
    background-color:#FFF;
    border-radius:15px;
    margin:20px;
    text-align:center;
    padding:15px;
 }
 .card-content:hover{
    animation: glow 1s infinite alternate;
 }
 @keyframes glow {
  from {
    -webkit-box-shadow:0px 0px 25px 0px #16a5a2;
    -moz-box-shadow: 0px 0px 25px 0px #16a5a2;
    box-shadow: 0px 0px 25px 0px #16a5a2;
  }
  to {
    -webkit-box-shadow:0px 0px 25px 5px #FFF;
    -moz-box-shadow: 0px 0px 25px 5px #FFF;
    box-shadow: 0px 0px 25px 5px #FFF;
  }
 }
 
 .card-box-icon svg{
    height:80px;
    fill:#16a5a2;
 }
 
 .disclaimer-content{
    margin:30px 30px 50px;
    color: #FFF;
    font-size: 0.8rem;
    text-align:justify;
 }
 .disclaimer-content h5{
    font-size:1.1rem;
 }
 .disclaimer-content p{
 }
 
 .cta-box-container{
     display: flex;
     overflow: hidden;
 }
@media only screen and (max-width: 600px) {
 .cta-box-container{
    display: block;
 }
}
 
 #cta-box-1, #cta-box-2, #cta-box-3, #cta-box-4 {
     display: contents;
 }
 
 /* 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 {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background-color: transparent;
  width: 25vW;
  height: 200px;
  border: 1px solid #f1f1f1;
  /*perspective: 1000px;  Remove this if you don't want the 3D effect */
}
@media only screen and (max-width: 600px) {
 .flip-box{
  width: 100vW;
 }
}

.flip-box svg{
    fill:#FFF;
    height:55px;
    margin:15px;
}

.flip-box .mbr-section-btn{
    padding-top:7px!important;
}

/* 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;
}

/* 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;
  cursor:pointer;
}

/* Style the front side */
.flip-box-front {
  background-color: #16a5a2;
  color: black;
}

/* Style the back side */
.flip-box-back {
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
} 


/* Font styles */
.flip-box h2{
    font-size:1.5em;
    color:#FFF;
    font-weight:100;
}

.card-content h4{
    font-weight: 100;
    color: #16a5a2;
    font-size: 2.5rem;
    margin: 15px 0;
}