/* ################ HEADER STYLES ############# */
       *{
   margin: 0;
   padding: 0;
   box-sizing: border-box 
}
header h2{
    color: #fb1115;
    letter-spacing: 1.3;
    font-family: 'Courier New', Courier, monospace;
}
main{
    max-width: 960px;
    margin: auto;
}

header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
}
ul{
    list-style-type: none;
}
ul li{
    display: inline-block;
    margin: 0 10px;
}
ul li a{
    text-decoration: none;
    font-size: 1.2em;
    text-transform: uppercase;
    color: #a7a5a4;
}
ul li a:hover, .social a i:hover{
    color: #fb1115;
}
.social a i{
    margin: 0 10px;
    color: #a7a5a4;
}
/*################### BANNER ###################*/
.banner{
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70vh;
}
.left-banner{
    width: 40%;
}
.text h3{
    font-size: 0.7em;
    padding-bottom: 10px;
    color: #a7a5a4;
}
.text h1{
    padding-bottom: 10px;
    color: #a7a5a4;
}
.text h1{
    padding-bottom: 10px;
}
.text p{
    color: #a7a5a4;
    line-height: 1.2;
}
.right-banner img{
    height: 200px;
    width: 170px;
    background-color: #fb1115;
    border-radius: 5px;
    margin-top: -50px;
    margin-left: 30px;
}
.right-banner:last-child{
    width: 400px;
    height: 200px;
    background: #fb1115;
    border-radius: 10px;
    padding-bottom: 150px;
}
.btn{
    padding-top: 15px;
}
.btn button{
    width: 100px;
    padding: 10px;
    border: 1px solid #fb1115;
    color: #fb1115;
    border-radius: 5px;
}
.btn button:hover{
    color: #fff;
    background: #fb1115;
    cursor: pointer;
}
/* ############ STYLES FOR SERVICES ############## */
#services{
    margin-top: 20px;
}
.service-header h1{
  text-transform: uppercase;
  font-size: 30px;
  color: #010c1c;
  padding-left: 10px;
}
.service-header p{
    padding-left: 10px;
}
.service-header p, .edu p{
    color: gray;
    font-size: 17px;
}
.academic-qualification,
.work-experience{
    padding: 60px;
}
.academic-qualification{
    border-bottom: 1px solid gray
}
.edu{
    padding: 15px;
}
.edu i{
    font-size: 2em;
    color: #fb1115;
    padding-bottom: 10px;
}
.edu h3{
    padding-bottom: 10px;
    text-transform: capitalize;
}
@media screen and (min-width:570px){
    .academic-qualification,
    .work-experience{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
}
footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100px;
}
.footer-links li a{
    text-transform: capitalize;
}
.box{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.message{
    width: 70%;
}
}
/* ########## CONTACT ################### */

#contact{
    padding-left: 20px;
  }
  
  .title h2{
    text-transform: uppercase;
  }
  .title p{
    padding-top: 10px;
    color: #a7a5a4;
  }
  .box, .address{
    margin-top: 20px;
  }
  .address p{
    margin: 10px;
  }
  .address i{
    padding-right: 10px;
    color: #fb1115;
  }
  .message{
    text-align: center;
  }
  form input, form textarea{
    margin: 10px;
    padding: 10px;
    width: 200px;
  }
  input::placeholder{
    text-transform: lowercase;
  }
  .message button{
    width: 100px;
    padding: 10px;
    margin: 10px;
    color: #fff;
    border-radius: 5px;
    background: #fb1115;
    text-transform: uppercase;
    cursor: pointer;
  }
  
  /* ##################FOOTER ############## */
  
  .contact-info{
    margin-top: 10px;
  }
  
  @media screen and (max-width:772px){
    .banner{
      height: 100vh;
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .left-banner, .right-banner{
      width: auto;
      padding: 0 40px;
    }
    
    footer{
      padding-left: 20px;
      margin-bottom: 20px;
      text-align: center;
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  