/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Poppins";
    color: black;
    font-weight: 500;
}

a {
    color: black;
    text-decoration: none;
}

    a:hover {
        color: #559643 !important;
        text-decoration: none;
    }

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-family: "Poppins";
}

#main {
    margin-top: 70px;
    z-index: 3;
    position: relative;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #4b987e;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #559643;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: sticky;
    /*height: 90px;*/
    padding: 10px;
    z-index: 997;
    transition: all 0.5s ease-in-out;
    background: url(/assets/img/HeadFootBG.jpg) top center;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background-size: 100% 100% !important;
}

    #header .logo h1 {
        font-size: 28px;
        margin: 0;
        line-height: 0;
        font-weight: 600;
        letter-spacing: 1px;
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: #559643;
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 70px;
    }

#Footer {
    position: sticky;
    /*height: 90px;*/
    padding: 10px;
    z-index: 997;
    transition: all 0.5s ease-in-out;
    background: url(/assets/img/HeadFootBG.jpg) no-repeat center;
    background-size: 100% 100%;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}


    #Footer .logo h1 a,
    #Footer .logo h1 a:hover {
        color: #559643;
        text-decoration: none;
    }
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }
    /*,
    .navbar a:focus*/
    .navbar a {
        display: block;
        align-items: center;
        justify-content: space-between;
        padding: 14px 14px;
        font-family: "Poppins";
        font-size: 17px;
        font-weight: 500;
        color: #000000;
        white-space: nowrap;
        transition: 0.3s;
        text-decoration: underline;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

    /* .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: ##559643;
        }*/

    .navbar .getstarted {
        /*background: #000651;*/
        padding: 8px 25px;
        /*margin-left: 30px;*/
        color: #fff;
    }

    /*.navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            background: #000651;
        }*/

    .navbar .dropdown ul {
        display: inline-table;
        position: absolute;
        /*left: 20px;*/
        /*right: 0;*/
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background-color: white;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        width: 100%;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 15px;
            text-transform: none;
            /*color: black;*/
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover {
                background-color: transparent !important;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #559643;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

.cList a {
    text-decoration: none;
    font-weight: 400;
    color: black;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #000000;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(34, 36, 29, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: auto;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #000000;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #559643;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        /* margin: 10px 20px;*/
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #559643;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 65vh;
    background: url("../img/hero-bg.jpg") top center;
    background-color: white;
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-bottom: 100px;
    /*margin: 50px 0 100px 0;*/
}

    #hero:before {
        content: "";
        background: rgb(255 255 255 / 50%);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .container {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    #hero h1 {
        font-size: 55px;
        margin: 100px 0 20px 0;
        font-weight: bolder;
        line-height: 56px;
        color: #000000;
    }

.btn-get-started {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 10px;
    transition: 0.5s;
    border: 2px solid #000000;
    /*text-transform: uppercase;*/
    color: white;
    background-color: #000000;
    height: 38px;
    width: 100% !important;
}

    .btn-get-started:hover, .btn-get-started:focus {
        border-color: #559643 !important;
        background-color: #559643 !important;
        color: black !important;
    }



@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

        #hero h1 {
            font-size: 35px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }

        #hero .hero-container {
            padding: 0 15px;
        }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}



.pr-pl-0 {
    padding-right: 0px;
    padding-left: 0px;
}

.form-control {
    border-radius: 0px;
    border: 1px solid #000651;
    /*margin-bottom: 15px;*/
}

.form-group {
    margin-bottom: 10px;
}

.form-select {
    border-radius: 0px;
    /*padding: 0.375rem 1rem 0.375rem 0.75rem !important;*/
    /*background-position: right 0.2rem center;*/
    border: 1px solid #000651;
    background-image: url(/assets/img/downArrow.svg);
    background-position: right 0rem center;
    background-size: 31px 31px;
}

label {
    color: black;
}

.block {
    text-align: center;
    vertical-align: middle;
}

.JobCard {
    border: 1px solid black;
    margin: 24px 20px 10px 20px;
    padding: 10px 20px;
    background-color: white;
    color: black
}



    .JobCard h1 {
        font-size: 19px!important;
        text-decoration: underline;
        font-weight: 600;
    }

    .JobCard h5 {
        font-size: 17px;
        color: black;
    }

    .JobCard h2 {
        font-size: 15px;
        font-weight: 600;
    }

    .JobCard p {
        font-size: 13px;
        color: black;
    }

        .JobCard p span {
            font-size: 13px;
            color: #000651;
            font-weight: bold;
        }

    .JobCard a:hover {
        color: black;
    }



