* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red !important; */
}

:root {
    --title-font-size: 3.5em;
    --main-font-size: 1.2em;
    --list-font-size: 1.8em;
    --main-font-family: 'Kaushan Script', cursive;
    --second-main-font-family: 'Viga', sans-serif;
    --therd-main-font-famlit: 'Comfortaa', cursive;
}

@media only screen and (max-width:600px) {
     :root {
        --title-font-size: 2em;
        --main-font-size: 0.6em;
        --list-font-size: 1em;
        --main-font-family: 'Kaushan Script', cursive;
        --second-main-font-family: 'Viga', sans-serif;
        --therd-main-font-famlit: 'Comfortaa', cursive;
    }
}

::-webkit-scrollbar {
    width: 0.5rem;
    background: transparent;
}

::-webkit-scrollbar-track {
    position: absolute;
    background: transparent;
    margin-block: 0.5rem;
}

::-webkit-scrollbar-thumb {
    background: rgb(201, 201, 201);
    border-radius: 5rem;
}

html {
    font-size: 100%;
}

body {
    width: 100vw;
    min-height: 100vh;
    overflow: overlay;
    background: black;
    overflow-x: hidden;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    background-color: rgb(5, 10, 24);
}

.container>nav {
    position: relative;
    display: flex;
    width: 100%;
    border-bottom: 1px solid rgb(255, 255, 255, 0.1);
}

nav>.nav-section {
    padding: 3rem 2rem;
    display: flex;
    gap: 1rem;
    border-left: 1px solid rgb(255, 255, 255, 0.1);
    justify-content: center;
    align-items: center;
}

.nav-logo-section,
.nav-link-section {
    flex-basis: calc(100%/3);
}

.nav-home-admin-section,
.nav-title-section {
    flex-grow: 1;
}

.nav-logo-section {
    justify-content: flex-start !important;
}

.nav-home-admin-section {
    display: flex;
    gap: 4em !important;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--therd-main-font-famlit);
}

.nav-link-section {
    gap: 10em !important;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--therd-main-font-famlit);
}

.nav-title-section {
    font-size: 16px;
    font-family: var(--second-main-font-family);
    text-transform: uppercase;
    color: white;
}

.container>main {
    flex-grow: 1;
}

a {
    text-decoration: none;
    color: white;
}

main>article {
    position: absolute;
    height: 82vh;
    display: grid;
    /* height: 100%; */
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 2fr 1fr;
    bottom: 0;
    left: 0;
    transition: transform 400ms ease;
    background: rgb(5, 10, 24);
}

main>article[data-status="inactive"] {
    transform: translateX(-100%);
}

main>article[data-status="active"] {
    transition-delay: 300ms;
}

main>article[data-status="after"] {
    transform: translateX(100%);
    transition-delay: none;
}

main>article[data-status="before"] {
    transform: translateX(-100%);
    transition-delay: none;
}

main>article[data-status="becoming-active-from-before"] {
    transform: translateX(-100%);
    transition: none;
}

main>article[data-status="becoming-active-from-after"] {
    transform: translateX(100%);
}

main>article>.article-section {
    height: 100%;
    overflow: hidden;
}

main>article>.article-discription-section,
main>article>.article-nav-section {
    border-left: 1px solid rgb(255, 255, 255, 0.1);
}

main>article>.article-title-section,
main>article>.article-nav-section {
    border-top: 1px solid rgb(255, 255, 255, 0.1);
}

main>article>.article-img-section>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main>article>.article-discription-section {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-inline: 1em;
    padding-bottom: 1em;
}

main>article>.article-discription-section>p {
    font-size: 0.9em;
    color: white;
    font-family: var(--therd-main-font-famlit);
    line-height: 25px;
    letter-spacing: 2px;
    text-transform: capitalize;
}

main>article>.article-title-section {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: row;
    padding-inline: 2em;
}

main>article>.article-title-section>p {
    font-size: var(--title-font-size);
    font-family: var(--second-main-font-family);
    color: white;
    text-transform: uppercase;
}

