*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: 'Gilroy', Arial, sans-serif;
}

html,body{
    height: 100%;
    width: 100%;
}

#main{
    height: 100%;
    width: 100%;
}

#nav{
    /* background-color: brown; */
    position: fixed;
    width: 100%;
    display: flex; 
    align-items: center;
    justify-content: flex-end;
    padding: 30px 40px ;
}

#nav h3{
    background-color: black;
    color: white; 
    padding: 10px 20px;
    font-size: 20px;
    margin: 2px;
    border-radius: 30px;
}

#intro{
    width: 100%;
    height: 40%;
    /* background-color: antiquewhite; */
    padding: 50px ;
}

#intro h1{
    font-size: 120px;
    line-height: 115px;
}

#place{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#place h3, #place h4{
    font-size: 25px;
    font-weight: 500;
}

#hero-image{
    height: 70%;
    width: 100%;
    background-image: url(https://images.unsplash.com/photo-1689218742357-b0bbfadf0f1c?q=80&w=3167&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position:  center;
    height: 80vh;
}

#about{
    height: 45%;
    width: 100%;
    /* background-color: blueviolet ; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
}

#about h2{
    width: 65%;
    /* background-color: aqua; */
    font-size: 70px;
    line-height: 80px;
    font-weight: 600;
}

#about-part2{
    width: 30%;
    height: 100%;
    border-left: 2px solid black;
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#about-part2 h3{
    font-size: 30px;
    font-weight: 550;
}

#icon i{
    background-color: black;
    color: white;
    padding: 10px;
    font-size: 25px;
    border-radius: 50px ;
    margin-right: 10 px;
}

#work{
    height: 45%;
    width: 100%;
    /* background-color: aqua; */
    border-top: 2px solid black;
    display: flex;
    padding: 40px 50px;
} 

#work1{
    width: 30%;
    height: 100%;
    /* background-color: brown; */
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    border-right: 2px solid black;
}
#work1 h3{
    font-size: 25px;
    font-weight: 600;
}
#work1 i{
    font-size: 25px ;
}
#work2{
    width: 70%;
    height: 100%;
    /* background-color: rgb(73, 42, 165); */
    padding: 0px 60px;
}

.work2-part{
/* background-color: brown; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px ;
}

.work2-part:nth-child(1){
    /* background-color: bisque; */
    border-bottom: 2px solid black;
    padding-top: 0 ;
}

.work2-part .elem{
    width: 50%;
    height: 100%;
  
 
}

.work2-part .elem:nth-child(1){
    border-right: 2px solid black;
    
}

.work2-part .elem:nth-child(2){
    padding-left: 50px;
    
}

.work2-part .elem h4{
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 500;
} 

.work2-part .elem p{
    font-size: 15px;
    font-weight: 50;
   
} 