@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600&display=swap');
:root{
    --bluewhite: #0060AC;
    --lightgreen: #27ae60;
    --gold: #FF8303;
    --red: #e74c3c;
    --white: #fff;
    --light-bg:#eee;
    --black: #2c3e50;
    --light-color: #888;
    --border: .1rem solid rgba(0,0,0, 0.2);
    --box-shadow: 0 .5rem 1rem rgba(0,0,0, 0.1);
}
hr{
    padding: .1rem;
    border-bottom: 1px solid #fff;
 }
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}
body{
    background-color: var(--light-bg);
    padding-left: 25rem;
}
body.active
{
    padding-left: 0;
}
#menu-btn{
    display: none;
}
body.dark{
    --white: #222;
    --black: #fff;
    --light-color: #aaa;
    --light-bg:#444;
    --bluewhite: #333;
}
.btnn,
.option-btn,
.delete-btn,
.inline-btn,
.inline-option-btn,
.inline-delete-btn
{
    border-radius: .5rem;
    padding: 1rem .8rem;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1rem;
    text-transform: capitalize;
    cursor: pointer;
    text-align: center;
}
.btn:hover,
.option-btn:hover,
.inline-btn:hover,
.inline-option-btn:hover
{
    background-color: var(--black);
    color: var(--white);
}
.btnn,
.option-btn
{
    display: block;
    width: 100%;
}
.btnn,
.inline-btn
{
    background-color: var(--gold);
}
.inline-btn{
    display: inline;
}
.heading
{
   padding-bottom: 2rem;
   border-bottom: var(--border);
   font-size: 2.5rem;
   color: var(--black);
   text-transform: capitalize;
   margin-bottom: 2rem;
   text-align: left;
}
.sub-heading
{
   padding-bottom: 1rem;
   font-size: 1.5rem;
   color: var(--black);
   text-transform: capitalize;
   text-align: left;
}

.flex-btn{
    display: flex;
    gap: 1.5rem;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}
