.valuesSectionContainer h1body {
    font-family: "Lato", sans-serif;
}
.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
}
#content {
    display: none;
}
#loaderAjax {
    display: none;
}
#loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('/assets/loader.svg') 50% 50% no-repeat rgb(249,249,249);
    background-size: 250px 250px;
}
#loaderAjax {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    background: url(/assets/loader.svg) 50% 50% no-repeat rgba(255, 255, 255, 0.7);
    background-size: 250px 250px;
}


.navContainer {
}

.mainNav {
    height: 90px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Bottom shadow */
}

.mainNav .custom-container {
    margin: 0 80px;
}

.mainNav .nav-item {
    padding: 0 10px;
}

.mainNav .nav-item a {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.mainNav .nav-item .active {
    color: #f3793b;
    border-bottom: 3px solid;
}

.heroSectionContainer {
    width: 100%;
    --bs-gutter-x:0;
}

.heroSection {
    height: 801px;
    background-image: url("/assets/images/hero-img-new.webp");
    background-repeat: no-repeat;
    background-size: cover;
}
.heroSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 801px;
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: rgba(0, 0, 0, 0); /* Adjust the opacity as needed */
    z-index: 1;
}

.heroSection > * {
    position: relative;
    z-index: 2;
}

.heroContainer {
    /* margin-left: 80px; */
    margin-left: 40px;
    margin-top: 250px;
}
.heroTitle {
    font-weight: 800;
    font-size: 85px;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 50px;
}

.heroTitle span {
    /* color: #f68b51; */
    display: block;
}

.heroParaghraph {
    margin-top: 34px;
    font-size: 27px;
    font-weight: 600;
    color: #fff;
}

.searchBar {
    align-items: center;
    background-color: white;
    border-radius: 5px;
    padding: 5px 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 525px;
}
.searchBar select,
.searchBar input {
    border: none;
    outline: none;
    margin-right: 10px;
    padding: 10px;
    border-radius: 5px;
}
.custom-select {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}
.select-selected {
    background-color: white;
    padding: 10px 40px;
    border-radius: 5px;
    background-image: url('/assets/icons/briefcase.svg'), url('/assets/icons/arrow.svg');
    background-repeat: no-repeat, no-repeat;
    background-position: left 10px center, right 10px center;
    background-size: 20px, 10px;
    user-select: none;
}
.select-items {
    position: absolute;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 99;
    top: 130%;
    left: 0;
    right: 0;
    display: none;
}
.select-items div {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.select-items div:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.select-items div:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.select-items div:hover {
    background-color: #F3793B;
    color: white;
}
.select-items div:hover:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.select-items div:hover:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.searchBar input {
    flex: 1;
    padding-left: 10px;
}
.searchBar button {
    background-color: #fff;
    color: #F3793B;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 10px;
}

.searchBar button:hover {
    background-color: #F3793B;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.searchBar .searchIcon {
    display: inline-flex;
    margin-left: 0px;
}

.searchFormBtn:hover .searchIcon img {
    filter: brightness(0) invert(1);
}

.widthController {
    width: 225px;
}


#navbarCollapse {
    background: rgb(255, 255, 255);
}

.searchBarMobile {
    display: none;
}

.searchBarMobile .form-group {
    margin-bottom: 10px;
}


.searchBarMobile .btnFind {
    background-color: #F3793B;
    color: #fff;
}
.searchBarMobile .btnFind:hover, .searchBarMobile .btnFind:active, .searchBarMobile .btnFind:focus {
    background-color: #fa6a22;
    color: #fff;
}


.heroBanner {
    padding: 50px 0;
    --bs-gutter-x: 0;
    height: 801px;
}

.heroBannerForm {
    background-color: #F3793B;
    padding: 70px 70px;
}

.heroBannerImage{
    overflow: hidden;
    height: 801px;
}

.heroBannerImage img {
    /* // object-fit: cover;
    width: 100%;
    height: 100%; */
    object-fit: cover;
    /* width: 100%; */
    height: 100%;
}
.heroBannerImage::before {

}

.aboutSectionContainer {
    margin-top: 122px;
    margin-right: 85px;
    margin-left: 85px;
    text-align: center;
}


