* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: 2.1;
}

html {
    scroll-behavior: auto;
    margin: 0;
}

body {
    font-family: sans-serif;
    overflow-x: hidden;
    margin: 0;
}

a {
    color: #ffffff;
    text-decoration: none;
}

.all-wrapper {
    /*max-width: 1586px;*/
    min-width: 300px;
    width: 100%;
    box-sizing: border-box;
    background: #000000;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 107px;
    background: #22222200;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-100px);
    transition: transform 1s ease, opacity 1s ease;
    mix-blend-mode: difference;
    opacity: 0;
    padding: 0 20px;
    z-index: 1000;
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

.logo {
    width: 200px;
    height: 100px;
    padding-top: 24px;
    font-size: 39px;
    font-family: serif;
    color: #ffffff;
}

.menu-wrapper {
    position: absolute;
    top: 31px;
    right: 42px;
    cursor: pointer;
    text-align: right;
    z-index: 2000;
}

.menu-circle {
    width: 46px;
    height: 46px;
    border-radius: 15%;
    background: #ffffff00;
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease;
    filter: drop-shadow(4px 10px 5px rgb(0, 0, 0));
    border: 2px solid #ffffff;
}

.menu-circle:hover {
    touch-action: manipulation;
    transform: scale(2.15);

}

.menu-toggle {
    width: 25px;
    position: relative;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    top: -2px;
    left: 10px;
}

.menu-toggle span {
    position: absolute;
    width: 21%;
    height: 5px;
    background: rgb(255, 255, 255);
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:hover {

    background: rgb(153, 152, 152);
    animation: turnColor 1s ease-in forwards;
}

@keyframes turnColor {
    from {
        background: rgba(255, 255, 255, 0.3);
    }

    to {
        background: rgb(248, 248, 248);
    }
}

.menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
    transform: translate(11px, -11px);
    top: 21px;
}

.menu-toggle span:nth-child(2) {
    transform: rotate(45deg);
    transform: translate(0px, 0px);
    top: 21px;
}

.menu-toggle span:nth-child(3) {
    transform: rotate(45deg);
    transform: translate(-11px, 11px);
    top: 21px;
}

.menu-toggle span:nth-child(4) {
    transform: rotate(45deg);
    transform: translate(11px, 11px);
    top: 21px;
    opacity: 0;
}

.menu-toggle span:nth-child(5) {
    transform: rotate(45deg);
    transform: translate(-11px, -11px);
    top: 21px;
    opacity: 0;
}

.menu-wrapper.active .menu-toggle span:nth-child(1) {
    transform: translate(-11px, -11px);
}

.menu-wrapper.active .menu-toggle span:nth-child(2) {
    opacity: 1;
}

.menu-wrapper.active .menu-toggle span:nth-child(3) {
    transform: translate(11px, 11px);
}

.menu-wrapper.active .menu-toggle span:nth-child(4) {
    transform: rotate(45deg);
    transform: translate(11px, -11px);
    opacity: 1;
}

.menu-wrapper.active .menu-toggle span:nth-child(5) {
    transform: rotate(45deg);
    transform: translate(-11px, 11px);
    opacity: 1;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(160deg, #0e0e0e92, #000000be);
    color: white;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: opacity 0.5s ease;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

@supports (height: 100lvh) {
    .fullscreen-menu {
        min-height: 100lvh;
    }
}

.fullscreen-menu.show {
    opacity: 1;
    pointer-events: auto;
    animation: waveOpen 0.5s ease-in forwards;
}

.fullscreen-menu.remove-show {
    animation: waveClose 0.5s ease-in forwards;
}

.left-menu {
    width: 500px;
    height: auto;
    float: left;
    margin: 150px auto 0;
    text-align: left;
    padding: 19px;

}

.sns-links {
    margin-top: 75px;
}

.fullscreen-menu ul {
    list-style: none;
    padding: 0;
}

.fullscreen-menu li {
    /* font-size: 2rem; */
    font-family: 'Jost';
    font-weight: 500;
    font-size: clamp(15px, 4vw, 35px);
    letter-spacing: 4px;
    margin: 1.2rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.6s ease forwards;
}

.fullscreen-menu.open li {

    top: 0;
}

.small-sub-t {
    font-size: clamp(9px, 2vw, 15px);
    text-align: left;
    margin-left: 10px;
}

@keyframes waveOpen {
    0% {
        clip-path: polygon(0 0, 100% 0);
    }

    10% {
        clip-path: polygon(0 0, 100% 0, 100% 40%, 0% 0%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);

    }

}

@keyframes waveClose {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    10% {
        clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0 100%);
    }

    100% {
        clip-path: polygon(0 100%, 100% 0, 100% 0, 0 100%);

    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fix-area {
    position: relative;
    width: 100%;
    z-index: 0;
}

.side-smoke-ef1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: radial-gradient(in hsl, #ffffff00, #000000);
    opacity: 1.5;
    z-index: 5;
}

.side-smoke-ef2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: radial-gradient(in hsl, #ffffff00, #000000);
    opacity: 0.3;
    z-index: 5;
}

.side-smoke-ef3 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: radial-gradient(in hsl, #ffffff00, #000000);
    opacity: 0;
    z-index: 5;
}

.side-smoke-ef3.visible {
    animation: grafade 5s cubic-bezier(0.33, 1, 0.68, 1);
    opacity: 0.8;
}

@keyframes grafade {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.8;
    }
}

.side-smoke-ef4 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: radial-gradient(ellipse at center, #ffffff00 50%, #ffffff 90%, #ffffff 100%);
    opacity: 1;
    z-index: 5;
}

.slider-container {
    position: sticky;
    top: 0;
    width: 100%;
    overflow: hidden;
    background: #000000cf;
    z-index: 3;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

@supports (height: 100lvh) {
    .slider-container {
        min-height: 100lvh;
    }
}

.slides {
    width: 100%;
    position: relative;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}
@supports (height: 100lvh) {
    .slides {
        min-height: 100lvh;
    }
}

.slide-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000000;
    z-index: 999;
}

.slide-cover::before {

    content: "";
    position: absolute;
    inset: 0;
    background-size: 60%;
    mix-blend-mode: multiply;
    opacity: .03;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}



.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: transform 1.2s ease, opacity 1s ease;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    animation: zoomOut 10s ease-in-out forwards;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.slide.active {
    opacity: 1;
    opacity: 1;
    clip-path: circle(150% at 50% 50%);
    transform: scale(1) rotate(0deg);
    filter: brightness(1) blur(0);
    z-index: 3;
}

.controls {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: -17px;
    font-size: 35px;
    color: #ffffff00;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 16px;
    border-radius: 30px;
    z-index: 3;
}

button {
    padding: 7px 0px 15px 0px;
    font-size: 16px;
    background: #00000000;
    color: #ffffff00;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

button:hover {
    background: #44444400;
}

.slider-container.fade .slide {
    transition: opacity 1s ease;
}

.slider-container.zoom-fade .slide {
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.05);
}

.slider-container.zoom-fade .slide.active {
    transform: scale(1);
}

/* Pattern 3: Slide fade */
.slider-container.slide-fade .slide {
    transition: opacity 1s ease, transform 1s ease;
    transform: translateX(20px);
}

.slider-container.slide-fade .slide.active {
    transform: translateX(0);
}

.caption {
    width: 100%;
    height: auto;
    position: absolute;
    top: 22%;
    bottom: 20%;
    left: -4%;
    background-color: rgba(0, 0, 0, 0.018);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

.caption div {
    text-decoration: none;
    font-size: 200px;
    font-family: serif;
    display: inline-flex;
    background-size: cover;
    background-color: #000;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: brightness(1.0);
    word-break: break-all;
    line-height: 235px;
    opacity: .9;
    background-position: 54px 0;
}

.caption div::before {
    background-position: -.75em 0;
}

.caption div::after {
    content: none;
}

.strimg1 {
    background-image: url(img/sample1.jpg);
}

.strimg2 {
    background-image: url(img/sample3.jpg);
}

.strimg3 {
    background-image: url(img/sample5.jpg);
}

@media screen and (max-width: 559px) {
    .caption div {
        font-size: 114px;
        line-height: 105px;

    }

}

.info-section {

    width: 100%;
    position: relative;
    margin-top: -100vh;
    color: #ffffff;
    z-index: 5;/
}

.content-logo-wrap {
    width: 100%;
    height: 100lvh;
    position: relative;
    top: 25vh;
    background: #00000000;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    z-index: 999;
}

@supports (height: 100lvh) {
    .content-logo-wrap {
        min-height: 100lvh;
        top: 25lvh;
    }
}

.content-logo {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    box-sizing: border-box;
    text-align: center;

}

.content-logo svg {
    width: min(40vw, 40vh);
    height: auto;
    filter: opacity(80%);

}

#g7101 {
    animation: Grad 25s linear infinite;
}

#path7077 {
    animation: Grad 10s linear infinite;
}

#path7079 {
    animation: Grad 5s linear infinite;
}

#path7081 {
    animation: Grad 5s linear infinite;
}

