@charset "utf-8";
/* CSS Document */

  .flip-card {
    perspective: 1000px;
    margin: 5px;
  }
  .flip-card-inner {
    width: 100%;
    height: 260px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
  }
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .flip-card-front {
    background: #fff;
    padding: 15px;
  }
  .flip-card-front .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
  }
  .flip-card-front img {
    width: auto;
    max-width: 100%;
    height: 25%;
    object-fit: contain;
  }
  .flip-card-front .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #257bbd;
    margin-bottom: 5px;
    margin-top: 10px;
  }
  .flip-card-front .card-text {
    font-size: 1rem;
    color: #555;
  }
  .flip-card-back {
    background: #257bbd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
    font-size: 1.15rem;
	padding: 15px;
  }