.custom-breadcrumbs {color: #b71c1c; }
.breadcrumb-home-icon {
    width: 16px; /* Size of the home icon */
    height: 16px;
    margin-right: 5px; /* Spacing after the home icon */
}

.breadcrumb-separator-icon {
    height: 10px;
    margin: 0 10px; /* Spacing around the separator icon */
}

.menu-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    display: inline-block;
}
.job-cards-container {
    
    display: flex; /* Flexbox ensures items are in a single row */
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-behavior: smooth; /* Smooth scrolling for better UX */
    gap: 30px; /* Space between cards */
    padding: 5px; /* Padding around the container */
    white-space: nowrap; /* Prevent wrapping of items */
	    /* Hide scrollbar for all browsers */
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}


.job-card {
    flex: 0 0 calc(25% - 20px);
    /* Slight adjustment to factor in gap */
    /* Instead of max-width */
    height: 430px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    position: relative;
}

.new-label {
    border: 2px solid #D80027;
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-label-2 {
    display: flex;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #D80027;
    background: #D80027;
    color: #ffffff;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
}

.job-card:hover {
    transform: translateY(-5px); /* Optional: hover effect */
}


.employment-type {
    padding: 0px 5px 0px 5px;
	width: auto;
	height: 20px;
	font-weight: 700;
  background-color: #323434;
	font-size: 12px;
	align-content: center;
	text-align: center;
}

.employment-type a {
	color: white;
}

.employment-type a:hover {
	color: #AD3630;
}

a.job-title{
	font-size: 16px;
	font-weight: 700;
	color: #323434 !important;
}



.job-image {
	  padding: 10px 10px 0px 10px;
    width: 100%;
    height: 175px !important; /* Adjust based on your needs */
}

.job-details {
    padding: 0px 10px 0px 10px;
}

.job-header{
    align-items: baseline;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    height: 20px;
    color: #AD3630;
    font-size: 12px;
    font-weight: 700;
}

.job-meta {
	margin-top: 0px;
	font-size: 13px;
	padding: 15px 0px 35px 0px ;
}

.job-meta a, strong {
    color: #323434; /* Specify the color you want for the links */
		line-height: 25px;
		letter-spacing: 1px;
}


.job-meta-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.meta-icon {
    width: 16px; /* Adjust icon size */
    height: 16px;
    object-fit: contain; /* Ensure icons are properly contained */
}
.button-container {
    display: flex;
    justify-content: flex-end; /* Aligns items to the right */
}

.arrow-button {
    width: 40px;  /* Square dimensions */
    height: 40px;
    background-color: #AD3630; /* Dark red background */
   color: white; /* Sets the icon color */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; /* Gives a pointer cursor on hover */
    border-radius: 6px; /* Slightly rounded corners */
}

.arrow-button:hover {
    background-color: #b71c1c; /* Slightly darker on hover */
}

.arrow-button svg {
    fill: white; /* Ensure SVG icon is white */
}
.navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.nav-line {
    flex-grow: 1;
    height: 1px;
    background-color: #ccc;
}

.nav-button {
    background-color: #ffffff;
    border: 1px solid #ccc;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
}

.nav-button:hover {
    background-color: #ddd;
    color: #333;
}
/* Medium screens (tablets): Show 2 columns */
@media (max-width: 768px) {


    .job-card {
        flex: 0 0 calc(50% - 20px); /* Each card takes 50% of the container width */
        max-width: calc(50% - 20px); /* Prevent cards from exceeding this width */
        height: auto;
    }

}

/* Small screens (mobile phones): Show 1 column */
@media (max-width: 480px) {

    .job-card {
        flex: 0 0 calc(100% - 20px); /* Each card takes 100% of the container width */
        max-width: calc(100% - 20px); /* Prevent cards from exceeding this width */
        height: auto;
    }

    .job-image {
        padding: 10px 10px 0px 10px;
    width: 100%;
    aspect-ratio: 16 / 9; /* Automatically maintains a 16:9 ratio */
    object-fit: cover; /* Ensures the image fits nicely within the container */
    }

    .job-meta {
        padding: 15px 0px 0px 0px;
    }

} 


/*Job Single Page*/
p, h1, h2, h3, button{
	font-family: montserrat;
}

ul.elementor-inline-items.elementor-icon-list-items.elementor-post-info{
	height: 26px;
}

.job-card-container{
	column-gap: 10px;
	display: flex;
	flex-direction:column;
}

.job-details-container {
    display: flex;
    flex-direction: column;
}

.job-details-item {
    display: grid;
    grid-template-columns: 150px 1fr;  /* Fixed width for labels, flexible width for content */
    align-items: start; /* Aligns content at the top */
    gap: 10px;  /* Adds spacing between label and content */
    padding: 8px 0;  /* Vertical spacing */
    border-bottom: 1px solid #ddd; /* Divider between items */
}

.job-details-item:last-child {
    border-bottom: none; /* Remove bottom border on the last item */
}

.job-details-item strong {
    text-align: left;
    font-weight: bold;
}

.job-details-item span {
    text-align: left;
    word-break: break-word; /* Ensures long text breaks naturally */
    white-space: normal;  /* Ensures content wraps */
}


.single-button-container{
    justify-content: center;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    column-gap: 30px;
}

.job-single-button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 366px;
    height: 44px;
    border-radius: 6px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    align-content: center;
    text-align: center;
    margin: 20px;
}

.job-single-button:hover {
    transform: translateY(-3px); /* Move up slightly on hover */
    color: white;
}


#chat{
    background-color: #531714;
    
}

#phone{
    background-color: #88221D;
    
}


#mail{
    background-color: #AD3630;
}

.d-flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.col-5, .col-7  {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-top: 15px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.job-details-item ul {
    list-style: none;
}
.job-details-item ul li {
  list-style-image: url('../images/check1.svg'); 
}
.job-card-single {
    position: relative;
}
/* Responsive Styles */
@media (max-width: 768px) {

    .col-5 {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
            max-width: 100%;
        }

    .col-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 100%;
    }
    .job-content-container {
        flex-direction: column;
    }
 .job-image-container, .job-details-container {
        width: 100%; /* Make image and details stack full-width */
        padding: 10px;
        } 
   .job-image {
         padding: 10px 10px 0px 10px;
    width: 100%;
    aspect-ratio: 16 / 9; /* Automatically maintains a 16:9 ratio */
    object-fit: cover; /* Ensures the image fits nicely within the container */
    }
        .button-container {
        width:auto; /* Full width buttons */
        margin-bottom: -7px; /* Adjust margin for smaller gaps */
    }

    .job-single-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: auto;
        height: 44px;
        border-radius: 6px;
        color: white;
        font-size: 15px;
        font-weight: 500;
        align-content: center;
        text-align: center;
        margin: 20px;
    }
}

@media (max-width: 600px) {
    .single-button-container {
			flex-direction: column; /* Stack buttons vertically */
			}
		.single-button-container button {
        width: auto; /* Full width buttons */
		    
		}
			
    .job-image {
    padding: 10px 10px 10px 10px;
    width: 100%;
    aspect-ratio: 16 / 9; /* Automatically maintains a 16:9 ratio */
    object-fit: cover; /* Ensures the image fits nicely within the container */
    }
}






