* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Work Sans', sans-serif;
}

ul,
li,
p {
    margin: 0;
    padding: 0;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #FFFFFF;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 5px;
    height: 2px;
}

*::-webkit-scrollbar-track {
    background: #FFFFFF;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
    border: 0px none #FFFFFF;
}


:root {
    --primary-color: #176DB3;
    --dark-primary-color: #3575E2;
    --secondary-color: #97C722;
    --warning-color: #FABA40;
    --gray-color: #7C7C7C;
    --black-color: #262E27;
    --dark-black-color: #141414;
    --primary-font: 'Philosopher', sans-serif;
    --secondary-font: 'Roboto', sans-serif;
    --raleway-font: 'Raleway', sans-serif;
    --dmsans-font: 'DM Sans', sans-serif;
    --inter-font: 'Inter', sans-serif;
    --title: 55px;
    --heading: 50px;
    --paragraph: 18px;
    --post-paragraph: 16px;
}


.primary-button {
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    border-radius: 12px;
    padding: 10px 20px;
    border: none;
}

.title {
    font-size: var(--title);
    color: var(--primary-color);
    font-family: var(--primary-font);
    text-align: center;
    font-weight: bold;
}
.title span{
    color: var(--primary-color) !important;
}
.sub-title {
    font-size: 40px;
    color: var(--black-color);
    font-family: var(--primary-font);
    font-weight: bold;
    margin-bottom: 10px;
}

.heading {
    font-family: var(--primary-font);
    font-size: var(--heading);
    font-weight: bold;
}




/*--navbar--*/
.navbar .nav-item .nav-link {
    color: var(--primary-color);
    margin-left: 25px;
    font-size: 18px;
    font-weight: 500;
}
.nav.navbar-nav .active a{
	width:100%;
	border-bottom: 2px solid var(--primary-color);
}  

.nav.navbar-nav li:last-child a{
	border-bottom: 2px solid #fff; 
} 

.navbar.jobHeader .nav-item .nav-link {
    color: var(--dark-black-color);
    margin-left: 25px;
    font-size: 18px;
    font-family: var(--dmsans-font);
}

.navbar.jobHeader .login {
    color: var(--dark-black-color);
    border: 1px solid #E8E8E8;
    background-color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
}

.navbar.jobHeader .signup {
    color: #fff;
    border: 1px solid var(--dark-primary-color);
    background-color: var(--dark-primary-color);
    padding: 8px 20px;
    border-radius: 8px;
    margin-left: 10px;
}

.navbar .menu-bar-ic {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 6px;
}


.mobile-nav {
    background-color: #f1f5f9;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 320px;
    z-index: 9;
}

.navMenuBar {
    display: none;
}
.navbar-brand {
    max-width: 152px;
}

.navbar-brand img {
    width: 100%;
}
.mobile-nav .navbar-nav {
    margin-top: 50px;
}

.mobile-nav .navbar-nav .nav-item {
    margin-bottom: 10px;
}

.close {
    color: var(--secondary-color);
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 10px;
}

.screen-overlay {
    transition: opacity 0.5s ease, width 0s;
    opacity: 1;
    width: 100%;
    visibility: visible;
    height: 100%;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(34, 34, 34, 0.6);
    display: none;
}





/*--banner--*/
.banner .right-wrp {
    text-align: right;
    position: relative;
}

.banner .right-wrp::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100px;
    background: url(../images/banner-frame.png);
    background-repeat: no-repeat;
    height: 144px;
    width: 385px;
    background-size: contain;
}

.banner .left-wrp {
    width: 85%;
}

.banner .bnr-main-img {
    height: 600px;
    border-radius: 0 0 300px 300px;
    object-fit: cover;
}

.banner h1 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 65px;
    margin-bottom: 20px;
}

.banner h1 span {
    color: var(--primary-color);
}

.banner p {
    font-family: var(--secondary-font);
    font-size: 30px;
    color: var(--gray-color);
    line-height: normal;
}

.banner .btn-wrp {
    display: flex;
    margin-top: 80px;
}