.LoadButton .btn-get-started:hover {
    color: white;
}

.align-v {
    transform: scale(1, 0.94);
    line-height: 460px;
}

.Description {
    border: 1px solid black;
    margin: 24px 20px 10px 20px;
    padding: 10px 20px;
    background-color: white;
    color: black
}

    .Description h1 {
        font-size: 20px !important;
        margin: 0 0 15px 0 !important;
        font-weight: 700;
    }

    .Description h2 {
        font-size: 15px !important;
        font-weight: 600;
        margin-top: 15px;
    }

    .Description p {
        font-size: 13px;
        color: black;
    }

        .Description p span {
            font-size: 13px;
            color: #000651;
            font-weight: bold;
        }

    .Description a {
        text-decoration: none !important;
    }


.hidden {
    display: none;
}


#Register label {
    margin-top: 7px;
}

#Register p {
    color: black;
    font-size: 15px;
    font-weight: 500;
}

#Register a {
    text-decoration: underline;
}

.FooterNavbar {
    text-align: center;
    /*margin-bottom: 50px;*/
}

    .FooterNavbar a {
        display: block;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-size: 18px;
        font-weight: bolder;
        color: #000000;
        white-space: nowrap;
        transition: 0.3s;
        text-decoration: underline;
    }

        .FooterNavbar a i, .FooterNavbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .FooterNavbar a:hover, .FooterNavbar a:focus, #Login p a:hover {
            color: #559643 !important;
        }


.navbar .getstarted:hover, .navbar .getstarted:focus {
    border-color: #559643 !important;
    background-color: #559643 !important;
}

.ShowM_P {
    display: none;
}

.p_L_R-50 {
    padding: 0 50px 0 50px;
}



#EmptyDiv {
    height: 180px;
}

.p_L_R-150 {
    padding: 0 50px 0 50px;
}

