@charset "utf-8";

/* CSS Document */

@media (min-width: 768px) {
.pc-hidden {
    display: none;
}
	#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* KEY PROPERTY */
    z-index: -1;
}
	.bg-video1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 150vh;
    object-fit: cover; /* KEY PROPERTY */
	cursor: pointer;		
    z-index: -1;
}
.content {
    position: absolute;
    width: 100%;
}
.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}
}

@media (max-width: 767px) {
.mobile-hidden {
    display: none;
}
.content {
    position: absolute;
    width: 100%;
}
	.bg-video1 {display: none}
	.hero1 {height: 300vh}
	}
.platform-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.platform-section:nth-child(odd) {
    background: var(--secondary-dark);
}
.video-wrapper {
  position: relative;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  font-size: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: white;
  cursor: pointer;
}
}
