@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;1,500&display=swap');
*{
    margin: 0;
    box-sizing: border-box;
}
body{
    background-image: url('images/03.jpg');
    font-family: 'Poppins', sans-serif;
    background-size:cover ;
    background-repeat: no-repeat;
  
}


a{
    text-decoration: none;
    color: #f9f9f9;
    
}
a:hover{
    color:blue;
    
}
h1{
    font-weight: bold;
    font-size: 40px;
}
h2{
   padding-left: 25px; 
    
}

.main{
    padding-left: 25px;
    
}
.post img{
    width:97%;
    height:40vh;
    
}
p{
    
    margin: 7px 0;
    line-height: 2;
    color:whitesmoke;
}


/*navigation bar*/
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    
}
ul{
    list-style-type: none;
}
nav ul li{
    display: inline;
    padding: 0 6px;
    
}
nav ul li a{

color: black;
font-weight: bold;    
}
nav ul li a.active{
    
    color:orangered;
    font-weight: bold;    
    }

.container{
    display:grid;
   grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: 80px auto 80px;
    height: 100vh;
    width:80%;
    margin: 0 auto;
    
}
.container1{
    display:grid;
   grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: 80px auto 80px;
    height: 100vh;
    width:80%;
    margin: 0 auto;
    
}

.wrapper{
    padding:40px 100px 40px 100px;
grid-column-start: span 3;
display: flex;
justify-content: center;
    align-items: center;
 background-color:orange;   
}

.form-container1{
    background-color:wheat;
 
    border-radius: 10px;
    padding: 20px 60px 20px 60px;
    
}
.heading{
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
    color:black;
    padding-right: 30px;
     
}
 .input_box input{
    border:1px solid #f9f9f9;   
    border-radius: 12px;
    color:black;
    width: 100%;
    outline: none;
    font-size: 13px;
    padding: 18px;
    height: 25px;
}
.input_box{
    margin: 6px 0px;
    
}
.fa{
    position: absolute;
    padding-top: 9px;
    
   
    
   }
.input_box textarea{
    outline: none;
    color:black;
    width: 100%;

    font-size: 13px;
    border-radius: 12px;
}
.input_box textarea:hover{
    border-color: tomato;
}
.input_box input:hover{
    border-color: tomato;
    
}
.submit button{
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    height: 40px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
     margin: 0px 0px;
     border-radius: 12px;
   
}
.submit button:hover{
    background-color:wheat;
}
.error
{
    
    color:red;
    font-weight: bold;
    
    font-size: 13px;
}

::-webkit-scrollbar{
    display: none;
}
.header{
    background-color: whitesmoke;
    grid-column-start: span 3;
   

}
.aside{
   background-color: orange;
   grid-column-start: span 1;
   padding-top: 12px;
  
}
.aside ul 
{
    padding-left: 25px;

}

.main{
    background-color: tomato;
    grid-column-start: span 2;
    padding-top: 10px;
}
.footer{
    display: flex;
    background-color:whitesmoke;
    grid-column-start: span 3;
    justify-content: center;
    padding-top: 25px;
}
.show{
    display: block;
}

.mobile{
    display: none;
}
@media(max-width:768px){
    .container{
    grid-template-columns: 1fr;
    grid-template-rows: 100px auto auto 100px;
    width: 100%;
    }
   .header,.aside,.main,.footer{
        grid-column-start: span 1;
    }
   .main{
    padding-right: 20px;
   }
} 
@media(max-width:768px){
    .container1{
        grid-template-columns: 1fr;
        grid-template-rows: 100px auto  100px;
        width: 100%;   
        }
  
   

  
}
@media(max-width:768px) {
 
 nav ul{
    display: none;
    width: 100%;
    background-color: grey;
    position: absolute;
    top:80px;
    left:0;
    right:0;
    text-align: center;
    z-index: 1;
 }


 nav ul li{
    display: block;
    height: 40px;
    margin-right: 25px;
    padding-top: 10px;
 }

 nav ul li a{

    color:white;        
 }
a.mobile{
    color: black;
    display: block;
    font-size: 40px;
}
.logo h1{
    font-size: 30px;
}

}
