@import 'https://fonts.googleapis.com/css?family=Open+Sans|Roboto:300';


.container_3d {
  perspective: 800px;
  /* Styling */
  color: #fff;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  /* Center it */
  position: relative;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card_3d {
  /* Styling */
  width: 100%;
  height: 400px;
  background: #141414;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  /* Card flipping effects */
  transform-style: preserve-3d;
  transition: 0.6s;
}

.side_3d {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  /* Fix Chrome rendering bug */
  transform: rotate(0deg) translateZ(1px);
}

/* Flip the card on hover */
.container_3d:hover .card_3d,
.back {
  transform: rotateY(-180deg) translateZ(1px);
}

/* Front styling */
.front_3d {
  /* Center the name + outline (almost) */
  line-height: 390px;
  /* Height - some (because visual center is a little higher than actual center) */
  text-align: center;
}

.logo_3d {
  outline: 1px solid #19F6E8;
  display: inline-block;
  padding: 15px 40px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 1.4em;
  font-weight: normal;
  line-height: 32px;
  letter-spacing: 8px;
}

/* Back styling */
.back_3d {
  background: #15CCC0;
  padding: 30px;
}

.name_3d {
  color: #3B3B3B;
  margin-bottom: 0;
}



.info_3d {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #3b3b3b;
}

.property_3d {
  color: #fff;
}

/* Make semi-responsive */
@media (max-width: 700px) {
  .card_3d {
    transform: scale(0.5);
  }

  .container_3d:hover .card_3d {
    transform: scale(0.5) rotateY(-180deg) translateZ(1px);
  }
}