
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

ul {
    margin: 0px;
    padding: 0px;
}

ul li {
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
    color: #000;
}



/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #cdcdcd;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #007367;
}


body {
    width: 100%;
    height: auto;
    font-size: 16px;
    background: #fff;
    font-family: 'Forma DJR Display Regular' !important;
    letter-spacing: 1.2px;
}

#wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0% auto;
}

header {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    transition: 0.5s;
    background: #fff;
}

.black {
    position: fixed;
    z-index: 999 !important;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 30%);
    transition: 0.5s;
}

.menu ul {
    display: flex;
    align-items: center;
}

.menu ul li {
    margin-left: 20px;
}

.menu ul li:nth-child(1) {
    margin-left: 0px;
}

.menu ul li a {
    color: #696969;
}

.menu ul li .sa-login {
    background: #007367;
    padding: 7px 20px;
    color: #fff;
    border-radius: 4px;
}

.sa-banner .sa-img {
    width: 100%;
}

.sa-banner .sa-img img {
    width: 100%;
}

.sa-btn {
    color: #fff;
    font-size: 18px;
    position: relative;
    padding: 5px 20px;
    background: #007367;
    display: none;
}

/*
.sa-btn:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0px;
    background: #007367;
    width: 55px;
    height: 2px;
    transition: 0.3s;
}

.sa-btn:hover {
    color: #007367
}

.sa-btn:hover:before {
    width: 100%;
}
*/

.heading {
    font-size: 34px;
    font-weight: bold;
}

.sub-heading {
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    font-weight: 600;
}

.sub-heading span {
    width: 50px;
    height: 3px;
    background: #007367;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: -4px;
}

/*
.sub-heading:before{
    position: absolute;
    content: '';
    width: 50px;
    height: 20px;
    background: #ddd;
    left: 0px;
    top: 0px;
} 
*/
.sa-banner {
    width: 100%;
    height: 100%;
}

.content {
    width: 100%;
    height: auto;
    margin-top: 100px;
}

.content .heading {
    margin-top: 40px;
}

.content p {
    font-size: 18px;
    margin-top: 20px;
    color: #949494;
    line-height: 30px;
}

.job_post {
    position: relative;
    height: 100%;
}

.job_post_inner {
    position: absolute;
    bottom: 50px;
}

.job_post .job_post_inner .jobs {
    color: #949494;
    margin-right: 10px;
}

.job_post .job_post_inner h4 {
    margin-top: 30px;
    font-size: 24px;
    color: #000;
    font-weight: 600;
}

.sa-heading {
    font-size: 36px;
    color: #000;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 50px;
    margin-top: 30px;
}

.sa-card {
    width: 100%;
    height: auto;
    padding: 20px;
    border: 1px solid #000;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #fff;
    transition: 0.3s;
}

/* .sa-card:hover {
    transform: translateY(-10px);
    background: #007367;
    border: 1px solid #007367;
} */

.sa-card .icon {
    width: 60px;
    margin-bottom: 20px;
}

.sa-white {
    display: none;
}

.sa-black {
    display: block;
}

/* .sa-card:hover .sa-white {
    display: block;
}

.sa-card:hover .sa-black {
    display: none;
} */

.svg {
    width: 100%;
}

.sa-card .icon img {
    width: 100%;
}

.sa-card h4 {
    font-size: 18px;
}

/* .sa-card:hover h4 {
    color: #fff;
} */

.bg_1 {
    background: #007367;
    border: none;
}

.bg_1 .icon svg {
    fill: #fff;
}

.bg_1 h4 {
    color: #fff;
}

/* .sa-categories .col-lg-3 {
    display: flex;
} */

.sa-eligibility {
    width: 100%;
    height: auto;
    padding: 50px 0px;
}


.sa-Accordion {
    background-color: #fff;
    color: #000;
    padding: 20px 10px;
    border-bottom: 2px solid #c8c8c8;
}

.question {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.question span {
    font-size: 36px;
    color: #ddd;
    margin-right: 30px;
    font-weight: 700;
}

.question h1 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.question.active h1 {
    color: #007367;
}

.question::after {
    content: "\002B";
    position: absolute;
    right: 20px;
    transition: 0.2s;
    width: 40px;
    height: 40px;
    background: #ddd;
    line-height: 40px;
    font-size: 30px;
    text-align: center;
    border-radius: 50px;
}

.question.active::after {
    transform: rotate(45deg);
    background: #007367;
    color: #fff;
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    margin-left: 100px;
    color: #676767;
}

.answer ul li {
    margin-bottom: 10px;
    list-style: disc;
}


.footer {
    background: #111111;
    padding: 10px 0px;
}

.footer ul {
    display: flex;
    margin-bottom: 0px;
}

.footer ul li {
    list-style: none;
    margin-right: 10px;
    color: #fff;
}

.sa-copy-right {
    background: #000000;
    padding: 10px 0px;
    text-align: center;
}

.sa-copy-right p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 100;
}

