@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  } /* Slightly enlarge or shift */
  100% {
    transform: scale(1);
  }
}
@keyframes bounce_inverse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  } /* Slightly enlarge or shift */
  100% {
    transform: scale(0.9);
  }
}
@keyframes bounceScale {
  0% {
    transform: scale(0.6); /* Start slightly smaller */
    animation-timing-function: ease-in; /* Accelerate into the bounce */
  }
  50% {
    transform: scale(1.2); /* Scale up with a slight overshoot */
    animation-timing-function: ease-out; /* Decelerate out of the bounce */
  }
  100% {
    transform: scale(1); /* Return to original size */
    animation-timing-function: ease-in; /* Accelerate into the next cycle */
  }
}
@keyframes arrowScrollDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0);
  }
}
.rebound-effect {
  animation: bounceScale 0.3s ease-out; /* Define a CSS animation for the bounce */
}

html {
  scroll-behavior: smooth;
  font-size: clamp(0.813rem, 0.614rem + 0.53vi, 1.25rem) !important;
}

@media screen and (max-width: 1280px) {
  body {
    --wp--style--root--padding-top: 0;
    --wp--style--root--padding-right: 1.5rem;
    --wp--style--root--padding-bottom: 0;
    --wp--style--root--padding-left: 1.5rem;
  }
}

* {
  box-sizing: border-box;
}

.flex-none {
  flex: none;
}

#arrow-scroll-down #arrow {
  animation: arrowScrollDown 0.8s ease-out infinite;
}

.industry-next,
.industry-prev,
.testimonials-next,
.testimonials-prev,
.solutions-next,
.solutions-prev,
.result-next,
.result-prev {
  cursor: pointer;
}
.industry-next.swiper-button-disabled,
.industry-prev.swiper-button-disabled,
.testimonials-next.swiper-button-disabled,
.testimonials-prev.swiper-button-disabled,
.solutions-next.swiper-button-disabled,
.solutions-prev.swiper-button-disabled,
.result-next.swiper-button-disabled,
.result-prev.swiper-button-disabled {
  opacity: 0.35;
  transform-origin: center center;
  transform: scale(0.8);
}

.swiper-industry .swiper-wrapper {
  gap: 5px !important;
}
.swiper-industry .swiper-wrapper .swiper-slide {
  width: auto;
  max-width: 361px;
}

.inner-slide {
  position: relative;
}

.industry-name {
  margin-top: 0 !important;
}

.swiper-solutions .swiper-slide {
  width: auto !important;
}
.swiper-solutions figure {
  margin: 0 !important;
}
.swiper-solutions img {
  display: block;
}

.swiper-solutions .swiper-slide {
  height: auto !important;
}

.logo-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.logo-swiper .swiper-wrapper .swiper-slide {
  max-width: 145px !important;
}
.logo-swiper .swiper-wrapper .swiper-slide.logo-slide img {
  max-height: 150px !important;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.logo-swiper .swiper-wrapper .swiper-slide.logo-slide img:hover {
  filter: grayscale(0%);
}

@media screen and (max-width: 680px) {
  .title-and-pagination-row {
    flex-direction: column;
  }
  .solution-navigation-row {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .inner-slide:hover .industry-name {
    max-height: 150px;
    opacity: 1;
  }
  .industry-name {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
    overflow: hidden !important;
    max-height: 1px;
    opacity: 0;
    transition: max-height 0.69s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
  }
}
@media screen and (max-width: 590px) {
  .grid-numbers {
    grid-template-columns: 1fr !important;
  }
  .grid-numbers .numbers-item {
    border: none !important;
    border-bottom: 1px solid var(--wp--preset--color--noir) !important;
  }
  .grid-numbers .numbers-item:last-child {
    border: none !important;
  }
}
@media screen and (min-width: 591px) and (max-width: 1023px) {
  .grid-numbers {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .grid-numbers .numbers-item:nth-child(2) {
    border-right: none !important;
  }
}
@media screen and (max-width: 768px) {
  .testimonial-item-content .testimonial-item-content--row {
    flex-direction: column !important;
  }
  .testimonial-item-content .wp-block-post-featured-image {
    display: none !important;
  }
}
@media screen and (max-width: 820px) {
  .wp-block-columns {
    flex-direction: column !important;
  }
}
@media screen and (max-width: 980px) {
  .section-results {
    display: flex;
    flex-direction: column-reverse;
    gap: 2.313rem;
  }
  .section-results video {
    position: static !important;
  }
  .section-results-description > .wp-block-group {
    max-width: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .grid-numbers {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
body.menu-mobile-is-active {
  background-color: var(--wp--preset--color--noir);
}
body.menu-mobile-is-active .koolreplay-logo-blanc {
  display: block;
}
body.menu-mobile-is-active .koolreplay-logo {
  display: none;
}
body.menu-mobile-is-active header:has([aria-label="Main navigation"]) {
  background-color: var(--wp--preset--color--noir);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10;
  padding: 0 26px 26px 26px;
  background-color: black;
  overflow-y: auto;
}

[aria-label="Main navigation"] {
  display: none !important;
}

[aria-label="Menu policies 2"] > ul,
[aria-label="Menu footer"] > ul {
  row-gap: 0.5rem !important;
}

.koolreplay-logo-blanc {
  display: none;
}

.koolreplay-logo {
  display: block;
}

.menu-item-cases-studies {
  color: var(--wp--preset--color--blanc);
}

.menu-item-case {
  color: var(--wp--preset--color--blanc);
  font-size: var(--wp--preset--font-size--medium) !important;
  padding-left: 1.5rem !important;
  line-height: 1;
}

@media screen and (min-width: 580px) {
  #header-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
}
@media screen and (min-width: 980px) {
  [aria-label="Main navigation"] {
    display: flex !important;
  }
  [aria-label="Main navigation"] li.wp-block-navigation-link:hover,
  [aria-label="Main navigation"] li.has-child:hover {
    color: var(--wp--preset--color--noir) !important;
  }
}