.containerBtn {
    position: relative;
    display: inline-block;
    bottom: 75px;
}
.containerBtn .background {
    background-color: #37515C; /* Dark Slate Gray */
    border-radius: 10px;
    padding: 15px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 0;
    width: 403px;
    height: 116px;
}
.containerBtn .foreground {
    background-color: #F3793B; /* Coral */
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-weight: bold;
    position: relative;
    z-index: 1;
    width: 403px;
    height: 116px;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutSectionContainer img {
    width: 55%;
}

.aboutSectionContainer .text {
    width: 566px;
    margin: 20px auto;
    position: absolute;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}



/***Values Section***/
.valuesSectionContainer {
    text-align: center;
    padding: 50px;
    background-color: #fff;
}

.valuesSectionContainer h1 {
    font-weight: 800;
    color: #F3793B;
    font-size: 64px;
    margin-bottom: 10px;
}
.valuesSectionContainer h1 span {
    color: #37515C;
}

.valuesSectionContainer h2 {
    font-weight: 800;
    color: #F3793B;
    font-size: 64px;
    margin-bottom: 10px;
}
.valuesSectionContainer h2 span {
    color: #37515C;
}

.valuesSectionContainer p {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 40px;
    color: #000000;
}

.valuesSectionContainer .valuesDesc {
    width: 75%;
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
}

.values-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.value-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 240px;
    height: 255px;
    text-align: center;
    transition: transform 0.3s;
    padding: 10px 10px;
}

.value-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.value-card img {
    padding-bottom: 10px;
}

.value-card p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.value-card .collaborations {
    font-size: 15px;
}

.value-card:nth-child(odd) {
    background-color: #F3793B;
    color: #fff;
}

.value-card:nth-child(even) {
    background-color: #37515C;
    color: #fff;
}

.value-card:hover {
    /* transform: translateY(-10px); */
}
/*****/

/***Departments Section***/
.ourDepartmentsSection {
    text-align: center;
    padding: 50px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    margin-left: 80px;
    margin-right: 80px;
}

.ourDepartmentsSection h1 {
    font-weight: 800;
    color: #F3793B;
    font-size: 64px;
    margin-bottom: 10px;
}
.ourDepartmentsSection h1 span {
    color: #37515C;
}

.ourDepartmentsSection .departCards {
    margin-top: 67px;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 83%;
}

.ourDepartmentsSection .departCard {
    background-color: #F3793B;
    /* width: 413px; */
    min-height: 260px;
    color: #fff;
    border-radius: 15px;
    text-align: left;
    margin: 10px;
    position: relative;
    padding-right: 10px;
    padding-left: 10px;
}

