*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main{
    height: 100%;
    width: 100%;
}
.nav{
    height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2vw;
    padding: 32px;
}
.nav a{
    text-decoration: none;
    font-size: 3vw;
    color: #000;
}
.nav i{
    background-color: #000;
    padding: 0.3vw;
    border-radius: 50%;
    color: #ffff;
    font-size: 3vh;
}
.text{
    width: 100%;  
}
.text h1{
    font-size: 4vw;
    padding: 0 4vw;
    line-height: 4.5vw;
    font-weight: 500;
}
.inner{
    flex-wrap: wrap;
    width: 100%;
    /* height: 30vh; */
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
}
.inner-contant p{
    font-size: 25px;
    font-weight: 500;
    line-height: 29px;
    padding: 25px 2.2vw;
}
.right-contant{
    width: 20%;
}
.elem{
    border-top: 2px solid black;
  padding: 12px 0;
  margin: 5px;
  display: flex;
  justify-content: space-between;

}
.elem a{
    text-decoration: none;
    font-size: 22px;
    color: black;
}
.elem i{
    font-size: 22px;
    opacity: 0;
}
.elem:hover i{
    opacity: 1;
}
.elem:hover a{
    text-decoration: underline;
}
.image{
    height: 36vh;
    width: 100%;
    background-image: url("https://plus.unsplash.com/premium_photo-1663090762882-7421769435dd?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OXx8c29jaWFsJTIwaW5mdWxlbmNlciUyMG1hbnxlbnwwfHwwfHx8MA%3D%3D");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 33%;
}


@media (max-width:600px) {
    .nav{
    height: 10vh;
    gap: 2vw;
    padding: 32px;  
    }
  
.nav i{
    font-size: 3vw;

}
 
.text h1{
    font-size: 12vw;
    padding: 0 2vw;
    line-height: 12.5vw;
    
}
.inner{
    flex-wrap: wrap;
    width: 100%;
    /* height: 30vh; */
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.inner-contant p{
    font-size: 25px;
    line-height: 25px;
    padding: 25px 2vw;
}
.right-contant{
    width: 100%;
}
.elem{
    border-top: 1px solid #303030;
  padding: 7px 0;

}
.elem a{
    text-decoration: none;
    font-size: 19px;
    color: #303030;
}
.elem i{
    font-size: 19px;
    opacity: 1;
    color: #303030;
}
.image{
    height:31vh;
    width: 100%;
   
}


}