.Empty {
    height: 100px;
}
/*For mobile Portrait*/
@media screen and (min-width:320px) and (max-width: 480px) and (orientation: portrait) {
    .w-auto {
        width: 100% !important;
    }

    .FooterNavbar a {
        padding: 10px 0 10px 0px;
    }
    #LoginIcon {
        filter: none !important;
    }

    #Login .btn-get-started {
        padding: 0 20px 0 20px !important;
    }

    .p_L_R-150 {
        padding: 0 !important;
    }

    h4 {
        font-size: 18px;
    }

    .menuItem {
        padding: 12px !important;
    }

    #SideMenuOuter {
        width: 59px !important;
    }
    .page .JobCard h1 {
        font-size: 19px !important;
        text-decoration: underline;
        font-weight: 600;
        margin-top: 0 !important;
        margin-bottom: 0.5rem !important;
    }
    .page h1 {
        font-size: 34px !important;
        margin: 40px 0 50px 0 !important;
    }

    .p_L_R-50 {
        padding: 0;
    }

    .pd-20 {
        padding: 0 20px 0 20px;
    }


    #SideMenu {
        height: auto !important;
    }

    #alertForm h2 {
        font-size: 28px !important;
        padding: 0 8px 0 8px;
    }

    #alertForm p {
        font-size: 18px !important;
    }

    #header .logo img {
        max-height: 50px;
        margin-top: 25px !important;
    }

    #TagLine {
        text-align: center !important;
    }

        #TagLine h1 {
            font-size: 20px !important;
        }

    #Register p {
        font-size: 14px;
    }




    .align-v {
        line-height: 80px;
    }

    .QS_List {
        columns: 2;
    }

    /*  .RegBtnMB {
        margin-bottom: 2.8rem !important;
    }*/

    .custom-c .navbar-default {
        width: 100% !important;
        /* border-radius: 20px; */
    }

    .custom-c .navbar-fixed-top, .custom-c .navbar-fixed-bottom {
        right: 0 !important;
        left: 0 !important;
    }




    .HideM_P {
        display: none;
    }

    .ShowM_P {
        display: block !important;
    }
    .navbar-text {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    #btnBar {
        margin-top: 10px;
    }

    #EmptyDiv {
        height: 120px;
    }

    #alertForm {
        padding: 50px 0 !important;
    }

    .JAHeading {
        padding: 0 0px 0 8px;
    }

    #hero {
        margin-bottom: 60px;
    }
    .navbar-mobile ul {
        width: 200px;
        right: 20px;
        left: unset;
        background: url(/assets/img/HeadFootBG.jpg);
        background-size: cover;
    }

    .navbar .dropdown ul a {
        font-size: 17px;
    }

    .navbar-mobile a, .navbar-mobile a:focus {
        font-size: 17px;
    }
}
/*For mobile Landscape*/
@media screen and (min-width: 481px) and (max-width: 926px) and (orientation: landscape) {
    .menuItem img {
        height: 25px !important;
        width: 25px !important;
    }

    .img-fluid {
        height: 50px !important;
    }

    #SideMenu span {
        top: 8px !important;
    }

    #header {
        padding: 0 !important;
    }

    #hero h1 {
        font-size: 40px;
        margin: 0px 0 20px 0;
    }

    #LoginIcon {
        filter: none !important;
    }

    .p_L_R-150 {
        padding: 0 !important;
    }

    #EmptyDiv {
        height: 90px !important;
    }

    #SideMenuOuter {
        width: 45px !important;
    }

    .menuItem {
        padding: 5px !important;
    }



    .FooterNavbar a {
        padding: 0px 0 5px 30px;
    }

    #Pics img {
        height: 200px !important;
    }

    #alertForm p {
        font-size: 20px !important;
        padding: 0 15px 0 15px;
    }

    #alertForm h2 {
        font-size: 29px !important;
    }

    .p_L_R-50 {
        padding: 0;
    }

    #header .logo img {
        max-height: 40px;
    }

    #header {
        height: 50px;
    }

    #Register p {
        font-size: 14px;
    }

    .HideM_L {
        display: none;
    }

    #hero {
        height: 150vh;
    }



    .align-v {
        transform: scale(1, 1.2);
        line-height: 415px;
    }



    .QS_List {
        columns: 2;
        padding-left: 0;
    }


    .custom-c .navbar-default {
        width: 100% !important;
        /* border-radius: 20px; */
    }

    .custom-c .navbar-fixed-top, .custom-c .navbar-fixed-bottom {
        right: 0 !important;
        left: 0 !important;
    }



    .container, .container-sm {
        max-width: 700px !important;
    }

    .navbar-text {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    #btnBar {
        margin-top: 10px !important;
    }
    .navbar-mobile ul {
        width: 200px;
        right: 90px;
        left: unset;
        background: url(/assets/img/HeadFootBG.jpg);
        background-size: cover;
        height: 250px;
        overflow: hidden;
        overflow-y: scroll;
    }

    .navbar-mobile .mobile-nav-toggle {
        right: 90px;
    }

    .navbar .dropdown ul a {
        font-size: 17px;
    }

    .navbar-mobile a, .navbar-mobile a:focus {
        font-size: 17px;
    }
}
/*For Tab IPad*/
@media screen and (min-width: 765px) and (max-width: 1280px) and (orientation: portrait) {
    .custom-c .navbar-default {
        width: 50% !important;
    }

    #hero h1 {
        font-size: 40px;
    }

    .mh {
        min-height: 993px;
    }

    #header .logo img {
        max-height: 50px;
    }

    .Empty {
        height: 130px !important;
    }

    #Alert #alertForm {
        margin-bottom: 230px !important;
    }

    .menuItem {
        padding: 10px !important;
    }

    #SideMenu {
        height: 40% !important;
    }

    #SideMenuOuter {
        width: 56px !important;
    }

    #Pics img {
        height: 250px !important;
    }

    #alertForm h2 {
        font-size: 28px !important;
    }

    #alertForm p {
        font-size: 20px !important;
    }

    .p_L_R-50 {
        padding: 0;
    }

    .pd-20 {
        padding: 0 20px 0 20px;
    }

    #hero {
        height: 50vh;
    }

        #hero h1 {
            margin: 30px 0 20px 0;
        }
    .custom-c .navbar-text {
        font-size: 17px !important;
    }

    .QS_List {
        padding-left: 0;
    }
    .navbar-mobile ul {
        width: 200px;
        right: 70px;
        left: unset;
        background: url(/assets/img/HeadFootBG.jpg);
        background-size: cover;
    }

    .navbar-mobile .mobile-nav-toggle {
        top: 20px;
        right: 65px;
    }

    .navbar .dropdown ul a {
        font-size: 17px;
    }

    .navbar-mobile a, .navbar-mobile a:focus {
        font-size: 17px;
    }
}
/*For Tab IPad*/
@media screen and (min-width: 1024px) and (orientation: landscape) {
    #SearchBtn {
        width: auto !important;
    }

    .navbar {
        right: 70px !important;
    }

        .navbar a {
            padding: 0px 5px;
        }

    /*  #alertForm h2 {
        font-size: 32px !important;
    }*/

    .align-v {
        line-height: 430px;
    }



    #hero {
        height: 90vh;
    }

    .FooterNavbar a {
        padding: 10px 0 10px 0px;
    }
}

