*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(37,37,37);
    background-color: #DCE0ED;
    line-height: 25px;
    letter-spacing: 1px;
    box-sizing: border-box;
    
}

/* navigation */
.nav{
    background: white;
    height: 80px;
    width: 100%;
    position: fixed;
}
.current a{
    color: black;
    font-weight: bold;
}
.nav-logo img{
    float: left;
    position: fixed;
    top: 1%;
    left: 3%;
     /* margin-top: 8px; */
     /* margin-left: 20px; */
     /* color: white; */
     overflow: hidden;
     width: 100px;
}
.nav-links{
    float: right;
    margin-right: 20px;
    
}
nav ul li{
    display: inline-block;
    margin: 0 5px;
    line-height: 80px;
    padding-top: 6px;
}
.nav-single-link{
    color:#0082e8;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
}
.nav-single-link:hover{
    color: #e29c29;
    transition: 1s;
}
.nav-btn{
    display: none;
}
@media screen and (max-width:768px){
/* nav btn */
.nav-btn{
    display: block;
    position: fixed;
    top: 4%;
    right: 6%;
    font-size: 3rem;
    color: #0082e8;
    cursor: pointer;
    animation: pulse 2s infinite;
    /* overflow: hidden; */
}
/* nav btn animation */
@keyframes pulse{
    0%{
       transform: scale(1)
    }
    50%{
      transform: scale(1.5)
    }
    100%{
       transform: scale(1)
    }
}
.nav-links{
    position: fixed;
    top: 80px;
    left: 0;
    height: 50%;
    /* width: 10rem; */
    background: rgba(242,180,80,0.9);
    z-index: 3;
    list-style-type: none;
}
.nav-single-link{
    display: block;
    text-decoration: none;
    text-transform: capitalize;
    color: #0082e8;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    line-height: 20px;
    text-align: left;
    transition: all 0.5s ease-in-out;
}
/* .nav-links{ */
    /* list-style-type: none; */
/* } */
.nav-single-link:hover{
     background: #191919;
     color: rgba(242,180,80,0.9);
     padding-left: 1.5rem;
}
  
.nav-links{
    width: 0;
    overflow: hidden;
    transition: all 0.5s linear;
}

.nav-show{
   width: 10rem;
} /*  
.nav-logo:hover{
    background: #58585c;
    color: #191919;
}  */  
}
/* banner */
.banner{
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(./img/images\ \(1\).jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    
}
.banner h2{
    padding: 190px 20px 0px 20px;
}
.highlight{
    color: #e29c29;
}
.banner p{
    padding-top: 10px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 16px;
}
/* title */
.title{
    margin: 20px 0;
}
.title-txt{
    font-size: 18px;
    text-align: left;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 0;
    text-transform: capitalize;
}
/* text container */
.container{
    margin: 20px;
    /* padding-bottom: 0; */
    /* background: #D5D8E5; */
    background: #e7edf1;;
    border-radius: 0.5em;
    overflow: hidden;
}
.container p{
    margin: 10px;
    padding-top: 20px;
    padding-bottom: 20px; 
    font-size: 16px;
    color: rgb(37,37,37);
    
}
.container ul{
    padding: 0px 10px 20px 20px;
}
.container li{
    margin: 8px 10px 8px 25px; 
    font-size: 16px;
    color: rgb(37,37,37);
    list-style: circle;
    
}
/* qulifications */
.container h3{
    margin: 10px;
    padding-top: 20px;
    font-size: 18px;
    color: #111;
}
.registration-form a{
    text-decoration: none;
    background: linear-gradient(120deg,#a1c4fd 0%,#c2e9fb 100%);
    padding: 8px;
    border-radius: 3rem;
    color: #3f4954;
      
}
.registration-form h4{
    margin-bottom: 20px;
    font-size: 16px;
    color: #111;
}
.registration-form a:hover{
    background: #104f55;
    color: white;
}
.registration-form{
    text-align: center;
    padding-bottom: 40px;
}
.container dl{
    padding: 0px 10px 10px 20px;
}
.container dt{
    font-size: 18px;
    color: #0082e6;
}
/* company */
.company{
    margin: 5px 0px 0px 0px;
    /* background: #E29C29; */
    /* background: rgba(226,156,41,0.8); */
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(./img/im3.jpeg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.company-container{
    margin: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    /* color: rgb(37,37,37); */
    color: #fff;
}
.company-container p,ul{
    padding: 10px 0;
    font-size: 16px;
    list-style: none;
}
.company-container h2{
    padding: 10px 0 0 0;
    text-transform: capitalize;
    font-size: 20px;
    color: #e29c29;
}
.company-container h1{
    color: #e29c29;
}
.company-container a{
    text-decoration: none;
    /* color: rgb(37,37,37); */
    color: #fff;
    
}
.company-container li{
      padding: 2px 0;
}
#icons{
    margin-right: 10px;
    color: #e29c29;
    font-size: 20px;
}
@media screen and (min-width: 768px){
    .company-container{
        max-width: 80vw;
        margin: 2rem auto;
        display: block;
        overflow: hidden;
    }
    .company-1{
        float: left;
        width: 45%;
    }
    .company-2{
        float: right;
        width: 45%;
    }
}

/* footer */
footer{
    background: #191919;
    color: #e7edf1;
    padding: 20px;
}
footer p{
    text-align: center;
    padding-bottom: 10px;
    font-size: 16px;
}
footer a{
    color: #0082e8;
    text-decoration: none;
}
/* contact page */

.container form{
    background: hsl(0, 0%, 90%);
    color: #000;
    padding: 20px;
    margin: 0 20px 20px 20px;
    text-align: center;
    border-radius: 0.5rem;
    box-shadow: 1px 2px 1px #191919;
    overflow: hidden;
    
    
}
.container form input[type="text"], input[type="email"]{
    width: 50%;
    height: 30px;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #0082e8;
    border-radius: 0.8em;
    outline: none;
}
.container form textarea{
    width: 50%;
    height: 100px;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #0082e8;
    border-radius: 0.8em;
    outline: none;
}
#contact form label{
    text-transform: capitalize;
    font-size: 16px;
    
}
.contact h2{
    padding: 10px 10px 0px 10px;
    text-transform: capitalize;
    font-size: 20px;
    text-align: center;
}
.button-1{
    height: 32px;
    padding: 0 24px;
    background: #0082e8;
    border-radius: 0.8em;
    border: 0px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}
.button-1:hover{
    background: transparent;
    border: 1px solid #0082e8;
    color: #0082e8;
}
