/* The flip card 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-card {
     background-color: transparent;
    font-family: Roboto,sans-serif;
    font-size: 20px;
    height: 300px;
    
    perspective: 1000px;
    width: 380px;
}


  /* Remove this if you don't want the 3D effect */
}
div#hs_cos_wrapper_module_54066331608_ {
  margin-left: 30px;
  margin-right: 30px;
}
p.element-text{
font-size:14px !Important;}

/* This container is needed to position the front and back side */
.flip-card-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-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
/* Img */
img.flip-img{
  max-width: 50%;
  
}
/* img-back */
img.flip-img-back{
  filter: brightness(900%);
  max-width: 50%;
  
  
}
/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 380px;
  height: 300px;
  max-width: 380px;
  max-height: 300px;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  text-align: left;

}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #fff;
  color: black;
  -webkit-box-shadow: 0px 0px 10px 0px #525252;
-moz-box-shadow: 0px 0px 10px 0px #525252;
-o-box-shadow: 0px 0px 10px 0px #525252;
box-shadow: 0px 0px 10px 0px #5252522e;
  padding: 10%;
}

/* Style the back side */
.flip-card-back {
  background-color: #ee840b;
  color: white;
  transform: rotateY(180deg);
  -webkit-box-shadow: 0px 0px 10px 0px #525252;
-moz-box-shadow: 0px 0px 10px 0px #525252;
-o-box-shadow: 0px 0px 10px 0px #525252;
box-shadow: 0px 0px 10px 0px #5252522e;
  padding: 10%;
}
/* RESPONSIVE */

@media only screen and (max-width: 600px) {
  
  .content-wrapper--vertical-spacing, .dnd-section {
    padding: 15px 0px;
}
  
  
  .flip-card {
    background-color: transparent;
    font-family: Roboto,sans-serif;
    font-size: 20px;
    height: 300px;
    perspective: 1000px;
    width: 380px;
    margin-top: 15px;
    margin-left: 10px;
}
 
  }