/*
	Style.css
*/

html,
body {
	width: 100%;
	height: 100%;
}

body {
	font-family: 'Arial Narrow';
}


/* Web Font Arial*/

@font-face {
	font-family: 'Arial Narrow';
	src: url('../fonts/ArialNarrow-Bold.eot');
	src: url('../fonts/ArialNarrow-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/ArialNarrow-Bold.woff2') format('woff2'), url('../fonts/ArialNarrow-Bold.woff') format('woff'), url('../fonts/ArialNarrow-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}


/*page-wrapper*/

.page-wrapper {
	position: relative;
	height: 100%;
	overflow: hidden;
}

/*construction-img-wrap*/

.construction-img-wrap {
	width: 100%;
	height: auto;
    display: block;
}

.construction-img-wrap img.img-fluid {
    display: block;
    width: auto;
    height: 690px;
    margin: auto;
	object-fit: cover;
}

/*job card*/

.job-info-wrap {
	position: relative;
	width: 100%;
	background-color: #000;
	min-height: 138px;
	border: none;
	border-radius: 15px;
	padding: 30px 0px;
}

.job-title {
	position: relative;
	display: block;
}

.job-title h2 {
	font-size: 32px;
	color: #f26522;
	text-transform: uppercase;
	font-family: 'Bitter', serif;
	font-weight: 900;
	margin-bottom: 0;
}

.job-title h2 {
	animation: blinkingText 1.2s infinite;
}

@keyframes blinkingText {
	0% {
		color: #f26522;
	}
	49% {
		color: #f26522;
	}
	60% {
		color: #fff;
	}
	99% {
		color: #fff;
	}
	100% {
		color: #f26522;
	}
}

.job-contact-us {
	position: relative;
	padding: 25px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0;
	list-style: none;
}

.phone-no,
.facebook-link,
.email-info {
	position: relative;
	width: 100%;
	align-items: center;
}

.phone-no .icon,
.facebook-link .icon {
	position: relative;
	display: flex;
	align-items: center;
}

.phone-no h3,
.facebook-link h3,
.email-info h3 {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 0px;
	padding-left: 10px;
	min-width: 150px;
}

.phone-no a,
.facebook-link a,
.email-info a {
	color: #fff;
	text-decoration: none;
}

.facebook-link {
	justify-content: center;
}

.email-info {
	justify-content: flex-end;
}


/*progressbar*/

.progressbar {
	position: relative;
}

.progressbar-strip {
	position: relative;
	display: flex;
	width: 100%;
	background-image: url(../images/progress-bar.jpg);
	height: 15px;
}


/* Media screen */

@media only screen and (max-width:1366px) {
	.construction-img-wrap img.img-fluid {
		height: 400px;
	}
}

@media only screen and (max-width:1024px) {
	.page-wrapper .container-fluid {
		padding: 0;
	}
}

@media only screen and (max-width:991px) {
	.phone-no h3,
	.facebook-link h3,
	.email-info h3 {
		font-size: 20px;
	}
}

@media only screen and (max-width:767px) {
	.page-wrapper {
		overflow: auto;
	}
	.construction-img-wrap img.img-fluid {
		height: 400px;
	}	
	.job-info-wrap {
		padding: 15px 0px;
	}
	.job-contact-us {
		justify-content: center;
		flex-direction: column;
		padding: 15px;
	}
	.phone-no,
	.facebook-link,
	.email-info {
		justify-content: center;
	}
	.job-title h2 {
		font-size: 30px;
	}
	.job-contact-us li {
		padding: 10px 0;
	}
}

@media only screen and (max-width:480px) {
	.construction-img-wrap img.img-fluid {
		height: 300px;
	}
	.job-title h2 {
		font-size: 24px;
	}
}
@media only screen and (max-width:375px) {
	.construction-img-wrap img.img-fluid {
		height: 250px;
	}
}
@media only screen and (max-width:340px) {
	.construction-img-wrap img.img-fluid {
		height: 200px;
	}
}