@font-face {
  font-family: 'Kajiro';
  src: url('assets/fonts/Kajiro-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gilroy', sans-serif;
    color: white;
}
html,body{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
main{
    height: 100vh;
    width: 100%;
    /* background-color: aqua; */
    position: relative;
    
}
#back{
    height: 100vh;
    width: 100%;
    /* background-color: rgb(0, 255, 26); */
}
#back img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#top{
    height: 100vh;
    width: 100%;
    /* background-color: transparent; */
    /*give posn absolute , with left and top 0 so that top will completely above back-div */
    position: absolute;
    top:0;
    left:0;
    z-index: 10;

    /* As until now all the effects goes to top layer but we want ki vo effect back layer div pe jaye so do  */
    pointer-events: none;
}
#main-top-area{

    /* Here reason of giving two width because aise to ham 80% 
    consider but if screen size 1920px se bigger than we only take 1920px not more  */

    margin:0 auto; /*Used for making our main-area center*/
    width: 80%;
    height: 100vh;
    max-width: 1920px;
    /* background-color: gray; */
    position: relative;

}
nav{
    width: 100%;
    padding:3vh 0;
    /* background-color: yellow; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    pointer-events: all; /*so that ispe mouse work kare*/
}
#nav-left{
    width: 30%;
    /* background-color: red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#nav-left img{
    width: 20%;
}
#nav-right{
    width: 15%;
    /* background-color: rgb(9, 206, 75); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

#top-content{
    width: 100%;
    /* height: 100px; */
    /* background-color: yellow; */
    display: flex;
    justify-content: space-between;

    /* to make our div-center */
    position: absolute;
    top:50%;
    left: 0;
    transform: translate(0,-50%); /*phli value for x i.e width and 2nd height i.e y-axis*/
}
#top-left-content{
    /* as if content are bigger than than width gets increase */
    min-width: 50%;
    /* height: 100px; remove height as we want to make animation */
    /* background-color: rgb(0, 255, 98); */

}
#top-left-content .elem{
   height: 8.9vw;
   /* background-color: yellow; */
   overflow: hidden;
   position: relative;
}
/* /As we wan t phla h1 to normal hi dhikhe uske badd jo bache hai vo ek ke upar ek neeche rahe */
#top-left-content .elem h1:nth-child(1){
  top:0;
}
#top-left-content .elem h1{
  font-family: 'Kajiro', sans-serif;
   font-size: 11vw;
   font-weight: 100;
   color: white;
   position: absolute;
   top:100%;
   left:0;
   /* as ham chahte hai ki ye bache hue h1 ek ke upar ek rahe */
   
}
#line-h1 {
 display: flex;
 align-items: center;
 gap:2vw;
}
#line-h1 span{
  height: 2px;
  background-color: white;
  width: 35%;
  display: inline-block;   
  vertical-align: center;
}
#top-left-content button{
   font-family: 'Kajiro', sans-serif;
    font-size:2vw;
    padding: .7vw 2.5vw;
    margin-top:2.5vw ;
    border: none;
   background-color: white;
   color: black;
    pointer-events: all;
}
#top-right-content {
    width: 25%; 
    /* background-color: pink;  */
    margin-right: -5vw; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
#top-right-content p{
    font-size: 1vw;
    width: 100%;
    text-align: center;
    line-height:3vh;
    font-weight: 500;
}

#top-right-content #right-img{
    width: 100%; 
    height: 30vh;
    /* background-color: rgb(192, 255, 208);  */
    background-image: url('assets/images/potrait-img.jpg');
    background-size: cover;
    background-position: 0% 20% ;

    
}