.section-p{
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* header starts */
.header{
    background: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.header .flex{
    padding: 1.5rem 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .flex a{
    text-decoration: none;
}
.header .flex .logo{
    font-size: 2rem;
    color: var(--gold);
    font-weight: bolder;
}
.header .flex .logo sub{
    color: #0060AC;
}
.header .flex .container-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .flex .container-box .icons div{
    font-size: 2rem;
    color: var(--black);
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    background: var(--color-light);
    text-align: center;
    margin-left: .5rem;
    border-radius: 50%;
    cursor: pointer;
}
.header .flex .icons div:hover
{
    background-color: var(--black);
    color: var(--white);
}
.header .flex .container-box .icons div span{
    background-color: #888;
    padding: 0.44rem;
    border-radius: 50%;
    color: #fff;
    vertical-align: top;
    margin-left: -1.5rem;
    font-size: 7px;
    margin-top: 4rem;

}
.header .flex .container-box img{
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    cursor: pointer;
}
.header .flex .container-box i{
    font-size: 1.3rem;
    margin-top: 2rem;
    color: var(--light-color);
}
.header .flex .profile img{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: .5rem;
 }
.header .flex .profile
{
    position: absolute;
    top: -25rem;
    right: 1rem;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    padding: 2rem;
    text-align: center;
    width: 20rem;
    transition: .2s linear;
 }
 .header .flex .profile.active{
    top: 8.5rem;
    transition: .5s linear;
 }
 .header .flex .profile h3
{
    font-size: 1.5rem;
    color: var(--black);
}
.header .flex .profile span
{
    font-size: 1rem;
    color: var(--light-color);
}
/* header sections ends */

/* sidebar section starts */
.sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 25rem;
    background: var(--bluewhite);
    border-right: var(--border);
    z-index: 1200;
    overflow-y: auto;
}
.sidebar .close-side-bar{
    text-align: right;
    padding: 2rem;
    padding-bottom: 0;
    right: 0;
    display: none;
    transition: .2s linear;
}
.sidebar .close-side-bar i{
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    font-size: 2rem;
    text-align: center;
    color: var(--white);
    cursor: pointer;
    border-radius: .8rem;
    background-color: var(--red);
}
.sidebar .close-side-bar i:hover
{
   background-color: var(--gold);
   transition: all 0.5s ease;
}
.sidebar .profile{
    padding: 3rem;
    text-align: center;
}
.sidebar .profile img
{
   height: 7rem;
   width: 7rem;
   border-radius: 50%;
   object-fit: cover;
   margin-bottom: .5rem;
}
.sidebar .profile h3
{
   font-size: 1.2rem;
   color:white;
}
.sidebar .profile span
{
   font-size: 1rem;
   color: var(--light-color);
}
.sidebar .navigation a{
    display: block;
    padding: 2rem;
    margin: .5rem 0;
    height: .2rem;
    font-size: 1.3rem;
    text-decoration: none;
}
.sidebar .navigation a i{
    color: #fff;
    margin-right: 1.5rem;
}
.sidebar .navigation a span{
    color: white;
    margin-right: .8rem;
    transition: .5s linear;

}
.sidebar .navigation .list-items a:hover span
{
    margin-left: 2rem;
}
.sidebar .navigation .list-items a .dropdown{
    position: absolute;
    right: 0;
    color: var(--light-color);
    transition: all 0.3s ease;
}
.sidebar .navigation .list-items .sub-menu{
    background: var(--gold);
    display: none;
}
.rotate{
    transform: rotate(90deg);
}
.sidebar.active{
    left: -31rem;
    transition: all .5s ease;
}
/* sidebar section ends */


/* dashboard section starts */
.division-container{
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}
.division-container .box-left{
    flex-basis: 60%;
    padding: 2rem;
}
.division-container .box-left .totals{
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
}
.division-container .box-left .option-toggle{
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem;
}
.division-container .box-left #internshipActivity{
    display: block;
}
.division-container .box-left #internshipActivity.active{
    display: none;
    transition: all .5s linear;
}
.division-container .box-left .option-toggle .plus-sign{
    font-size: 1.5rem;
    color: var(--black);
    font-weight: bold;
    cursor: pointer;
}
.division-container .box-left .box-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}
.division-container .box-left #jobActivity{
    display: block;
}
.division-container .box-left #jobActivity.active{
    display: none;
    transition: all .5s linear;
}

.division-container .box-left .option-toggle .plus-sign{
    font-size: 1.5rem;
    color: var(--black);
    font-weight: bold;
    cursor: pointer;
}
.division-container .box-left .box-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.division-container .box-left .box-container .box{
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    padding: 2rem;
    margin-top: 2rem;
    flex: 1 1 16rem;
}
.division-container .box-left .box-container .box .flex{
    display: flex;
    align-items: center;
    gap: 1.7rem;
    margin-bottom: 1rem;
}
.division-container .box-left .box-container .box .flex i{
    height: 4.5rem;
    width: 4.5rem;
    border-radius: .5rem;
    background-color: var(--white);
    line-height: 4.4rem;
    font-size: 2rem;
    color: var(--black);
    text-align: center;
}
.division-container .box-left .box-container .box .flex h3{
    font-size: 2rem;
    color: #FF8303;
    margin-bottom: .2rem;
}
.division-container .box-left .box-container .box .flex span{
    font-size: 1.5rem;
    color: var(--light-color);
}

.division-container .box-right{
    flex-basis: 40%;
}
.division-container .box-right .Internship{
    background: var(--white);
    border-radius: 1rem;
    height: 30rem;
    overflow-y: auto;
}
.division-container .box-right .Internship .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem;
    z-index: 0;
}
.division-container .box-right .Internship .header h2{
    color: var(--black);
    font-size: 1.5rem;
}
.division-container .box-right .Internship .header span{
    font-size: 1rem;
    color: var(--light-color);
}

