@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,600&family=Poppins:wght@200;300;400;500;700&family=Roboto:wght@300;400;500;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');

:root{
    --primaryColor:rgb(20, 73, 73);
    --secondaryColor:rgb(95, 197, 197);
    --tertiaryColor:rgb(18, 109, 109);
    --otherColor:rgb(216, 139, 67);
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    /* position:relative; */
    font-size:14px;
    line-height: 1.5;
    font-family:'Poppins', sans-serif;
    color:rgb(48, 46, 46);
    background-color:rgb(242, 245, 248);
    
}
a{
    color:var(--tertiaryColor);
    text-decoration:none;
}
button{
    background:var(--primaryColor);
    padding:10px;
    color:#fff;
    border:none;
    cursor:pointer;
}
.top_head{
    background:rgb(212, 85, 26);
    padding:5px;

}
.top_head p{
    color:#fff;
    text-align:center;
    text-transform:capitalize;
}
header{
    position:sticky;
    top:0;
    left:0;
    background:var(--tertiaryColor);
    display:flex;
    justify-content: space-between;
    align-items:center;
    min-height:10vh;
    box-shadow:2px 2px 2px 2px #c4c4c4;
    z-index:2;
}
header h1{
    margin-left:50px;
    font-family: 'lora';
}
header h1 a{
    display:flex;
    align-items:Center;
    text-decoration:none;
    color:#fff;
}
header h1 a img{
    width:80px;
    height:80px;
}
h1 .title{
    margin:0;
    padding:0;
    font-size:2rem;
}
h1 span{
    font-size:1rem;
    display:block;
    letter-spacing:10px;
    color:var(--secondaryColor);
}
.admin_header{
    position:sticky;
    
}
.admin_header h2{
    text-transform: uppercase;
}
nav{
    margin-right:50px;
}
nav ul{
    display:flex;
    align-items:center;
}
nav ul li{
    list-style:none;
    margin:10px;
}
nav ul li a{
    color:#fff;
    padding:10px;
    text-transform:uppercase;
    font-size:1rem;
    font-weight:bold;
}
.menu{
    display:none;
}
#contact{
    background:var(--primaryColor);
    
    padding:10px;
}
#contact a{
    color:#fff;
}
/* banner and slider */
#slider{
    position:relative;
    width:100%;
    height:70vh;
    overflow:hidden;
}
#slider .slides{
    position:relative;
    width:400%;
    height:100%;
    left:0;
    animation:30s slide infinite;
    animation-timing-function: linear;
}
@keyframes slide{
    0%{
        left:0;
    }
    24.5%{
        left:0;
    }
    25%{
        left:-100%;
    }
    50%{
        left:-100%;
    }
    50.5%{
        left:-200%;
    }
    75%{
        left:-200%;
    }
    75.5%{
        left:-300%;
    }
    100%{
        left:-300%;
    }
}
.slides .slide{
    position:relative;
    float:left;
    width:25%;
    height:100%;
}
.slide .banner_img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.slide .banner_img img{
    object-fit:cover;
    width:100%;
    height:100%;
}
.slide .banner_img:after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0, 0, 0, .4);
}
.slide .taglines{
    position:absolute;
    display:flex;
    flex-direction: column;
    top:10vh;
    left:5vw;
    width:100%;
    height:100%;
    margin:auto;
    opacity:0;
    animation:7.5s flow infinite;
    animation-fill-mode:forwards;
    /* animation-timing-function: linear; */
    
}
/* .slide .taglines2{
    text-align:center;
    margin:0 auto;
    right:0
} */
/* .slide .taglines3{
    margin-left:30px;
    right:0;
} */
@keyframes flow{
    0%{
        opacity:0;
        transform:scale(0);
    }
    20%{
        opacity:1;
        transform:scale(1);
    }
    100%{
        opacity:1;
        transform:scale(1);
    }

}
.taglines h2{
    padding:10px 5px;
    /* background:var(--tertiaryColor); */
    color:#fff;
    font-size:3rem;
    border-radius:5px;
    text-transform:capitalize;
    width:60%;
}
.taglines p{
    color:rgb(211, 209, 209);
    font-size:1.3rem;
    margin:0;
    width:40%;
}
.taglines a{
    padding:15px;
    background:var(--secondaryColor);
    color:#fff;
    display:inline-block;
    width:auto;
    margin-top:20px;
    font-size:.9rem;
    transition: .3s all ease-in;
    border-radius:5px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.taglines a:hover{
    background: var(--primaryColor);
}
.taglines a:last-child{
    background:var(--primaryColor);
    transition: .3s all ease-in;
}
.taglines a:last-child:hover{
    background: var(--secondaryColor);
}
.taglines .btns{
    display:block;
    margin:10px 0;
}
.search{
    position:absolute;
    bottom:0;
    background:rgba(0, 0, 0, .4);
    padding:10px;
    width:100%;
}
.search form{
    display:flex;
    align-items:center;
    justify-content: center;
}
.search form select{
    padding:10px;
    border-radius:4px;
    margin:10px;
    width:300px;
}
.search form button{
    padding:10px;
    border-radius:4px;
    margin:10px;
    /* font-size:1rem; */
    text-align:center;
    background-color: var(--secondaryColor);
    color:#fff;
    text-transform: uppercase;
}
.mobile_search{
    display:none;
}
#jobs{
    width:100%;
    margin:40px auto;
}
#jobs h2{
    text-align:center;

}
#jobs hr{
    width:50px;
    height:5px;
    background:var(--secondaryColor);
    margin:10px auto;
}
#jobs .posted_jobs{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
    margin:30px 0;
}
#jobs .posted_jobs h3{
    text-transform: uppercase;
    color:rgb(68, 67, 67);
    text-align:center;
}
#jobs .posted_jobs hr{
    height: initial;
    width: 200px;
    background:rgba(0, 0, 0, .2);
    color:rgba(0, 0, 0, .2);
}
#jobs .posted_jobs .new_jobs{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
}
#jobs .posted_jobs .new_jobs .job{
    margin:20px 10px;
}
#jobs .posted_jobs .new_jobs .job a{
    display:flex;
    color:#222;
    padding:5px;
    box-shadow:2px 2px 2px 2px #c4c4c4;
    background:#fff;
    transition:.3s all ease-in-out;
}
#jobs .posted_jobs .new_jobs .job a:hover, #jobs .posted_jobs .new_jobs .job a:focus{
    background:transparent;
}
#jobs .posted_jobs .new_jobs .job .pharm_logo img{
    width:100px;
    height:100px;
    border-radius:50%;
}
#jobs .posted_jobs .new_jobs .job .job_summary .view{
    background:var(--tertiaryColor);
    color:#fff;
    border-radius:4px;
    padding:2px 15px;
    margin-left:10px;
    font-size:.8rem;
}
/* Signup page */
#signup{
    width:80%;
    margin:100px auto;
}
#signup h2{
    text-align: center;
    font-size:1.5rem;
    color:rgba(44, 43, 43, 0.8);
    font-weight:normal;
}
#signup p{
    text-align:center;
    font-size:1.1rem;
}
#signup .employer_reg{
    width:80%;
    margin:20px auto;
    border:1px solid #d3d1d1;
}
#signup .employer_reg h3{
    border-radius:5px;
    background:var(--primaryColor);
    color:#fff;
    padding:10px;
    text-align: center;
    text-transform: capitalize;
    font-size:1.2rem;
}
#signup .employer_reg form{
    width:90%;
    padding:10px;
    margin:10px auto;
}
#signup .employer_reg form .inputs{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    margin:20px 0;
}
#signup .employer_reg form .inputs .data{
    width:47%;
}
#signup .employer_reg form .inputs .data input, #signup .employer_reg form .inputs .data select{
    width:100%;
    padding:10px;
    border-radius:4px;
    border-color:rgba(196, 196, 196, .4);
}
#signup .employer_reg form button{
    width:50%;
    margin:40px auto;
    text-align:center;
    display:block;
    text-transform: uppercase;
    background:var(--tertiaryColor);
    font-size:1rem;
}
#login{
    position:relative;
    top:0;
    left:0;
    height:90vh;
}
#login .login_img{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}
#login .login_img img{
    width:100%;
    height:100%;
    object-fit:cover;
}
#login .login_img:after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(0, 0, 0, .6);
}
#login .loginUser{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    
}
#login .loginUser h2{
    text-align:center;
    text-transform:capitalize;
    color:#fff;
    font-weight:normal;
    margin:100px 0 0;
}
#login .loginUser form{
    width:30%;
    margin:10px auto;
    padding:20px;
    background:rgb(18, 109, 109);
    
}
#login .loginUser form label{
    color:rgba(247, 243, 243, 0.8);
}
#login .loginUser form input{
    margin:0 0 40px 0;
    padding:10px;
    width:100%;
}
#login .loginUser form button{
    text-transform: uppercase;
    text-align:center;
    width:30%;
    padding:15px;
    height:initial;
}
#login .first_time{
    display:flex;
    justify-content: space-around;
}
#login .first_time p{
    color:#fff;
}
#login .first_time a{
    color:#fff;
    text-decoration: underline;
}
#login .first_time a:hover, #login .first_time a:focus{
    color:red;
}


