/* 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: 300px;*/
  height: 290px;
  border: 4px solid #00acbb;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}
.safron{
  border: 4px solid #f5831f;
}
/*.safron{
  background-color: #f5831f;
}*/
/*.tilt{
  background-color: #ff6a6a;
}
.yellow{
  background-color: #598e6d;
}*/
.imagediv{
  background-color: #2874f0;;
}
/* 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);
}

.center{
  margin: auto;
  padding: 85px 0px;
}
.center h2{
  color: #FFF;
    text-shadow: 1px 2px #000;
}

/* 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;
}

/* Style the front side (fallback if image is missing) */
.flip-box-front {
  /*background-color: #bbb;*/
  color: black;
}

/* Style the back side */
.flip-box-back {
  /*background-color: dodgerblue;*/
  color: white;
  transform: rotateY(180deg);
}
@media (max-width: 768px) {
    .imagedivs{display: none;}
  }
.flip-box-back img , .flip-box-front img{width: 100%;height:100%;}