.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}

.overlay {
    position: absolute;
    inset: 0;
    background: black;
    opacity: 0;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-1,
.group-btn {
    position: absolute;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.hero-btn {
    background-color: #EEEFE7;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 50px;
    line-height: 1;
    width: fit-content;
    color: #1B3933;
    font-weight: 700;
    font-family: "Albula", Sans-serif !important;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.hero-btn svg {
    margin-top: -1px;
}

.group-btn {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .group-btn {
        gap: 30px;
    }
}