a:hover {
    text-decoration-line: none;
}

.req {
    color: red;
}

.active {
    color: black;
    cursor: pointer;
    pointer-events: none;
}

/* HEADER CSS */
.main-wrapper {
    background-color: #ccc;
}

.header-wrapper {
    padding: 5px;
    background-color: white;
    border-bottom: 1px solid black;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 111;
}

.logo {
    color: blue;
}

.logo:hover {
    color: blue;
}

.sign {
    padding: 3px;
    text-align: center;
}

.sign-wrapper > a > img {
    border: 3px solid black;
    padding: 3px;
    width: 50px;
    height: 50px;
    float: right;
    border-radius: 50%;
}

.signText {
    color: blue;
    padding-bottom: 15px;
}

.signText:hover {
    border-bottom: 2px solid blue;
    color: blue;
}

/* MENU CSS */
.menu-container {
    position: relative;
}
  
.menu-button {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3px;
    border: 1px solid black;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}
  
.bar {
    width: 30px;
    height: 2px;
    background-color: #333;
    margin: 4px 0;
    transition: transform 0.3s ease;
}
  
#menu-toggle.open .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}
  
#menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
  
#menu-toggle.open .bar:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -8px);
}
  
.menu-options {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 4px;
    z-index: 111;
}
  
.menu-options ul {
    list-style: none;
    padding: 3px;
    margin: 0;
}
  
.menu-options li {
    padding: 8px;
    width: 110px;
    cursor: pointer;
}
  
.menu-options li:hover {
    background-color: #f0f0f0;
}

.none {
    display: none;
}
/* HEADER CSS END */
/* sign-wrappe CSS */
.signIn-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signInForm {
    border: 1px solid black;
    background-color: white;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 150px 0;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
}

.signInText {
    color: blue;
    margin-bottom: 20px ;
}

.signInText::after {
    content: '';
    display: block;
    clear: both;
    width: 180px;
    height: 3px;
    border-bottom: 3px dashed blue;
    margin: 15px auto ;    
}

.button{
    padding: 10px 20px;
    background-color: rgb(22, 22, 192);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    margin: 10px;
    cursor: pointer;
}

.button:hover {
    background-color: blue;
}

.signUpForm {
    border: 1px solid black;
    background-color: white;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 90px 0;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
}

.signUpText {
    color: blue;
    margin-bottom: 20px;
}

.signUpText::after {
    content: '';
    display: block;
    clear: both;
    width: 250px;
    height: 3px;
    border-bottom: 3px dashed blue;
    margin: 15px auto ;
}
/* sign-wrapper CSS END */

/* PROFILE CSS */
.profile-wrapper {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 30px;
    font-weight: bold;
}

.edit {
    /* padding: 6px;
    margin: 10px; */
    border-radius: 15px;
    border: 1px solid black;
    width: fit-content;
    color: black;
    transition: 2s;
}

.edit:hover {
    background-color: blue;
    color: white;
}

.profile-info {
    margin: 20px;
    align-items: center;
    padding: 20px;
}

.profile-img {
    width: 150px;
    height: 150px;
}

.profile-bio {
    display: flex;
    flex-direction: column;
    padding: 5px;
    border-radius: 4px;
    width:fit-content;
}

.profile-bio > p {
    margin: 0;
}

.profile-qualification {
    margin: 20px;
}

.qualification-cards {
    margin: 10px;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.qualification-card {
    margin: 10px;
    min-width: fit-content;
    padding: 10px;
    word-wrap: none;
    border: 2px solid transparent;
    background-color: white;
    border-radius: 12px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.5);
}

.qualification-card:hover {
    background-color: rgb(198, 192, 192);
}

.qualification-card > .fa {
    font-size: 30px;
}

.skills {
    list-style: none;
}

.resume {
    margin: 20px;
    text-align: center;
}

.resume > h2 {
    margin: 20px;
}

.resume > iframe {
    height: 480px;
    border: 4px solid black;
    padding: 5px;
}

