
/* start card-bottom-right */

.card-hover-right-container {
  width: 100%;
  height: 400px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  font-size: 1.3rem;
}

.card-hover-right {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.card-hover-right .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-hover-right .front-content p {
  font-size: 32px;
  font-weight: 700;
  opacity: 1;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 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-hover-right .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% );
  color: #e8e8e8;
  padding: 20px;
  line-height: 1.5;
  border-radius: 5px;
  /* pointer-events: none; */
  transform: translatex(97%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

/* .card-hover-right .content button{
  all:none;
} */

.card-hover-right .content .heading {
  font-size: 32px;
  font-weight: 700;
}

.card-hover-right:hover .content {
  transform: translateY(0);
}

.card-hover-right:hover .front-content {
  transform: translateX(20%);
}

.card-hover-right:hover .front-content p {
  opacity: 0;
}

/* end card-bottom-right */


/* start card-hover-bottom */

.card-hover-bottom-container {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.card-hover-bottom {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.card-hover-bottom .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-hover-bottom .front-content p {
  font-size: 32px;
  font-weight: 700;
  opacity: 1;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 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-hover-bottom .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% );
  color: #e8e8e8;
  padding: 20px;
  line-height: 1.5;
  border-radius: 5px;
  pointer-events: none;
  transform: translateY(96%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-hover-bottom .content .heading {
  font-size: 32px;
  font-weight: 700;
}

.card-hover-bottom:hover .content {
  transform: translateY(0);
}

.card-hover-bottom:hover .front-content {
  transform: translateY(-30%);
}

.card-hover-bottom:hover .front-content p {
  opacity: 0;
}

/* end card-hover-bottom */

/* start card-hover-top */

.card-hover-top-container {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.card-hover-top {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.card-hover-top .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-hover-top .front-content p {
  font-size: 32px;
  font-weight: 700;
  opacity: 1;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 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-hover-top .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% );
  color: #e8e8e8;
  padding: 20px;
  line-height: 1.5;
  border-radius: 5px;
  pointer-events: none;
  transform: translateY(-96%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-hover-top .content .heading {
  font-size: 32px;
  font-weight: 700;
}

.card-hover-top:hover .content {
  transform: translateY(0);
}

.card-hover-top:hover .front-content {
  transform: translateY(30%);
}

.card-hover-top:hover .front-content p {
  opacity: 0;
}



/* end card-hover-top */


/* start card-hover-left */

.card-hover-left-container {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.card-hover-left {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.card-hover-left .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-hover-left .front-content p {
  font-size: 32px;
  font-weight: 700;
  opacity: 1;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 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-hover-left .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% );
  color: #e8e8e8;
  padding: 20px;
  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-hover-left .content .heading {
  font-size: 32px;
  font-weight: 700;
}

.card-hover-left:hover .content {
  transform: translateY(0);
}

.card-hover-left:hover .front-content {
  transform: translateX(-30%);
}

.card-hover-left:hover .front-content p {
  opacity: 0;
}

/* end card-hover-left */