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-wrapper > a > img {
    border: 3px solid black;
    padding: 3px;
    width: 50px;
    height: 50px;
    float: right;
    border-radius: 50%;
}

.sign {
    padding: 3px;
    text-align: center;
}

.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 */
/* MAIN_CONTENT CSS */
.main-content {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 20px 10px;
    border: 1px solid transparent;
}

/* ABOUT US CSS */
.aboutUs {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin: 5px;
    box-shadow: 10px 10px #ccc;
}

.aboutText {
    font-size: 22px;
    font-weight: bold;
}

.aboutContent {
    margin: 10px 25px;
}

.team {
    margin: 8px;
}

.team > span > a {
    color: blue;
    font-size: 18px;
}
/* ABOUT US END*/

/* PRIVACY CSS */
.privacyContent {
    margin: 10px 25px;
}

ol.privacy {
    margin: 10px 40px;
    padding: 10px;
}

.privacy-item {
    padding: 5px 10px;
}

.privacy-item h5 {
    font-size: 18px;
    font-weight: bold;
}

.privacy-item > p > span {
    font-size: 14px;
    font-weight: bold;
}
/* PRIVACY CSS END */
/* CONTACT US CSS */
.contactForm {
    background-color: #ccc;
    border-radius: 15px;
    padding: 10px;
    margin: 10px;
}

.contactForm > h4 {
    color: blue;
    text-align: center;
}

input[type='text'],
input[type='email'] {
    width: 75%;
}

textarea {
    height: 150px;
    width: 100%;
    border-radius: 10px;
}

#search-button {
    padding: 10px 20px;
    background-color: rgb(22, 22, 192);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}
  
#search-button:hover {
    background-color: blue;
}

/* SOCIAL LINKS CSS */
.linkText {
    color: blue;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.linkText::after{
    content: '';
    display: block;
    clear: both;
    width: 250px;
    height: 3px;
    border-top: 3px dashed blue;
    margin: 10px auto ;
}

.links {
    list-style-type: none;
    display: flex;
}

.link-item {
    display: inline-block;
    padding: 5px 8px;
    font-size: 30px;
    margin: 8px;
}
/* CONTACT US END */
/* JOIN US CSS */
.joinUs {
    margin: 50px 10px;
    text-align: center;
}

.joinText {
    font-size: 27px;
    color: blue;
    font-weight: bold;
}

.joinText::after {
    content: '';
    display: block;
    clear: both;
    width: 200px;
    height: 3px;
    border-top: 3px solid blue;
    margin: 15px auto ;
}

.features {
    margin: 20px;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.feature {
    margin: 20px;
    min-width: fit-content;
    max-width: 210px;
    padding: 10px;
    border: 2px solid transparent;
    background-color: white;
    border-radius: 12px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.5);
}

.feature:hover {
    background-color: rgb(198, 192, 192);
}

.feature > .fas {
    font-size: 90px;
    margin: 10px;
    text-align: center;

}

.feature > .digit {
    margin: 10px;
}

/* JOIN US END */
/* MAIN CONTENT END */

/* JOBS CSS */
.jobs-wrapper {
    margin: 10px 5px;
    padding: 10px 5px;
}

.input-group {
    box-shadow: 5px 5px 2px 1px rgba(237, 235, 235, 0.5);
}

.input-group > input {
    border-radius: 20px;
}

.input-group-text {
    cursor: pointer;
}

.filters {
    border: 1px solid transparent;
    width: fit-content;
    cursor: pointer;
}

.latestTitle::after{
    content: '';
    display: block;
    clear: both;
    width: 170px;
    height: 3px;
    border-top: 3px dashed #007BFF;
    margin: 10px auto;
}

.jobs {
    margin: 10px 5px;
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
}

.job {
    margin: 8px 4px;
    background-color: white;
    box-shadow: 5px 5px 2px 1px rgba(0, 0, 0, 0.5);
    padding: 9px 10px;
    border-radius: 10px;
    color: black;
    cursor: pointer;
    border: 1px solid black;
    height: fit-content;
}

.job:hover > .job-title {
    color: #007BFF;
}

.job:hover {
    background-color: rgb(198, 192, 192);
}

@media screen and (max-width : 1024px) {
    .job {
        padding: 7px;
    }
}

@media screen and (max-width : 998px) {
    .job {
        padding: 5px;
    }
}

@media screen and (max-width : 425px) {
    .job {
        width: 250px;
    }
}

/* JOBS CSS END */

/* SINGLE JOB 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;
}

.single-title {
    margin: 5px;
    font-weight: bold;
}

.single-comp {
    margin-left: 20px;
}

.single-type > p {
    font-weight: bold;
}

.type {
    padding: 3px;
    font-weight: 500;
    background-color: lightgreen;
}

.btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.report {
    background-color: silver;
}
/* SINGLE JOB 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;
    }
}   