main>article>.article-nav-section {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

main>article>.article-nav-section>.arrow {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.article-nav-section>.left-arrow {
    background: transparent;
    border-right: 1px solid rgb(255, 255, 255, 0.1);
}

.article-nav-section>.arrow {
    background: transparent;
    outline: none;
    border: none;
    border-right: 1px solid rgb(255, 255, 255, 0.1);
    overflow: hidden;
}

.article-nav-section>.arrow>span {
    position: relative;
    width: 30%;
    height: 2px;
    background: rgb(255, 255, 255);
}

.article-nav-section>.left-arrow>span::after {
    position: absolute;
    content: "";
    width: 30%;
    height: 2px;
    background: white;
    left: 0;
    transform-origin: left;
    transform: rotateZ(-45deg);
}

.article-nav-section>.left-arrow>span::before {
    position: absolute;
    content: "";
    width: 30%;
    left: 0;
    height: 2px;
    background: white;
    transform-origin: left;
    transform: rotateZ(45deg);
}

.article-nav-section>.right-arrow>span {
    display: flex;
    justify-content: flex-end;
}

.article-nav-section>.right-arrow>span::after {
    position: absolute;
    content: "";
    width: 30%;
    height: 2px;
    background: white;
    transform-origin: right;
    transform: rotateZ(-45deg);
}

.article-nav-section>.right-arrow>span::before {
    position: absolute;
    content: "";
    width: 30%;
    height: 2px;
    background: white;
    transform-origin: right;
    transform: rotateZ(45deg);
}

.pointer-add {
    opacity: 0.5 !important;
}

.container .hero p {
    font-size: var(--title-font-size);
    -webkit-text-stroke: #ebfafc;
    background: transparent;
    color: #eee;
    -webkit-text-fill-color: transparent;
    font-family: var(--main-font-family);
}

.page1 {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #ebfafc;
}

.main {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.big-water {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    opacity: 0.6;
    z-index: -1;
}

.big-water .letter {
    display: grid;
    height: 62px;
    margin: 0.2em;
}

.big-water .letter svg {
    margin: -0.3em;
}

.big-water .w {
    width: 110px !important;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
}

.big-water .a {
    margin-left: -10px;
    width: 78px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 3px;
}

.big-water .t {
    margin-left: -10px;
    width: 60px;
    height: 62px;
    grid-template-columns: repeat(3, 18px);
    grid-template-rows: 15px 47px;
}

.big-water .t svg:nth-child(1) {
    grid-area: 1/1/4/2;
}

.big-water .t svg:nth-child(2) {
    grid-area: 2/2/3/3;
}

.big-water .e {
    margin-left: 5px;
    width: 63px;
    height: 62px;
    grid-template-columns: repeat(2, 28px);
    grid-template-rows: 45px 18px;
}

.big-water .e svg:nth-child(3) {
    margin-top: -7px;
    grid-area: 2/2/3/3;
}

.big-water .r {
    margin-left: 10px;
    width: 66px;
    height: 64px;
    grid-template-columns: 28px 40px;
    grid-template-rows: 43px 21px;
}

.big-water .r svg:nth-child(3) {
    grid-area: 2/2/3/3;
}

.box-partical {
    position: absolute;
    top: 10%;
    left: 90%;
    transform: translate(-90%, -10%);
    width: 5px;
    height: 5px;
    display: grid;
    place-content: center;
    /* background: red; */
}

.box-partical2 {
    position: absolute;
    top: 90%;
    left: 10%;
    transform: translate(-10%, -90%);
    width: 5px;
    height: 5px;
    display: grid;
    place-content: center;
    /* background: red; */
}

@media only screen and (max-width:600px) {
    .big-water {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.5);
    }
    .box-partical {
        top: 10%;
        left: 80%;
        transform: translate(-80%, -10%);
    }
    .box-partical2 {
        top: 90%;
        left: 20%;
        transform: translate(-20%, -90%);
    }
}

.for-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 0%;
    width: 100%;
    height: 100%;
    background: #0e0e1b;
    border-radius: 1em;
}

.for-text2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 0%;
    width: 100%;
    height: 100%;
    background: #0e0e1b;
    border-radius: 1em;
}