.banner .btn-wrp .btn {
    width: 250px;
    height: 80px;
    border-radius: 20px;
    font-family: var(--secondary-font);
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .btn-wrp .first-btn {
    background-color: var(--secondary-color);
    margin-right: 20px;
}

.banner .btn-wrp .second-btn {
    background-color: var(--primary-color);
}

.banner .watch-video {
    position: absolute;
    right: -40px;
    bottom: -30px;
    text-align: center;
}

.banner .watch-video a {
    text-decoration: none;
}

.banner .watch-video i {
    font-size: 50px;
    background-image: linear-gradient(var(--secondary-color), var(--primary-color));
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    margin: 0 auto 10px;
    box-shadow: 1px 4px 5px #a0a0a0;
}
.home-video-button .fa-solid{
    font-weight: 900;
    justify-content: center;
    display: flex;
    /* align-items: center; */
}





.home-service-list ul {
	list-style:none;
	margin-right:20px;
}

.home-service-list ul li{
	position:relative;
	margin-bottom:10px;
}
.home-service-list ul li::before {
    content: "\2022";
    color: #176DB3;
    font-weight: bold;
    display: inline-block;
    font-size: 40px;
 	margin-right: -24px;
    position: absolute;
    top: -14px;
}


.our-services {
    padding-top: 80px;
}
.our-services .feature-job-title {
	font-size: var(--title);
    color: #141414;
    font-family: var(--primary-font);
    text-align: right;
    font-weight: bold;
}
.our-services .feature-job-sub-title{
	font-size: 40px;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-weight: bold;
    margin-bottom: 30px;
}



.our-services .title {
    margin-bottom: 110px;
}

.our-services .heading {
    margin: 20px 0;
}

.our-services .sb-title {
    font-family: var(--primary-font);
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.our-services .serv-lft-wrp p {
    font-family: var(--primary-font);
    font-size: var(--paragraph);
    margin-bottom: 15px;
    color: var(--gray-color);
}

.our-services .serv-lft-wrp .btn {
    background-image: linear-gradient(var(--primary-color), #67B6F5);
    margin-top: 20px;
}

/* .our-services .feat-jb-wrp {
    position: relative;
} */

/* .our-services .feat-jb-wrp::before {
    content: '';
    position: absolute;
    background-image: url(../images/lets-chat.png);
    top: -150px;
    right: -60px;
    background-repeat: no-repeat;
    background-size: contain;
    height: 180px;
    width: 400px;
} */

.our-services .featured-job-card {
    background-color: #fff;
    box-shadow: 4px 9px 25px #697faf52;
    border-radius: 6px;
    padding: 20px 25px;
    margin-bottom: 20px;
    width: 100%;
}

.our-services .featured-job-card img {
    width: 100%;
}


.our-services .featured-job-card ul li {
    background-color: #EFEFEF;
    color: var(--gray-color);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    font-size: 12px;
    list-style-type: none;
    margin: 3px 4px;
}

.our-services .featured-job-card .bookmark {
    text-align: right;
    margin-bottom: 15px;
}

.our-services .featured-job-card .bookmark img {
    width: 25px;
}

.our-services .featured-job-card p {
    font-size: 16px;
    font-family: var(--secondary-font);
    line-height: normal;
    color: var(--gray-color);
    margin: 20px 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.our-services .featured-job-card h4 {
    font-size: 20px;
    font-family: var(--secondary-font);
    margin-bottom: 5px;
    font-weight: bold;
}

.our-services .featured-job-card h4 {
    font-size: 20px;
    font-family: var(--secondary-font);
    margin-bottom: 5px;
    font-weight: bold;
}

.our-services .featured-job-card h6 {
    font-size: 14px;
    font-family: var(--secondary-font);
    color: var(--gray-color);
    font-weight: 400;
}

.our-services .featured-job-card {
    position: relative;
    padding-bottom: 80px;
}
.our-services .featured-job-card .apply-btn {
    text-align: left;
    position: absolute;
    left: 20px;
    width: 100%;
    bottom: 20px;
    margin: auto;
}
.our-services .featured-job-card .apply-btn .btn {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: inline-block;
    border-radius: 10px;
    font-size: 20px;
    margin-top: 20px;
    padding: 7px 20px;
}

.eldery-care .latest-blog-img{
    object-fit: cover;
    width: 723px;
    height: 831px;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}


.eldery-care {
    padding: 60px 0;
}

.eldery-care img {
    width: 100%;
    max-width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
}

.eldery-care h3 {
    margin-bottom: 20px;
}

.eldery-care p {
    font-family: var(--primary-font);
    font-size: var(--paragraph);
    margin-bottom: 15px;
    color: var(--gray-color);
}

.eldery-care .btn {
    background-color: var(--secondary-color);
    color: #fff;
    margin-top: 30px;
}

.eldery-care .serv-care-wrp1 {
    padding-right: 50px;
}

.eldery-care .serv-care-wrp2 {
    padding-right: 0px;
}




.our-team .title {
    margin-bottom: 60px;
}


.our-team .owl-carousel img {
/*     border-radius: 200px;
    height: 550px; */
	border-radius: 247px;    
    object-fit: cover;
	border:1px solid #dddddd;
}

.our-team h5 {
    font-family: var(--secondary-font);
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

.our-team h6 {
    font-family: var(--secondary-font);
    font-size: 22px;
    color: var(--gray-color);
    font-weight: 400;
    text-align: center;
}

.our-team .navBtn {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.our-team .navBtn button {
    color: var(--secondary-color);
    background-color: transparent;
    border: none;
}

.our-team .navBtn #prevButton {
    margin-right: 20px;
}
/* our partner------------------------- */
/* .our-partner {
    padding: 100px 0;
}
 */
.our-partner .title {
    margin-bottom: 50px;
}





.testimonial .title {
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial .review-person {
    height: 100px;
    width: 100px !important;
    border-radius: 50%;
    margin: 20px auto -75px;
    object-fit: cover;
}


.testimonial .owl-carousel .owl-stage-outer {
    padding: 200px 15px 85px;
    margin: 0 50px;
}

.testimonial .review-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 1px 1px 15px #697faf47;
    text-align: center;
}

.testimonial .review-card i {
    color: var(--gray-color);
    font-size: 40px;
}

.testimonial .review-card p {
    font-size: 20px;
    color: var(--gray-color);
    font-family: var(--primary-font);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.testimonial .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    background: #D9D9D9;
    border-radius: 50%;
}

.testimonial .owl-theme .owl-dots .owl-dot.active span,
.testimonial .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}

.testimonial .owl-item.active {
    width: 420px !important;
}

.testimonial .owl-item.center {
    width: 230px !important;
    z-index: 9;
}

.testimonial .owl-item.center .item {
    position: absolute;
    width: 500px;
    left: -147px;
    z-index: 99;
}

.testimonial .owl-item.center .review-card {
    margin-top: -140px;
    position: absolute;
    z-index: 9;
}

.testimonial .owl-item.center .review-card i {
    color: var(--primary-color);
}







/* 
.blog {
    padding: 80px 0;
} */

.blog .title {
    margin-bottom: 30px;
}

.blog p {
    color: var(--gray-color);
    font-family: var(--primary-font);
    font-size: 24px;
}

.blog .img-main {
    width: 100%;
}

.blog .img-vid-wrp {
    position: relative;
    margin-top: 150px;
}

.blog .img-blg1 {
    height: 300px;
    width: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.blog .img-blg2 {
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 30px;
    position: absolute;
    top: -50px;
    left: 30%;
}

.blog .left-bx-wrp {
    padding-right: 80px;
}
/* blogs */

/*  blogs*/
.blog-page-pic .blogCardImage {
    width: 100%;
    height: 250px;
    display: flex;
    object-fit: cover;
    object-position: top;
}

.blog-page-pic img {
    display: flex;
    object-fit: cover;
    object-position: center;
}

.blog-page-pic .blog-name {
    padding: 23px;
	width:100%;
/*     min-height: 320px; */
    box-shadow: 0px 3px 15px #7c7c7c33;
    border-bottom: 8px solid var(--primary-color);
}

.blog-page-pic .blog-name  h3 {
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; 
	overflow:hidden;
    font-family: var(--inter-font);
    font-size: 24px;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 15px;
}

.blog-page-pic .blog-name p{
	display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;  
    font-family:var(--primary-font);
    font-size: 14px;/*18px*/
    font-weight: 400;
    color:#7C7C7C;
    margin-bottom: 20px;
}

.blog-page-pic .blog-name  a{
    text-decoration: none;
    color: var(--black-color);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-align: right;
    display: block;
}

/*  ----single blog--- */
/* ---------- single blog page banner*/
	.blog-bnr{
     width: 100%;
    padding: 200px 0;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    background-position: top;
    z-index: 1;
}
.blog-bnr::before{
    content: "";
    background-image: linear-gradient(to right, var(--black-color), #00000000);
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.blog-bnr h1{
    font-family: var(--primary-font);
    font-size: 60px;
    font-weight: 600;
    color: #ffffff;
    width: 55%;
    padding-bottom: 15px;
}

.blog-bnr p{
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #ffffff;
    width: 40%;
}
.single-blog-pg{
	margin-top:40px;
}


/* ------------------------ */




footer {
    background-color: #F1F6FB;
    padding: 50px 0;
}

.ft-logo-wrp img {
    width: 150px !important;
}

footer .logo {
    margin-bottom: 20px;
}

footer p {
    color: var(--gray-color);
    font-family: var(--secondary-font);
}

footer h5 {
    font-family: var(--raleway-font);
    margin-bottom: 40px;
    margin-top: 5px;
    font-weight: 600;
}

footer h4 {
    font-family: var(--secondary-font);
    margin-bottom: 40px;
}

footer .ft-logo-wrp {
    padding-right: 60px;
}

footer .social-media {
    margin-top: 10px;
}

footer .social-media li {
    list-style-type: none;
    display: inline-block;
    margin-right: 20px;
}

footer .social-media li a {
    font-size: 20px;
    color: var(--primary-color);
    text-decoration: none;
}

footer .qc-links li a {
    color: var(--gray-color);
    text-decoration: none;
}

footer .qc-links li {
    list-style-type: none;
    margin-bottom: 15px;
}
footer .subs-wrp{
	direction:rtl;
}

footer .subs-wrp p {
    box-shadow: 2px 1px 25px #697faf40;
    display: flex;
    border-radius: 50px;
}

footer .subs-wrp input {
    background-color: #fff;
    color: #fff;
    border: none;
    height: 80px;
    border-radius: 0px 50px 50px 0px;
    padding: 10px 30px;
    width: 100%;
}
.subs-wrp input[type="submit"] {
    padding: 10px 20px !important;
    font-size: 18px !important;
    /*box-shadow: unset !important;*/
    border-radius: 60px 0px 0px 60px !important;
}


footer .subs-wrp .submit-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    height: 80px;
    padding: 10px 20px;
    border-radius: 0px 50px 50px 0px;
    width: auto;
}
footer .subs-wrp .wpcf7-spinner {
    display: none;
}

footer h6 {
    font-family: var(--raleway-font);
    color: var(--gray-color);
    text-align: center;
    font-size: 12px;    
}





/*START Job Offer Platform Page*/
.job-offer-bnr {
    background: url(../images/job-offer-platform-bnr.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 200px 0;
    text-align: center;
    width: 100%;
    position: relative;
}

.job-offer-bnr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100px;
    background: url(../images/bnr-shp1.png);
    height: 225px;
    width: 200px;
    background-repeat: no-repeat;
}

.job-offer-bnr::after {
    content: '';
    position: absolute;
    right: 0;
    top: 100px;
    background: url(../images/bnr-shp2.png);
    height: 220px;
    width: 135px;
    background-repeat: no-repeat;
}

.job-offer-bnr h1 {
    font-family: var(--primary-font);
    font-weight: bold;
}

.job-offer-bnr h1 span {
    color: var(--dark-primary-color);
}
#popmake-3507 {
    text-align-last: right;
}


/*--START Apply For Job--*/
.apply-for-job-bnr {
    background-image: url(../images/Vector-background.png);
    width: 100%;
    padding: 200px 0 300px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    
}


.apply-for-job-bnr::before {
    content: "";
    background-image: url(../images/left-round.png);
    width: 267px;
    height: 295px;
    background-size: 225px;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 0;
    bottom: 160px;
}

.apply-for-job-bnr::after {
    content: "";
    background-image: url(../images/right-round.png);
    width: 129px;
    height: 363px;
    background-size: 130px;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    right: 0;
    bottom: 142px;
}

.apply-for-job-bnr h1 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 60px;
    color: var(--black-color);
}

.apply-for-job-bnr h1 span {
    color: var(--secondary-color);
}

.apply-for-job-bnr::before {
    content: "";
    background-image: url(../images/left-round.png);
    width: 267px;
    height: 295px;
    background-size: 225px;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 0;
    bottom: 160px;
}
.apply-for-job-bnr::after {
    content: "";
    background-image: url(../images/right-round.png);
    width: 129px;
    height: 363px;
    background-size: 130px;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    right: 0;
    bottom: 142px;
}
/* .apply-for-job-bnr .title {
    padding-top: 200px;
} */
.apply-for-job-bnr h1 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 60px;
    color: var(--black-color);
}
.apply-for-job-bnr h1 span {
    color: var(--secondary-color);
}



/*--START Login Page--*/
.login,
.image {
    min-height: 100vh;
}

.bg-image {
    background-image: url('../images/login-bg.png');
    background-size: cover;
    background-position: center center;
}
/* blog section */
.single-blog-pg .post-categories{
    list-style-type: none;
}
.latest-blog-list {
    width: 100%;
    position: relative;
    padding-bottom: 30px;
    padding-top: 30px;
}

.latest-blog-list .blogWrp {
    margin-bottom: 20px;
}

.latest-blog-list .blogimg img {
    width: 100%;
    object-fit: cover;
}
.latest-blog-list.blogimg {
    position: relative;
}
.latest-blog-list h5 {
    font-size: 14px;
    font-weight: 500;
    color: #7C7C7C;
}
.latest-blog-list h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.latest-blog-list .title {
    text-decoration: none;
}
.latest-blog-list p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7C7C7C;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}
.latest-blogs .card  .read-more  {
    color: black;
    text-decoration: none;
}
.related-blog .readmore {
    color: var(--black-color);
}
.latest-blog-list.newspic {
    width: 100%;
    margin-bottom: 20px;
    object-fit: cover;
}
.latest-blog-list .tipspic {
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
    height: 200px;
    border-radius: 10px;
}
.latest-blog-list.trends {
    padding: 20px;
    position: absolute;
    bottom: 0px;
    background-image: linear-gradient(#0000000f, #000000);
    border-radius: 0 0 10px 10px;
}
.latest-blog-list .btn {
    background-color: var(--primary-color);
    border: none;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 6px;
    display: inline-block;
   margin-top: 30px;
}


.latest-blogs .related-blog{
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.post-categories a{
    text-decoration: none !important;
    color: var(--gray-color);
    font-size: 16px;
}

.latest-blog-list .post-categories li{
    list-style-type: none;
}

.single-blog-pg .wp-block-image img{
	margin:2.0rem 0;
}
.single-blog-pg .wp-block-video video {
	margin:2.0rem 0;
}


.single-blog-pg h1 {
    font-family: 'Philosopher', sans-serif;;
    font-size: 40px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 50px;
}
.single-blog-pg .bnr-img{
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    margin: 15px 0;
}
.single-blog-pg .img-fluid{
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    display: block;
    margin: 15px auto;
}
.single-blog-pg p{
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color:#7C7C7C;
}
.single-blog-pg h3 {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 20px 0;
}
.single-blog-pg h4 {
    font-size: 25px;
    font-weight: 500;
    color:#000000;
    margin: 20px 0;
}
.single-blog-pg h4 a {
    color: var(--secondary-color);
    text-decoration: none;
    background-color: #000000cf;
    padding: 5px 12px;
    display: inline-block;
    margin: 5px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 400;
}
.latest-blogs {
       margin-bottom: 50px;
}

.latest-blogs .mb-4 {
    margin-top: 75px;
    border-top: 1px solid var(--primary-color);
    padding-top: 30px;
}

.latest-blogs .blogWrp .card img{
    height: 400px;
    object-fit: cover;
}

.pagination {
    justify-content: center;   
}

.pagination .page-numbers.current {
    z-index: 3;
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
	padding: 6px 15px;
}

.pagination .page-numbers {
    color: var(--secondary-color);
    padding: 6px 15px;
    text-decoration: none;
}

.pagination .page-numbers:hover {
    color: var(--secondary-color);
}


/*-job-*/
.job-offer .name {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 2px 10px #7c7c7c40;
    margin-bottom: 30px;
}

.job-offer .name .linear{
    display: flex;
    justify-content: space-between;
}

.job-offer .name .linear .fa-heart{
    color: #FF0000;
    margin-right: 15px;
}

.job-offer .name h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--black-color);
}

.job-offer .name img {
    width: 100%;
}

.job-offer .name h2 a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: var(--black-color);
    text-decoration: none;
}

.job-offer .name h2 span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #7D5AE2;
    background-color: #7d5ae21a;
    padding: 5px;
    border-radius: 4px;
    margin-left: 12px;
}

