#main {
    height: 100%;
    width: 100%;
}

.introSection {
    background-color: transparent;
    width: 100%;
    height: 100svh;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
}

.innerIntroSection {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#FAFBFF, #FEFCFF);
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: var(--font-two);
}

.logoDiv {
    width: 500px;
    height: auto;
    background-color: #1379AF;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0 10px 0;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.logoDiv img {
    width: 150px;
    height: auto;
}

.navbar {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    margin-bottom: 100px;
}

.navLeft {
    display: flex;
    gap: 10px;
}

.navbar a {
    background-color: transparent;
    border: 1px solid #333;
    padding: 3px 10px;
    text-transform: capitalize;
    border-radius: 7px;
    color: black;
    font-size: 80%;
    font-weight: 500;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.navbar a::before {
    transition: 0.5s all ease;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
    content: '';
    background-color: #121212;
    z-index: -1;
}

.navbar a:hover::before {
    transition: 250ms all ease;
    top: 0;
    opacity: 1;
}

.navbar a:hover {
    color: white;
}

.navbar a:active {
    box-shadow: none;
    transform: translateY(1px);
}

.navbar button {
    background-color: transparent;
    border: none;
    color: black;
    font-size: 200%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    padding: 0;
    margin-right: -5px;
    /* transition: 70ms ease; */
}

.navbar button:active {
    scale: 0.97;
    transform: translateY(1px);
}

.navMenu {
    background-color: #FAFBFF;
    width: 90%;
    max-width: 250px;
    height: auto;
    position: absolute;
    right: 15px;
    top: 45px;
    border-radius: 0.3rem;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 0);
    z-index: 100;
    padding: 1px;
    display: none;
}

.innerNavMenu {
    background-color: #FAFBFF;
    clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 0);
    padding: 15px 0;
    border-radius: 0.2em;
}

.navMenu a {
    font-size: 100%;
    font-family: var(--font-two);
    font-weight: 800;
    text-transform: uppercase;
    color: #121212;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
    transition: 100ms ease-out;
    text-decoration: none;
}

.navMenu a:hover {
    background-color: #00000015;
    gap: 20px;
    transform: translate3d(0, 0, 10px);
}

.sIntroDiv {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 20px;
}

.sIntroTextDiv {
    width: fit-content;
    max-width: 500px;
}

.sIntroTextDiv h1 {
    color: #121212;
    font-size: 300%;
    font-family: var(--font-one);
    text-transform: uppercase;
    position: relative;
    width: fit-content;
}