.division-container .box-right .Internship .internship-details{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-color);
    transition: all 0.5s ease;
}
.division-container .box-right .Internship .internship-details h4{
    color: var(--black);
    font-size: 1.2rem;
}
.division-container .box-right .Internship .internship-details img{
    width: 2.4rem;
    border-radius: 50%;
}

.division-container .box-right .Internship .internship-details:last-child{
    border: none;
}
.division-container .box-right .Internship .internship-details .view-details .danger{
    display: inline;
    padding: 1rem;
    background-color: #e74c3c;
    color: #fff;
    border-radius: .5rem;

}
/* dashboard section ends */

/*  post job section starts */
.company-info .company-details
{
    background-color: var(--white);
    border-radius: .5rem;
    padding: 2rem;
    width: 80rem;
    margin: auto;
}
.company-info .company-details .box-container-company
{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.5rem;
}
.company-info .company-details .box-container-company .flex-company
{
    display: flex;
    justify-content: space-between;
    flex: 0 1 100%;
    align-items: center;
}
.company-info .company-details .box-container-company .flex-company .box{
    flex: 1 1 40rem;
    padding: .6rem;
    margin-top: 0;
}
.company-info .company-details .box-container-company .flex-company .box input, select,textarea{
    width: 100%;
    border-radius: .5rem;
    border: var(--border);
    padding: 1.2rem;
    color: var(--black);
    font-size: 1.5rem;
    background-color: var(--light-bg);
    margin: .7rem 0;
}
textarea{
    height: 10rem;
    resize: none;
}
.company-info .company-details .box-container-company .flex-company span
{
    font-size: 1.4rem;
    color: var(--red);
}
/* post job section ends  */

/* company profile view section starts */
.company-profile .details-company
{
    background-color: var(--white);
    border-radius: .5rem;
    padding: 2rem;
}
.company-profile .details-company .user
{
    text-align: center;
    margin-bottom: 2rem;
}
.company-profile .details-company .user img
{
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: .5rem;
}
.company-profile .details-company .user h3
{
    font-size: 1.5rem;
    margin: .5rem 0;
    color: var(--black);
}
.company-profile .details-company .user p
{
    font-size: 1.7rem;
    color: var(--light-color);
    font-weight: bold;
}
.company-profile .details-company .box-container-company
{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.5rem;
}
.company-profile .details-company .box-container-company .box-company
{
    background-color: var(--light-bg);
    border-radius: .5rem;
    padding: 2rem;
    flex: 1 1;
}
.company-profile .details-company .box-container-company .box-company .flex-company
{
    display: flex;
    align-items: center;
    gap: 1.7rem;
    margin-bottom: 1rem;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
}
.company-profile .details-company .box-container-company .box-company .flex-company h3
{
    font-size: 1.7rem;
    color: var(--black);
    margin-bottom: .2rem;
}
.company-profile .details-company .box-container-company .box-company .flex-company span
{
    font-size: 1.4rem;
    color: var(--light-color);
}
/* company profile view section ends */


/* company profile update section starts */
.company-profile-update .details-company
{
    background-color: var(--white);
    border-radius: .5rem;
    padding: 2rem;
    width: 80rem;
    margin: auto;
}
.company-profile-update .details-company .user
{
    text-align: center;
    margin-bottom: 2rem;
}
.company-profile-update .details-company .user img
{
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: .5rem;
}
.company-profile-update .details-company .box-container-company
{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.5rem;
}
.company-profile-update .details-company .box-container-company .flex-company
{
    display: flex;
    justify-content: space-between;
    flex: 0 1 100%;
    align-items: center;
}
.company-profile-update .details-company .box-container-company .flex-company h3
{
    font-size: 1.7rem;
    color: var(--black);
    margin-bottom: .2rem;
}
.company-profile-update .details-company .box-container-company .flex-company span
{
    font-size: 1.4rem;
    color: var(--light-color);
}

