@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
:root {
    --primary-font-family: "Lato", sans-serif;
    --secondary-font-family: "Inter", sans-serif;
    --bs-brand:"Catamaran", sans-serif;
    --bs-body:#757575;
    --bs-white: #fff;
    --bs-black: #000000;
    --bs-primary: #2991D6;
    --bs-primary-hover: #1479BD;
    --bs-light: #F6F6F6;
}
body {
    font-family: var(--primary-font-family);
    font-size: 18px;
    color: var(--bs-body);
    line-height: 28px;
    overflow-x: hidden;
}
.btn {
    font-size: 16px;
    border-radius: 8px;
    font-family: var(--primary-font-family);
    letter-spacing: 1px;
    padding: 1rem 1.5rem;
    transition: all ease-in 0.2s;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bs-white);
}
.btn-primary {
    color: var(--bs-white);
    background-color: var(--bs-primary);
    border-color: var(--bs-primary-hover);
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
    box-shadow: none;
}
.btn-primary:hover {
    color: #fff;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
}
.btn.btnTheme {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    padding: 5px 5px 4px 17px;
    letter-spacing: 1px;
    line-height: 0;
    transition: all ease-in 2s;
}
.btn.btnTheme:hover {
    background: var(--bs-primary-hover);
    padding-left: 20px;
}
.btn-primary span i {
    font-size: 38px;
    line-height: 1;
}
.btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
}
.btn-secondary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.btn-check:focus+.btn-secondary, .btn-secondary:focus {
    color: #fff;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
    box-shadow: none;
}
.btn-secondary:hover {
    color: #fff;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
}
.btn-check:active+.btn-secondary:focus, .btn-check:checked+.btn-secondary:focus, .btn-secondary.active:focus, .btn-secondary:active:focus, .show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}
a {
    color: var(--bs-black);
    text-decoration: none;
    outline: none;
}
a:hover {
    text-decoration: none;
}
.fw-300 {
    font-weight: 300 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-500 {
    font-weight: 500 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.fw-700 {
    font-weight: 700 !important;
}
.fw-800 {
    font-weight: 800 !important;
}
.text-black {
    color: var(--bs-black) !important;
}
.text-white {
    color: var(--bs-white) !important;
}
.text-theme {
    color: var(--bs-primary) !important;
}
.bg-primary {
    background: var(--bs-primary) !important;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--secondary-font-family);
	color:var(--bs-black);
    font-weight: normal;
}
h1 {
    font-size: 50px;
}
h2 {
    font-size: 36px;
    line-height: 1.4;
}
h3 {
    font-size: 32px;
}
ul, ol {
    margin: 0;
    padding: 0;
}
ul li, ol li {
    list-style: none;
}
.mt-custom {
    margin-top: 100px;
}
.mb-custom {
    margin-bottom: 100px;
}
.container {
    max-width: 1550px;
}
header {
    z-index: 1024;
}
.topbar {
    display: block;
}
.contactInfo, .socialInfo {
    padding: 8px 0;
}
.contactInfo a, .socialInfo, .socialInfo a {
    color: var(--bs-white);
    font-size: 18px;
}
.contactInfo a i {
    width: 27px;
    height: 27px;
    background-color: var(--bs-white);
    border-radius: 50%;
    display: inline-block;
    color: var(--bs-primary);
    text-align: center;
}
.socialInfo a {
    margin-left: 8px;
}
.brandLogo {
    font-family: var(--bs-brand);
    font-size: 42px;
    font-weight: 300;
    color: var(--bs-white);
    text-align: left;
}
.brandLogo span {
    font-size: 20px;
    letter-spacing: 2.3px;
    font-weight: 400;
    display: block;
}
.brandLogo img {
    max-width: 320px;
}
.main-navbar ul.navbar-nav li.nav-item {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}
.main-navbar ul.navbar-nav li.nav-item a {
    font-size: 18px;
    padding-right: 30px;
    color: var(--bs-white);
    font-weight: 400;
}
.main-navbar ul.navbar-nav li.nav-item a.active, .main-navbar ul.navbar-nav li.nav-item a:hover {
    color: var(--bs-primary);
}
.main-navbar ul.navbar-nav li.nav-item:last-child a {
    padding-right: 0;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        /* transform: translateY(0); */
    }
    to {
        transform: translateY(0);
    }
}
.page-header {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1024;
}
.page-header.is-sticky {
    top: 0;
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
    background-color: var(--bs-black);
}
.homeSlider {
    padding-top: 7.5rem;
    background-position: center;
    background-size: cover;
    position: relative;
    background-color: var(--bs-black);
}
.homeSlider:before {
    content:'';
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.customCarousel {
    position: relative;
    z-index: 1023;
}
.heroContent {
    padding-bottom: 80px;
}
.heroContent small {
    font-size: 18px;
    font-weight: 600;
    color: var(--bs-primary);
}
.heroContent h1 {
    color: var(--bs-white);
    font-family: var(--secondary-font-family);
    font-weight: 600;
}
.heroContent p {
    margin-bottom: 0;
}
.heroContent .lead {
    color: var(--bs-white);
    font-weight: 500;
}
.searchJob {
    display: block;
}
.searchJob .bg-white{
    border-radius: 10px;
}
.searchJob .bg-white .form-control {
    background-color: var(--bs-white);
    border: none;
}
.searchJob .bg-white .form-control:focus {
    outline: none;
    border:none;
    background-color: #ffffff;
    box-shadow: none;
}
.searchJob .divider {
    border-left:1px solid rgba(0, 0, 0, 0.2);
    height: 60px;
    margin-left: 8px;
    margin-right: 8px;
    display: inline-block;
}
.searchJob .bi-geo-alt {
    position: relative;
    top: 16px;
    left: 5px;
}
.searchJob button {
    color: var(--bs-white);
    font-size: 22px;
    padding: 0 20px;
    line-height: normal;
}
.searchJob .customCarousel .btn-search {
    padding: 1.4rem 2rem;
}
.heroImg {
    width: 100%;
}
.banner-main-img {
    background: url(../images/graphic2.svg) no-repeat center;
    background-size:contain;
}
.bannerGraphic {
    position: absolute;
    right:30px;
    z-index: -1;
    top: 180px;
}
main {
    display: block;
}
.head-block {
    margin-bottom: 1rem;
}
.head-block small {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--bs-primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}
.head-block small:before {
    content: '';
    width: calc(100% - 20px);
    left: 10px;
    position: absolute;
    bottom: 0px;
    height: 10px;
    border-radius: 10px;
    background-color: #E0F3FF;
    opacity: 0.7;
}
.head-block small span {
    position: relative;
    z-index: 2;
}
.head-block h2 {
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.head-block h2 strong {
    font-weight: 600;
}
.highlighted-job-container {
    border:2px solid var(--bs-primary);
    border-radius:20px;
    padding:70px 30px 100px;
}
.searchLink {
    font-size: 20px;
    font-weight: 700;
    position: relative;
}
.job-card {
    border:1px solid #E4E8EA;
    border-radius: 10px;
}
.job-card .card-body {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.job-card .jobTime {
    font-size: 14px;
    text-transform: uppercase;
    padding: 4px 20px;
    border-radius: 4px;
    background-color: #D6EFFF;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}
.job-card .company-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: none;
}
.job-card .company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
.job-card .companyname-location {
    font-size: 18px;
}
.job-card hr {
    opacity: 0.1;
}
.job-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--bs-primary);
}
.job-card .jobPayment {
    font-size: 18px;
    font-weight: 900;
}
.job-card .jobPayment small {
    font-weight: 400;
    font-size: 14px;
    color: var(--bs-body);
}
.highlighted-job {
    position: relative;
    margin-bottom: 140px;
}
.highlighted-job-container .owl-nav {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 58px;
    bottom: -128px;
}
.highlighted-job-container .owl-nav button.owl-prev, .highlighted-job-container .owl-nav button.owl-next {
    background-color: var(--bs-primary);
    width: 58px;
    height: 58px;
    margin: 0 6px;
    border-radius: 8px;
    display: inline-block;
    color: var(--bs-white);
}
.highlighted-job-container .owl-nav button.owl-prev span, .highlighted-job-container .owl-nav button.owl-next span {
    background: none;
    color: var(--bs-primary);
}
.highlighted-job-container .owl-nav button.owl-prev:hover, .highlighted-job-container .owl-nav button.owl-next:hover {
    background: var(--bs-primary-hover);
    color: var(--bs-primary-hover);
}
.highlighted-job-container .owl-nav button.owl-prev span:before, .highlighted-job-container .owl-nav button.owl-next span:before{
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant:normal;
    text-transform: none;
    color: var(--bs-white);
    font-size: 26px;
    position: relative;
}
.highlighted-job-container .owl-nav button.owl-prev span:before {
    content: "\f12f";
    left: 4px;
    top: 3px;
}
.highlighted-job-container .owl-nav button.owl-next span:before {
    content: "\f138";
    left: 4px;
    top: 3px;
}
.ourService {
    position: relative;
    padding: 4rem 0;
}
.ourService::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/boxes.svg) no-repeat center;
    width: 100%;
    height: 100%;
    background-size: cover;
}
.ourService .container {
    position: relative;
    z-index: 4;
}

