@keyframes slideshowTextRiseUp {
  0% {
    opacity: 0;
    transform: translateY(120%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

.slideshow {
  display: block;
  position: relative;
}

.slideshow__slider {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  height: 700px;
}

@media screen and (max-width: 959px) {
  .slideshow__slider {
    height: 500px;
  }
}

.slideshow__slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slideshow-slide__media {
  position: relative;
  width: 100%;
  height: 100%;
}

a.slideshow-slide__media {
  display: block;
}

.slideshow-slide__media::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: calc(var(--slideshow-overlay-opacity, 0) / 100);
  background-image: linear-gradient(92deg, rgba(0, 0, 0, .65) 36.58%, rgba(0, 0, 0, 0) 63.19%);;
  display: block;
  content: "";
  z-index: 1;
}

.slideshow-slide__media--adapt .slideshow-slide__image,
.slideshow-slide__media--adapt .slideshow-slide__image-placeholder {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.slideshow-slide__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slideshow-slide__image-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
  background-color: rgb(var(--color-image-background));
}

.slideshow-slide__image-placeholder > svg {
  display: block;
  height: 100%;
  max-height: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-section .hero-btn {
  font-size: 16px !important;
}

@media screen and (max-width: 959px) {
  .slideshow-slide__image-placeholder {
    min-height: 250px;
  }

  .slideshow-slide__image-placeholder > svg {
    height: 80%;
  }
}

.slideshow-slide__text-wrapper {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  /* pointer-events: none; */

  display: flex;
  align-items: var(--slideshow-pc-text-position-vertical, "center");
  justify-content: var(--slideshow-pc-text-position-horizontal, "center");

  padding: 0 10%;
}

.slideshow-slide__text > [data-animation] {
  opacity: 0;
  transform: translateY(120%);
}

.slideshow-slide__title {
  font-size: var(--slideshow-title-size);
}

@media screen and (max-width: 959px) {
  .slideshow-slide__buttons .golf-btn  {
    width: 123px !important;
    height: 39px !important;
    line-height: 1 !important;
    font-size: 14px !important;
  }

}

@media screen and (max-width: 959px) {
  .slideshow-slide__text-wrapper {
    align-items: center;
    justify-content: center;
  }

  .slideshow-slide__text {
    text-align: var(--slideshow-mobile-text-align, "center");
  }
}

.slideshow-slide__buttons {
  /* margin: 2rem 0; */
  margin: 50px 0 70px;
}
.slideshow-slide__button {
  pointer-events: all;
  opacity: 0;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.slideshow-slide__button + .slideshow-slide__button {
  margin-left: 14px;
  animation-delay: 1.3s;
}

.slideshow-slide__sub-title,
.slideshow-slide__desc {
  margin: 0;
}

@media screen and (min-width: 960px) {
  .slideshow-slide__desc {
    margin: 8px 0;
  }
}

.is-active .slideshow-slide__text > [data-animation] {
  animation: slideshowTextRiseUp 0.8s cubic-bezier(0.26, 0.54, 0.32, 1) forwards;
}

.is-active .slideshow-slide__text .slideshow-slide__sub-title,
.is-active .slideshow-slide__text .slideshow-slide__desc {
  animation-delay: 0.6s;
}

.is-active .slideshow-slide__button {
  animation-name: fadeIn;
}

.slideshow__control {
  position: absolute;
  z-index: 2;
}

/* Arrow style switcher */

.slideshow__control--arrows {
  bottom: 0;
  right: 40px;
  transform: translateY(50%);
}

.control__arrow-buttons {
  display: flex;
  align-items: center;
  align-items: center;
  gap: 10px;
}

.control__arrow-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  background-color: rgba(var(--color-page-background));
  box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
  transition: transform 0.3s;
  border: none;
}

.control__arrow-button:hover {
  transform: scale(1.12);
}

.control__arrow-button[name="previous"] {
  transform: rotate(90deg);
  box-shadow: 5px 0 5px rgb(0 0 0 / 10%);
}

.control__arrow-button[name="previous"]:hover {
  transform: rotate(90deg) scale(1.12);
}

.control__arrow-button[name="next"] {
  transform: rotate(-90deg);
  box-shadow: -5px 0 5px rgb(0 0 0 / 10%);
}

.control__arrow-button[name="next"]:hover {
  transform: rotate(-90deg) scale(1.12);
}

@media screen and (max-width: 959px) {
  .slideshow__control--arrows {
    right: 20px;
  }
  .control__arrow-button {
    width: 32px;
    height: 32px;
  }
}

/* Progress bar style switcher */

.slideshow__control--bars {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.control__bars {
  display: flex;
  align-items: stretch;
  height: 6px;
  gap: 10px;
}

.control__bar {
  position: relative;
  display: block;
  width: 120px;
  height: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.4);
  transition: background 0.3s;
  overflow: hidden;
}

.control__bar:hover,
.control__bar:active {
  background-color: #fff;
}

@keyframes slideshowBars {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.control__bar::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  transform: translateX(-100%);
}

.control__bar:target::after,
.control__bar.is-active::after {
  animation: slideshowBars var(--slideshow-speed, 0s) linear forwards;
}

@media screen and (max-width: 959px) {
  .control__bar {
    width: 60px;
  }
}

/** Small dot style switcher */

.slideshow__control--dots {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.control__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.control__dot {
  display: block;
  padding: 0;
  width: 8px;
  height: 8px;
  margin: 7px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: background 0.3s;
  cursor: pointer;
}

.control__dot.is-active {
  width: 10px;
  height: 10px;
  cursor: default;
}

.control__dot:hover,
.control__dot:active,
.control__dot:target,
.control__dot.is-active {
  background-color: #fff;
}

.slideshow-slide__text-nobtn {
  position: relative;
}

.slideshow-slide__text-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 493px;
  height: 406px;
}

.slideshow-slide__text-mask.mask-deep {
  border-radius: 50%;
  background: radial-gradient(
    77.64% 77.64% at 50% 50%,
    rgba(0, 0, 0, 0.3) 59.64%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: blur(120px);
}

.slideshow-slide__text-mask.mask-light {
  border-radius: 50%;
  background: radial-gradient(
    77.64% 77.64% at 50% 50%,
    rgba(255, 255, 255, 0.3) 59.64%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(120px);
}

@media screen and (max-width: 959px) {
  .slideshow-slide__text-mask {
    width: 355px;
    height: 292px;
  }
}

/* cutsom style */

.s-white {
  color: #fff;
}

.golf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 42px;
  line-height: 1;
  background-color: #05A886;
  color: #FFF !important;
  border: none;
  outline: none;
  text-align: center;
  cursor: pointer !important;
  font-weight: 400;
  font-size: 18px;
  font-family: 'Poppins';
  text-decoration: none;
}
.golf-btn:hover {
  background-color: #04af9a !important;

}
.product_card_media {
  background-color: #FAF8F8;
}

.product_card_media > img {
  mix-blend-mode: multiply;
}

.trusted-by {
 font-weight: 400;
}
.Trusted-images{
  display: flex;
}
#dynamic-title {
  color: #FFF;
  width: 60%;
  font-weight: 500;
}

.highlighted {
  font-weight: bold;
  color: #05A886;
}

.slideshow-slide__buttons .golf-btn {
  width: 160px ;
  height: 50px ;
  font-size: 16px ;
  font-weight: 400;
}

/* .slideshow-slide__text #dynamic-title {

} */



@media(min-width: 500px) and (max-width: 959px) {
  #dynamic-title {
    width: 60%;
  }
}

@media (max-width: 959px) {

  .slideshow-slide__text-wrapper {
    left: 0;
    top: 0%;
  }

  .slideshow-slide__text {
    width: 100%;
    margin: auto;
    position: absolute;
    left: 8%;
  }
  
  .slideshow-slide__text .slideshow-slide__trusted-image img {
    width: 279px;
  }

  .hero-section .hero-btn {
    width: 123px;
    height: 39px !important;
    line-height: 39px !important;
    font-size: 14px !important;
  }

  #dynamic-title {
    width: 90%;
    line-height: normal;
    font-size: 35px;
  }
  .slideshow-slide__text{
    margin-top: 10px !important;
  }
  .slideshow-slide__buttons .golf-btn {
    width: 149px;
  }

  .slideshow-slide__buttons  {
    margin: 25px 0 40px;
  }

}
.slideshow-slide__text {
  margin-top: 117px;
}


/* trusted-by */

/* The ipad end responds to the mobile end in vertical screen */

/* @custom-media --tablet (max-width: 959px); */

/* @custom-media --gt-mobile (min-width: 751px); */

/* detectingScreen need to consider the configuration of the tablet */
