@charset "UTF-8";
.section1 {
  position: relative;
  overflow: hidden;
}
.section1 .container {
  display: flex;
}
.section1 .flex-container {
  display: flex;
  gap: 82px;
  justify-content: space-between;
}
.section1 .flex-container .section1_right {
  position: relative !important;
  flex: 0 0 540px;
  right: 0 !important;
  top: 0 !important;
  height: auto !important;
}
.section1 .flex-container .section1_right img {
  max-width: 100%;
  height: auto !important;
}
.section1 .section1_left {
  position: relative;
  z-index: 1;
}
.section1 .section1_left .sub_title {
  opacity: 0.5;
  font-weight: 500;
}
.section1 .section1_left .title {
  font-weight: 700;
}
.section1 .section1_left .site-title span {
  color: rgba(255, 255, 255, 0.5) !important;
  padding: 0 5px;
}
.section1 .section1_left .description {
  font-weight: 400;
}
.section1 .section1_left .button_container {
  display: inline-block;
  text-align: center;
}
.section1 .section1_left .button_container .cancel_anytime {
  opacity: 0.8;
}
.section1 .hero-box-wrapper {
  all: unset;
  cursor: pointer;
}
.section1 .hero-box-wrapper:hover .hero_box {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), #000;
}
.section1 .hero_box {
  padding: 32px;
  margin-top: 48px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), #000;
}
.section1 .hero_box .hero-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.section1 .hero_box .hero-box-header .hero-box-link {
  width: 36px;
  height: 36px;
}
.section1 .hero_box .hero-box-header .hero-box-link img {
  max-width: 100%;
}
.section1 .hero_box .hero-box-header .hero-box-icon {
  max-width: 65px;
  display: flex;
  align-items: center;
}
.section1 .hero_box .hero-box-header .hero-box-icon img {
  max-width: 100%;
}
.section1 .hero_box .hero-box-title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 8px;
  font-weight: 700;
}
.section1 .hero_box .hero-box-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.section1 .video_container video {
  width: 100%;
  height: 100%;
}
.section1 .video-thumbnail {
  position: relative;
}
.section1 .video-thumbnail .thumbnail {
  width: 100% !important;
  height: auto !important;
}
.section1 .video-thumbnail .bounce-animate {
  display: inline-block;
  /* 9s total = 7s idle + 2s your original keyframes */
  animation: bounce-animate 4s infinite ease-in;
  will-change: transform;
}
.section1 .video-thumbnail .with-shadow img {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1), 0px -3px 4px -2px rgba(0, 0, 0, 0.06);
}
@keyframes bounce-animate {
  /* 0%‒77.777% (first 7 seconds): stay centered */
  0%, 77.777% {
    transform: translate(-50%, -50%);
  }
  /* 80.555% (~7.25 s): 12.5% of the 2 s “bounce” window → move up 6px */
  80.555% {
    transform: translate(-50%, calc(-50% - 3px));
  }
  /* 83.333% (~7.5 s): 25% → from that “up 3px” position, move left 3px */
  83.333% {
    transform: translate(calc(-50% - 3px), calc(-50% - 3px));
  }
  /* 86.111% (~7.75 s): 37.5% → (no transform declaration here, exactly as you sent) */
  86.111% {
    /* no change */
  }
  /* 88.888% (~8 s): 50% → from center, move right 12px and keep y = –3px */
  88.888% {
    transform: translate(calc(-50% + 6px), calc(-50% - 3px));
  }
  /* 91.667% (~8.25 s): 62.5% → return to y = –6px at exact horizontal center */
  91.667% {
    transform: translate(-50%, calc(-50% - 3px));
  }
  /* 94.444% (~8.5 s): 75% → return to exact center */
  94.444% {
    transform: translate(-50%, -50%);
  }
  /* 100% (9 s): stay at exact center until the next loop */
  100% {
    transform: translate(-50%, -50%);
  }
}
.section1 .video-thumbnail .video_button {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section1 .video-thumbnail .video_button:not(.bounce-animate) img {
  width: 70px !important;
  height: 70px !important;
}
.section1.black_bg {
  background: #000000;
}
.section1.black_bg > * {
  color: #ffffff;
}
.section1.grey_bg {
  background: #f6f6f6;
}
.section1.grey_bg .section-description {
  color: rgba(0, 0, 0, 0.8);
}
.section1.with-sites-animations {
  position: relative;
}
.section1 .bottom-intro-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.section1 .bottom-intro-wrap .container {
  justify-content: center;
}
.section1 .bottom-intro-wrap .container p {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-style: normal;
  font-weight: 400;
}
.section1 .bottom-intro-wrap .container p strong {
  color: #fff;
  font-weight: 500;
}
