* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --title-font-size: 3.5em;
    --main-font-size: 1.2em;
    --list-font-size: 1.8em;
    --main-font-family: 'Raleway', sans-serif;
    --second-main-font-family: 'Poiret One', cursive;
    --therd-main-font-famlit: 'Orbitron', sans-serif;
    --forth-font-family: 'Audiowide', 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: 'Raleway', sans-serif;
        --second-main-font-family: 'Poiret One', cursive;
        --therd-main-font-famlit: 'Orbitron', sans-serif;
    }
}

::-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;
    overflow-x: hidden;
}

.container {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: #edebee;
    overflow: hidden;
}

.container::after {
    position: absolute;
    width: 35vw;
    height: 0vh;
    content: "";
    border: 3px solid black;
    box-shadow: 0px 0px 5px darkblue;
    top: 20%;
    left: 110%;
    transform: translate(-110%, -20%) rotateZ(45deg);
}

.container::before {
    position: absolute;
    width: 35vw;
    height: 0vh;
    content: "";
    border: 3px solid black;
    box-shadow: 0px 0px 5px darkblue;
    top: 80%;
    left: -10%;
    transform: translate(10%, -80%) rotateZ(45deg);
}

.main-ul {
    position: absolute;
    top: 5%;
    left: 98%;
    opacity: 0;
    transform: translate(-98%, -5%);
    color: black;
    font-size: var(--main-font-size);
    box-shadow: 0px 0px 2px darkblue;
    list-style: none;
    text-align: center;
    background: black;
    width: max-content;
    height: 2px;
    cursor: pointer;
    z-index: 99;
    animation: blink 1s linear 8s forwards;
}

.main-ul::after {
    position: absolute;
    top: -100%;
    left: 100%;
    transform: translate(-100%, -100%) rotateZ(45deg);
    box-shadow: 0px 0px 2px darkblue;
    content: "";
    width: 10px;
    height: 2px;
    background: black;
}

.main-ul::before {
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translate(-100%, 100%) rotateZ(-45deg);
    box-shadow: 0px 0px 2px darkblue;
    content: "";
    width: 10px;
    height: 2px;
    background: black;
}

.li {
    position: relative;
    margin: 0.5em;
    margin-top: 1.5em;
    left: 125%;
    text-transform: capitalize;
    font-family: var(--main-font-family);
    font-weight: 600;
}

.main-ul li:nth-child(1) {
    transition: left 1s ease;
}

.main-ul li:nth-child(2) {
    transition: left 1s ease 0.2s;
}

.main-ul li:nth-child(3) {
    transition: left 1s ease 0.4s;
}

.main-ul li:nth-child(4) {
    transition: left 1s ease 0.6s;
}

.liadd {
    left: 0%;
}

.container a {
    color: black;
    text-decoration: none;
}

.mainhero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    overflow: hidden;
    transition: height 0s ease 3s;
}

.mainheroadd {
    height: 27vh;
}

.logo {
    position: relative;
    opacity: 0;
    width: 20vw;
    height: 20vw;
    transition: all 1s ease 0.5s, opacity 0.5s ease;
}

.logo::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skewY(45deg);
    width: 100%;
    height: 30%;
    background: black;
    border: 9px solid black;
    box-shadow: 0px 0px 7px darkblue;
}

.logo::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skewY(-45deg);
    width: 100%;
    height: 30%;
    border: 9px solid black;
    box-shadow: 0px 0px 7px darkblue;
}

@media only screen and (max-width:600px) {
    .logo::after {
        border: 5px solid black;
    }
    .logo::before {
        border: 5px solid black;
    }
}