/* admin portal */
.login{
    position:relative;
    margin-right:50px;
}
.rms h2{
    color:#fff;
}
#loginDiv{
    background:transparent;
    border-radius:0;
    border:none;
    color:#fff;
}
#loginDiv:hover{
    color:var(--tertiaryColor);
    background:#f1f0f0;
}
.login_option{
    display:none;
    position:absolute;
    background:#fff;
    min-width:15vw;
    padding:10px 0;
    z-index:2;
    box-shadow: 1px 1px 1px 1px #c4c4c4;
}
.login_option div{
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}
.login button{
    background:var(--primaryColor);
    margin:0 2px;
    color:#fff;
    padding:5px;
    border-radius:5px;
    font-size:.9rem;
}
.login button i{
    padding:10px;
    
}
#loginBtn{
    display:block;
    width:70%;
    padding:10px 5px;
    border:none;
    box-shadow:2px 2px 2px 2px #e2e2e2;
}
#loginBtn a{
    color:#fff;
}
.signupBtn{
    color:var(--tertiaryColor);
    background:transparent;
    padding:15px;
    display:block;
    width:100%;
    text-align:center;
    border-top:2px solid rgb(231, 226, 226);
    border-bottom:2px solid #c4c4c4;
    text-transform: uppercase;
}
.signupBtn:hover, .signupBtn:focus{
    background:rgb(231, 226, 226);
}
#logoutBtn{
    display:block;
    width:70%;
    padding:10px;
    border:none;
    margin:10px 0;
    
}
#logoutBtn a{
    color:#fff;
    padding:10px 5px;
}
.first_time{
    margin-top:10px;
}
.admin_main{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
}
/* aside */
.admin_main aside{
    width:18vw;
    background:var(--secondaryColor);
    height:100vh;
    position:fixed;
    /* margin-top:10vh; */
    box-shadow:2px 2px 2px #c4c4c4;
}
.admin_main aside nav{
    display:flex;
    flex-direction:column;
    width:100%;
    height:100%;
    align-items:center;
}
.admin_main aside nav h3{
    font-size:1rem;
    color: #fff;
    text-transform:uppercase;
    font-family:'Lora';
    letter-spacing: 2px;
    /* margin-top:20px; */
    border-bottom: 1px solid rgb(102, 100, 100);
    display:block;
    width:100%;
    text-align:center;
    padding:15px 10px;
}
.admin_main aside nav ul{
    width:100%;
    display:flex;
    flex-direction:column;
}
.admin_main aside nav ul li{
    list-style: none;
    border-bottom:1px solid rgb(102, 100, 100);
    width:100%;
    position:relative;
    padding:0;
    margin:0;
}

