*{
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

*::selection{
    color: white;
    background: black;
}

html, body{
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

.cursor{
    height: 11px;
    width: 11px;
    background-color: black;
    border-radius: 50%;
    z-index: 8;
    position: fixed;
}

.overlay{
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: transparent;
    z-index: 9;
}

.main{
    width: 100%;
    background-color: rgb(255, 255, 255);
}

.home{
    width: 100%;
    min-height: 100vh;
}

.nav{
    width: 100%;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav img{
    width: 95px;
}

.nav .right{
    display: flex;
    gap: 30px;
}

.nav a{
    text-decoration: none;
    font-weight: 500;
    color: black;
    font-size: 1.3vw;
}

.nav i{
    font-size: 25px;
}

.home .homemain{
    width: 100%;
    padding: 13vw 20vw;
}

.homemain h1{
    font-weight: 400;
    font-size: 1.5vw;
}

.headings{
    display: flex;
    gap: 40px;
}

.homemain .headings h1{
    font-size: 5vw;
    font-weight: 700;
    line-height: none;
    color: transparent;
    -webkit-text-stroke: 1px black;
}

.homelast{
    padding:2vw 20vw;
}

.homelast p{
    width: 70%;
    font-size: 1.5vw;
    font-weight: 500; 
}

.homelast p::selection{
    color: white;
    background: black;
}

.featured{
    padding: 10vw 20vw;
}

.fheading>h1{
    font-size: 3.5vw;
    line-height: 1;
    font-weight: 400;
}

.fheading>h1:nth-child(2){
    color: transparent;
    -webkit-text-stroke: 1px black;
}

.fproject{
    width: 100%;
    margin-top: 5vw;
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

.fleft{
    width: 48%;
    height: inherit;
    overflow: hidden;
}

.fleft .elements{
    width: 100%;
    height: inherit; 
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.elements h3{
    font-size: 1.5vw;
    font-weight: 400;
}

.elements h1{
    font-size: 2.3vw;
    line-height: 1;
    font-weight: 400;
    text-transform: capitalize;
    margin: 2vw 0;
}

.elements h4{
    opacity: .5;
}

.fright{
    height: inherit;
    width: 48%;
    overflow: hidden;
}

.fright .images{
    width: 100%;
    height: inherit; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.images video{
    height: 100vh;
    object-fit: cover;
}

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

.button button{
    margin: 3vw 0;
    padding: 1vw 2.5vw;
    border-radius: 100px;
    border: 2px solid rgb(168, 168, 168);
    background-color: white;
    font-size: 1.3vw;
    font-weight: 500;
    transition: all 0.6s ease;
}

.button button:hover{
    scale: 1.2;
    background-color: black;
    color: white;
    border-color: white;
}

.dev{
    width: 100%;
    padding: 0vw 20vw;
    padding-bottom: 5vw;
}

.dev h1{
    font-size: 3.5vw;
    font-weight: 400;
    width: 60%;
    line-height: 1;
}

.dev p{
    font-size: 1.5vw;
    margin-top: 3vw;
    width: 60%;
}

.slides{
    display: flex;
    justify-content: space-between;
    padding: 3vw 10vw;
}

.slide{
    width: 30%;
}

.slide .image{
    width: 100%;
    height: 200px;
    background-color: aqua;
    overflow: hidden;
    border-radius: 20px;
    transition: all 1s ease;
}

.slide .image:hover{
    scale:1.2;
}

.slide .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.slide .tag{
    margin: 20px 0;
    padding: 8px 18px;
    background-color: rgb(233, 233, 233);
    width: fit-content;
    border-radius: 100px;
    font-size: 1vw;
}

.slide h3{
    font-size: 1.4vw;
    font-weight: 400;
    letter-spacing: -0.5px;
}

