.mosaic-s3-include--u-iuvayf907 {
  width: 100%; }

.panel {
  width: 576px;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  min-height: 307px;
  -webkit-perspective: 900px;
  perspective: 900px; }
  @media (max-width: 480px) {
  .panel {
    width: 100%; } }
/* -- make sure to declare a default for every property that you want animated -- */
/* -- general styles, including Y axis rotation -- */
.panel .front {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 900;
  text-align: center;
  border: 8px solid black;
  padding: 5% 5% 5% 5%;
  box-sizing: border-box;
  width: 576px;
  min-height: 307px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-transform: rotateX(0) rotateY(0);
  transform: rotateX(0) rotateY(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* -- transition is the magic sauce for animation -- */
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  @media (max-width: 480px) {
  .panel .front {
    width: 100%; } }
  .panel .front .img-text .text {
    font-size: 15px;
    margin-top: 8px; }

.panel.flip .front {
  z-index: 900;
  -webkit-transform: rotateY(179deg);
  transform: rotateY(179deg); }

.panel .back {
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 800;
  border: 8px solid black;
  padding: 5% 5% 5% 5%;
  box-sizing: border-box;
  width: 576px;
  min-height: 307px;
  max-width: 100%;
  -webkit-transform: rotateY(-179deg);
  transform: rotateY(-179deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* -- transition is the magic sauce for animation -- */
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  @media (max-width: 480px) {
  .panel .back {
    width: 100%; } }
  .panel .back .title {
    font-size: 26px;
    text-align: center;
    color: #000; }
  .panel .back .desc {
    font-size: 15px;
    margin-top: 8px;
    text-align: center;
    line-height: 25px;
    color: #000; }

.panel.flip .back {
  z-index: 1000;
  -webkit-transform: rotateX(0) rotateY(0);
  transform: rotateX(0) rotateY(0); }