.company-profile-update .details-company .box-container-company .flex-company .box{
    flex: 1 1 40rem;
    padding: 1rem;
    margin-top: 0;
}
.company-profile-update .details-company .box-container-company .flex-company .box input, select{
    width: 100%;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: var(--border);
    padding: 1.2rem;
    color: var(--black);
    font-size: 1.5rem;
    background-color: var(--light-bg);
    margin: .7rem 0;
}
/* company profile update section ends  */

/* search section starts */
.search-form{
    width:30rem;
    float: right;
}
.search-form form{
    width: 100%;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .5rem 1rem;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    box-shadow: var(--shadow-box);
}
.search-form form input{
    padding: 1.2rem;
    font-size: 1.5rem;
    color: var(--black);
    background: none;
    width: 100%;
    border-radius: .5rem;
}
.search-form form button{
    font-size: 2rem;
    color: var(--black);
    cursor: pointer;
    width: 5rem;
    height: 5rem;
    box-shadow: var(--shadow-box);
    background: none;
}
.search-form span{
    color: var(--red);
    font-size: 1.4rem;
    padding: .5rem;
}
/* search section starts */

 /* student performance section starts */
 .student-registration{
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
 }
 .student-registration .details-student-registration,
 .student-registration .details-student-performance{
    background-color: var(--white);
    border-radius: .5rem;
    padding: 2rem;
    width: 80rem;
    margin: auto;
 }
 .student-registration .details-student-registration .box-container-student-registration,
 .student-registration .details-student-performance .box-container-student-performance{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.5rem;
 }
 .student-registration .details-student-registration .box-container-student-registration .flex-student-registration,
 .student-registration .details-student-performance .box-container-student-performance .flex-student-performance{
    display: flex;
    justify-content: space-between;
    flex: 0 1 100%;
    align-items: center;
 }
 .student-registration .details-student-registration .box-container-student-registration .flex-student-registration .box,
 .student-registration .details-student-performance .box-container-student-performance .flex-student-performance .box{
    flex: 1 1 40rem;
    padding: 1rem;
    margin-top: 0;
 }
 .student-registration .details-student-registration .box-container-student-registration .flex-student-registration .box label,
 .student-registration .details-student-performance .box-container-student-performance .flex-student-performance .box label{
    font-size: 1.3rem;
    color: var(--black);
    font-weight: bold;
 }
 .student-registration .details-student-registration .box-container-student-registration .flex-student-registration .box input, select,
 .student-registration .details-student-performance .box-container-student-performance .flex-student-performance .box input, select{
    width: 100%;
    border-radius: .5rem;
    border: var(--border);
    padding: 1.2rem;
    color: var(--black);
    font-size: 1.5rem;
    background-color: var(--light-bg);
    margin: .7rem 0;
 }
/* student performance update section ends  */

/* password reset section starts */
.password-details{
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}
.password-details .change-password form{
    border-radius: .5rem;
    box-shadow: var(--shadow-box);
    width: 40rem;
    padding: 2rem;
    margin: 0 auto;
    background-color: var(--white);
}
.password-details .change-password form .input-option{
    flex: 1 1 30rem;
    margin-top: .8rem;
}
.password-details .change-password form .input-option input{
    border: var(--border);
    padding: 1.2rem;
    width: 100%;
    font-size: 1.3rem;
    color: var(--black);
    border-radius: .5rem;
    background-color: var(--light-bg);
}
.password-details .change-password form .input-option input:focus{
    box-shadow: var(--shadow-box);
}
.password-details .change-password form .input-option span{
    font-size: 1rem;
    color: var(--red);
    font-weight: bold;
}
.password-details .change-password form .input-option{
    position: relative;
    margin-top: 1rem;
}
.password-details .change-password form .input-option i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.5rem;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.password-details .change-password form .input-option i.ShowHide{
    right: 2rem;
}

