.hs-60ea0e9f-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 98vh;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
    background-color: #111;
    display: flex;
}
@media (min-width: 768px) {
    .hs-60ea0e9f-wrapper {
        border-bottom-left-radius: 60px;
        border-bottom-right-radius: 60px;
    }
}
.hs-60ea0e9f-slider {
    flex: 1;
    position: relative;
    height: 100%;
}
.hs-60ea0e9f-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    padding: 20px;
}
.hs-60ea0e9f-slide.active {
    opacity: 1;
    z-index: 1;
}
.hs-60ea0e9f-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}
.hs-60ea0e9f-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 5%;
}
.hs-60ea0e9f-watermark {
    position: absolute;
    top: -50px;
    left: 0;
    font-size: 200px;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    user-select: none;
}
.hs-60ea0e9f-text-wrap {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s;
}
.hs-60ea0e9f-slide.active .hs-60ea0e9f-text-wrap {
    opacity: 1;
    transform: translateY(0);
}
.hs-60ea0e9f-subtitle-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.hs-60ea0e9f-line {
    width: 40px;
    height: 1px;
    background-color: #fff;
    margin-right: 15px;
}
.hs-60ea0e9f-subtitle {
    color: #fff;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.hs-60ea0e9f-heading {
    color: #fff;
    font-size: 50px;
    line-height: 1.1;
    margin: 0;
}
@media (min-width: 768px) {
    .hs-60ea0e9f-heading {
        font-size: 100px;
    }
    .hs-60ea0e9f-watermark {
        font-size: 350px;
        top: -100px;
    }
}
.hs-60ea0e9f-sidebar {
    width: 80px;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255,255,255,0.1);
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    position: relative;
    z-index: 10;
}
@media (min-width: 1024px) {
    .hs-60ea0e9f-sidebar {
        display: flex;
    }
}
.hs-60ea0e9f-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hs-60ea0e9f-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hs-60ea0e9f-icon:hover {
    background-color: #fff;
    color: #000;
}
.hs-60ea0e9f-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.hs-60ea0e9f-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hs-60ea0e9f-nav button:hover {
    background-color: #fff;
    color: #000;
}