.job-offer .name .add {
    display: flex;
    justify-content: flex-start;
    margin-top: 15px;
}

.job-offer .name .add p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #7C7C7C;
    margin-right: 60px;
}

.job-offer .name .add i {
    margin-left: 8px;
}

.job-offer .name .add {
    display: flex;
    justify-content: flex-start;
}

.job-offer .name .mollit {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #7C7C7C;
    margin-top: 15px;
}

.job-offer #filter-section {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0px 2px 10px #7c7c7c40;
}

.job-offer #filter-section .bg-info {
    background-color: white !important;
}

.job-offer .form-control {
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #212529;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 3px 20px #7c7c7c40;
}

.job-offer .categoryDrpDwn  {
    position: relative;
}

.job-offer .categoryDrpDwn::before  {
    font-family: "Font Awesome 5 Free";
    content: "\f3c5";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;

}

.job-offer .btn-primary  {
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
}

.job-offer #filter-section {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0px 2px 10px #7c7c7c40;
}

.job-offer #filter-section .bg-info {
    background-color: white !important;
}

.job-offer .form-control {
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #212529;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 3px 20px #7c7c7c40;
}

.job-offer .categoryDrpDwn  {
    position: relative;
}

.job-offer .categoryDrpDwn::before  {
    font-family: "Font Awesome 5 Free";
    content: "\f3c5";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;

}