.password-details .validation-rule{
    width: 40rem;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    padding: 2rem;
    margin-top: 2rem;
}
/* password reset section ends */

/* job section starts */
.jobs-container .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, 30rem);
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
}
.jobs-container .box-container .box{
    background-color: var(--white);
    border-radius: .5rem;
    border: var(--border);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}
.jobs-container .box-container .box .company{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.jobs-container .box-container .box .company img{
    height: 5rem;
    width: 5rem;
}
.jobs-container .box-container .box .company h3{
    font-size: 1.3rem;
    color: var(--black);
    text-overflow: ellipsis;
    overflow-x: hidden;
    text-transform: capitalize;
    padding-bottom: .5rem;
}
.jobs-container .box-container .box .company span{
    color:#888;
    font-size: 1rem;
}
.jobs-container .box-container .box .job-title{
    font-size: 1.5rem;
    color: var(--black);
    text-transform: capitalize;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
.jobs-container .box-container .box .location{
    padding: .7rem 0;
    font-size: 1.2rem;
    color: var(--light-color);
}
.jobs-container .box-container .box .location i{
    margin-right: .5rem;
    color: var(--main-color);
}
.jobs-container .box-container .box .tags{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}
.jobs-container .box-container .box .tags p{
    padding: 1.2rem;
    border-radius: .5rem;
    background-color: var(--light-bg);
    font-size: 1.3rem;
    color: var(--light-color);
}
.jobs-container .box-container .box .tags p i{
    margin-right: .5rem;
    color: var(--black);
}
.jobs-container .box-container .box .fa-heart{
    background-color: var(--light-bg);
    border-radius: .5rem;
    color: var(--light-color);
    font-size: 1.8rem;
    cursor: pointer;
    width: 5rem;
    height: 4.5rem;
    line-height: 4.5rem;
}
.jobs-container .box-container .box .fa-heart:hover{
    background-color: var(--black);
    color: var(--white);
}
/* jobs section ends */


































/* media queries */
@media(max-width: 1200px)
{
    body{
        padding-left: 0;
    }
    .sidebar{
        transition: .2s linear;
        left: -25rem;
    }
    .sidebar.active{
        left: 0;
        box-shadow: 0 0 0 100vw rgba(0, 0, 0, .5);
    }
    .sidebar .close-side-bar
    {
        display: block;
    }
    #menu-btn{
        display: inline-block;
    }
    
}
@media(max-width:991px)
{
   html{
       font-size: 55%;
   }
}

@media(max-width: 768px){
    .header .flex .logo{
        font-size: 1.2rem;
    }
    .division-container {
        flex-direction: column;
    }
    .division-container .box-left .box-container .box {
        flex: 1 1 100%;
    }
    .company-info .company-details {
        width: 100%;
    }
    .company-profile-update .details-company,
    .student-registration .details-student-registration,
    .student-registration .details-student-performance
    {
        width: 100%;
    }
    .company-profile-update .details-company .box-container-company .flex-company,
    .student-registration .details-student-registration .box-container-student-registration .flex-student-registration,
    .student-registration .details-student-performance .box-container-student-performance .flex-student-performance
    {
        display: flex;
        flex-wrap: wrap;
    }
    .company-info .company-details .box-container-company .flex-company
    {
        display: block;

    }

    .search-form {
        width: 100%;
    }
    .student-registration {
        flex-direction: column;
    }
    .password-details .change-password {
        width: 100%;
    }
    .password-details{
        flex-direction: column;
    }    
    .password-details .change-password form {
        width: 100%;
    }
    .password-details .validation-rule{
        width: 100%;
    }

}

@media(max-width:450px)
{
   html
   {
       font-size: 50%;
   }
   .heading
   {
       font-size: 2rem;
   }
}





