body {
	background-color: var(--main-bg);
	}
	section.common_banner img {
		object-position: 50% 49%;
	}
	.job-section {
		background: #f1f1f1;
		position: relative;
	}
	.text-orange {
	color: var(--heading-color);
	font-size: 32px;
	}
	.job-listings {
	margin: 0 auto;
	}
	.job-listings .row{
		justify-content: space-between;
	}
	.job-listings .col-6{
		width: 49%;
	}
	.job-listings .col-6 .btn-primary{
		background: var(--heading-color);
		border: 1px solid var(--heading-color);
	}
	.job-item {
	border-radius: 10px;
	}
	.job-item:nth-child(odd){
		background: var(--alternate-color);
	}
	.job-item:nth-child(even){
		background: var(--lt-color);
	}
	.form::placeholder{
		color: var(--black-color);
	}
	.job-item h5 {
	font-size: 24px;
	color: var(--heading-color);
	}
	.job-item p{
		color: var(--black-color);
		font-weight: 500;
	}
	span.job_desc{
		color: var(--black-color);
	}
	.job-item .desc {
	font-size: 14px;
	margin-bottom: 0;
	color: #000;
	opacity: .9;
	max-height: 175px;
	overflow: hidden;
	}
	.job-item .desc h2{
		font-size: 16px;
		margin-bottom: 10px;
	}
	.job-item .desc h3{
		font-size: 16px;
		margin-bottom: 10px;
	}
	.job-item .desc p{
		color: #000;
	}
	.badge.bg-warning {
	background-color: #ffcc00;
	}
	.badge.bg-secondary {
	background-color: #6c757d;
	}
	.form-label {
		margin-bottom: 0.5rem;
		color: black;
		text-align: left;
		display: block;
	}
	.short{
		display: flex;
		gap: 20px;
		height: 100%;
		justify-content: center;
		align-items: center;
	}
	.short li{
		color: #484848;
		background: var(--heading-color);
		padding: 5px 10px;
		border-radius: 15px;
		font-size: 12px;
	}
	.short li:nth-child(1){
		background: #83e0ff;
	}
	.short li:nth-child(2){
		background: #68acff;
	}
	.short li:nth-child(3){
		background: #b1d2fa;
	}
	
	h2 {
	font-size: 24px;
	font-weight: bold;
	}
	/*p {*/
	/* color: #6c757d; */
	/*}*/
	.file-upload-box {
	background-color: #f8f9fa;
	border: 2px dashed #ced4da;
	border-radius: 10px;
	padding: 30px;
	}
	.file-upload-box p {
	font-size: 16px;
	color: #6c757d;
	}
	.btn-success {
	background-color: #28a745;
	border: none;
	}
	.btn-success:hover {
	background-color: #218838;
	}
	.modal-content {
	padding: var(--p15);
	}
	.btn-close{
	position: absolute;
	right: 20px;
	}
	.modal-content p{
		color: var(--black-color);
	}
	form#jobForm{
		padding-top: 32px;
		border-top: 1px solid #00000050;
	}
	form#jobForm .form{
		width: 100%;
		border: none;
		border-bottom: 1px solid #000;
		padding: 8px;
	}
	form#jobForm button{
		border: none;
		background: var(--main-bg);
		color: var(--white-color);
		padding: 8px;
	}
	form#jobForm .dropzone{
		padding: 0 !important;
		border: 1px dashed #000;
		min-height: 50px !important;
	}
	form#jobForm .dropzone .dz-message{
		margin: 0;
	}

	section.job-search{
		background: var(--lt-color);
	}
	section.job-search .cont{
		margin-top: 40px;
	}
	section.job-search .cont a{
		max-width: max-content;
	}
	section.job-search .cont p{
		color: var(--black-color);
	}
	section.job-search .cont h2{
		font-size: 36px;
		margin-top: 20px;
	}



/* job detail page css */