#path7083 {
    animation: Grad 5s linear infinite;
}

#path7085 {
    animation: Grad 5s linear infinite;
}

#path7087 {
    animation: Grad 5s linear infinite;
}

#path7089 {
    animation: Grad 5s linear infinite;
}

#path7091 {
    animation: Grad 5s linear infinite;
}

#path7093 {
    animation: Grad 5s linear infinite;
}

#path7095 {
    animation: Grad 5s linear infinite;
}

#path7097 {
    animation: Grad 5s linear infinite;
}

#path7099 {
    animation: Grad 5s linear infinite;
}

@keyframes Grad {
    0% {
        -webkit-filter: hue-rotate(0deg);
        filter: hue-rotate(0deg) opacity(0.7);
    }

    100% {
        -webkit-filter: hue-rotate(360deg);
        filter: hue-rotate(360deg) opacity(0.7);
    }
}

.content-str {
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    font-family: serif;
    font-size: clamp(2px, min(2vw, 2vh), 15px);
    letter-spacing: 4px;
    line-height: min(4vw, 4vh);
    padding: 4vh 27vw 1vh 27vw;
    opacity: 0;
    translate: 0 -23%;
    filter: blur(12px);


}

.content-str.visible {
    opacity: 1;
    translate: 0;
    transition-duration: 1.8s;
    transition-timing-function: opacity var(--ease-out-cubic), translate var(--ease-out-quint);
    filter: blur(0);

}