.sIntroTextDiv h1::after {
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    top: -37%;
    right: -10%;
    background-image: url('../assets/fingerprint.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
}

.sIntroTextDiv h2 {
    color: #121212;
    font-size: 100%;
    font-family: var(--font-one);
    text-transform: uppercase;
    position: relative;
    margin: 0;
    padding: 0;
    margin: 0 0 10px 0;
}

.sIntroTextDiv p {
    color: #202020;
    font-weight: 500;
}


.sIntroTerminal {
    width: 90%;
    max-width: 450px;
    height: 40vh;
    background-color: #121212;
    border-radius: 0.7rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.terminalHead {
    width: 100%;
    height: 50px !important;
    border-radius: 0.2em;
    background-color: #202020;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 0 20px;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.terminalHead span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminalHead span:nth-child(1) {
    background: linear-gradient(145deg, #ff2923, #dc221e);
}

.terminalHead span:nth-child(2) {
    background: linear-gradient(145deg, #76726c, #63605b)
}

.terminalHead span:nth-child(3) {
    background: linear-gradient(145deg, #7c7972, #686660);
}

.terminalHead p {
    font-size: 70%;
    margin-left: 7px;
    color: rgba(255, 255, 255, 0.9);
}

.terminalWriting {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #4f5051;
    padding: 5px 15px 100px 15px;
}

.terminalWriting p {
    color: rgb(0, 221, 0);
    font-family: monospace;
    line-height: 1.7;
}

.terminalWriting p .whiteText {
    color: #FAFBFF;
}

.blinker {
    opacity: 1;
    height: 15px;
    margin-left: 5px;
    border-left: 10px solid rgb(0, 221, 0);
    animation: blinker 0.9s steps(2, start) infinite;
    position: relative;
    z-index: 11111;
}

@keyframes blinker {
    to {
        visibility: hidden;
    }
}




.sDescDiv {
    margin-top: auto;
    padding: 0;
    width: 100%;
    margin: auto 0 20px 0;
}

/* .sDescDiv p {
    color: #202020;
    font-size: 80%;
    font-weight: 500;
  } */

.scrollingText {
    width: 100%;
    height: fit-content;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    background-color: #e2e3e7;
}

.text {
    font-family: var(--font-two);
    font-size: 100%;
    font-weight: 500;
    text-transform: capitalize;
    color: #4f5051;
    padding: 10px 0;
    animation: left-scroll 500s linear infinite;
}

.text span {
    margin: 0 30px;
    text-transform: capitalize;
}

@keyframes left-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-100%, 0, 0);
    }
}

.scrollingText:nth-child(2) .text {
    transform: translate3d(-100%, 0, 0);
    animation: right-scroll 500s linear infinite;
}

@keyframes right-scroll {
    from {
        transform: translate3d(-100%, 0, 0);
    }

    to {
        transform: translate3d(100%, 0, 0);
    }
}


.exclusiveDiv {
    color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    font-family: var(--font-three);
    font-size: 200%;
    font-weight: 400;
    letter-spacing: 0.1rem;
}


.bannerDiv {
    width: 100%;
    height: 35vw;
    background-color: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-sizing: border-box;
}

.bannerDiv p {
    width: fit-content;
    font-size: 3vw;
    background-color: #FAFBFF;
    color: #202020;
    font-family: var(--font-two);
    font-weight: 800;
    text-wrap: nowrap;
}

.bannerDiv p:nth-child(1) {
    transform: rotate(10deg);
}

.bannerDiv p:nth-child(2) {
    transform: rotate(-7deg);
}



.ourIntroDiv {
    width: 100%;
    height: auto;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 50px 0 100px 0;
    box-sizing: border-box;
}

.ourIntroDiv h1 {
    font-size: 200%;
    font-family: var(--font-one);
    text-transform: capitalize;
    color: white;
}

.ourIntroDiv p {
    font-size: 100%;
    font-family: var(--font-two);
    width: 90%;
    max-width: var(--max-width);
    text-align: center;
    line-height: 2;
    color: #e2e3e7;
}



































@media only screen and (max-width: 992px) {

    .logoDiv {
        width: 400px;
    }

    .navLeft {
        visibility: hidden;
    }

    .sIntroTextDiv h1 {
        font-size: 250%;
    }

    .sIntroTextDiv h2 {
        font-size: 90%;
    }

    .sIntroTextDiv p {
        font-size: 90%;
    }

    .text {
        animation: left-scroll 600s linear infinite;
    }
    .scrollingText:nth-child(2) .text {
        animation: right-scroll 600s linear infinite;
    }

}


@media only screen and (max-width: 768px) {

    .introSection {
        height: auto;
        min-height: 100svh;
    }

    .innerIntroSection {
        flex-direction: column;
    }

    .logoDiv {
        width: 350px;
        padding: 5px 0 10px 0;
    }

    .sIntroDiv {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        margin-bottom: 50px;
    }

    .sIntroTextDiv h1 {
        font-size: 230%;
    }

    .sIntroTextDiv h2 {
        font-size: 90%;
    }

    .sIntroTextDiv {
        max-width: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sIntroTextDiv p {
        text-align: center;
    }

    .bannerDiv p {
        font-size: 4vw;
    }

    .ourIntroDiv p {
        font-size: 90%;
    }

    .text {
        animation: left-scroll 700s linear infinite;
    }
    .scrollingText:nth-child(2) .text {
        animation: right-scroll 700s linear infinite;
    }

}


@media only screen and (max-width: 576px) {

    .logoDiv {
        width: 250px;
        padding: 5px 0 13px 0;
    }

    .logoDiv img {
        width: 120px;
    }

    .sIntroTextDiv h1 {
        font-size: 200%;
    }

    .bannerDiv p {
        font-size: 5vw;
    }

}