.bg-primary .head-block small {
    color: var(--bs-white);
}
.bg-primary .head-block small::before {
    background: #237BB5;
    z-index: 1;
}
.serviceCol {
    border-bottom: 5px solid #1F85C9;
    padding-bottom: 1rem;
    position: relative;
    height: 100%;
}
.serviceCol p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.serviceCol figure img {
    border-radius: 20px;
    width: 100%;
}
.serviceCol .head-block small {
    font-size: 14px;
}
.serviceCol .btn {
    border:2px solid var(--bs-white)
}
.aboutPhoto figure {
    display: inline-block;
    padding-right: 20px;
    padding-bottom: 20px;
}
.aboutPhoto figure:before, .aboutPhoto figure:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background-color: #f3f3f3;
    z-index: -1;
}
.aboutPhoto figure:before {
    left: 0;
    top: 0;
}
.aboutPhoto figure:after {
    right: 0;
    bottom: 0;
}
.aboutPhoto figure img {
    border-radius: 20px;
    margin-left: 20px;
    margin-top: 20px;
    max-width: 100%;
}
.joinuser {
    background-color: var(--bs-white);
    border-radius: 60px;
    padding: 14px 20px;
    position: absolute;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--bs-primary);
}
.joinuser span {
    color: var(--bs-black);
}
.joinuser.client {
    right:0;
    top: 50%;
}
.joinuser.candidates {
    left: 20%;
    bottom: -8px;
}
.noExp {
    color: var(--bs-black);
    letter-spacing: 2px;
    font-weight: 600;
    margin: 30px 0 50px;
    display: block;
    line-height: 56px;
}
.noExp span {
    font-size: 48px;
    font-weight: 900;
    color: var(--bs-black);
    position: relative;
    margin-right: 5px;
    letter-spacing: 0;
    position: relative;
}
.noExp span:before {
    content:'';
    position: absolute;
    width: 100%;
    height: 25px;
    border-radius: 25px;
    background-color: var(--bs-primary);
    opacity: 0.1;
    bottom: -8px;
}
.callus-btn .phoneIcon {
    width: 53px;
    height: 53px;
    margin-right: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bs-primary);
    color:var(--bs-white);
    font-size: 25px;
}
.callus-btn .callText {
    line-height: 1.4;
    font-size: 22px;
    font-weight: 700;
}
.callus-btn .callText small {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--bs-primary);
    font-weight: 700;
}
.testimonials {
    padding: 5.5rem 0;
}
.testimonialWrapper:before {
    content:'';
    position: absolute;
    z-index: 0;
    background-color: #f0f0f0;
    width: calc(100% - 100px);
    left: 50px;
    height: calc(100% + 40px);
    top: -20px;
    border-radius: 30px;
}
.testimonialWrapper .carousel {
    position: relative;
    z-index: 2;
    padding: 3rem 4rem;
    background-color: var(--bs-white);
    border-radius: 20px;
}
.testimonials .carousel-indicators {
    position: relative;
    margin: 0;
}
.testimonials .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    position: static;
    display: inline-block;
    text-indent: 0;
    overflow: hidden;
    border-radius: 50%;
    transition: all ease-in 0.2s;
}
.testimonials .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.testimonials .carousel-indicators .active {
    opacity: 1;
    transform: scale(1.15);
}
.clientName {
    font-size: 18px;
    color: var(--bs-primary);
    margin-top: 16px;
}
.clientPosition {
    font-size: 18px;
    margin: 10px 0;
}
.connection-people {
    display: block;
    border-radius: 20px;
    border:1px solid rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
}
.connection-people .row .col:nth-child(2) {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.connection-people .row .col:nth-child(3) {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.card-how-we-diff {
    padding: 3rem 1rem;
}
.card-how-we-diff p.text-black {
    color: var(--bs-body) !important;
}
.card-how-we-diff img {
    height: 70px;
}
.card-how-we-diff i {
    margin-bottom: 1.5rem;
    display: block;
}
.card-how-we-diff h5 {
    font-size: 22px;
    margin-bottom: 1rem;
}
.footer {
    background: var(--bs-black);
    background-size: contain;
    padding: 3rem  0;
    color: var(--bs-white);
}
footer h5 {
    color: var(--bs-white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}
footer .quickLink ul li a {
    color: var(--bs-white);
}
footer .quickLink ul li a:hover {
    color: var(--bs-primary);
}
footer .quickLink ul li {
    margin-bottom: 12px;
}
footer .quickLink ul li:last-child {
    margin-bottom: 0;
}
footer .contactInfo li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}
footer .contactInfo li i {
    position: absolute;
    left: 0;
    top: 2px;
    width: auto;
    height: auto;
    background: none;
    color: var(--bs-white);
}
.footerCopyright {
    background-color: var(--bs-primary);
}
.footerCopyright a {
    color: var(--bs-white);
}
.breadcrumb .breadcrumb-item{
    color: var(--bs-white);
}
.breadcrumb a {
    color: var(--bs-primary);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}
.missionImh img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.missionContent ul li {
    margin-bottom: 0.8rem;
    font-weight: 400;
    color:var(--bs-body);
    position: relative;
    padding-left: 36px;
}
.missionContent ul li:before {
    content:"\f272";
    position: absolute;
    left: 0;
    top: 1px;
    width:24px;
    height: 24px;
    background-color: var(--bs-primary);
    display: inline-block;
    border-radius:50%;
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    text-align: center;
    color: var(--bs-white);
}
.teamCard figure {
    overflow: hidden;
}
.teamCard figure img {
    width: 100%;
    border-radius: 20px;
    transition: all ease-in 0.2s;
}
.teamCard:hover figure img {
    transform: scale(1.1);
}
.teamCard h6 {
    color: var(--bs-black);
    font-size: 14px !important;
}
.teamCard figcaption p, p.setLimit {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.teamCard figcaption a {
    font-weight: 400;
    color: var(--bs-primary);
    transition: all ease-in 0.2s;
}
.teamCard figcaption a:hover, .teamCard figcaption a:focus {
    color: var(--bs-black);
    font-weight: 600;
}
.clientBaseInfo {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 10px;
    height: auto;
    width: calc(100% - 20px);
    border-radius: 10px;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(14.1000003815px);
    backdrop-filter: blur(14.1000003815px);
    z-index: 1;
    opacity: 1;
    padding: 10px;
}
.radius-20 {
    border-radius: 20px !important;
}
.colNumber {
    max-width: 200px;
    margin: 0 auto 20px;
    font-size: 18px;
    color: var(--bs-white);
    line-height: 1.3;
    height: 100%;
}
.countBlock .col {
    border-right:2px solid var(--bs-white);
}
.countBlock .col:last-child {
    border-right: 0;
}
.colNumber .num {
    font-size: 60px;
    font-weight: 700;
    color: var(--bs-white);
    margin-bottom: 10px;
}
.boxBenefit img {
    width: 60px;
}
.patterm {
    --s: 222px; /* control the size*/
    --c1: #ffffff;
    --c2: #fafafa;
    --c3: #f7f7f7;
    --_g: var(--c1) 10%,var(--c2) 10.5% 19%,#0000 19.5% 80.5%,var(--c2) 81% 89.5%,var(--c3) 90%;
    --_c: from -90deg at 37.5% 50%,#0000 75%;
    --_l1: linear-gradient(145deg,var(--_g));
    --_l2: linear-gradient( 35deg,var(--_g));
    background: 
      var(--_l1), var(--_l1) calc(var(--s)/2) var(--s),
      var(--_l2), var(--_l2) calc(var(--s)/2) var(--s),
      conic-gradient(var(--_c),var(--c1) 0) calc(var(--s)/8) 0,
      conic-gradient(var(--_c),var(--c3) 0) calc(var(--s)/2) 0,
      linear-gradient(90deg,var(--c3) 38%,var(--c1) 0 50%,var(--c3) 0 62%,var(--c1) 0);
    background-size: var(--s) calc(2*var(--s)/3);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.clientPhoto {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
}
.clientPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-block-one {
    max-width: 100%;
    padding-right: 10px;
    margin-top: 10px;
    padding-bottom: 40px;
	height:100%
}
.testimonial-block-one .inner-box {
    position: relative;
    display: block;
    background: #fbfbfb;
    border-radius: 10px;
    padding: 40px 30px 55px 40px;
	height:100%
}
.testimonial-block-one .inner-box:before {
    position: absolute;
    content: "";
    background: #fbfbfb;
    width: 45px;
    height: 45px;
    left: 37px;
    bottom: -45px;
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%, 0 0);
    clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%, 0 0);
}
.testimonial-block-one .inner-box .shape {
    position: absolute;
    left: 10px;
    top: -10px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 0 100%;
    border: 1px solid #e9e6e6;
    border-radius: 20px;
}
.testimonial-block-one .inner-box .icon-box {
    position: absolute;
    top: 42px;
    right: 30px;
}
.testimonial-block-one .inner-box .author-box {
    position: relative;
    display: block;
    padding: 4px 0 5px 70px;
    margin-bottom: 28px;
}
.testimonial-block-one .inner-box .author-box .thumb-box {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    width: 59px;
    height: 59px;
    border-radius: 50%;
}
.testimonial-block-one .inner-box .author-box .thumb-box img {
    width: 100%;
    border-radius: 50%;
}
.testimonial-block-one .inner-box .author-box h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}
.testimonial-block-one .inner-box .author-box .designation {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
}
.form-control {
    padding: 1.3rem 1rem;
    line-height: 1.1;
    border: none;
    background-color: var(--bs-light);
}
.contactBox {
    color: var(--bs-white);
    font-size: 18px;
    font-weight: 600;
    border:2px solid var(--bs-primary)
}
.contactBox i {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 2px solid var(--bs-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: var(--bs-light);
    margin-bottom: 1.2rem;
}
.contactBox a {
    color: var(--bs-white);
}
.contactPageInfo .col:nth-child(2) .contactBox{
    border:2px solid var(--bs-primary);
    color:var(--bs-primary);
    background: none !important;
}
.contactPageInfo .col:nth-child(2) .contactBox a {
    color: var(--bs-primary);
}
.contactPageInfo .col:nth-child(2) .contactBox i {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}
.jobWrapper {
    max-width: 80%;
    margin: 0 auto;
    background-color: var(--bs-light);
    padding: 1rem;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    border-radius: 20px;
}
.jobWrapper .btn-search-mob {
    white-space: nowrap;
    margin-left: 1rem;
    font-size: 16px;
}
.jobHorizontalCard {
    border:1px solid var(--bs-primary)
}
.jobHorizontalCard .jobCardFooter .btn {
    padding: 0.7rem 1rem;
}
.jobHorizontalCard .companyname-location .d-flex {
    margin-top: 6px;
}
.jobHorizontalCard .companyname-location span {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}
.jobHorizontalCard .companyname-location span:last-child {
    border: none;
}
.jobHorizontalCard  p {
    line-height: 1.3;
    color: var(--bs-body);
}
.jobHorizontalCard .jobCardFooter .badge {
    font-size: 14px;
    padding: 0.8rem 1rem;
}
.jobHorizontalCard .jobCardFooter .badge.urgent {
    background-color: var(--bs-light);
    color: var(--bs-body);
}
.jobHorizontalCard .jobCardFooter .badge.fulltime {
    background: #D6EFFF;
    color: var(--bs-primary);
}
.jobFilterBox select.form-control {
    padding: 0.8rem 1.2rem;
}
.jobListWrapper .jobHorizontalCard {
    margin-bottom: 1rem;
    border-radius: 20px;
    padding: 0.5rem;
}
.jobListWrapper .jobHorizontalCard:nth-child(odd) {
    border:none;
    background:#fbfbfb;
}
.jobListWrapper .jobHorizontalCard:nth-child(even) {
    border:none;
    background: var(--bs-light);
}
.jobListWrapper .jobHorizontalCard:last-child {
    margin-bottom: 0;
}
.jobPayment {
    font-size: 18px;
    font-weight: 900;
    small {
        font-weight: 400;
        font-size: 14px;
        color: var(--bs-body);
    }
}
.job-listings-sidebar li {
    margin-top: 0.5rem;
}
.job-listings-sidebar li label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-check-input:checked {
    margin-top: 5px !important;
}
.companyD span {
    font-size: 15px;
}
.page-link:focus {
    box-shadow: none;
}
.page-link:hover {
    color: var(--bs-primary);
}
.active > .page-link, .page-link.active {
    background: var(--bs-primary);
}
.page-item.active .page-link:hover {
    color: var(--bs-white);
}
.serviceWrapper .card {
    height: 100%;
}
.serviceWrapper .card {
    border: none;
    font-weight: 400;
}
/* .serviceWrapper .col:nth-child(odd) .card {
    background: var(--bs-light);
    color: var(--bs-black);
} */
.serviceWrapper .col .card{
    border: 1px solid var(--bs-primary);
    background-color: var(--bs-primary);
    color: var(--bs-light);
}
.serviceWrapper .card .card-body {
    padding: 10px;
}
.missionContent ul.col-2-list li {
    margin:0 0 1rem 0;
    color: var(--bs-black);
}
.missionContent ul.col-2-list li:before {
    top: 4px;
}
.owl-dots {
    display: none;
}
.side-job-info li {
    font-size: 18px;
    color: var(--bs-black);
    margin-bottom: 1rem ;
}
.side-job-info li:last-child {
    margin-bottom: 0;
}
.side-job-info li small {
    font-size: 16px;
    margin-bottom: 2px;
    display: block;
    color: var(--bs-body);
}
.jobDetailWrapper .card {
    margin-bottom: 2rem;
}
.jobDetailWrapper .card:last-child {
    margin-bottom: 0;
}
.jobDetailWrapper .card .card-body h5 {
    color: var(--bs-primary);
}
.jobDetailWrapper .card .card-body h5:before {
    content:"---";
    margin-right: 10px;
}
.jobDetailWrapper .card .card-body p {
    color: var(--bs-body);
}
.jobDetailWrapper .card .card-body p:last-child {
    margin-bottom: 0;
}
.listRequired li {
    color: var(--bs-body);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 30px;
}
.listRequired li:before {
    content:"\f270";
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--bs-primary);
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
}
.btn-outline-dark {
    color: var(--bs-black);
}
.screen-reader-response{
	display: none;
}
span.wpcf7-not-valid-tip {
    color: #dc3232;
}
li {
    list-style-type: none;
}
.main-navbar ul.navbar-nav li.nav-item.current-menu-item a {
    color: var(--bs-primary) !important;
}
.form-check-input {
    border-color: #000000;
}
/* .wpcf7-form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2; 
} */
.invalid .wpcf7-response-output {
	/* border: 2px solid #dc3232; */
	color: #dc3232;
}
.unaccepted .wpcf7-response-output {
	/* border: 2px solid #dc3232; */
	color: #dc3232;
}
.sent .wpcf7-response-output {
	/* border: 2px solid #46b450; */
	color: #46b450;
}
.wpcf7-acceptance .wpcf7-list-item-label{
    margin-left: 4px;
}
@media only screen and (max-width: 1398.98px) {
    body {
        font-size: 18px;
        line-height: 30px;
    }
    .brandLogo {
        font-size: 36px;
    }
    .brandLogo span {
        font-size: 17px;
    }
    .brandLogo span {
        letter-spacing: 2px;
    }
    .main-navbar ul.navbar-nav li.nav-item a {
        font-size: 18px;
        padding-right: 25px;
    }
    .form-control {
        padding: 1.2rem 1.3rem;
    }
    .heroContent .btn.btn-search {
        padding: 1.3rem 2rem;
    }
    .btn {
        padding: 0.8rem 1rem;
        font-size: 16px;
    }
}

@media only screen and (max-width: 1198.98px) {
    .container {
        max-width: 960px;
    }
    .brandLogo {
        font-size: 30px;
    }
    .brandLogo span {
        font-size:14px;
        letter-spacing: 1.8px;
    }
    .main-navbar ul.navbar-nav li.nav-item a {
        padding-right: 16px;
    }
    h2, .head-block h2{
        font-size: 28px;
        line-height: 42px;
    }
    .heroContent {
        padding-bottom: 40px;
    }
    .heroContent h1 {
        font-size: 38px;
    }
    .lead {
        font-size: 1rem;
    }
    .bannerGraphic {
        right: 20px;
        top: 118px;
    }
    .searchJob .bg-white .form-control {
        padding: 0.5rem 1rem;
    }
   
    .customCarousel .btn-search {
        padding:1rem 2rem;
    }
    .aboutPhoto figure {
        max-width: 90%;
    }
    .aboutPhoto figure::after { 
        right: -20px;
    }
    .job-card .companyname-location {
        font-size: 17px;
    }
    .noExp {
        line-height: 20px;
    }
    .contactBox {
        font-size: 16px;
        height: 100%;
    }
}
@media only screen and (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    h3 {
        font-size: 26px;
    }
    .navbar-collapse {
        position: absolute;
        left: 0;
        background:var(--bs-black);
        width: 100%;
        padding:20px;
        border-radius: 20px;
        border:1px solid #111
    }
    .navbar-toggler {
        color:var(--bs-white);
        font-size: 40px;
        padding: 0;
        position: relative;
        top: -10px;
    }
    /* #menu-header-menu {

    } */
    .main-navbar ul.navbar-nav li.nav-item a {
        padding: 0.5rem 0;
        display: block;
        width: 100%;
    }
    .navbar-toggler:focus, .navbar-toggler:visited, .navbar-toggler:active {
        outline: none;
        box-shadow: none;
    }
    
    .mt-custom {
        margin-top: 50px;
    }
    .mb-custom {
        margin-bottom: 50px;
    }
    .btn {
        padding:0.8rem 1rem;
        font-size: 14px;
        letter-spacing: 0;
        border-width: 1px;
    }
    .head-block small {
        font-size: 16px;
    }
    .highlighted-job {
        margin-bottom: 90px;
    }
    .highlighted-job-container {
        padding: 16px;
    }
    .highlighted-job-container .owl-nav {
        bottom: -45px;
    }
    .testimonialWrapper .carousel {
        padding: 1rem;
    }
    .testimonials {
        padding:3rem 0 4rem;
    }
    .card-how-we-diff {
        padding: 2rem 1rem;
    }
    .card-how-we-diff h5 {
        font-size: 20px;
    }
    .connection-people .row {
        margin: 0;
    }
    .connection-people .row .col:nth-child(2) {
        border-right: none;
    }
    .connection-people .row .col:nth-child(1), .connection-people .row .col:nth-child(2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    .colNumber .num {
        font-size: 40px;
    }
    .companyD  {
        max-width: 280px;
    }
    .jobHorizontalCard .jobPayment {
        text-align: right;
        line-height: 1.1;
    }
    .job-listings-sidebar h5 {
        font-size: 18px;
        line-height: 1.2;
    }
    .jobWrapper {
        max-width: 100%;
    }
    .jobWrapper .searchJob .bg-white .form-control {
        height: 100%;
    }
}
@media only screen and (max-width: 767.98px) { 
    h2, .head-block h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .contactBox i {
        margin-bottom: 10px;
    }
    .companyD  {
        max-width:100%;
    }
    .job-listings-sidebar {
        margin-bottom: 1.5rem;
    }
    .heroContent .btn.btn-search {
        padding: 1rem 2rem;
    }
    .brandLogo img {
        max-width: 230px;
    }
}
@media only screen and (max-width: 575.98px) { 
    .brandLogo {
        font-size: 22px;
    }
    .brandLogo span {
        font-size: 12px;
        letter-spacing: 0px;
    }
    .topbar  {
        display: none;
    }
    .homeSlider {
        padding-top: 2rem;
    }
    .heroContent {
        padding-top: 40px;
    }
    .heroContent small {
        font-size: 16px;
    } 
    .heroContent h1 {
        font-size: 32px;
    } 
    .searchJob .bg-white .form-control {
        border: 1px solid #ccc;
        padding: 1rem 1.2rem;
    }
    .searchJob .bg-white .form-control {
        margin-bottom: 16px;
    }
    .searchJob .bg-white .form-control:focus {
        border: 1px solid #ccc;
    }
    .searchJob span.divider {
        display: none;
    }
    .searchJob i.bi-geo-alt {
        display: none;
    }
    .btn-search-mob {
        width: 100%;
        padding: 1rem !important;
        font-size: 16px !important;
        letter-spacing: 1px;
    }
    .searchLink {
        font-size: 16px;
        top: 5px;
    }
    .aboutPhoto figure {
        max-width: 100%;
        padding: 0;
    }
    .aboutPhoto figure::after {
        display: none;
    }
    .aboutPhoto figure::before {
        display: none;
    }
    .aboutPhoto figure img {
        margin: 0;
    }
    .joinuser {
        position: static;
        background-color: var(--bs-primary);
        margin: 6px;
        border-radius: 10px;
        color: var(--bs-white);
    }
    .testimonials .carousel-indicators [data-bs-target] {
        margin: 2px;
        width: 50px;
        height: 50px;
    }
    .connection-people .row .col:nth-child(2) {
        border-left: none;
    }
    .connection-people .row .col:nth-child(3) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    .jobWrapper .btn-search-mob {
        margin-left: 0;
    }
    .jobHorizontalCard .jobPayment {
        text-align: left;
        margin-top: 10px;
    }
}