.logoadd {
    opacity: 1;
    width: 7vw;
    height: 7vw;
    animation: blink 1s linear 2s forwards;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    10% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    75% {
        opacity: 0;
    }
    85% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero {
    width: fit-content;
    height: auto;
    position: relative;
    margin-inline-start: 0.5em;
    font-size: var(--title-font-size);
    font-family: var(--main-font-family);
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0px 0px 5px darkblue;
    letter-spacing: 0.5em;
    visibility: hidden;
}

.left div,
.right div {
    position: relative;
    display: inline-block;
    transition: visibility 0.5s ease 1s;
}

.leftdiv {
    visibility: visible;
}


/* the wind intering */

.left {
    transform: translateY(0px);
    transition: transform 1s ease 5s;
}

.right {
    transform: translateY(0px);
    transition: transform 1s ease 5s;
}

.leftup {
    transform: translateY(-150px);
}

.rightdown {
    transform: translateY(150px);
}

.main {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 2;
}

.title {
    position: relative;
    width: 33vw;
    height: 70vh;
    text-align: center;
    align-self: baseline;
    font-size: var(--title-font-size);
    font-family: var(--main-font-family);
    margin-inline: 0.5em;
    font-weight: 600;
    margin-top: 2em;
    text-transform: uppercase;
    opacity: 0;
    text-shadow: 0px 0px 5px rgb(11, 11, 62);
}

.title p:nth-child(2) {
    width: 100%;
    margin-top: 3em;
    font-size: 0.3em;
    opacity: 0;
    text-align: right;
    font-family: var(--forth-font-family);
    font-weight: 500;
    word-spacing: 5px;
    letter-spacing: 3px;
    line-height: 2.2vw;
    text-shadow: 0px 0px 0px rgb(11, 11, 62);
    animation: blink 1s linear 6s forwards;
}

.padd {
    animation: blink 1s linear 6s forwards;
}

@media only screen and (max-width:600px) {
    .main {
        transform: translatex(-5%);
    }
    .title {
        margin-inline: 0.3em;
        width: 40vw;
        height: fit-content;
    }
    .title p:nth-child(2) {
        line-height: 3.2vw;
    }
    .title p:nth-child(1) {
        width: 150% !important;
        font-size: 0.7em;
        transform: translatex(-15%);
    }
}

.main .text {
    width: 30vw;
    font-size: var(--main-font-size);
    font-family: var(--forth-font-family);
    margin-inline-start: 1.5em;
    text-transform: capitalize;
    align-self: flex-end;
    margin-bottom: 5em;
    line-height: 2.2vw;
    word-spacing: 3px;
    letter-spacing: 2px;
}

@media only screen and (max-width:600px) {
    .main .text {
        width: 70vw;
        text-align: center;
        margin-bottom: 8em;
    }
}

.main .text span {
    display: inline-block;
    color: transparent;
    margin-inline-end: 0.5em;
    transition: color 0.7s ease;
}

.main .text .fade {
    color: black;
}

.main .img {
    position: relative;
    width: 320px;
    height: 0vh;
    overflow: hidden;
    border-radius: 1em;
    transition: height 1.5s cubic-bezier(0.79, -0.02, 0.25, 1) 5.5s;
}

.main .imgadd {
    height: 69vh;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width:600px) {
    .imgadd {
        height: 40vh;
    }
}

.arrows {
    position: absolute;
    display: grid;
    place-content: center;
    top: 80%;
    left: 20%;
    opacity: 0;
    transform: translate(-20%, -80%);
    animation: blink 1s linear 9s forwards;
}

.arrow {
    position: relative;
    opacity: 1;
    width: 20px;
    height: 20px;
    transform: translateY(-5px) rotateZ(45deg);
    border-bottom: 3px solid black;
    border-right: 3px solid black;
}

.a1 {
    animation: down 1.5s ease-in-out infinite;
}

.a2 {
    animation: down 1.5s ease-in-out 0.2s infinite;
}

.a3 {
    animation: down 1.5s ease-in-out 0.4s infinite;
}

@keyframes down {
    0% {
        opacity: 0;
        transform: translateY(-5px) rotateZ(45deg);
    }
    50% {
        opacity: 1;
        transform: translateY(5px) rotateZ(45deg);
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translateY(-5px) rotateZ(45deg);
    }
}

.mark {
    position: absolute;
    top: 95%;
    left: 95%;
    transform: translate(-95%, -95%);
    width: 60px;
    height: 60px;
    border: 2px solid rgb(8, 12, 16);
    border-radius: 50%;
    display: grid;
    place-content: center;
    color: black;
    font-weight: 600;
    font-family: var(--main-font-family);
    font-size: var(--main-font-size);
    text-transform: uppercase;
    z-index: 3;
    opacity: 0;
    transition: all 0.5s ease-out;
    animation: blink 1s linear 9s forwards;
}

.mark::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0px;
    height: 0px;
    border-radius: 50%;
    transition: all 1s cubic-bezier(0.68, -0.04, 0.24, 1.01);
    z-index: -2;
    background: rgb(8, 12, 16);
}

.mark:hover::before {
    width: 70px;
    height: 70px;
}

.mark:hover {
    color: white;
}

.page1 {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #edebee;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.1s ease 2.8s;
}

.page1-add {
    background-color: rgb(8, 12, 16);
}

.box-lines {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: first baseline;
    align-items: center;
    flex-direction: column;
}

.page1 .lines {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    outline: none;
    width: 0vw;
    opacity: 0;
    height: 0vh;
    background: rgb(8, 12, 16);
    border: 1px solid rgb(8, 12, 16);
    margin-bottom: 1em;
    transition: color 1s ease-out, background 1s ease-out, opacity 0s ease, width 1.2s cubic-bezier(0.79, -0.02, 0.25, 1), height 0.5s ease 2s, margin-bottom 0.5s 2s;
    z-index: 2;
    color: white;
    overflow: hidden;
}

.linesadd {
    opacity: 1 !important;
    width: 100vw !important;
    height: 10vh !important;
    margin-bottom: 0em !important;
}