section.job-detail{
	background: #FAFBFD;
}
section.job-detail p{
	color: var(--black-color);
}
section.job-detail .new-img{
	width: 120px;
	border-radius: 20px;
}
section.job-detail .cont-area{
	display: flex;
	gap: 20px;
	align-items: center;
}
section.job-detail .desc{
	background: var(--white-color);
	padding: 20px;
	border-radius: 0px;
	margin-top: 20px;
}
section.job-detail .desc ul{
	padding-left: 30px;
}
section.job-detail .desc li{
	list-style: disc;
	line-height: 30px;
}
section.job-detail .desc h3{
	margin: 10px 0;
	color: var(--heading-color);
	font-size: 18px;
}
section.job-detail .desc .apply{
	background: var(--btn-color);
	border: none;
	margin-top: 30px;
	padding: 10px 40px;
}
.sticky-apply{
	/* position: sticky;
	top: 10px; */
}

.apply-sec{
	background: var(--white-color);
	padding: 20px;
	margin-bottom: 40px;
}
.apply-sec .last{
	color: red !important;
	font-weight: 600;
}
.apply-sec .apply{
	background: var(--btn-color);
	border: none;
	width: 100%;
}
.job-info{
	background: var(--white-color);
	padding: 20px;
}
.job-info li{
	display: flex;
	gap: 10px;
	align-items: center;
}
.job-info li h4{
	color: var(--heading-color);
	font-size: 16px;
	margin-bottom: 5px;
}
.job-info li i{
	font-size: 20px;
	width: 50px;
	height: 50px;
	background: #E4FAE7;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.job-info li p{
	font-size: 15px;
}
.popup-cont{
	display: none;
	position: absolute;
    flex-direction: column;
    width: 1000%;
	top: 0;
	left: 0;
	background: #000000ac;
	height: 100vh;
}
.main-cont{
	background: #fff;
    padding: 20px;
}

/* celebration section */

/******************************************/
section.gallery-sec .wrapp {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 1;
}

section.gallery-sec .title {
	margin-top: 0;
	margin-bottom: 110px;
	font-size: var(--fz-big);
	text-transform: uppercase;
	color: var(--pr-color);
}
.fancybox__progress{
	background: var(--btn-color) !important;
}
/* Image Gallery **********************************/
section.gallery-sec .gallery {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	gap: 40px;
}

section.gallery-sec .gallery__item {
	position: relative;
	max-width: calc(33.33% - 40px);
	width: 100%;
	height: 300px;
	list-style: none;
	overflow: hidden;
	cursor: pointer;
	border-radius: 12px;
}

section.gallery-sec .gallery__img {
	display: block;
	width: 100%;
	height: 300px;
	object-fit: cover;
	will-change: transform;
	transition: .8s var(--cubicbz);
	border-radius: 12px;
}

section.gallery-sec .gallery__item:hover .gallery__img {
	transform: scale(1.3);
}

section.gallery-sec .gallery__item::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	backdrop-filter: blur(20px);
	background: rgba(0, 0, 0, 0.614);
	will-change: opacity;
	pointer-events: none;
	z-index: 2;
	transition: .8s var(--cubicbz);
}

section.gallery-sec .gallery__item:hover::after {
	opacity: 1;
}

section.gallery-sec .zoom {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	font-size: 40px;
	text-transform: uppercase;
	will-change: transform, opacity;
	pointer-events: none;
	transform: translate(-50%, -10%);
	color: transparent;
	-webkit-text-stroke: 1px var(--white-color);
	z-index: 3;
	transition: .8s var(--cubicbz);
}

section.gallery-sec .gallery__item:hover .zoom {
	opacity: 1;
	transform: translate(-50%, -50%);
}

/***/
section.gallery-sec a[data-fancybox] img {
	cursor: zoom-in;
}

