* {
    margin: 0;
    padding: 0;
    font-family: Helvetica;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    color: white;
    background: black;
    /* cursor: none; */
    scrollbar-width: none; 
}

body {
    overflow-x: hidden;
}



.model {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 2;
    pointer-events: none;
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    z-index: 4;
}


.nav {
    position: fixed;
    top: 2%;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    z-index: 3;
}

.nav h1 {
    font-size: 25px;
    text-transform: uppercase;
}

.nav ul {
    display: flex;
    align-items: center;
    align-items: center;
    gap: 20px;
}

.nav ul a {
    font-size: 20px;
    text-decoration: none;
    color: white;
    mix-blend-mode: difference;
}

.nav .menu {
    width: 80px;
    filter: invert(1);
    cursor: pointer;
}




.full {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -200%;
    left: 0;
    padding: 10px 20px;
    background: white;
    color: black;
    z-index: 4;
    padding: 30px 30px;
}


.full h1 {
    font-size: 40px;
    position: absolute;
    top: 5%;
    left: 5%;
}

.full .links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: absolute;
    top: 30%;
    left: 5%;
}

.full .links a {
    font-size: 60px;
    font-family: inter;
    display: block;
    font-weight: bolder;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
}


.full .close {
    font-size: 30px;
    position: absolute;
    top: 5%;
    right: 5%;
    cursor: pointer;
    font-weight: 600;
}

.sec {
    width: 100%;
    height: 100vh;
    padding: 10px 20px;
    position: relative;
}





.header .text1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 90px;
}

.header .text1 .box {
    width: 100%;
    height: 100px;
    /* background: red; */
    overflow: hidden;
}

.header .text1 .box h1 {
    font-size: 100px;
    text-transform: uppercase;

}


.header p {
    font-size: 16px;
    position: absolute;
    bottom: 22%;
    right: 20%;
    width: 28%;
}

.sec1 h1 {
    font-size: 60px;
    width: 93%;
    line-height: 70px;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sec1 h1 .char {
    opacity: 0.1;
}


.sec1 .text2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 13%;
    left: 4%;
}


.sec2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec2 .text3 {
    width: 100%;

}

.sec2 .text3 h2 {
    font-size: 60px;
    text-transform: uppercase;
    font-family: 'Trebuchet MS';
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    /* width: 100%; */

}



.sec2 .text3 h2:hover {
    background: white;
    color: black;
    transition: all 0.2s;
    cursor: pointer;
}


.sec2 .image-container {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 400px;
    height: 300px;
    overflow: hidden;
    display: none;
    z-index: 4;
}

.sec2 .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    ;
}


.sec2 .hover-container img {
    width: 100%;
    height: auto;
    display: block;
}





.sec3 h1 {
    font-size: 90px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
}


.sec3 .footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 2%;
    left: 0;
    padding: 10px 20px;
}

.sec3 .footer h3 {
    display: flex;
    text-align: center;
    gap: 15px;
}

.sec3 .footer h3 a {
    color: white;
    text-decoration: underline;
}

@media (max-width: 943px) {

    .header .text1 .box {
        height: 80px;
    }

    .header .text1 .box h1 {
        font-size: 60px;
    }

    .header p {
        width: 36%;
        right: 3%;
    }

    .sec1 h1 {
        font-size: 50px;
        line-height: 55px;
    }
}


@media (max-width: 725px) {

    .cursor {
        display: none;
    }

    .nav {
        padding: 10px 20px;
    }

    .nav ul {
        display: none;
    }

    .header .text1 {
        width: 90%;
    }

    .header .text1 .box {
        height: 80px;
    }

    .header .text1 .box h1 {
        font-size: 60px;
    }

    .header p {
        right: 4%;
    }

    .sec1 h1 {
        font-size: 40px;
        line-height: 45px;
    }

    .sec2 .image-container img {
        display: none;
    }

    .sec3 h1 {
        font-size: 70px;
        text-align: center;
    }
}

@media (max-width: 633px) {

    .full .links a {
        font-size: 50px;
    }

    .header .text1 .box {
        height: 70px;
    }

    .header .text1 .box h1 {
        font-size: 50px;
    }

    .header p {
        font-size: 15px;
    }
}


@media (max-width: 561px) {
    .sec2 .text3 h2 {
        font-size: 50px;
    }

}

@media (max-width: 519px) {
    .header .text1 {
        display: flex;
        justify-content: center;
        align-items: center;
        top: 30%;
        left: 50%;
        /* transform: translate(-50%, -50%); */
    }

    .header p {
        left: 5%;
        width: 80%;
    }
}

@media (max-width: 435px) {
    .sec3 .footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .sec3 .footer h3 {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 389px) {
    .full .close {
        top: 7%;
    }
}