*{transition: 0.2s linear}

header{

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    background-color: var(--primary-color);
    position: relative;
    width: 100%;
    margin-top:100px;
    position: relative;
   
}
.header_text{
    width: 850px;
    margin-top: 150px;
    
   
}
.person_image{
    margin-top: 100px;
    margin-bottom: 20px;
    height: 600px;
    width: 600px;
    max-width: 80vw;
    max-height: 80vw;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 7px solid var(--main-brand-color);
}
.person_image img{
    width: 100%;
    height: 100%;
   
}
.navClass{
    display: flex;
    justify-content:center;
    width: 100%;
    top: 0px;
    position: fixed;
    z-index: 99;
    background-color: var(--primary-color);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   
   
    
    
}

.toggleClass{
    
    list-style: none;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 20px;
    width: 70%;
    font-size: 20px;
    transition: all 500ms;
    position: relative;
    
}

.logo{
    width: 200px;
    
  
}
nav a{
    color: var(--secondary-text-color);
    text-decoration: none;
    position: relative;
    padding: 2px;
}

nav a:hover{
    color:var(--text-color);
}
nav a::after{
    content:"";
    height: 2px;
    width: 0;
    background: var(--main-brand-color);
    position: absolute;
    left:0;
    bottom: 0;
    transition: 150ms ease-in-out;
}
nav a:hover::after{
    width: 100%;
}
nav .myIcon{
    display: none;
    position: absolute;
    top: 2rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    font-size: 45px;
    transition: all 150ms;
    color: var(--main-brand-color);
}

.person_text{
    padding: 0px 25px;
      margin-top: 20px;
      text-align: justify;
    
   
}



@media (max-width:800px){
   
    
    .logo{
        width: 150px;
    }

 
    .navClass{
        display: grid;
        justify-content: space-between;
        align-items:flex-start;
        padding: 15px;
        width: 100%;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
       
       
    }
    .toggleClass{

       position: fixed;
       right:-100%;
       top:120px;
       gap:10px;
       flex-direction: column;
       align-items: flex-start;
       width: 100%;
       transition: 0.6s;
       background-color: var(--secondary-color);
       padding:20px;
    
       
       
       
        
      
             
         }
    .menu{
        display: flex;
    }

    .toggleClass.active{

       right:0px;
     

    
      
       
        
       
      
     
      
      
    
       
    }


    nav .myIcon{
        display: flex;
       
    }

    .fa-bars:hover{
        color: var(--light-secondary-color);
        cursor: pointer;
        transition: all 150ms;
     }
   
    
 
  
  
   
}