.lines p {
    position: relative;
    transform: translateY(100px);
    font-size: var(--title-font-size);
    font-family: var(--main-font-family);
    writing-mode: vertical-lr;
    text-transform: uppercase;
    opacity: 0.6;
    text-align: center;
    transition: transform 1s ease-out 2.3s;
    pointer-events: none !important;
}

.p-letters {
    transform: translateY(0px) !important;
}

.page1 .slide {
    position: absolute;
    display: flex;
    justify-content: space-around;
    align-items: center;
    right: 0%;
    width: 95vw;
    height: 100vh;
    z-index: 3;
}

.page1 .imgg {
    position: relative;
    margin-inline-start: 5vw;
    min-width: 20vw;
    max-width: 25vw;
    height: 85vh;
    opacity: 0;
    overflow: hidden;
    clip-path: polygon(20% 0%, 100% 0%, 100% 85%, 80% 100%, 0% 100%, 0% 15%);
}

.page1 .imggadd {
    animation: blink 0.5s linear 4s forwards;
}

.imgg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page1 .text {
    position: relative;
    width: 60vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    flex-direction: column;
    margin-inline: 3vw;
    color: white;
    line-height: 3vw;
}

.page1 .text p {
    margin-bottom: 5vw;
}

.page1 .text p:nth-child(1) {
    font-size: var(--title-font-size);
    font-family: var(--second-main-font-family);
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0;
    text-shadow: 0px 0px 5px white;
    border-bottom: 3px solid white;
    padding-inline-start: 0.5em;
    text-align: right;
    padding: 1vw;
}

.page1 .titleadd {
    animation: blink 1s linear 5s forwards;
}

.page1 .text p:nth-child(2) {
    font-size: var(--main-font-size);
    font-family: var(--forth-font-family);
    text-transform: uppercase;
    letter-spacing: 3px;
    word-spacing: 4px;
    width: 75%;
    padding-inline-start: 0.5em;
    text-align: right;
    color: transparent;
}

.page1 span {
    display: inline-block;
    margin-inline: 0.5vw;
    transition: color 0.5s ease 5.5s;
}

.page1 .p-color {
    color: white;
}

.page1 .text p:nth-child(3) {
    font-size: var(--list-font-size);
    font-family: var(--second-main-font-family);
    text-transform: uppercase;
    width: fit-content;
    letter-spacing: 2px;
    padding-inline-start: 0.5em;
    text-align: right;
}

@media only screen and (max-width:600px) {
    .page1 .imgg {
        height: 60vh;
        min-width: 35vw;
        max-width: 40vw;
        margin-block-start: 0vw;
    }
    .page1 .text p:nth-child(1) {
        width: 130%;
        transform: translateY(-70px);
        margin-bottom: 0;
    }
    .page1 .text p:nth-child(2) {
        width: 100%;
        height: 50vh;
        padding-top: 15vw;
        transform: translateY(-30px);
    }
}

.page2 {
    position: relative;
    width: 100vw;
    height: auto;
    background: #edebee;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.products-area {
    position: relative;
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 1em;
}

.page2 .title-page2 {
    position: relative;
    width: 100vw;
    height: 20vh;
    display: flex;
    padding: 1em;
    justify-content: left;
    align-items: center;
}

.title-page2 p {
    font-size: var(--title-font-size);
    font-family: var(--main-font-family);
    text-transform: uppercase;
    margin-right: 4em;
}

.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: white;
    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);
}

.pic {
    position: relative;
    border-radius: 0px;
    padding-bottom: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.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) {
    font-size: 0.7em;
    font-family: var(--therd-main-font-famlit);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about p:nth-child(2) {
    font-size: 1em;
    margin-top: 0.5em;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    /* font-family: var(--main-font-family); */
    text-transform: capitalize;
    letter-spacing: 3px;
}

.logo2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    width: 3vw;
    height: 3vw;
}

.logo2::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skewY(45deg);
    width: 100%;
    height: 30%;
    background: black;
    border: 5px solid black;
    box-shadow: 0px 0px 5px darkblue;
}

.logo2::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skewY(-45deg);
    width: 100%;
    height: 30%;
    border: 5px solid black;
    box-shadow: 0px 0px 5px darkblue;
}

@media only screen and (max-width:600px) {
    .page2 .title-page2 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .title-page2 p {
        margin-right: 0;
        margin-bottom: 1.5vw;
    }
    .logo2::after {
        border: 3px solid black;
    }
    .logo2::before {
        border: 3px solid black;
    }
    .logo2 {
        position: relative;
        top: 0% !important;
        left: 0% !important;
        transform: translate(0%, 0%) !important;
        margin-top: 1.5vw;
        width: 3.5vw;
        height: 3.5vw;
    }
}

footer {
    width: 100%;
    height: 20vh;
    background: rgb(8, 12, 16);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer p {
    width: 700px;
    text-align: center;
    color: #edebee;
    text-transform: capitalize;
    font-family: var(--main-font-size);
    font-family: var(--second-main-font-family);
}

footer .social {
    width: 25vw;
    height: 7vh;
}