@keyframes fadeInstr {
    0% {
        transform: translate(0, -200px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0px);
        opacity: 1;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.scroll_down {
    position: relative;
    width: 100%;
    height: 10%;
    top: 0;
    padding: 0vh 42vw 0 42vw;
    animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a {
    position: absolute;
    bottom: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    width: 24px;
    height: 24px;
    text-decoration: none;
}

.text {
    display: block;
    margin-top: 70px;
    margin-left: -25px;
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 2px;
}

.arrow {
    position: absolute;
    left: -14px;
    width: 28px;
    height: 5px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.arrow:first-child {
    animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fdfdfd;
}

.arrow:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.arrow:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

@media screen and (max-width: 540px) {

    .arrow {
        left: -5px;
        width: 14px;
        height: 5px;
    }

}

.content-about-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 800px;
    overflow: hidden;

}

.content-about {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 1300px;
    background: #2c262680;
    font-family: serif;
    color: #ffffff;
    text-align: center;
    transform: scale(0);
    transition: transform 2s;
    backdrop-filter: blur(22px);
    overflow-x: hidden;
}



.content-about.visible {
    transform: scale(1);
}

.about-items1 {

    position: relative;
    width: 626px;
    height: 200px;
    float: left;
}

.about-items2 {

    position: relative;
    width: 600px;
    height: 400px;
    float: left;
    padding-top: 50px;

}

.backp {
    color: #000000;
    position: relative;
    z-index: 2;
}

.frontp {
    bottom: 0;
    color: #b7b7b7;
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 3;
}

.about-title {
    position: relative;
    height: max-content;
    margin: 0 6vw 40px;
    width: max-content;
    top: 120;
    z-index: 4;

    opacity: 0;
    transform: translateY(50px);

}

.about-title.show {
    animation: slideIn 0.7s ease forwards;
}

.about-text-wrap {
    width: 60vw;
    position: relative;
    height: auto;
    z-index: 4;

    opacity: 0;
    transform: translateY(50px);

}

.about-text-wrap.show {
    animation: slideIn 0.9s ease forwards;
}

.about-text {
    position: relative;
    height: max-content;
    margin: 2vh 6vw 0;
    width: max-content;
    top: 150;
    z-index: 2;

}

.about-title .frontp {
    font-size: clamp(32px, 7vw, 49px);
    font-weight: 500;
    line-height: 100%;
}

.about-title .backp {
    font-size: clamp(32px, 7vw, 49px);
    font-weight: 500;
    line-height: 100%;
}

.about-title .frontp span {
    display: block;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    width: 0%;
}

.about-text .frontp {
    font-size: clamp(10px, 3vw, 18px);
    font-weight: 300;
    line-height: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}

.about-text .backp {
    font-size: clamp(10px, 3vw, 18px);
    font-weight: 300;
    line-height: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}

.about-text .frontp span {
    display: block;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    width: 0%;
}

.aboutlogo-img {
    width: 100%;
    filter: opacity(0.07) blur(20px);

}

.aboutlogo-img.visible {
    animation: logoFade 3s cubic-bezier(0.33, 1, 0.68, 1) both;
}

@keyframes logoFade {
    0% {
        filter: opacity(0.07) blur(8px);
    }

    70% {
        filter: opacity(0.07) blur(6px);
    }

    80% {
        filter: opacity(0.07) blur(4px);
    }

    90% {
        filter: opacity(0.07) blur(2px);
    }

    100% {
        filter: opacity(0.07) drop-shadow(64px 14px 112px black) blur(0);
    }
}

.parallax {
    box-sizing: border-box;
    width: 100%;
    height: 46vh;
    overflow: hidden;
    opacity: 0;

}

.parallaxfil {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background-image: url(../img/noise3.webp);
    background: radial-gradient(in hsl, #00000000, #000000f5);
    background-repeat: repeat;
    opacity: 1;
    z-index: 4;
}

.parallax-wrap {
    position: relative;
    width: 100%;
    height: 171%;
    background: #000000;
    z-index: 5;
}

.parallax-content {
    background-image: url(../img/70.JPG);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 87%;
    will-change: transform;
    transition: none;
    position: relative;
    top: -10vh;
    bottom: -10vh;
    left: 0;
    right: 0;
    z-index: 3;
}

.partition {
    position: relative;
    width: 100%;
    height: 155px;
    background: #ffffff;
    z-index: 4;
}

.infinite-loop {
    width: 100%;
    height: 155px;
    text-align: center;
    position: relative;
    background: #ffffff00;
    color: #e0e0e0;
    transform: translateY(100%);
    animation-play-state: paused;
    opacity: 0;

}

.infinite-loop.running {
    animation: strdelay 1.5s ease-in;
    transform: translateY(0px);
    opacity: 1;
    animation-play-state: running;
}

@keyframes strdelay {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes strColor {
    from {
        color: #454545;
    }

    to {
        color: #FFFFFF;
    }
}

.marquee1-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: #ffffff00;
    height: 155px;
    line-height: 170px;
    z-index: 2;

}

.marquee1-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll linear infinite;
    will-change: transform;
    height: 100%;
    z-index: 4;
}

.marquee1-content span {
    display: inline-block;
    font-size: clamp(90px, 15vw, 200px);
    font-family: 'jost';
    letter-spacing: 10px;
    font-weight: 400;
    margin: 0 2rem;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 699px) {
    .partition {
        height: 90px;
    }

    .infinite-loop {
        height: 90px;
    }

    .marquee1-content span {
        margin: 0 1rem;
    }

    .marquee1-wrapper {
        height: 90px;
        line-height: 90px;
    }
}

@media (min-width: 700px) and (max-width: 950px) {
    .partition {
        height: 120px;
    }

    .infinite-loop {
        height: 140px;
    }

    .marquee1-content span {
        margin: 0 1.5rem;
    }

    .marquee1-wrapper {
        height: 120px;
        line-height: 120px;
    }

}

.system-section {
    position: relative;
    width: 100%;
    z-index: 4;
    height: auto;
}

.system-menu-wrap {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 4;
    overflow: hidden;
}

.system-content {
    width: 100%;
    height: auto;
    background: #ffffff;
    backdrop-filter: blur(2px);
    padding: 22px 22px;
}

.system-frame {
    background: #ffffff;
    padding: 22px 22px;
    border-radius: 8px;
    color: #b7b3aa;
    background-color: rgb(255, 255, 255);
    opacity: 0;
    background-image: url(../img/g0000.png);
    background-size: 58%;
}

.system-frame.visible {
    animation: systemUp 2s ease-in;
    box-shadow: 10px 10px 30px rgba(18, 47, 61, 0.5), -10px -10px 30px rgba(248, 253, 255, 0.9), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent;
    transform: rotate(-3deg) translateY(25px);
    opacity: 1;
}

@keyframes systemUp {
    0% {
        box-shadow: 0px 0px 0px rgba(255, 255, 255, 0.5), -0px -0px 0px rgba(248, 253, 255, 0.9), inset 10px 10px 30px transparent, inset -0px -0px 0px transparent;
        transform: rotate(0deg) translateY(0px);
        opacity: 1;
    }

    100% {
        transition: box-shadow 0.5s;
        box-shadow: 10px 10px 30px rgba(18, 47, 61, 0.5), -10px -10px 30px rgba(248, 253, 255, 0.9), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent;
        transform: rotate(-3deg) translateY(25px);
        opacity: 1;
    }
}

.large {
    font-size: clamp(32px, 7vw, 49px);
    font-family: "Sree Krushnadevaraya", serif;
    font-weight: 400;
    letter-spacing: 4px;
    text-align: center;
    padding: 20px 0 20px 0;
}


h2 span {
    display: inline-block;
    opacity: 0;
    transform: translateX(30px)
}

h2.is-visible span {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .7s cubic-bezier(.5, 1, .89, 1), transform .7s cubic-bezier(.5, 1, .89, 1)
}

h2.is-visible span:nth-child(1) {
    transition-delay: .1s;
}

h2.is-visible span:nth-child(2) {
    transition-delay: .2s
}

h2.is-visible span:nth-child(3) {
    transition-delay: .3s
}

h2.is-visible span:nth-child(4) {
    transition-delay: .4s
}

h2.is-visible span:nth-child(5) {
    transition-delay: .5s
}

h2.is-visible span:nth-child(6) {
    transition-delay: .6s
}

.system-detail {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    background-size: 78%;
    border-radius: 5px;
    padding: 12vw;
    opacity: 0;
}

.system-detail.visible {
    animation: sysDetailIn 4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    background-color: #000000;
    background-image: url(../img/g0004.png);
    background-size: 64%;

}

@keyframes sysDetailIn {
    0% {
        background-color: #ffffff;
        box-shadow: 10px 10px 30px rgba(18, 47, 61, 0.5), -10px -10px 30px rgba(246, 246, 246, 0.9), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent;
        transform: rotate(0);
        opacity: 0;
    }

    50% {
        background-color: #ffffff;
        transform: rotate(6deg);
        box-shadow: 10px 10px 30px rgba(18, 47, 61, 0.5), -10px -10px 30px rgba(248, 253, 255, 0.9), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent;
        opacity: 1;
    }

    100% {
        transform: rotate(6deg);
        box-shadow: 10px 10px 30px rgba(48, 55, 58, 0.56), -10px -10px 30px rgba(13, 13, 13, 0.47), inset 10px 10px 30px #aca5a540, inset -10px -10px 30px #a8a8a852;
        opacity: 1;
    }
}

.sys-detail-name {
    width: 100%;
    height: auto;
    font-size: clamp(10px, 3vw, 17px);
    font-family: serif;
    font-weight: 400;
    padding: 4vw 30px 4vw 30px;
}

.sys-detail-price {
    width: 100%;
    height: auto;
    font-size: clamp(10px, 3vw, 17px);
    font-family: serif;
    font-weight: 400;
    padding: 4vw 50px 4vw 60px;
}

.gallery {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: #000000;
    width: 100%;
    height: auto;
    color: #ffffff;
    padding: 88px -1px;
    z-index: 4;
}

.gallery-content {
    width: 100%;
    height: auto;
    background: #000000;
}

.g-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.g-slider-track {
    display: flex;
    flex-wrap: nowrap;
    transform: translateX(0);
}

.g-slide {
    flex: 0 0 auto;
    width: 80%;
    margin-right: 2px;
    position: relative;
}

.g-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(1);
}

.g-slide .e-caption {
    position: absolute;
    bottom: 10%;
    left: 5%;
    color: #fff;
    font-size: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.g-slider:hover .g-slide img {
    transform: scale(1.05);
    filter: blur(2px);
    filter: hue-rotate(250deg);

}

@media (hover: none) {

    g-slider:active .g-slide img {
        transform: scale(1.05);
        filter: blur(2px);
        filter: grayscale(1);
    }
}

.neo-blue-info {
    position: relative;
    width: 100%;
    height: auto;
    padding: 44px 44px;
    background: #000000;
    background-image: url(../img/bg3.jpg);

    z-index: 4;
}

.nb-info-wrap {
    width: 100%;
    height: auto;
}

.nb-info-title {
    width: 100%;
    height: calc(100% - 80%);
    font-size: clamp(32px, 7vw, 49px);
    font-family: serif;
    font-weight: 500;
    letter-spacing: 4px;
    padding: 20px 0 20px 0;
    color: #ffffff;
}

.nb-info-detail {
    width: 100%;
    height: auto;
    font-size: clamp(10px, 3vw, 17px);
    font-family: "Sree Krushnadevaraya", serif;
    font-weight: 400;
    padding: 20px 0 5px 0;
    color: #ffffff;
}

.nb-info-name {
    width: 100%;
    height: auto;
    font-size: clamp(12px, 3.2vw, 19px);
    font-family: serif;
    font-weight: 500;
    padding: 20px 0 5px 0;
    color: #767676;

}

.nb-info-disp {
    width: 100%;
    height: auto;
    font-size: clamp(10px, 3vw, 17px);
    font-family: serif;
    font-weight: 400;
    padding: 20px 0 30px 0;
    color: #b8a8a8;
    border-bottom: solid 1px #ffffff1f;
}

.line-entry {
 text-align: left;
 padding: 20px 0 20px 0; 
}

.map {
    position: relative;
    width: 95%;
    margin: 3% 30% 10% 0%;
    padding-top: 50%;
    height: 0;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;
    -webkit-filter: grayscale(100%) brightness(0.7);
    -moz-filter: grayscale(100%) brightness(0.7);
    -ms-filter: grayscale(100%) brightness(0.7);
    -o-filter: grayscale(100%) brightness(0.7);
    filter: grayscale(100%) brightness(0.7);
}

.recruit {
    position: relative;
    width: 100%;
    z-index: 4;
}



.recruit-content {
    width: 100%;
    height: auto;
    padding: 0 44px 1px 44px;
    background-color: #dd5dafa8;
    transform: scale(0.9);
}

.recruit-title {
    position: relative;
    width: 100%;
    height: auto;
    font-size: clamp(32px, 7vw, 49px);
    font-family: "Sree Krushnadevaraya", serif;
    font-weight: 400;
    color: #ffffff;
    padding: 20px 0 20px 0;
    letter-spacing: 4px;
    z-index: 5;
}

.recruit-subtitle {
    position: relative;
    width: 100%;
    height: auto;
    font-size: clamp(10px, 3vw, 17px);
    font-family: serif;
    color: #ffffff;
    padding: 20px 0 10px 0;
    z-index: 5;
}

.recruit-detail {
    width: 100%;
    height: auto;
}

.recruit-name {
    position: relative;
    width: 100%;
    height: auto;
    font-weight: 500;
    font-size: clamp(12px, 3.2vw, 19px);
    font-family: serif;
    color: #b55791;
    padding: 20px 0 5px 0;
    mix-blend-mode: color-dodge;
    z-index: 5;

}

.recruit-disp {
    position: relative;
    width: 100%;
    height: auto;
    font-size: clamp(10px, 3vw, 17px);
    color: #ffffff;
    padding: 20px 0 30px 0;
    font-family: serif;
    border-bottom: solid 1px #ffffff53;
    z-index: 5;
}

.recruit-entry {
    position: relative;
    width: 100%;
    height: auto;
    margin: 40px 40px;
}

.recruit-entry-btn {
    width: 100px;
    height: 50px;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    font-family: serif;
    text-align: center;
    padding: 5px;
    letter-spacing: 4px;
    background: #ffffff00;
    border: 3px dotted #ffffff;
    border-radius: 13%;
}

footer {
    background: #ec77d4;
    height: 20lvh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.footer_str {
    padding: 50px 20px 50px 20px;
    font-size: clamp(10px, 4vw, 23px);
    font-family: fantasy;
    letter-spacing: 3px;
    color: #c171c8;
}

.particle-container {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    z-index: 888;
    filter: opacity(0.3);
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: radial-gradient(white 0%, white 30%, transparent 80%, transparent);
    -webkit-mask-image: radial-gradient(white 0%, white 30%, transparent 80%, transparent);
}

.circle-container {
    position: absolute;
    top: 0;
    left: 0;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform: translateY(-10vh);
    animation-play-state: paused;
}

.circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    mix-blend-mode: screen;
    background-image: radial-gradient(hsl(180, 100%, 80%), hsl(180, 100%, 80%) 10%, hsla(180, 100%, 80%, 0) 56%);
    animation: fade-frames 200ms infinite, scale-frames 2s infinite;
    animation-play-state: paused;
}

@keyframes fade-frames {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes scale-frames {

    0%,
    100% {
        transform: scale3d(0.4, 0.4, 1);
    }

    50% {
        transform: scale3d(2.2, 2.2, 1);
    }
}

.message {
    position: absolute;
    right: 20px;
    bottom: 10px;
    color: white;
    line-height: 27px;
    font-size: 18px;
    text-align: right;
    pointer-events: none;
    opacity: 0;
    animation: message-frames 1.5s ease 5s forwards;
}

@keyframes message-frames {
    to {
        opacity: 1;
    }
}

.bgImage {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../img/50-2.jpg");
    background-size: cover;
    background-position: top;
    z-index: 0;
    opacity: 0;
}

.blobCont {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;

}

.blob {
    transform-origin: center;
      animation-play-state: running;
    }

    .paused {
      animation-play-state: paused !important;
    }

.chroma-text {
    background-image: linear-gradient(90deg, #000000 0, #000000 33.33%, #c679c4 40%, #fa3d1d 45%, #ffb005 50%, #e1e1fe 55%, #0358f7 60%, transparent 66.67%, transparent);
    background-size: 300% 100%;
    background-position: 100% 0;
    will-change: background-position;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

.chroma-text-g {
    background-image: linear-gradient(90deg, #b7b3aa 0, #b7b3aa 33.33%, #c679c4 40%, #fa3d1d 45%, #ffb005 50%, #e1e1fe 55%, #0358f7 60%, transparent 66.67%, transparent);
    background-size: 300% 100%;
    background-position: 100% 0;
    will-change: background-position;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

.chroma-text-animate {
    animation: chroma-sweep 2.9s ease-in-out .1s forwards infinite normal;
    animation-delay: 10s;
    filter: blur(1px)
}

@keyframes chroma-sweep {
    0% {
        background-position: 100% 0;
        filter: blur(1px)
    }

    to {
        background-position: 0 0;
        filter: blur(0)
    }
}