@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

*::selection {
    color: #fff;
    background-color: #000;
}

html,
body {
    height: 100%;
    width: 100%;
}

#main {
    width: 100%;
    background-color: #fff;
}

#home {
    width: 100%;
    min-height: 100vh;
}

#nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 30px 50px;
}

#nav img {
    width: 100px;
}

#nav #right {
    display: flex;
    align-content: center;
    gap: 40px;
}

#nav i {
    margin-top: -2px;
    font-size: 20px;
}

#nav a {
    text-decoration: none;
    font-weight: 400;
    color: #000;
    letter-spacing: .9px;
    font-size: 1vw;
}



#home #homemain {
    width: 100%;
    padding: 15vw 15vw;
}


#homemain h1 {
    font-weight: 500;
    font-size: 1.34vw;
    letter-spacing: -.1vw;
}

#headings {
    display: flex;
    gap: 40px;
}



#headings h1 {
    font-weight: 900;
    font-size: 7vw;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #000;
    letter-spacing: -8px;
}


#headings h1:hover {
    color: #000;
}

#homelast {
    padding: 6vw 15vw;
}



#homelast p {
    width: 70%;
    font-size: 1.6vw;
    font-weight: 400;
    letter-spacing: -.08vw;
}


#featured {
    padding: 10vw 15vw;
}

.fheading>h1 {
    line-height: 1;
    font-size: 4vw;
    font-weight: 400;
}

.fheading>h1:nth-child(2) {
    color: transparent;
    -webkit-text-stroke: 1px #000;
}

#fimages {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    margin-top: 5vw;

}

#fleft {
    overflow: hidden;
    width: 45%;
    height: inherit;
    
}

.fleftelem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: inherit;
}

.fleftelem h1{
    font-size: 2.5vw;
    line-height: 1;
    font-weight: 400;
    text-transform: capitalize;
    margin: 1.5vw 0;
}

.fleftelem h3{
    font-size: 1.3vw;
    font-weight: 400;
}

.fleftelem h4{
    opacity: .5;
}


#fright {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 45%;
    height: inherit;

}

#fright .images {
    width: 90%;
    height: 90%;
}

#fright .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btndiv{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5vw;
}

.btndiv button{
    padding: 1.3vw 2.5vw;
    border-radius: 100px;
    border: 2px solid #e6e6e6;
    background-color: #fff;
    font-size: 1vw;
    font-weight: 500;
    letter-spacing: -1px;
}


#dev{
    width: 100%;
    padding: 5vw 15vw;
}

#dev h1{
    font-size: 3.8vw;
    font-weight: 400;
    width: 60%;
    line-height: 1;
}

#dev p {
    font-size: 1.5vw;
    margin-top: 3vw;
    letter-spacing: -.5px;
    width: 60%;
}

#slides{
    padding: 3vw 10vw;
    display: flex;
    justify-content: space-between;

}

.slide{
    width: 30%;
    
}

.slide .img{
    width: 100%;
    height: 270px;
    overflow: hidden;    
}

.slide .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide .tag{
    border-radius: 100px;
    width: fit-content;
    padding: 10px 22px;
    margin: 20px 0;
    background-color: #f7f7f7;
}

.slide h3{
    font-size: 1.4vw;
    font-weight: 400;
    letter-spacing: -.5px;
}