.mid {
    position: relative;
    width: 100vw;
    height: 80vh;
    padding: 1em;
    display: flex;
    justify-content: space-evenlys;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.side-pic {
    margin-inline-start: 5em;
    width: 25vw;
    height: 70vh;
    border-radius: 1em;
    transform: translatex(100px);
    overflow: hidden;
    align-self: flex-end;
}

.side-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list {
    margin-inline: 1em;
    width: 50vw;
    height: 90%;
    align-items: flex-start;
}

.list ul {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.list ul li {
    margin-top: 1em;
    margin-bottom: 1em;
    width: 100%;
    list-style: none;
}

.list li p:nth-child(1) {
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: var(--main-font-size);
    text-transform: uppercase;
    font-family: var(--second-main-font-family);
}

.list li p:nth-child(2) {
    margin-left: 4em;
    font-size: 1em;
    font-family: var(--therd-main-font-famlit);
    text-transform: capitalize;
    word-spacing: 4px;
    font-weight: 500;
    letter-spacing: 1px;
}

.list span {
    display: inline;
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
    border: 2px solid #0e0e1b;
    border-radius: 1em;
    margin-inline-end: 1em;
}

@media only screen and (max-width:600px) {
    .list {
        width: 100vw;
    }
    .list li {
        padding-inline-end: 1.2em;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }
    .side-pic {
        position: absolute;
        width: 40vw;
        height: 55vh;
        top: 15%;
        left: 90%;
        transform: translate(-90%, -15%);
        margin-inline-start: 0em;
    }
    .list span {
        width: 35px;
        height: 35px;
    }
    .list ul {
        margin-left: -1.3em;
    }
    .list li p:nth-child(2) {
        margin-left: 5em;
        font-size: 0.6em;
    }
}

@media only screen and (max-width:400px) {
    .side-pic {
        position: absolute;
        width: 45vw;
        height: 40vh;
        top: 25%;
        left: 90%;
        transform: translate(-90%, -25%);
        margin-inline-start: 0em;
    }
}

.page2 {
    position: relative;
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.page2 .header {
    position: relative;
    width: 100vw;
    height: 15vh;
    z-index: 3;
    overflow: hidden;
    display: flex;
    background: #ebfafc;
    padding: 1em;
    justify-content: center;
    align-items: center;
}

.header p {
    /* color: black; */
    font-size: var(--title-font-size);
    font-family: var(--second-main-font-family);
    text-transform: uppercase;
}

.products-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
    min-height: 100vh;
    background: #0f0f13;
}

.header p span {
    position: relative;
    color: black;
    /* display: inline-block; */
    top: 100px;
    transition: all 0.7s ease;
}

.header p .appear {
    color: black;
    top: 0px;
}

.products {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: baseline;
    flex-direction: column;
    padding: 48px 24px 20px;
    min-width: 258.75px;
    max-width: 258.75px;
    min-height: 372.75px;
    max-height: 372.75px;
    margin: 1em;
    background: #eee;
    transition: all 0.5s ease;
    clip-path: polygon(48px 0%, 100% 0, 100% calc(100% - 48px), calc(100% - 48px) 100%, 0 100%, 0% 48px)
}

.products:hover {
    transform: translateY(-10px);
}

.products .pic {
    position: relative;
    border-radius: 0px;
    padding-bottom: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.products.pic .imggg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products .about {
    margin-top: 30px;
    padding: 0.5em;
    width: 100%;
}

.about p:nth-child(1) {
    color: black;
    font-size: 0.7em;
    font-family: var(--second-main-font-family);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about p:nth-child(2) {
    color: black;
    font-size: 1em;
    margin-top: 0.5em;
    font-weight: 600;
    font-family: var(--therd-main-font-famlit);
    /* font-family: var(--main-font-family); */
    text-transform: capitalize;
    letter-spacing: 3px;
}