/*
Color
Font Size
Font Color
Font Family


*/
/*********Color*********/
/*********End Color*********/
/*********Font Size*********/
/*********End Font Size*********/
/*********Font Color*********/
/*********Font Family*********/
/*********End Font Color*********/
.a_section {
  display: flex;
  flex-direction: column;
  padding: 5rem 0px;
  justify-content: center;
  justify-self: center;
}
/***3D book hover****/
.cover {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(60, 60, 60, 0.6), rgba(60, 60, 60, 0.6)), url(https://pustaging.pageuppeople.com/wp-content/uploads/2024/11/pageup_Top_recruitment_themes_shaping_2025_Webinar.png);
  background-size: 100% 100%;
  transform-origin: 0;
  box-shadow: 1px 1px 12px #000;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transition: all 0.5s;
  cursor: pointer;
  padding: 1rem 2rem;
}
.book {
  position: relative;
  max-width: 300px;
  width: 90%;
  min-height: 500px;
  height: 100%;
  margin: auto;
  border-radius: 10px;
  background-color: #effffe;
  box-shadow: 1px 1px 12px #000;
  transform: preserve-3d;
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}
.book:hover .cover {
  transition: all 0.5s;
  transform: rotatey(-80deg);
}
.book .content {
  padding-left: 2rem;
}
.book .content p {
  color: #1f1f1f;
}
/***End 3D book hover****/
/****3D Gallery********/
.customer_logos_row .customer_logos_wrap {
  padding: 4rem 2rem 17rem;
  box-shadow: none;
}
.customer_logos_container {
  margin: auto;
  margin-top: 4rem !important;
  position: relative;
  width: 200px;
  max-width: 90%;
  height: auto;
  /* height: 350px; */
  transform-style: preserve-3d;
  transform: perspective(1000px);
  animation: rotate3D 20s linear infinite;
}
.customer_logos_container span {
  position: absolute;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
  transition: transform 1s;
}
.customer_logos_container img {
  height: 100px !important;
  height: auto;
  width: 100px;
  max-width: 90%;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.2));
  /* box-shadow: 0 15px 25px #1f1f1f;*/
}
@keyframes rotate3D {
  from {
    transform: perspective(1000px) rotateY(0deg);
  }
  to {
    transform: perspective(1000px) rotateY(360deg);
  }
}
/******End 3D Gallery*******/
/****Moving gradient color*****/
.gradient_blue_green_moving {
  background-size: 200%;
  animation: background_text_animation 2s infinite;
  animation-direction: alternate-reverse;
}
@keyframes background_text_animation {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}
/****End Moving gradient color *****/
/***Bouncing text****/
.letter {
  display: inline-block;
  animation: bounce 1.5s ease-in-out infinite;
  transform-origin: bottom;
}
@keyframes bounce {
  0%,
  80%,
  100% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(10px);
  }
}
.letter:nth-child(1) {
  animation-delay: 0.1s;
}
.letter:nth-child(2) {
  animation-delay: 0.2s;
}
.letter:nth-child(3) {
  animation-delay: 0.3s;
}
.letter:nth-child(4) {
  animation-delay: 0.4s;
}
.letter:nth-child(5) {
  animation-delay: 0.5s;
}
.letter:nth-child(6) {
  animation-delay: 0.6s;
}
.letter:nth-child(7) {
  animation-delay: 0.7s;
}
.letter:nth-child(8) {
  animation-delay: 0.8s;
}
.letter:nth-child(9) {
  animation-delay: 0.9s;
}
.letter:nth-child(10) {
  animation-delay: 1s;
}
/***End Bouncing text****/
/****Cursor hover effect****/
.shiny {
  color: white;
  position: relative;
  border: none;
  padding: 10px 15px;
  background: #3984ff;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
}
.shiny::after {
  content: "";
  position: absolute;
  top: calc(var(--y, 0) * 1px - 50px);
  left: calc(var(--x, 0) * 1px - 50px);
  width: 100px;
  height: 100px;
  background: radial-gradient(white, #3984ff00 80%);
  opacity: 0;
  transition: opacity 0.2s;
}
.shiny::after {
  opacity: 0.4;
}
/****End Cursor hover effect****/
/****3D gallery hover effect****/
.hoverWrapper {
  margin-inline: auto;
}
.hoverWrapper .gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  transform-style: preserve-3d;
  pointer-events: none;
}
.hoverWrapper .gallery .image {
  flex: 1;
  /*aspect-ratio: 1/1.5;*/
  /*background-color: #ffffff;*/
  pointer-events: auto;
  cursor: pointer;
  -webkit-box-reflect: below 4px linear-gradient(transparent, rgba(0, 0, 0, 0.15));
  transition: 0.4s;
}
.hoverWrapper .gallery .image img {
  display: block;
  /*aspect-ratio: 1/1.5;*/
  object-fit: cover;
}
.hoverWrapper .gallery img {
  width: 100%;
}
.hoverWrapper .image:hover {
  transform: scale(1.2);
}
.hoverWrapper .gallery:hover > :not(:hover) {
  margin-inline: -5.5rem;
  transform: perspective(400px) rotateY(30deg) scale(0.8);
}
.hoverWrapper .image:hover ~ .image {
  transform: perspective(400px) rotateY(-30deg) scale(0.8);
}
/****3D gallery hover effect****/
/*# sourceMappingURL=wilson.css.map */