.admin_main aside nav ul li a{
    color:#fff;
    padding:15px 20px;
    display:flex;
    justify-content: space-between;
    width:100%;
    font-weight:normal;
    font-size:.9rem;
    text-transform: capitalize;
}
.admin_main aside nav ul li a:hover, .admin_main aside nav ul li a:focus{
    background:var(--primaryColor);
    color:#fff;
    
}

.admin_main aside nav ul li ul{
    position:relative;
    display:none;
    margin-left:15px;
    transform:scale(0);
    border-left:1px solid rgb(146, 140, 140);
    transition:1s all;
    animation:.2s show 1;
    animation-fill-mode: forwards;
    animation-timing-function: linear;

}
@keyframes show{
    to{
        transform:scale(1);
    }
}
.admin_main aside nav ul li ul li{
    border:none;
}
.admin_main aside nav ul li ul li a{
    padding:10px 15px;
}
.admin_main aside nav ul li ul li a:hover, .admin_main aside nav ul li ul li a:focus{
    background:none;
    color:var(--primaryColor);
}
#contents{
    margin-left:18vw;
    width:80vw;
    margin-top:10vh;
}
#dashboard{
    display:flex;
    justify-content: space-around;
    margin:20px auto;
    width:90%;
}
#dashboard #userSummary{
    min-height:300px;
    width:200px;
    box-shadow:2px 2px 2px 2px #c4c4c4;
}
#dashboard #userSummary figure{
    background:#fff;
    width:100%;
    
}
#dashboard #userSummary figure #user_img{
    width:100%;
    padding:10px;
    border-bottom: 1px solid var(--otherColor);
}
#dashboard #userSummary figure img{
    border-radius: 50%;
    width:100%;
    height:150px;
    /* margin:10px auto; */
}
#dashboard #userSummary figure figcaption{
    background:#fff;
    color:rgb(95, 93, 93);
    font-size:.8rem;
    text-transform:capitalize;
}
#dashboard #userSummary figure figcaption h3{
    display:block;
    border-bottom: 1px solid rgb(95, 93, 93);
    padding:10px;
}
#dashboard .allcards{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
}
#dashboard .cards{
    min-width:210px;
    height:130px;
    box-shadow:2px 2px 2px 2px #c4c4c4;
    border-radius:4px;
    padding:20px;
    margin:0 20px;
    cursor:pointer;
    transition: .2s all ease-in-out;
}
#dashboard .cards:hover, #dashboard .cards:focus{
    box-shadow:3px 3px 3px 3px #c4c4c4;
    transform:scale(1.05);
}
#dashboard .cards a{
    color:#fff;
}
#dashboard .cards p{
    font-size:1.1rem;
    text-align:center;
    text-transform: uppercase;
}
#dashboard .cards .infos{
    margin-top:20px;
    display:flex;
    align-items: center;
    justify-content:space-between;
    font-size:2rem;
}
#dashboard #card1{
    background:green;
}
#dashboard #card2{
    background:skyblue;
}
#dashboard #card3{
    background:var(--otherColor);
}
#dashboard #card0{
    background:rgb(155, 155, 24);
}
.success p{
    background:green;
    color:#fff;
    padding:4px;
    text-align:center;
}
.error p{
    background:red;
    color:#fff;
    padding:4px;
    text-align:center;
}
/* create users */
#createUser, #addItems, #deleteItems, #disableUsers, #jobList, #userList, #applicantList, #profile{
    display:none;
    margin:30px 0;
    width:90%;
}
.add_user_form{
    width:80%;
    margin:0 auto;
    box-shadow:3px 3px 5px 3px #807d7d;
    background:#fff;
    transform:scale(0);
    animation:.2s show 1;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    
}
@keyframes show{
    to{
        transform:scale(1);
    }
}
.add_user_form h3{
    padding:10px;
    background:var(--primaryColor);
    color:#fff;
    text-transform: capitalize;
}
.add_user_form form{
    width:90%;
    margin:auto;
    padding:10px;
}
.add_user_form form .inputs{
    width:100%;
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin:20px 0;
}
.add_user_form form .inputs .data{
    width:47%;
}
.add_user_form form .inputs .data label{
    color:#504f4f;
    font-size:1rem;
    text-transform:capitalize;
}
.add_user_form form .inputs .data input, .add_user_form form .inputs .data select, .add_user_form form .inputs .data textarea{
    padding:10px;
    width:100%;
}
.add_user_form form button{
    background:var(--secondaryColor);
    color:#fff;
    padding:10px;
    font-size:1rem;
    border:none;
}
.info{
    width:80%;
    margin:auto;
}
.info p{
    font-size:1.2rem;
    color:green;
    padding:10px;
    width:100%;
    text-decoration:underline;
}
.info span{
    font-weight:bold;
    /* text-transform: uppercase; */
}
.info .exist{
    color:red;
}
#delete_item{
    background: rgb(230, 79, 19);
}