.menu-icon {
    width: 50px;
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 9;
    box-sizing: border-box;
    margin-top: 15px;
    display: none;
}

.menu-icon span {
    width: 35px;
    height: 3px;
    margin-left: 6px;
    position: absolute;
    top: 10px;
    display: block;
    background: #000;
    transition: 0.5s;
    z-index: 999999;
}

.menu-icon span:nth-child(1) {
    transform: translateY(-10px);
    width: 25px;
    margin-left: 15px;
}

.menu-icon span:nth-child(3) {
    transform: translateY(10px);
    width: 25px;
    margin-left: 15px;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    transition: 0.5s;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    transition: 0.5s;
}

.menu-icon.active span:nth-child(2) {
    transform: translateX(100px);
    transition: 0.5s;
    opacity: 0;
}

.anchor {
    display: block;
    height: 85px;
    margin-top: -85px;
    visibility: hidden;
}

.banner {
    width: 100%;
    position: relative;
}

.sacontent {
    position: absolute;
    top: 50px;
    background: #fff;
    left: 20px;
    padding: 20px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 8%);
}

.inner li {
    list-style: none !important;
}

.inner li ol li {
    list-style: initial !important;
}

.sa-card .margin-top {
    margin-top: 40px;
}

.sa-card .btn-primary {
    background-color: #DDD !important;
    border: 1px solid #DDD !important;
    color: #000;
    margin-bottom: 10px;

}

.sa-card .btn-primary:hover {
    background-color: #ccc !important;
}

/* .sa-card.sa-card2:hover {
    color: #eeeded !important;
} */

.sa-card .btn-primary {
    width: 100%;
}

.sa-card3 .btn-primary {
    padding: 5px !important;
    width: 100%;
}

.sa-card2 {
    height: 205px;
}

@media only screen and (max-width: 990px) {
    .sacontent {
        padding: 0;
        position: relative;
        box-shadow: 0 0px 0px rgb(0 0 0 / 0%), 0 0px 0px rgb(0 0 0 / 0%);
        top: 0px;
        margin-top: 10px;
        left: 0px;
    }

    .sa-btn {
        display: inline-block;
        border-radius: 5px;
    }

    .menu-icon {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 250px;
        height: 100%;
        background: #fff;
        z-index: 99;
        transform: translateX(-100%);
        transition: 0.3s;
    }

    .menu.active {
        transform: translateX(0);
    }

    .menu ul {
        display: block;
        margin-top: 30px;
    }

    .menu ul li {
        margin: 0px;
        margin-left: 0px;
        border-bottom: 1px solid #ddd;
    }

    .menu ul li a,
    .menu ul li .sa-login {
        padding: 10px 30px;
        display: block;
    }

    .login {
        padding: 10px;
        border-bottom: none !important;
    }

    .menu ul li .sa-login {
        text-align: center;
    }

    .job_post_inner {
        position: relative;
    }

    .sa-heading {
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .footer ul li,
    .sa-copy-right p {
        font-size: 12px;
    }

    .sa-card .margin-top {
        margin-top: 0px !important;
        text-align: center;
    }

    .sa-card2 {
        height: auto;
    }

    .sa-card .icon {
        margin: auto;
    }

}

@media only screen and (max-width: 767px) {
    .content {
        margin-top: 20px;
    }

    .heading {
        font-size: 24px;
        font-weight: 600;
    }

    .content .heading {
        margin-top: 10px;
        margin-bottom: 0px;
    }

    .content p {
        margin-top: 5px;
        font-size: 15px;
        line-height: initial;
        margin-bottom: 5px;
    }

    .sa-btn {
        font-size: 16px;
    }

    .sa-banner .sa-img {
        width: 100%;
        margin: 0% auto;
    }

    .job_post .job_post_inner h4 {
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .sa-card .margin-top {
        margin-top: 0px !important;
        text-align: center;
    }

    .sa-card2 {
        height: auto;
    }

    .sa-card .icon {
        margin: auto;
    }
}


@media only screen and (max-width: 576px) {
    .sub-heading span {
        width: 25px;
    }

    .sa-card {
        padding: 10px;
        text-align: center;
    }

    .sa-card .icon {
        width: 40px;
        margin: 0% auto;
        margin-bottom: 5px;
    }

    .question span {
        display: none;
    }

    .question h1 {
        font-size: 18px;
        font-weight: 400;
    }

    .answer {
        margin-left: 20px;
    }

    .question::after {
        width: 30px;
        height: 30px;
        font-size: 18px;
        line-height: 30px;
        right: 0px;
    }

    .answer ul li {
        font-size: 14px;
    }

    .sa-eligibility {
        padding: 0px;
    }

    .footer ul {
        justify-content: center;
    }

}

@media only screen and (max-width: 420px) {
    .sa-card h4 {
        font-size: 15px;
    }
}

@media only screen and (max-width: 325px) {
    .sa-card h4 {
        font-size: 14px;
    }
}

#myVideo {
    width: 100%;
}