@charset "UTF-8";

.hero-overlay {
    background: linear-gradient(105deg, rgba(10, 42, 67, 0.95) 0%, rgba(10, 42, 67, 0.7) 50%, rgba(10, 42, 67, 0.3) 100%);
}

.scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sss-mask-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    background-color: #000;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mask-layer {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #000;
    color: #fff;
    mix-blend-mode: multiply;
}

.mask-text {
    font-size: 15vw;
    font-weight: 900;
    font-family: 'Arial Black', sans-serif;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.05em;
}

.mask-sub {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    font-family: sans-serif;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .sss-mask-section {
        height: 40vh;
    }

    .mask-text {
        font-size: 25vw;
    }

    .mask-sub {
        font-size: 1rem;
    }
}