.list h3{
    text-align:center;
    text-transform:capitalize;
    font-size:1.5rem;
    color:var(--tertiaryColor);
}
.list hr{
    margin:auto;
    width:90%;
    color:rgba(196, 196, 196, .4);
    background:rgba(196, 196, 196, .2);
}
.searchInput{
    margin:10px 50px;
}
.searchInput input{
    padding:10px;
    border-radius:20px;
    background:#fff;
    width:40%;
}
table{
    border:none;
    border-collapse:collapse;
    width:90%;
    margin:20px auto;
    background:#fff;
}
table td{
    border:1px solid rgba(124, 121, 121, 0.3);
}
table thead{
    padding:20px;
}
table thead th{
    text-transform:capitalize;
    font-size:1rem;
    border:1px solid rgba(124, 121, 121, 0.3);
    border-bottom: 5px solid rgb(230, 79, 19);
    padding:5px;
}
table tbody td{
    padding:10px;
    border:1px solid rgba(124, 121, 121, 0.3);
}
table tbody .job_details{
    box-shadow:2px 2px 2px rgb(196, 196, 196);
    padding:5px 10px;
}
table tbody .job_details:hover{
    background:var(--primaryColor);
    color:#fff;
}
.num{
    text-align:center;
}
.job_details{
    box-shadow:2px 2px 2px 2px #c4c4c4;
    background:#fff;
    width:90%;
    margin:20px auto;
}
/* .post_details{
    
} */

