.index-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(../img/hero-img.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;

}

.index-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.15) 55%,
            rgba(0, 0, 0, 0) 75%);
}

.text-area {
    text-align: center;
    position: absolute;
    top: 32vh;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1640px;
    width: 100%;
    z-index: 9;
}

.index-hero .index-text {
    line-height: 9rem;
    color: #fff;
    font-size: 140px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-mask-image: linear-gradient(to top right, rgba(255, 255, 255, 0.05) 15%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.849) 75%, rgba(255, 255, 255, 1) 100%);
    mask-image: linear-gradient(to top right, rgba(255, 255, 255, 0.05) 15%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.849) 75%, rgba(255, 255, 255, 1) 100%);
    margin: 0;
    z-index: 9;
}

.index-hero .index-h3 {
    font-size: 30px;
    font-family: var(--plyf);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-foot.index-page {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: absolute;
    bottom: 2vh;
    z-index: 9;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
    max-width: 1640px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-foot-mobile {
    position: absolute;
    bottom: 2vh;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
}

.index-body {
    background-color: var(--bg);
}

.index-animate {
    position: relative;
    background: linear-gradient(to bottom, #02132B 0%, #010817 100%);
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.index-animate::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.index-animate .animate-spacer {
    height: 0vh;
}

.index-animate .animate-text {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}


.index-animate .animate-text h2 {
    line-height: 1;
    margin: 0;
    max-width: 1127px;
    font-size: 10rem;
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    -webkit-mask-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.4) 80%, rgba(255, 255, 255, 0.05) 100%);
    mask-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.4) 80%, rgba(255, 255, 255, 0.05) 100%);
}

.index-animate .animate-text h2 span {
    display: block;
    font-weight: 600;
    font-size: 5rem;
    line-height: 1;
    margin-top: .6rem;
}

.index-animate .animate-text h2 {
    font-size: 10rem;

}

/*Sayfa Animasyonu Başlangıcı*/

.index-hero,
.index-animate {
    position: relative;
}

.index-hero {
    z-index: 1;
    transition: filter 1s ease, transform 1s ease;
    will-change: filter, transform;
}

body.intro-open .index-hero {
    filter: blur(10px);
    transform: translateY(7%);
    transition: all 1.5s ease;
}

body.intro-open .text-area h2 {
    font-size: 120px;
    transition: all 1.5s ease;
}

.index-animate {
    overflow-y: auto;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #02132B 0%, #010817 100%);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 50;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 1.6s cubic-bezier(.22, 1, .36, 1), opacity 1.2s ease;
    will-change: transform, opacity;
}

body.intro-open .index-animate {
    transform: translateY(0%);
    opacity: 1;
    pointer-events: auto;
}

body.intro-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .15);
    pointer-events: none;
    opacity: 1;
}


/*Slider*/
.index-animate .animate-splide-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}




.index-animate .animate-text h2 {
    transform: translateY(calc(var(--titleY, 0) * 1px)) scale(var(--titleScale, 1));
}

.index-animate::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.index-animate {
    display: block;
    scrollbar-gutter: stable both-edges;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.index-animate.is-animating {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}