header {
    width: 100%;
    height: 100svh;
    position: relative;
}
.header-video,
.header-video-container {
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
}
.header-video video {
    width: 100%;
    height: 90%;
    object-fit: cover;
    object-position: center;
    position: relative;
    animation: zoomin linear forwards;
    animation-timeline: view();
    animation-range-start: 800px;
    animation-range-end: 1400px;
    scale: 1;
}
@keyframes zoomin {
    to {
        scale: 1.2;
    }
}
.header-video-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 30;
    opacity: 1;
    animation: headerAnim 1s forwards ease-in-out;
    animation-delay: 0.2s;
}
@keyframes headerAnim {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.header-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, black 25%, transparent);
}
.header-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,0.3);
}
.header-container {
    position: absolute;
    bottom: 0;
    left: 15%;
    z-index: 2;
    animation: headerTextAnim 1s forwards ease-in-out;
}
@keyframes headerTextAnim {
    0% {
        bottom: 0;
    }
    100% {
        bottom: 20px;
    }
}
.header-content h1 {
    color: white;
    font-size: 58px;
    font-weight: 100;
    max-width: 850px;
    margin-bottom: 2rem;
}
.features-col {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 25px;
}
.feature-card-container {
    width: 100%;
    animation: fadein linear forwards;
    animation-timeline: view();
    animation-range-start: 180px;
    animation-range-end: 450px;
    scale: .8;
    opacity: 0;
}
.feature-card {
    text-decoration: none;
    color: white;
}
.feature-card-detail h4 {
    font-weight: 100;
}
.feature-card:hover .feature-card-detail h4 {
    text-decoration: underline;
}
.feature-card-img {
    width: 100%;
}
.feature-card-img img {
    width: 100%;
    height: 16svw;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
}
.feature-card-detail {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.feature-card-detail span {
    opacity: 0.8;
}