.job_description{
    width:80%;
    margin:10px auto;
    padding:5px;
    border:1px solid rgb(102, 100, 100);
}
.job_description p{
    text-transform:capitalize;
}
.action{
    display:flex;
    
}
.action a{
    margin:10px;
    color:#fff;
    padding:10px;
    background:var(--primaryColor);
    border-radius:10px;
}
.action #deleteJob{
    background:red;
}
/* Application page */
#applySlide{
    position:relative;
    width:100%;
    height:30vh;
    overflow:hidden;
}
#applySlide .slides{
    position:relative;
    width:100%;
    height:100%;
    left:0;
    animation:none;
}
#applySlide .slides .slide{
    position:relative;
    float:none;
    width:100%;
    height:100%;
}
#applySlide .slide .banner_img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
#applySlide .slide .banner_img img{
    object-fit:cover;
    width:100%;
    height:100%;
}
#applySlide .slide .banner_img:after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0, 0, 0, .4);
}
#applySlide .slide .taglines{
    position:absolute;
    display:flex;
    flex-direction: column;
    top:10vh;
    left:5vw;
    width:100%;
    height:100%;
    margin:auto;
    opacity:0;
    animation:7.5s flow 1;
    animation-fill-mode:forwards;
    /* animation-timing-function: linear; */
    
}
/* .slide .taglines2{
    text-align:center;
    margin:0 auto;
    right:0
} */
/* .slide .taglines3{
    margin-left:30px;
    right:0;
} */
@keyframes flow{
    0%{
        opacity:0;
        transform:scale(0);
    }
    20%{
        opacity:1;
        transform:scale(1);
    }
    100%{
        opacity:1;
        transform:scale(1);
    }

}

.job_posted{
    width:90%;
    margin:40px auto;
    padding:10px;
    display:flex;
    justify-content: space-between;
}
.jobs_inform{
    width:60%;
    padding:10px;
    box-shadow:2px 2px 2px 2px #c4c4c4;
    background:#fff;
}
.job_information{
    width:100%;
    display:flex;
    justify-content: space-between;
}
.info_job h3{
    text-transform: uppercase;
    color:var(--otherColor);
}

