.sec-a{
    padding-left: 10px;
}
.breadcrumb a i{
    margin-right: 5px;
}
/* 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: var(--lt-color);
	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;
}
.short{
    display: flex;
    gap: 20px;
    align-items: center;
}
.short li{
    color: #484848;
    /* background: var(--heading-color); */
    border-radius: 15px;
    font-size: 14px;
    margin: 14px 0;
}

form#jobForm{
    padding: 20px;
    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(--btn-color);
    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;
}
.modal-content .btn-close{
    position: absolute;
    top: 10px;
    right: 10px;
}

@media(max-width: 980px){
	.banner h1{
		text-align: center;
	}
	section.job-detail .col-8{
		width: 100%;
	}
	section.job-detail .col-4{
	width: 100%;
	}
	.apply-sec .apply{
		display: none;
	}
}

@media(max-width: 540px){
	.heading h2{
		font-size: 24px;
	}
	.short{
		gap: 10px;
		align-items: self-start;
		flex-direction: column;
	}
	.short li{
		margin: 0;
	}
	.banner h1{
		font-size: 30px;
	}
}