#section_video {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#section_video::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: 3;
  background: url('../img/background_download.webp') center;
  background-size: cover;
}

#section_video video {
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.mobile #section_video video {
  display: none; /* Hide video on mobile */
}

#section_video .content-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100vh;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#section_video .content-wrapper #img_logo {
  width: auto;
  height: 40vh;
  opacity: 0;
}

.mobile #section_video .content-wrapper #img_logo {
  display: none;
}

@keyframes slideFadeLoop {
  0% {
    transform: translate(-50%, -5vh); /* Start 5vh above its final position */
    opacity: 0;
  }
  20% {
    transform: translate(-50%, 0); /* End at its final position */
    opacity: 1;
  }
}

#section_video #arrow_down {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  height: 10vh;
  /* Animation properties */
  animation: slideFadeLoop 3s ease-out infinite; /* Name, duration, timing, repetition */
  opacity: 0; /* Start with opacity 0 */
  z-index: 6; /* Ensure it's above other content */
  cursor: pointer; /* Change cursor to pointer for interactivity */
}

/** Download Section
list, not showed bullet, show as one line no break */

#section_video #download {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none; /* Remove bullet points */
  padding: 0;
  margin: 1vh 0; /* Margin for spacing */
}

#section_video #download li {
  margin: 0 1rem; /* Space between items */
}

#section_video #download img {
  width: auto;
  height: 5rem; /* Set a fixed height for icons */
  object-fit: contain; /* Ensure the icon fits within the dimensions */
  cursor: pointer;
}

/* Social Links Section 
show as one line no break
**/

#section_video #social_link {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none; /* Remove bullet points */
  padding: 0;
  margin: 1vh 0; /* Margin for spacing */
}

#section_video #social_link li {
  margin: 0 1rem; /* Space between items */
}

#section_video #social_link img {
  width: auto;
  height: 5rem; /* Set a fixed height for icons */
  object-fit: contain; /* Ensure the icon fits within the dimensions */
}

.mobile #section_video::before {
  background-image: url("../img/mobile_video.jpg");
  background-size: cover;
  background-position: top center;
}

.mobile #section_video .content-wrapper {
  bottom: 5vh;
  left: 50vw;
  transform: translateX(-50%);
  height: auto;
  padding-bottom: 2vh;
  top: unset;
}

.mobile #section_video #download {
  flex-direction: column; /* Stack download items vertically */
  align-items: center; /* Center items horizontally */
}

.mobile #section_video #download li {
  margin: 0 0; /* Space between items */
}

.mobile #section_video #download img {
  width: 40vw; /* Full width for mobile */
  max-width: 200px; /* Limit max width */
  height: auto; /* Adjust height for mobile */
  margin-top: -2vh; /* Adjust margin for mobile */
}

.mobile #section_video #social_link li {
  margin: 0;
  margin-right: 1vw;
  margin-top: -1vh; /* Adjust margin for mobile */
}

.mobile #section_video #social_link li:last-child {
  margin-right: 0; /* Remove margin for the last item */
}

.mobile #section_video #social_link img {
  width: 18vw;
  max-width: 80px;
  height: auto; /* Adjust height for mobile */
}