.job_description_sum{
    margin:20px 0;
}
.job_description_sum h3{
    text-transform: capitalize;
    color:rgba(44, 43, 43, 0.8);
}
.job_description_sum hr{
    width:100%;
    background:rgba(196, 196, 196, .4);
    color:rgba(196, 196, 196, .4);
}
.job_description_sum p{
    margin:10px 0;
}
.apply_form{
    background:#fff;
    box-shadow:2px 2px 2px 2px #c4c4c4;
    padding:5px;
    width:35%;
}
.apply_form h3{
    text-transform: capitalize;
    text-align:center;
    color:var(--otherColor);
}
.apply_form hr{
    width:50px;
    margin:10px auto;
    background:var(--secondaryColor);
    color:var(--otherColor);
}
.apply_form form{
    padding:5px;
    width:95%;
    margin:auto;
}
.apply_form form .inputs{
    display:flex;
    justify-content: space-between;
    margin:20px 0;
}
.apply_form form .inputs .data{
    width:48%;
    
}
.apply_form form .inputs .data input, .apply_form form .inputs .data select{
    width:100%;
    padding:10px;
    border:none;
    border-bottom:1px solid rgba(196, 196, 196, .8);
    border-radius:10px;
}
.apply_form form button{
    width:50%;
    display:block;
    margin:10px auto;
}
#vacancy_details{
    width:80%;
    margin:20px auto;
}
#vacancy_details h3{
    text-align:Center;
    text-transform: uppercase;
    color:rgba(44, 43, 43, 0.7);
    font-size:1.1rem;
}
#vacancy_details hr{
    width:50px;
    height:4px;
    background:var(--secondaryColor);
    margin:10px auto;
}
#vacancy_details .post_details{
    background:#fff;
    box-shadow:2px 2px 2px 2px #c4c4c4;
    padding:10px;
}
#vacancy_details .post_details h3{
    text-align:left;
    font-size:1rem;
    text-transform:capitalize;
    color:var(--secondaryColor);
}
.post_details p{
    text-transform:uppercase;
    font-size:1rem;
}
.more_details{
    display:flex;
    justify-content: space-around;
    margin:20px 0;
    text-align:center;
}
.more_details div{
    box-shadow:2px 2px 2px 2px #c4c4c4;
    padding:10px;
}
.more_details div h4{
    text-transform:capitalize;
    color:rgb(102, 100, 100);
}
.more_details div p{
    text-transform:uppercase;
}
.post_details .job_descriptions{
    padding:10px;

}
.post_details .job_descriptions h3{
    text-transform:uppercase!important;
    text-align:center!important;
    color:rgba(44, 43, 43, 0.8)!important;
}
.job_descriptions hr{
    width:initial!important;
    height:initial!important;
    color:rgba(196, 196, 196, .4)!important;
    background:rgba(196, 196, 196, .4)!important;

}
.job_descriptions p{
    text-transform: capitalize;
}
#applicantList{
    width:100%;
}
/* profile details */
#profile .profile_details{
    width: 80%;
    margin:30px auto;
    background:#fff;
    padding:5px;
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
}

