.card-container {
  width: 100%;
  height: 25%;
  position: relative;
  border-radius: 5px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.card {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.card .front-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
}

.card .front-content p {
  font-size: 32px;
  font-weight: 700;
  opacity: 1;
  background: linear-gradient(-45deg, #BF94B8 0%, #BF40A8 100% );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
}

.card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(to left, #1A1B1E, #1A1B1E 10%, #BF40A8 100%, #BF40A8 75%);
  color: #e8e8e8;
  padding: 2px;
  line-height: 1.5;
  border-radius: 5px;
  pointer-events: none;
  transform: translatex(96%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card .content button, .card .content .button, .card .content [role="button"] {
  pointer-events: auto; /* Specifically enable pointer events for buttons */
}

.card .content .heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: -1%;
}

.card:hover .content {
  transform: translateY(0);
}

.card:hover .front-content {
  transform: translateX(20%);
}

.card:hover .front-content p {
  opacity: 0;
}

.card-container, .card {
  background-color: rgba(255,255,255, 0); /* transparente */
}



.button-home-page {
  height: 50px;
  width: 200px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  overflow: hidden;
  border-radius: 30px;
  color: #FFFFFF;
  transition: all 1.0s ease-in-out;
}
.btn-txt {
  z-index: 1;
  font-weight: 800;
  letter-spacing: 4px;
}
.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 1.0s ease-in-out;
  background-color: #FFFFFF;
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}
.button-home-page:hover {
  box-shadow: 1px 1px 50px #FFFFFF;
  color: #BF40A8;
  border: none;
}
.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}


@media (max-width: 900px) {
  .card .content .heading{
    font-size: 14px;
  }
  .card .front-content p{
    font-size: 14px;
  }
  .card-inside-font{
    font-size: 10px;
  }
}


.mantine-ukbbnm.mantine-Accordion-content {
  padding: 0;
}