section.gallery-sec .fancybox__backdrop::after {
	content: "";
	position: absolute;
	width: 10%;
	height: 10%;
	filter: blur(2px);
	left: 50%;
	top: 50%;
	transform: scale(11);
	opacity: 0.3;
	background-image: var(--bg-image);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

section.gallery-sec .fancybox__container {
	--fancybox-bg: #000;

	--fancybox-thumbs-width: 48px;
	--fancybox-thumbs-ratio: 1;

	--carousel-button-svg-width: 24px;
	--carousel-button-svg-height: 24px;

	--carousel-button-svg-stroke-width: 2.5;
}

section.gallery-sec .fancybox__nav {
	--carousel-button-svg-width: 24px;
	--carousel-button-svg-height: 24px;
}

section.gallery-sec .fancybox__nav .carousel__button.is-prev {
	left: 20px;
}

section.gallery-sec .fancybox__nav .carousel__button.is-next {
	right: 20px;
}

section.gallery-sec .carousel__button.is-close {
	right: auto;
	top: 20px;
	left: 20px;
}
 
section.gallery-sec .fancybox__slide {
	padding: 8px 88px;
}

/* Thumbnails */
section.gallery-sec .fancybox__thumbs .carousel__slide {
	padding: 8px 8px 16px 8px;
}

section.gallery-sec .is-nav-selected::after {
	display: none;
}

section.gallery-sec .fancybox__thumb {
	border-radius: 6px;
	opacity: 0.4;
	transition: .4s;
}

section.gallery-sec .fancybox__thumb:hover,
.is-nav-selected .fancybox__thumb {
	border-radius: 6px;
	opacity: 1;
}

section.gallery-sec .is-nav-selected .fancybox__thumb::after {
	display: none;
}

section.gallery-sec .head h2 {
    text-align: center;
    font-size: 170px;
    font-weight: 500;
    /* top: 40px; */
    position: relative;
}
section.gallery-sec .head p {
    text-align: center;
    font-size: 80px;
    font-weight: 500;
    position: relative;
    color: #fff;
    bottom: 60px;
    left: 257px;
    opacity: 0.2;
    font-family: var(--secondary-font);
}
section.gallery-sec .head {
    margin-bottom: var(--m30);
}
section.gallery-sec .view{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
section.gallery-sec .head p {
    text-align: center;
    font-size: 80px;
    font-weight: 500;
    position: relative;
    color: #fff;
    bottom: 60px;
    left: 257px;
    opacity: 0.2;
}
section.gallery-sec .head{
    margin-bottom: var(--m30);
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after{
	border-color: var(--btn-color);
}


@media(max-width: 980px){
	section.job-search .col-6{
		width: 100%;
		margin-bottom: 20px;
	}
	.job-item .col-4{
		width: 100%;
		margin-bottom: 10px;
		text-align: left;
	}
	.job-item .short{
		justify-content: start;
		margin-bottom: 20px;
	}
	section.gallery-sec .gallery{
		gap: 0;
		justify-content: space-between;
	}
	section.gallery-sec .gallery__item{
		max-width: 48%;
		width: 100%;
		margin-bottom: 20px;
	}
	section.job-detail .col-8{
		width: 100%;
	}
	section.job-detail .col-4{
		width: 100%;
	}
	.apply-sec .apply{
		display: none;
	}
	/* hire talent page code */
	.job-section .col-6{
		width: 100%;
	}
	section.post-construction .col-md-3{
		width: 45%;
	}
	section.post-construction .col-md-1 svg{
		display: none;
	}
}

@media (max-width: 540px){

	.job-item .short{
		flex-wrap: wrap;
		margin-bottom: 0;
	}
	section.gallery-sec .gallery__item{
		max-width: 100%;
		width: 100%;
		margin-bottom: 20px;
		height: auto;
	}
	section.gallery-sec .gallery__img{
		height: auto;
	}
	section.post-construction .col-md-3{
		width: 100%;
	}
	.common-head h3{
		font-size: 26px;
	}
	.job-section .text-orange{
		font-size: 32px;
	}
	.job-section{
		padding-top: 45px;
	}
	.job-item .row .col-8{
		width: 100%;
	}
	.job-item .row .col-4{
		width: 100%;
		margin-top: 20px;
	}
	section.common_banner img {
		object-position: 86%;
	}
}