*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: 'lobster' , sans-serif;
    
    }
    body{
    background-color: #2d2d2d;
    }
    /* header start */
    header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    padding: 16px 5%;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .2);
    background: #2d2d2d;

    }
    .logo{
    
     font-size: 36px;
     color: white;
     font-weight: 600;   
    
    }
     .logo span{
    color: #705d4a;
    text-shadow: 0 .1rem .1rem rgb(0, 0, 0, .2);
    
     }
     .navlist{
      display: flex;   
    
     }
     .navlist li a {
    font-size: 18px;
    color:#705d4a ;
    font-weight: 500;
    margin-left:10px ;
    border-radius: 6px;
    padding:8px ; 
    transition: all .50s;  
     }
     .navlist li a:hover{
      background-color:#705d4a;
      color: white;   
     }
     .menu-icon {
      font-size:26px ;
      color: #705d4a;
      z-index:10001 ;
      display: none;
      cursor: pointer;   
     }
     .top-icon i{
    
        font-size:23px ;
        margin-left: 5px;
        cursor: pointer;
     }
     #icon1 {
         color:  #705d4a;
     }
    #icon2 {
        color: white;
    }
    
    header.stickly{
      background-color:#1c1b1a ;
      box-shadow: 0 .1rem .1rem  rgba(0, 0, 0, .2);  
      padding: 16px 5%;
    }
    
    @media (max-width:950px){
        #menu-icon{
            display: block;
        }
     .navlist{
         position: absolute;
         top: 100%;
         right: -100%;
         width: 255px;
         min-height: 100vh;
         display: flex;
         flex-direction: column;
         background-color:  #705d4a;
         transition: all .50s ease;
     } 
     .navlist li a {
         color: white;
         display: block;
         padding: 17px;
         font-size: 22px;
     } 
     .navlist.active{
         right: 0;
    
     } 
    }
    @media( max-width:1200px){
        header{
            padding: 15px 4%;
        }
    }
    @media(max-width:1030px){
        header{
            padding: 16px 0%;
        }
    }
    /* header end */
/* contact sec start     */
.contact{

    padding: 100px 12.5 100px;
    background-color: #1c1b1a;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 2.5rem;
    transition: all .50 ease;
    
}
.contact-info{
    margin-top: 10px;
}
.contact-info h2{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-left: 50px;
}
.contact-info p{
    font-size: 13px;
    color: #fff;
    margin-left: 50px;
}
.list{
    margin-top: 16px;
    margin-left: 50px;

}
 .list li{
    margin-bottom : 12px;
 }
 .list li a{
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    transition: 0.5s;

 }
 
 .container{
    width: 70%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container form{
    width: 90%;
    max-width: 500px;
    padding: 50px 30px 20px;
    background:  #705d4a;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgb(0,0, 0, 0.5);
    position: relative;
}

form table tr td {
    color: white;
    font-size: 26px;

}
.container form #button {
    background: white;
color: black;
border-radius: 4px;
border: 1px solid rgba(255, 255, 255, 0.7);
padding: 10px 40px;
outline: 0;
cursor: pointer;
display: block;
margin-left: 150px;
font-size: 15px;
margin-top: 30px;

}

#namelocation{
    font-size: 15px;

}

#passwordlocation {
    font-size: 15px;

}

 #text{
    width: 100%;
    height: 25px 
}
#password{
    width: 100%;
    height: 25px  
}
 @media(max-width:920px){
.contact{
    grid-template-columns: 1fr;
    max-width: 100%;
}

 }
 @media(max-width:1200px){
    .contact{
        padding: 100px 12% 100px;

    }

 }
@media(max-width:950px){
    .contact{
        padding: 100px 12% 100px;
        height: auto;
    }
}

/* contact sec end */
/* footer section start */ */
#footer {
    width: 100%;
    background-color: #1c1b1a;
  }
  
  #footer h1 {
    font-size: 30px;
    font-weight: 700;
  }
  
  .footer-content {
    text-align: center;
    padding-top: 5%;
  }
  
  .footer-content p {
    color: #fff;
    font-weight: 550;
    letter-spacing: 1px;
    font-size: 13px;
  }
  
  .social-links i {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
    background-color: #fff;
    color: black;
    margin-left: 10px;
    margin-bottom: 10px;
    transition: 0.5s;
    cursor: pointer;
  }
  
  .social-links i:hover {
    background-color: #70564a;
    color: #fff;
  }
  
  .footer-bottom-content {
    text-align: center;
    background-color: #1c1b1a;
  }
  .footer-bottom-content p {
    color: #fff;
    font-size: 15px;
  }
  .footer-bottom-content p a {
    color: #70564a;
    font-weight: 600;
  }
  
  





/* footer section end */