.job-offer .btn-primary  {
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
}

.job-offer #filter-section .filter_heading{
    display: inline-block !important;
    margin-bottom: 8px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    padding-left:0 !important;
    color: #141414 !important;
}

.job-offer #filter-section .location label{
    display: inline-block;
    padding-right: 10px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #393F47;
}

.job-offer #filter-section .category label{
    display: inline-block;
    padding-right: 10px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #393F47;
}

.job-offer #filter-section .job_type  label{
    display: inline-block;
    padding-right: 10px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #393F47;
}

.job-offer #filter-section .apply_filter_btn {
    background-color: var(--dark-primary-color);
    padding: 8px 25px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    border: none;
    border-radius: 6px;
}




/* home Blog */
.home-blog .title{
	margin-bottom:30px;
}
.home-blog .viewed-post{
	margin-top:30px;
}

/* .home-blog .left-bx-wrp {   
    margin-left: 88px;
} */

.home-blog p {
    color: var(--gray-color);
    font-family: var(--primary-font);
    font-size: 24px;
}
.home-blog .row{
    align-items: center;
}

.home-blog .img-main {
    width: 666px;
    height: 831px;
    object-fit: cover;
}

.home-blog .img-vid-wrp {
    text-align: right;
    position: relative;
    margin-top: 150px;

}

