    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        /* outline: 1px solid red; */
    }
    
     :root {
        --title-font-size: 3em;
        --main-font-size: 0.8em;
        --list-font-size: 1.1em;
        --main-font-family: 'Raleway', sans-serif;
        --second-main-font-family: 'Bodoni Moda', serif;
        --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: 'Bodoni Moda', serif;
            --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;
    }
    
    body {
        width: 100vw;
        overflow: overlay;
        overflow-x: hidden;
        background: #eee;
    }
    
    .intro {
        position: relative;
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        overflow: hidden;
        background: black;
        animation: back 0.3s linear 7s forwards;
    }
    
    @keyframes back {
        from {
            background: black;
        }
        to {
            background: #eee;
        }
    }
    
    nav {
        position: relative;
        top: 0;
        width: 100vw;
        height: 10vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }
    
    nav>ul {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5em;
    }
    
    nav>ul>li,
    nav>ul>li>a {
        text-decoration: none;
        color: transparent;
        animation: color 0.5s ease 7s forwards;
        list-style: none;
        text-transform: uppercase;
        font-size: var(--list-font-size);
        font-family: var(--second-main-font-family);
        font-style: italic;
    }
    
    @keyframes color {
        0% {
            color: transparent;
        }
        100% {
            color: black;
        }
    }
    
    nav>ul>li>a:hover {
        color: gold !important;
    }
    
    .intro>main {
        width: 100vw;
        height: 90vh;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
        padding-top: 2em;
        padding-inline: 2em;
    }
    
    .intro>main>.hero {
        max-width: 550px;
        min-width: 300px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 1em;
        text-align: center;
    }
    
    .intro>main>.hero>p:nth-child(1) {
        position: relative;
        text-transform: uppercase;
        z-index: 2;
        font-weight: 500;
        font-size: var(--title-font-size);
        font-family: var(--second-main-font-family);
    }
    
    .intro>main>.hero>p:nth-child(2) {
        text-transform: uppercase;
        z-index: 2;
        font-weight: 500;
        word-spacing: 5px;
        line-height: 22px;
        font-size: var(--main-font-size);
        font-family: var(--main-font-family);
        opacity: 0;
        animation: in 0.5s ease 9s forwards;
    }
    
    .intro>main>.hero>p:nth-child(1)>span:nth-child(1) {
        position: absolute;
        top: 30%;
        left: -10%;
        transform: translate(10%, -30%);
        z-index: -1 !important;
        color: transparent;
        font-size: 4em;
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%) !important;
        animation: color2 0.5s ease 7s forwards;
    }
    
    .intro>main>.hero>p:nth-child(1)>span {
        color: transparent;
        position: relative;
        transition: clip-path 1000ms ease-out, top 500ms ease-out;
        /* clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); */
    }
    
    @keyframes color2 {
        0% {
            color: transparent;
        }
        100% {
            color: gold;
        }
    }
    
    .intro>main>.subhero {
        max-width: 400px;
        min-width: 300px;
        text-align: center;
        padding-inline: 3em;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 1em;
        margin-right: 1em;
        opacity: 0;
        pointer-events: none;
        animation: in 0.5s ease 8s forwards;
    }
    
    @keyframes in {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    .intro>main>.subhero>p {
        width: max-content;
        letter-spacing: 2px;
        border-bottom: 2px solid gold;
        padding-inline: 1em;
        text-transform: capitalize;
        font-size: var(--list-font-size);
        font-family: var(--second-main-font-family);
    }
    
    svg {
        position: absolute;
        pointer-events: none;
        overflow: visible;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    @media only screen and (max-width:600px) {
        nav>ul {
            gap: 1.6em;
        }
        .intro>main {
            justify-content: space-around;
        }
        .intro>main>.subhero {
            margin-right: 0;
        }
        .intro>main>.hero>p {
            text-align: center;
        }
        .intro>main>.hero>p:nth-child(1)>span:nth-child(1) {
            top: 30%;
            left: 0;
            transform: translate(0%, -30%);
        }
    }
    
    .intro svg path:nth-child(1) {
        stroke-width: 3;
        stroke: goldenrod;
        stroke-dasharray: 7725;
        stroke-dashoffset: 7725;
        animation: light 6s linear forwards, shadow 1.5s ease 7s forwards;
    }
    
    @keyframes light {
        from {
            stroke-dasharray: 7725;
            stroke-dashoffset: 7725;
            /* fill: transparent; */
        }
        to {
            stroke-dasharray: 7725;
            stroke-dashoffset: 15450;
        }
    }
    
    .intro svg path:nth-child(2) {
        stroke-width: 3;
        stroke: goldenrod;
        stroke-dasharray: 560.5;
        stroke-dashoffset: 560.5;
        animation: light2 3s linear 3s forwards, shadow 1.5s ease 7s forwards;
    }
    
    @keyframes light2 {
        from {
            stroke-dasharray: 560.5;
            stroke-dashoffset: 560.5;
            /* fill: transparent; */
        }
        to {
            stroke-dasharray: 560;
            stroke-dashoffset: 1120;
        }
    }
    
    @keyframes shadow {
        0% {
            filter: drop-shadow(0px 0px 0px transparent);
            fill: transparent;
        }
        50% {
            filter: drop-shadow(0px 0px 10px gold);
            fill: gold;
        }
        90% {
            filter: drop-shadow(0px 0px 10px gold);
            fill: gold;
        }
        100% {
            filter: drop-shadow(0px 0px 0px gold);
            fill: transparent;
            opacity: 0.5;
        }
    }
    
    .page1 {
        position: relative;
        width: 100vw;
        height: 100vh;
        background: #eee;
        display: flex;
        justify-content: center;
        align-items: centers;
        padding: 1em;
        overflow: hidden;
    }
    
    .page1>.side {
        position: absolute;
        width: max-content;
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
        z-index: 2;
    }
    
    .page1>.side>p {
        width: max-content;
        position: relative;
        transition: all 0.5s ease-out;
        font-family: var(--second-main-font-family);
        font-size: var(--title-font-size);
        text-transform: uppercase;
        letter-spacing: 3px;
        pointer-events: none;
    }
    
    .page1>.side>p>span {
        position: relative;
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
        top: -1em;
        transition: clip-path 1s ease-out, top 0.5s ease-out !important;
        -webkit-transition: clip-path 1s ease-out, top 0.5s ease-out !important;
    }
    
    .page1>.content {
        position: relative;
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        padding-bottom: 2em;
        padding-inline: 2em;
    }
    
    .page1>.content>.text {
        max-width: 500px;
        min-width: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0.5em;
    }
    
    .page1>.content>.text>p:nth-child(1) {
        font-family: var(--second-main-font-family);
        font-size: var(--title-font-size);
        text-transform: uppercase;
        font-weight: 500;
        width: max-content;
    }
    
    .page1>.content>.left>p:nth-child(1) {
        padding-inline-end: 0.5em;
    }
    
    .page1>.content>.right>p:nth-child(1) {
        padding-inline-start: 0.5em;
        align-self: flex-end;
    }
    
    .page1>.content>.text>p:nth-child(2) {
        font-family: var(--main-font-family);
        font-size: var(--main-font-size);
        text-transform: uppercase;
        font-weight: 500;
        line-height: 22px;
    }
    
    .page1>.content>.right {
        text-align: right;
        align-self: flex-end;
    }
    
    .page1>.content>.left {
        align-items: flex-start;
        text-align: left;
        align-self: flex-start;
    }
    
    .page1>.content>.text>p>span {
        position: relative;
        transition: clip-path 1000ms ease-out, top 500ms ease-out !important;
        -webkit-transition: clip-path 1000ms ease-out, top 500ms ease-out !important;
    }
    
    @media only screen and (max-width:600px) {
        .page1>.content {
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
        }
        .page1>.content>.right {
            align-self: center;
        }
        .page1>.content>.left {
            align-self: center;
        }
    }
    
    .page1>.content>.logo {
        position: absolute;
        max-width: 150px;
        min-width: 100px;
        max-height: 150px;
        min-height: 100px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 0;
    }
    
    .page1>.content>.logo>.wing {
        position: absolute;
        max-width: 150px;
        min-width: 100px;
        max-height: 150px;
        min-height: 100px;
        border: 2px solid gold;
    }
    
    .page1>.content>.logo>.wing:nth-child(2) {
        transform: skewY(-45deg);
    }
    
    .page1>.content>.logo>.wing:nth-child(1) {
        transform: skewY(-45deg);
    }
    
    .page2 {
        position: relative;
        width: 100vw;
        min-height: 100vh;
        background: #eee;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        overflow-x: hidden;
        padding: 0.5em;
    }
    
    .page2>.head {
        position: relative;
        width: 98vw;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.5em;
        background: #eee;
        border: 2px solid gold;
    }
    
    .page2>.head>legend {
        text-transform: uppercase;
        font-size: var(--title-font-size);
        font-family: var(--second-main-font-family);
        -webkit-text-stroke: 1px;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-color: #ffd700;
    }
    
    .page2>.head>legend>span {
        position: relative;
        transition: -webkit-text-fill-color 1000ms ease-out 500ms, -webkit-text-stroke-color 1000ms ease-out;
        -webkit-transition: clip-path 1000ms ease-out, top 500ms ease-out !important;
    }
    
    .page2>.head>.products {
        position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        overflow: hidden;
        padding: 1em;
    }
    
    .page2>.head>.products>.card {
        position: relative;
        width: clamp(100px, 200px, 250px);
        height: clamp(200px, 250px, 300px);
        border: 2px solid gold;
        box-shadow: 0px 0px 10px gold;
        margin: 1em;
        padding: 0.5em;
        transition: all 0.5s ease-out;
    }
    
    @media only screen and (max-width:600px) {
        .page2>.head>.products {
            justify-content: space-between;
        }
        .page2>.head>.products>.card {
            width: clamp(50px, 150px, 200px);
            height: clamp(150px, 200px, 250px);
            margin: 0em;
            margin-top: 0.5em;
            margin-bottom: 0.5em;
            margin-inline: 0em;
            box-shadow: 0px 0px 5px gold;
        }
    }
    
    .page2>.head>.products>.card>.img {
        width: 100%;
        height: 55%;
        overflow: hidden;
        outline: 1px solid gold;
        outline-offset: -0.3em;
    }
    
    .page2>.head>.products>.card>.img>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .page2>.head>.products>.card>.text {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5em;
    }
    
    .page2>.head>.products>.card>.text>.title {
        width: fit-content;
        padding-inline-end: 0.5em;
        font-size: var(--list-font-size);
        font-family: var(--second-main-font-family);
        text-transform: capitalize;
        border-bottom: 2px solid gold;
        font-weight: 500;
    }
    
    .page2>.head>.products>.card>.text>.discption {
        font-size: var(--main-font-size);
        font-family: var(--main-font-family);
    }
    
    .page2>.head>.products>.card>.text>.discption span {
        position: absolute;
        top: 95%;
        left: 95%;
        transform: translate(-95%, -95%);
        background: gold;
        color: black;
        font-size: 1em;
        font-family: var(--second-main-font-family);
        padding: 0.1em;
        padding-inline: 0.3em;
        text-transform: capitalize;
    }