/* SLV LOGO */
#slv-header-2 {
    width: min(300px, calc(200px + ((100vw - 300px) * (100 / 200))));
    height: auto;
}

#slv-header-2 .cls-1 {
    fill: var(--blue-light);
}

#slv-header-2 .cls-2 {
    fill: var(--orange);
}

#slv-header-2 .cls-3 {
    fill: var(--white);
}

#slv-header-2 .cls-4 {
    fill: var(--green);
}

/* HERO HEADER */

.hero-header {
    display: flex;
    flex-direction: column;
}

.header-2 {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    z-index: 1;
    padding: 10px;
    padding-top: 25px;
}

.header-logo-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.inner-menu-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
}

.inner-menu-2 li a {
    margin: 0 20px;
    font-size: 17px;
    font-weight: 400;
    color: var(--white);
}

.inner-menu-2 li a:hover {
    color: var(--blue-light);
    transform: translateY(-30px);
}

.headro-button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: var(--blue-light);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
}

.headro-button .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.headro-button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.headro-button:hover .icon {
    transform: translate(4px);
}

.headro-button::before {
    animation: shine 2.5s ease-out infinite;
}

.headro-button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

#open-button {
    width: min(40px, calc(30px + ((100vw - 300px) * (10 / 200))));
    height: min(40px, calc(30px + ((100vw - 300px) * (10 / 200))));
    fill: var(--white);
    display: none;
}

#open-button:active {
    scale: 0.9;
}

/* HERO VIDEO BACKGROUND */

#heroVideo {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.mute-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background: var(--blue-light);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* HERO HEADING*/
#slv-heading-logo {
    width: min(1200px, calc(100vw));
    height: auto;
    padding: 0 25px;
    display: none;
}

#slv-heading-logo .cls-1 {
    fill: var(--blue-light);
}

#slv-heading-logo .cls-2 {
    fill: var(--orange);
}

#slv-heading-logo .cls-3 {
    fill: var(--white);
}

#slv-heading-logo .cls-4 {
    fill: var(--green);
}

.hero-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: absolute;
    gap: 100px;
}

.hero-heading h1 {
    opacity: 0;
    font-size: min(150px, max((100vw / 1200) * 150, 1px));
    font-weight: 700;
    color: var(--white);
    text-align: center;
    padding: 0 25px;
    transition: opacity 0.5s ease;
}


/* RESPONSIVE */
@media (max-width: 1050px) {
    .inner-menu-2 {
        display: none;
    }

    #open-button {
        display: block;
    }
}

@media (max-width: 700px) {
    .headro-button {
        display: none;
    }

    .header-2 {
        padding: 25px 0;
    }
}