#profile .profile_details .userss{
    width:45%;
    margin:20px auto;
    border:1px solid rgb(177, 175, 175);
    padding:10px;
    color:rgba(66, 65, 65, .8);
}
#profile .profile_details .userss h3{
    color:var(--tertiaryColor);
    border-bottom:1px solid rgba(177, 175, 175, .3);
    margin-bottom:10px;
}
#profile .profile_details #user_details h4{
    text-transform:uppercase;
}
#profile .profile_details #user_address .add{
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
}
#profile .profile_details #change_password{
    margin:20px;
    border:none;
}
#profile .profile_details #change_password a{
    background:var(--primaryColor);
    padding:10px;
    text-align:center;
    color:#fff;
    width:50%;
}
#profile .profile_details #change_password a:hover{
    background:#000;
}
.update_details{
    display:none;
    background:#fff;
    padding:10px;
    width:80%;
    margin:20px auto;
}
.update_details form{
    width:90%;
    margin:auto;
}
.update_details .update{
    display:flex;
    justify-content: space-between;
    align-items:center;
    margin:10px 0;
}
.update_details .update .update_data{
    width:46%;
    margin:10px 0;

}
.update_details .update .update_data label{
    color:rgba(124, 121, 121, 0.9);
}
.update_details .update .update_data input, .update_details .update .update_data select{
    width:100%;
    padding:10px;
    border:none;
    border-bottom:1px solid rgba(124, 121, 121, 0.9);
    font-size:.9rem;
}
.update_details button{
    margin:10px 0;
    padding:10px;
    border:none;
    display: block;
    font-size:1rem;
}
#close_update{
    font-size:1.5rem;
    float:right;
}
.change_password{
    width:80%;
    margin:auto;
    display:none;
    animation:.3s showPassword 1;
}
@keyframes showPassword{
    0%{
        transform:translateY(100%);
    }
    100%{
        transform:translateY(0%);
    }
}
.change_password h3{
    color:rgba(68, 67, 67, 0.9);
    margin-bottom:20px;
}
.change_password form{
    margin:20px 0;
    width:50%;
    background:#fff;
    padding:20px;
}
.change_password form label{
    color:rgba(124, 121, 121, 0.9);
}
.change_password form input{
    width:100%;
    margin-bottom:20px;
    padding:10px;
    border-radius:2px;
    background:rgb(239, 243, 245);
    border:none;
    border-bottom:1px solid rgba(124, 121, 121, 0.9);
    
}
.change_password form button{
    border:none;
    padding:10px;
    margin:20px 0;
    font-size:.9rem;
    width:100%;
    
}
@media screen and (max-width: 800px){
    
    header h1{
        margin-left:10px;
        
    }
    h1 .title{
        font-size:1rem;
    }
    h1 span{
        font-size:.9rem;
        letter-spacing:2px;
    }
    nav{
        margin-right:5px;
    }
    nav li:nth-child(2){
        display:none;
    }
    nav ul li{
        margin:5px;
    }
    nav ul li a{
        font-size:.9rem;
        padding:0;
    }
    /* banner and slider */
    
    
    .taglines h2{
       
        font-size:1.5rem;
        width:80%;
    }
    .taglines p{
        color:rgb(235, 232, 232);
        font-size:1.1rem;
        margin:0;
        width:90%;
    }
    .taglines a{
        padding:10px;
    }
    .search{
        width:100%;
    }
    .search form select{
        
        min-width:100px;
    }
    .search form button{
        display:none;
    }
    .mobile_search{
        display: block !important;
    }
    /* Signup page */
    #signup{
        width:90%;
        margin:70px auto;
    }
    #signup h2{
        font-size:1.5rem;
        
    }
    #signup p{
        font-size:1rem;
    }
    #signup .employer_reg{
        width:90%;
        margin:10px auto;
    }
    
    #signup .employer_reg form{
        width:90%;
        
        margin:10px auto;
    }
    #signup .employer_reg form .inputs{
        margin:0;
    }
    #signup .employer_reg form .inputs .data{
        width:100%;
        margin:10px 0;
    }
    
    #signup .employer_reg form button{
        width:100%;
        
    }
    
    #login .loginUser form{
        width:80%;
        margin:10px auto;
    }
    /* job details */
    .job_posted{
        flex-wrap:wrap;
    }
    .jobs_inform{
        width:100%;
        margin:20px auto;
    }
    
    .apply_form{
        width:100%;
    }
    /* admin portal */
    .login{
        position:relative;
        margin-right:50px;
    }
    .rms h2{
        display:none;
    }
    .menu{
        display:block;
    }
    .menu a{
        font-size:1.4rem;
        color:var(--secondaryColor);
    }
    
    .login_option{
        
        width:40vw;
    }
    /* aside */
    .admin_main aside{
        display:none;
        width:40vw;
        z-index:2;
        animation:.5s showMenu 1;
        animation-fill-mode: forwards;
    }
    @keyframes showMenu{
        from{
            transform: translateX(-100%);
        }
        to{
            transform: translateX(0);
        }
    }
    #contents{
        margin:auto;
        width:100vw;
    }
    #dashboard #userSummary{
        min-height:300px;
        width:500px;
    
    }
    #dashboard .cards{
        width:200px;
        padding:20px;
        margin:5px 10px;

    }
    #createUser, #addItems, #deleteItems, #disableUsers, #jobList, #userList, #applicantList, #profile{
       
        width:95%;
        overflow:scroll;
    }
    .add_user_form{
        width:100%;
        
        
    }
}