* {
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  /* font-style: normal; */
}

.custom-shadow {
  box-shadow: 2px 10px rgb(248, 235, 52);
}

.card-wrapper {
  perspective: 1200px;
}

.card {
  transform-style: preserve-3d;
  animation: rotateCard 4s linear infinite;
}

@keyframes rotateCard {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.card-face {
  backface-visibility: hidden;
}

.card-back {
  transform: rotateY(180deg);
  background-image: url("/public/front/assets/image/card.jpeg");
  background-size: cover;
  background-position: center;
}

.sm_bg {
  background: #fff;
  color: #000;
  border: solid 3px #6b0031;
  margin: 5px 0;
}

.heading_title {
  text-align: center;
  background-color: #00ffff;
  color: #3a0000;
  border: solid 2px #83f9ff;
  padding: 1px;
  font-size: 1.3em;
  font-weight: bold;
}

.ex1 {
  font-size: 14px;
  text-align: justify;
  font-weight: 500;
  line-height: 22px;
  width: 100%;
  overflow-y: scroll;
  max-height: 150px;
}

.card-image {
  background-image: url('/front/assets/image/card.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.description-container {
  height: 400px;
}

.whatsapp {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  right: calc(1.28125rem + 0.32143vw);
  z-index: 2;
  color: #a6a182;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-in-out;
  border-radius: 100%;
}