.home-blog .img-blg1 {
   height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    right: 211px;
    top: -115px;
}

.home-blog .img-blg2 {
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 30px;
    position: absolute;
    /* top: -102px; */
    right: 0px;
}






/* ================ */

.blog .row{
align-items: center;

}
.blog .title {
    text-align: right;
    margin-bottom: 30px;
    color: #262E27;
}

.blog p {
    color: var(--gray-color);
    font-family: var(--primary-font);
    font-size: 24px;
}
.blog .viewed-post {
    margin-top: 30px;
}

.blog .img-main {
    width: 666px;
    height: 831px;
    border-radius: 48px;
    object-fit: cover;
}
.blog .left-bx-wrp {
    /* padding-right: 80px; */
    margin-right: 88px;
}
.blog .img-blg2 {
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 30px;
    position: absolute;
    top: -102px;
    right: 17%;
}
.blog .img-blg1 {
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 10px;
}





.isNotEditePage .jobDetailsContent .job-description ul li {    
    position: relative;
    list-style-type: none;
}

.isNotEditePage .jobDetailsContent .job-description ul li:before {   
    right: 0;
    position: absolute;
}

.sjb-page .list-data .header-margin-top {
    margin-top: 16px;
    margin-right: 20px;
}

.jobDetailsContent .job-type:before {
    right: -30px !important;    
}

.isNotEditePage .jobDetailsContent .job-description ul li {    
    padding-right: 30px;
}






.our-team {
    direction: ltr;
}

.our-partner {    
    direction: ltr;
}
.testimonial {
    direction: ltr;
}
.blog-page-pic {
    direction: ltr;
}
.testimonial .review-card i {
    transform: scaleX(-1);
}

/* ------------------blog listing */
.latest-blog-list h4 {
    text-align: right;
}

.latest-blog-list i{
    transform: scaleX(-1);
}

.latest-blog-list .read-more {
    color: #000000;
    text-decoration: none;
}




/*  Job Listings Style   */

.jobListingContent {
    text-align: center;
    color: var(--black-color);
}
.job-offer .form-control {
    box-shadow: unset;
}

.searchFiled,.categoryFiled,.jobTypeFiled,.locationFiled {
    box-shadow: 2px 3px 8px rgba(130, 146, 162, 0.65);
    overflow: hidden;
    position: relative;
    padding-right: 20px;
}
.searchButton .btn{
    border-radius: 0 !important;
    background-color: var(--primary-color) !important;
    border: unset !important;
}
.searchButton {
    box-shadow: 2px 3px 8px rgba(130, 146, 162, 0.65);
    overflow: hidden;
    position: relative;
    border-radius: 5px 0 0 5px !important;
}
.searchFiled {
    border-radius: 0 5px 5px 0 !important;
}

.searchFiled:before,
.categoryFiled:before,
.jobTypeFiled:before,
.locationFiled:before {
    content: "\f007";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    width: 10px;
    height: 10px;
    right: 15px;
    top: calc(30% - 0px);
    color: var(--secondary-color);
}
.searchFiled:before {
    content: "\f002";
}
.categoryFiled:before {
    content: "\f03a";
}
.jobTypeFiled:before {
    content: "\f0b1";
}
.locationFiled:before {
    content: "\f3c5";
}
.categoryFiled:after,
.jobTypeFiled:after,
.locationFiled:after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    width: 10px;
    height: 10px;
    left: 20px;
    top: calc(30% - 0px);
    color: var(--gray-color);
}





/*===============*/

/* Add styles for the video lightbox and overlay */
.video-lightbox {
    position: relative;
    display: inline-block;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    z-index: 9999;
}

/* Style the close button */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
}

/* Add styles for the thumbnail */
.lightbox-trigger img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
}
#fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
  }
  
  #light {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 600px;
    max-height: 360px;
    margin-left: -300px;
    margin-top: -180px;
    border: 2px solid #FFF;
    background: #FFF;
    z-index: 1002;
    overflow: visible;
  }
  
  #boxclose {
    float: right;
    cursor: pointer;
    color: #fff;
    border: 1px solid #AEAEAE;
    border-radius: 3px;
    background: #222222;
    font-size: 31px;
    font-weight: bold;
    display: inline-block;
    line-height: 0px;
    padding: 11px 3px;
    position: absolute;
    right: 2px;
    top: 2px;
    z-index: 1002;
    opacity: 0.9;
  }
  
  .boxclose:before {
    content: "x";
  }
  
  #fade:hover ~ #boxclose {
    display:none;
  }
  
  .test:hover ~ .test2 {
    display: none;
  }
	
	.contact-form-submit {
		margin-bottom: 30px;
		margin-top: 30px;
		text-align: center;
	}
	.contact-form .contact-form-submit .wpcf7-form-control.tab-btn1{
	padding: 15px 30px 15px 30px !important;
	}