/* PROFILE CSS END */

/* EDIT PROFILE CSS */
.edit-img {
    width: 150px;
    height: 150px;
    margin: 3px;
    border: 2px solid black;
}


.editText {
    color: blue;
    margin-bottom: 20px;
}

.editText::after {
    content: '';
    display: block;
    clear: both;
    width: 220px;
    height: 3px;
    border-bottom: 3px dashed blue;
    margin: 15px auto ;
}
/* EDIT PROFILE CSS END*/

/* MESSAGES CSS */
.messages-wrapper {
    margin: 10px 5px;
    padding: 7px;
}

.messages-title {
    color: blue;
    background-color: white;
    padding: 5px;
    border-radius: 12px;
    margin: 5px;
    text-align: center;
}

.messages {
    background-color: white;
    margin: 10px 0;
    border-radius: 12px;
    list-style: none;
    display: flex;
    padding: 0;
    flex-direction: column;
}

.message-item {
    border-bottom: 1px solid black;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.message-img {
    float: left;
    width: 60px;
    height: 60px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border: 1px solid black;
    border-radius: 50%;
}

.message-sender {
    margin: 2px;
    color: black;
}

.message-item:hover .message-sender {
    color: blue;
}

.message-desc {
    word-break: normal;
    color: black;
}
/* MESSAGES CSS END*/

/* NOTIFICATIONS CSS */
.notifications-wrapper {
    margin: 10px 5px;
    padding: 7px;
}

.notifications-title {
    color: blue;
    background-color: white;
    padding: 5px;
    border-radius: 12px;
    margin: 5px;
    text-align: center;
}

.notifications {
    background-color: white;
    margin: 10px 0;
    border-radius: 12px;
    list-style: none;
    padding: 0;
}

.notification-item {
    border-bottom: 1px solid black;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.notification-item:hover {
    background-color: rgb(198, 192, 192);
}

.notificaion-title {
    margin: 2px;
    color: blue;
}

.notification-desc {
    word-break: normal;
    color: black;
}
/* NOTIFICATIONS CSS END*/

/* MY JOBS CSS */
.my-nav {
    background-color: white;
    margin: 10px 0;
    border-radius: 12px;
    list-style: none;
    display: flex;
    padding: 5px;
}

.my-nav-item {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    display: inline-block;
    margin: 5px;
}

.active-nav {
    color: black;
    cursor: pointer;
    pointer-events: none;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 3px solid black;
}

.my-nav-item > a {
    color: black;
}

.my-nav-item > a:hover {
    color: blue;
}
/* MY JOBS CSS END*/

/* SINGLE CSS */
.single-wrapper {
    margin: 10px;
    padding: 7px;
    background-color: white;
    box-shadow: 3px 3px 2px 1px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
}

.single-info {
    border-bottom: 1px solid black;
    padding: 7px;
}

.single-title {
    margin: 5px;
    font-weight: bold;
}

.single-comp {
    margin-left: 20px;
}

.viewBtn > .btn > a {
    color: white;
}


.single-subject {
    text-transform: uppercase;
}

.message-box {
    display: flex;
    flex-direction: column;
    justify-content:end;
    align-items: center;
}

.message-box > textarea {
    border: 1px solid black;
}
/* SINGLE CSS END*/

/* FOOTER CSS */
.footer {
    background-color: white;
    padding: 10px;
    border-top: 1px solid black;
}

.siteName {
    color: blue;
}

.footer-menu {
    list-style: none;
    float: right;
}

.footer-menu > li {
    display: inline-block;
    padding: 3px;
    margin: 3px 8px;
}

.footer-menu > li > a {
    color: blue;
}

.footer-menu > li > a:hover {
    padding-bottom: 5px;
    border-bottom: 2px solid blue;
}
/* FOOTER END */

/* MEDIA QUERY  */
@media screen and (max-width : 330px) {
    .none {
        display: block;
    }
}   