.ourDepartmentsSection .departCard h2 {
    font-size: 32px;
    font-weight: 700;
    padding-top: 18px;
}
.ourDepartmentsSection .departCard p {
    font-size: 18px;
    font-weight: 600;
}
.ourDepartmentsSection .departCard p {
    padding-bottom: 60px;
}
.ourDepartmentsSection .departCard a {
    font-size: 20px;
    display: block;
    font-weight: 700;
    background-color: #fff;
    color: #F3793B;
    width: 162px;
    height: 33px;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.ourDepartmentsSection .departCard a span{
    font-size: 20px;
    font-weight: 700;
}


.ourDepartmentsSection .departCard:hover {
    background-color: #FFF;
    border: 1px solid#37515C;
    color: #F3793B;
}

.ourDepartmentsSection .departCard:hover a {
    background-color: #F3793B;
    color: #FFF;
}

/*****/

.footerSection {
    height: 360px;
    background-image: url('../images/footer-bg.png');
    background-size: cover;
}

.footerSection .row {
    padding: 47px 100px;
    --bs-gutter-x: 0;
}
.footerSection .row:last-child {
    padding-top: 0;
    padding-bottom: 0;
    --bs-gutter-x: 0;
    text-align: center;
}

.footerSection .footerText {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    /* width: 447px; */
    padding: 33px 0;
}

.footerSection .socialIcons a {
    margin:14px;
}
.footerSection .socialIcons a:first-child {
    margin-left:0;
}
.footerSection .socialIcons a:last-child {
    margin-right:0;
}

.footerSection .socialIcons a img{
    width: 40px;
}

.footerSection .colFooterLinks h5 {
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    padding-bottom: 16.5px;
}

.footerSection .colFooterLinks a {
    font-weight: 300;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 16.5px 0;
}

.footerSection .copyRow {
    border-top: 1px solid #fff;
    margin-bottom: 0;
}

.footerSection .copyRights {
    padding-top: 34px;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}


/*******************************/

.jobsPageContainers {
    min-height: calc(100vh - 360px);
}

.ourJobsSection {
    padding-top: 140px;
    --bs-gutter-x: 0;
}


.ourJobsSection h1 {
    font-weight: 800;
    color: #F3793B;
    font-size: 64px;
    margin-bottom: 10px;
}
.ourJobsSection h1 span {
    color: #37515C;
}


.filterButtons {
    margin: 50px;
    text-align: center;
}

.filterBtn {
    background-color: #FDE4D8;
    border: none;
    color: #F3793B;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 20px;
}

.filterBtn:hover {
    background-color: #F3793B;
    color: #fff;
}
.activeFilter {
    background-color: #F3793B;
    color: #fff;
}

.jobsSection{
    /* margin-top: 0;
    text-align: center;
    padding: 50px;
    padding-top: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    margin-left: 80px;
    margin-right: 80px; */
    margin-top: 0;
    text-align: center;
    padding-top: 0;
    background-color: #fff;
}

.jobListings {
    /* margin-top: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 83%; */
}

.jobCardContent {
    background-color: #fff;
    /* width: 413px;
    height: 266px; */
    color: #F3793B;
    border-radius: 15px;
    text-align: left;
    margin: 10px;
    padding: 10px;
    height: 250px;
    position: relative;
}



.jobCardContent {
    border: 2px solid #F3793B;
    border-radius: 10px;
}


.nonFit {
    background-image: url('/assets/images/non-fit.png');
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
}

.jobCardContent h3 {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    padding-bottom: 30px;
    margin-bottom: 0;
}

.nonFit h3 {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    padding-bottom: 16px;
}

.jobCardContent p {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    padding-bottom: 30px;
    margin-bottom: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.nonFit p {
    font-size: 15px;
    color: #F3793B;
    padding-bottom: 100px;
}
.jobCardContent p span{
    padding: 0;
    margin: 0;
    padding-right: 8px;
}

.apply-btn {
    background-color: #F3793B;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 20px;
    width: 88px;
    height: 33px;
    font-weight: 900;
    font-size: 14px;
    line-height: 16.8px;
}

.apply-btn:hover {
    background-color: #fff;
    color: #F3793B;
}







/***************/
.jobDetailsSection {
    margin-top: 50px;
}

.jobDetails h1 {
    font-weight: 700;
    font-size: 48px;
    color: #000;
}

.jobDetails h1 img {
    padding-bottom: 20px;
}

.jobDetailsDiv {
    margin-top: 37px;
}

.jobDetailsDiv span {
    margin-right: 30px;
}

.jobDetailsDiv p strong {
    color: #F3793B;
    font-weight: bold;
    font-size: 20px;
}

.jobDetails span img {
    margin-right: 3px;
}




.application-form {
    margin-top: 50px;
    padding: 20px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 60px;
}

.firstFileds .form-group{
    margin-right: 66px;
}
.secondFileds .form-group{
    margin-left: 66px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #D9D9D9;
    background-color: #D9D9D9;
    border-radius: 4px;
}

.form-group textarea:focus {
    border: 1px solid #D9D9D9;
    background-color: #D9D9D9;
    outline-color: rgb(16, 16, 16);
    box-shadow: none;
}

.form-group input[type="radio"] {
    width: auto;
    margin-right: 5px;
}


.date-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.input-container {
    position: relative;
    width: 100%;
}

.input-container .icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.input-container input {
    width: 100%;
    padding: 8px 8px 8px 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.ui-datepicker {
    font-size: 16px;
}

.firstFileds .genderFormGroup {
    margin-top: 40px !important;
}

.genderFormGroup, .genderInputsLabel, .genderFormGroup input, .genderFormGroup label,.form-group div {
    display: inline-block !important;
}
.genderFormGroup .mainLabel {
    margin-right: 86px;
}

.genderFormGroup .mailLabel {
    margin-right: 81px;
}

.form-group div {
    display: flex;
    align-items: center;
}

.submitRow {
    text-align: right;
}

.submit-button {
    background-color: #F3793B;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
}

.submit-button:hover {
    background-color: #e65c00;
}