@media only screen and (max-width: 1400px) {
    :root {
        --title: 45px;
        --heading: 40px;
    }

    .banner h1 {
        font-size: 50px;
    }

    .banner p {
        font-size: 24px;
    }

    .banner .btn-wrp .btn {
        width: auto;
        height: auto;
        border-radius: 12px;
        font-size: 22px;
        padding: 10px 25px;
    }

    .banner .watch-video {
        right: 0;
    }

    .our-services .sb-title {
        font-size: 30px;
    }

    .our-team .owl-carousel img {
        border-radius: 172px;
        height: 450px;
    }

    .our-team h5 {
        font-size: 30px;
    }

    .our-team h6 {
        font-size: 18px;
    }

    .testimonial .owl-item.center {
        width: auto !important;
        z-index: 9;
    }

    .testimonial .owl-item.center .item {
        position: revert;
    }

    .testimonial .owl-item.center .review-card {
        margin-top: 0;
        position: revert;
    }

    .testimonial .owl-carousel .owl-stage-outer {
        padding: 20px 0 80px 0;
        margin: 0;
    }
}

@media only screen and (max-width: 1200px) {
    .banner h1 {
        font-size: 40px;
    }

    .banner p {
        font-size: 20px;
    }

    .banner .right-wrp::before {
        left: -100px;
        top: 45px;
        width: 280px;
    }

    .banner .watch-video i {
        font-size: 35px;
        height: 80px;
        width: 80px;
    }

    .banner .watch-video {
        right: 15px;
        bottom: -20px;
    }

    .our-services .feat-jb-wrp {
        margin-top: 40px;
    }

    .our-services .title {
        margin-bottom: 30px;
    }

    .our-services .feat-jb-wrp::before {
        top: -55px;
        right: 0;
        background-repeat: no-repeat;
        background-size: contain;
        height: 135px;
        width: 300px;
    }

    .our-services .featured-job-card .apply-btn .btn {
        border-radius: 8px;
        font-size: 16px;
        padding: 5px 15px;
    }

    .our-team .owl-carousel img {
        height: 380px;
    }

    .testimonial .owl-carousel .owl-stage-outer {
        height: 370px;
    }

    .blog p {
        font-size: 20px;
    }

    .blog .left-bx-wrp {
        padding-right: 30px;
    }

    .blog .img-blg1 {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .blog .img-blg2 {
        width: 100%;
        border-radius: 10px;
        position: initial;
    }

    .blog .img-vid-wrp {
        position: relative;
        margin-top: 40px;
    }

    .blog .img-main {
        width: 100%;
        margin-top: 50px;
    }

    .blog .left-bx-wrp {
        padding-right: 0;
    }

    footer .subs-wrp {
        box-shadow: none;
        display: block;
    }

    footer .subs-wrp input {
        height: 60px;
        margin-bottom: 20px;
        box-shadow: 2px 1px 25px #697faf40;       
    }

    footer .subs-wrp .submit-btn {
        height: 60px;
        border-radius: 50px;
        width: 100%;
        box-shadow: 2px 1px 25px #697faf40;
    }
	
	footer .subs-wrp p {
		box-shadow: none;
		display: flex;
		border-radius: 0px;
	}

}


@media only screen and (max-width: 992px) {
    :root {
        --title: 40px;
        --heading: 30px;
    }
	
	.navMenuBar {
        display: block;
		font-size:28px
    }
	.navbar .nav-item .nav-link{
    	margin-right: 25px;
	}
	.nav.navbar-nav .active a{
		width:60%;
	}
    .banner .left-wrp {
        width: 100%;
    }

    .banner .btn-wrp {
        margin-top: 30px;
    }

    .banner .right-wrp {
        width: 70%;
        margin: 30px auto;
    }

    .our-services .featured-job-card img {
        width: 80px;
    }

    .our-services .sb-title {
        font-size: 25px;
        text-align: left;
    }

    .eldery-care img {
        margin-bottom: 30px;
    }

    .eldery-care .serv-care-wrp1 {
        padding-right: 0px;       
    }

    .eldery-care .serv-care-wrp2 {
        padding-right: 0px;
    }

    .eldery-care .btn {
        margin-top: 15px;
    }

    .our-team h5 {
        font-size: 20px;
    }

    .our-team h6 {
        font-size: 16px;
    }

    .our-team .navBtn {
        margin-top: 20px;
    }

	 .our-partner .title {
		margin-bottom: 0px;
	}

    .testimonial .owl-item.active {
        width: 500px !important;
    }

    .testimonial .owl-item.center {
        width: 500px !important;
    }

    .testimonial .owl-item.center .item {
        width: 500px;
    }

    footer h5 {
        margin-bottom: 30px;
        margin-top: 40px;
    }

    footer h4 {
		direction:rtl;
        margin-bottom: 30px;
        margin-top: 40px;
    }
	
	.video-open {
		width: 48%;
	}
	
	.home-blog .img-vid-wrp {
		text-align: right;
		position: relative;		
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 25px 0;
	}
	
	.home-blog .img-blg2 {
		height: 300px;
		width: 48%;
		object-fit: cover;
		border-radius: 30px;
		position: inherit;		
	}
	
	.home-blog .img-blg1 {
		height: 300px;
		width: 100%;
		object-fit: cover;
		border-radius: 30px;
		position: inherit;
		left: 0px;
    	top: 0px;
	}
	.home-blog .img-main {
		width: 100%;
		height: 350px;
		object-fit: cover;
	}
	
	section.blog {
		padding: 0px !important;
	}
	
	.blog .left-bx-wrp {
		margin: 20px 0 !important;
	}
	
	.blog .img-vid-wrp {
		text-align: right;
		position: relative;   
		display: flex;
		justify-content: space-between;
	}
	
	.blog .img-blg2 {
		height: 300px;
		width: 90%;
		object-fit: cover;
		border-radius: 30px;
		position: initial;		
	}
	
	.blog .img-blg1 {
		height: 300px;
		width: 48%;
		object-fit: cover;
		border-radius: 30px;
	}
	 .apply-for-job-bnr {       
        padding: 140px;        
    }
	
	.apply-for-job-bnr h1 {		
		font-size: 50px;		
	}
	.w-50 {
		width: 100%!important;
	}
	
	.jobDetailsContent {		
		margin: 0px;
	}


    .apply-for-job-bnr::before { 
        width: 170px;      
        height: 165px;
        background-size: 150px;       
        bottom: 97px;
    }

    .apply-for-job-bnr::after {        
        width: 95px;
        height: 264px;
        background-size: 95px;        
        bottom: 94px;
    } 
		
	
}




@media only screen and (max-width: 768px) {
    :root {
        --title: 30px;
        --heading: 25px;
    }
	
	.navbar .navbar-brand img {
    	width: 100px;
	}

    .banner .right-wrp::before {
        left: 0px;
        top: -65px;
    }

    .banner .btn-wrp .btn {
        font-size: 18px;
    }

    .banner h1 {
        font-size: 35px;
    }

    .banner p {
        font-size: 18px;
    }

    .banner .right-wrp {
        width: 80%;
        margin: 75px auto 30px auto;
    }
	
	.our-services .feature-job-title {
    	font-size: 26px;
	}
	
	.our-services .feature-job-sub-title {
    	font-size: 18px;
	}

    .our-services .title {
        margin-bottom: 15px;
    }

    .our-services .feat-jb-wrp {
        padding-top: 0px;
    }
	
	.our-services {
		padding-top: 0px;
	}
	
	.our-services .featured-job-card p {		
		margin: 10px 0 15px;		
	}

    .testimonial .owl-item.center {
        margin: 0 10px;
    }
	.apply-for-job-bnr {
		padding: 100px;
	}
	
	.apply-for-job-bnr::after {
		width: 76px;
		height: 211px;
		background-size: 78px;
		bottom: 55px;
	}
	
	.apply-for-job-bnr::before {
		width: 122px;
		height: 127px;
		background-size: 115px;
		bottom: 63px;
	}
	
	.review-card {
		margin-left: 28px;
	}

    footer .ft-logo-wrp {
        padding-right: 0;
    }
	
	
	
	.job-offer .name .job-logo {
		width: 15% !important;
		margin-bottom: 15px;
	}
	
	.job-offer .name .bookmark-image {
		width: 100% !important;		
	}
	
	.job-offer .name .add {
		display: block;		
	}
	
	.job-offer .name .add p {		
		margin-right: 0px;
	}
	
	 .jobDetailsContent .job-location:before, .jobDetailsContent .job-type:before, .jobDetailsContent .job-salary:before {
		content: none !important;
		
	}
/* 	.blog-page-pic .row .col-md-3:not(:first-child) {
        display: none;
    } */
	
	.latest-blogs .row .col-12:not(:first-child) {
        display: none;
    }
	
}



@media only screen and (max-width: 556px) {

    :root {
        --paragraph: 16px;
    }

    .banner {
        margin-top: 30px;
    }

    .banner .bnr-main-img {
        height: 500px;
        width: 100%;
    }

    .banner .btn-wrp .btn {
        font-size: 16px;
    }

    .banner .right-wrp {
        width: 100%;
    }

    .our-services .feat-jb-wrp::before {
        top: -25px;
        height: 100px;
        width: 220px;
    }

    .our-services .featured-job-card img {
        width: 100%;
    }

    .eldery-care img {
        height: 380px;
    }

    .our-team .title {
        margin-bottom: 30px;
    }

    .our-team .owl-carousel img {
        height: 260px;
    }

     .our-partner .title {
        margin-bottom: 0px;
    }

    .testimonial .title {
        margin-bottom: 20px;
		color: var(--primary-color);
    }

    .testimonial .owl-item.center .item {
        width: 335px;
        margin: 0 auto;
    }

    .testimonial .owl-item.center {
        width: 340px !important;
    }

    .testimonial .review-card p {
        font-size: 16px;
    }

    .testimonial .review-card {
        padding: 30px 15px;
    }
	.home-blog .viewed-post{
		margin-top:0px
}
	.home-blog .btn{
		margin-bottom:20px;
	}
    .blog p {
        font-size: 16px;
    }

    .blog .img-blg1 {
		height: 160px;
		border-radius: 20px;
	}

    .blog .img-blg2 {
		height: 160px;
		border-radius: 20px;
	}
	.blog-bnr {
		height:311px;
	}
	
	
	
	.blog-bnr h1 {    
		font-size: 28px;    
		width: 78%;
		padding-bottom: 0px;
	}
	
	.blog-bnr {   
		padding: 160px 0;    
	}
	.single-blog-pg{
		margin-top:10px
	}
	.single-blog-pg .wp-block-video video{
		margin: 1rem 0;
	}
	.single-blog-pg .wp-block-image img{
		margin: 1rem 0;
	} 
	
	.single-blog-pg h3 {   
		font-size: 26px;
		font-weight: 500;
	}
	
	.latest-blogs .mb-4 {
		margin-top: 30px;		
		padding-top: 20px;
	}
	
/* 	.wp-block-video video {   
		margin-top: 20px;
	}
	
	.wp-block-image {
		margin-top: 20px;
	} */
	
	.ft-logo-wrp img {
		width: 110px !important;
	}
	
	.home-blog .img-blg2 {
		height: 160px;    
		border-radius: 20px;   
	}	
	
	.home-blog .img-blg1 {
		height: 160px;   
		border-radius: 20px;    
	}
	
	.home-blog p {    
		font-size: 15px;
	}
	
	.home-blog .left-bx-wrp {   
		margin-right: 0px;
	} 

	.home-blog .img-blg2 {
		height: 160px;    
		border-radius: 20px;   
	}	
	
	.home-blog .img-blg1 {
		height: 160px;   
		border-radius: 20px;    
	}
	
	section.eldery-care {
		padding-top: 0;
	}
	
	.eldery-care .latest-blog-img {   
		width: 100%;
		height: 100%;   
		border-radius: 10px;    
	}
	
	.eldery-care {
		padding: 0px;
	}
	
	.blog .img-main {
		height: 500px;		
		margin-top: 0px;
		border-radius: 20px;
	}
	
	.eldery-care img {
		margin-bottom: 15px;
	}
	
	.apply-for-job-bnr h1 {
		font-size: 28px;
	}
	
	.apply-for-job-bnr {
		padding: 70px;
	}
	
	.apply-for-job-bnr::before {
		content: none;		
	}
	
	.apply-for-job-bnr::after {
		content: none;		
	}
	
	.sjb-page h1, .sjb-page h2, .sjb-page h3 {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.searchFiled,.categoryFiled,.jobTypeFiled,.locationFiled{
		 box-shadow: 2px -3px 8px rgba(130, 146, 162, 0.65) !important;
		margin-bottom: 15px;
	}
	
	.job-offer .name .mollit {	
		font-size: 15px;		
	}
	
	.pagination {		
		margin-bottom: 0px;
	}
	
	.pb-4.px-3.d-flex.align-items-center.justify-content-between{
		flex-direction:column;
		margin-top:10px;
	}
	.contact-form .contact-form-submit .wpcf7-form-control.tab-btn1{
	padding: 15px 20px 15px 20px !important;
		font-size:20px !important;
	}
	
   .popmake-3749 {
        width: 80%; /* Adjust as needed */
        margin: 0 auto; /* Center the popup */
    }
	.latestpost-button{
		display:flex;
		justify-content:center;
	}
	.viewed-post-button{
		display:flex;
		justify-content:center;
		margin-bottom:20px;
	}
	
	
}


.pum-content p.contact-popup {
    display: flex;
    justify-content: center;
}

button.pum-close.popmake-close {
    display: flex;
    justify-content: center;
}

.blog .blogCardImage{
	width: 100%;
    height: 250px;
    display: flex;
    object-fit: cover;
    object-position: top;
}
.blog .blog-name{
	padding: 23px;
    width: 100%;
    /* min-height: 320px; */
    box-shadow: 0px 3px 15px #7c7c7c33;
    border-bottom: 8px solid var(--primary-color);
}

.blog .blog-name a{
	text-decoration: none;
    color: var(--black-color);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-align: right;
	direction:ltr;
}
.blog .blog-name p {
    font-family: var(--primary-font);
    font-size: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    color: #7C7C7C;
    margin-bottom: 20px;
}

.modal-body h2{
    display: flex;
    font-size: 25px;
    color: #97C722;
    /* border-bottom: 1px solid #97C722; */
    justify-content: center;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary.tab-btn1 {
    padding: 10px 31px 10px 30px;
    font-size: 22px;
    font-weight: 500;
    border-radius: 8px;
}
.contact-form-submit p {
    display: flex;
    justify-content: center;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary.tab-btn1 {
    padding: 10px 31px 10px 30px;
    font-size: 22px;
    font-weight: 500;
    border-radius: 8px;
}
.container.mt-3 .btn-primary{
    padding: 10px 31px 10px 30px !important;
    font-size: 22px;
    font-weight: 500;
    border-radius: 8px;
}


span.wpcf7-spinner {
    display: none;
}

.home-blog .btn {
    background-color:#176DB3;
    color: #fff;
    margin-top: 30px;
}

.container.mt-3 h2{
    display: flex;
    font-size: 25px;
    color: #97C722;
    /* border-bottom: 1px solid #97C722; */
    justify-content: center;
}

/* .container.mt-3 p {
    display: flex;
    justify-content: center;
}
 */

 .blog-page-pic .blog-name a {
    text-decoration: none;
    color: var(--black-color);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
/*     text-align: right; */
	 direction:ltr;
} 
.blogCardImage a {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogCardImage img{
    object-fit: cover;
}
.blog .blog-name  h3 {
   display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    
}

.wpcf7-form .mailchimp-ext-0.5.69 .form-label{
	text-align:right !important;
}
.wpcf7-form.init {
	direction:rtl !important;
   
}
.wpcf7-form.init {
	text-align:right !important;
   
}
.wpcf7 input[type="text"] {
    direction: rtl !important;
}
.wpcf7 input[type="textarea"] {
    direction: rtl !important;
}
.wpcf7 input[type="tel"] {
    direction: rtl !important;
}
.wpcf7 input[type="email"] {
    direction: rtl !important;
}
.container .mb-3 p{
	text-align:right !important;
	
}
.wpcf7 input[type="file"] {
    direction: rtl !important;
	text-align:right !important;
}
.wpcf7-form-control .wpcf7-textarea .form-control{
	text-align:right !important;
}
textarea.wpcf7-form-control.wpcf7-textarea.form-control {
    text-align: right ;
}
.customFileInput::-webkit-file-upload-button {
  visibility: hidden;
}

.customFileInput::before {
  content: 'your wording';
}
.blog-page-pic #load-more-btn {
    height: 55px;
    margin: 20px;
    padding-top: 6px;
}