/*Mac book 16 and Apple iMac 24"*/
@media screen and (min-width: 1728px) and (max-width: 2048px) {
    .mh {
        min-height: 893px;
    }

    #hero {
        height: 50vh !important;
    }
}



#Alert #alertForm {
    margin-bottom: 100px;
    background-color: transparent;
    padding: 0 !important;
}

#alertForm {
    background-color: #fff;
    padding: 100px 0;
    z-index: 1;
}

    #alertForm h2 {
        color: #000000;
        font-size: 3rem;
    }

    #alertForm p {
        font-size: 21px;
        color: black;
        margin-top: 40px;
        padding: 0 10px 0 10px;
    }

    #alertForm label {
        color: black;
        text-decoration: underline;
    }

    #alertForm a:hover {
        color: black;
    }

#Pics {
    padding: 0 0 100px 0;
    background-color: #fff;
    position: relative;
    z-index: 99;
}

    #Pics img {
        height: 350px;
        margin-bottom: 20px;
    }

    #Pics a:hover {
        color: black;
    }

#SideMenuOuter {
    position: fixed;
    background: url(/assets/img/HeadFootBG.jpg) no-repeat center;
    background-size: 100% 100%;
    /*box-shadow: inset -8px 0px 16px -6px rgba(0,0,0,0.2);*/
    height: 100%;
    width: 75px;
    /*transform: rotate(180deg);*/
}

#SideMenu {
    position: fixed;
    background: url(/assets/img/HeadFootBG.jpg) no-repeat center;
    background-size: 100% 100%;
    /*box-shadow: inset -8px 0px 16px -6px rgba(0,0,0,0.2);*/
    height: 70%;
    width: auto;
    transition: width 1s;
    overflow: hidden;
    z-index: 99;
    display: grid;
}

    #SideMenu :hover {
        width: 270px;
    }

    #SideMenu span {
        position: absolute;
        left: 80px;
        top: 25px;
        transition: color 1s;
        color: black;
    }

    #SideMenu:hover .menuItem span {
        color: black;
    }

        #SideMenu:hover .menuItem span:hover {
            text-decoration: underline;
        }

.menuItem {
    position: relative;
    padding: 20px;
}

    .menuItem img {
        height: 35px;
        width: 35px !important;
        color: white;
        /*filter: invert(100%);*/
    }

.page {
    width: 100%;
    background: url("../img/hero-bg.jpg") top center;
    background-color: white;
    background-size: cover;
    position: relative;
    z-index: 0;
}

    .page:before {
        content: "";
        background: rgb(255 255 255 / 70%);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .page .container {
        position: inherit;
    }

    .page h1 {
        font-size: 35px;
        margin: 60px 0 70px 0;
    }

    .page label {
        font-size: 16px;
        font-weight: bold;
    }

        .page label span {
            text-decoration: underline;
        }

    .page a {
        text-decoration: underline;
    }

p {
    font-size: 17px;
}

.QS_List {
    columns: 2;
    list-style-type: none;
    /*text-align: center;*/
    margin-top: 50px;
}

    .QS_List li {
        padding: 10px 0 10px 0;
        page-break-inside: avoid;
    }

    .QS_List a {
        text-decoration: underline;
        font-size: 1.1rem;
    }

.wd-auto {
    width: auto !important;
}

.SiteGray {
    background-color: #c1c3cb;
}

#fileLabel {
    border-color: #000000;
    color: black;
}

    #fileLabel:hover {
        background-color: #559643;
    }

.White {
    background-color: White;
}

#JobDesc spinner-border {
    align-content: center;
}

#FullDesc {
    border: 1px solid black;
    padding: 0 0 0 10px;
    margin-top: 10px;
}


#Login a {
    text-decoration: underline;
}

#Login .btn-get-started {
    padding: 0 20px 0 20px;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mt-7 {
    margin-top: 8px !important;
}

.JobCard a {
    text-decoration: none;
}

.Site-Red {
    color: #559643;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h6, p, .p, span, .span {
    text-wrap: balance;
}

.nice-select span {
    text-wrap: nowrap !important;
}

.form-select {
    background-size: 20px 20px;
    padding: 0.375rem 0.25rem 0.375rem 0.4rem;
}

.w-auto {
    width: auto !important;
}
