* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto';
}


:root {
	--theme-color: #ff8921;
	--theme-font-montserrat: 'Montserrat';
	--theme-font-roboto: 'Roboto';
}

a {
	text-decoration: none;

}

.px-100 {
	padding: 100px 0;
}

.pt-100 {
	padding-top: 80px;
}

.pb-100 {
	padding-bottom: 80px;
}

.contact-us {
	padding: 270px 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* background-attachment: fixed; */
}

.contact-us::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(40, 54, 83, 0.6);
	z-index: -1;
}

.contact-us h4::after {
	content: "";
	width: 50px;
	height: 2px;
	background-color: var(--theme-color);
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	margin: 5px auto;
	bottom: -15px;
}

.contact-us h1 {
	font-family: var(--theme-font-montserrat);
	font-weight: 600;
	color: #fff;
	font-size: 34px;
	line-height: 48px;
	margin: 15px 0 15px 0;

}

.contact-us h1 span {
	font-family: var(--theme-font-montserrat);
	font-weight: 600;
	color: var(--theme-color);
}

.contact-us .button {
	color: white;
	background-color: var(--theme-color);
	padding: 10px 34px;
	animation: btn 5s linear infinite;
}

@keyframes btn {
	25% {
		transform: translateY(7px);

	}

	75% {
		transform: translateY(-7px);
	}
}

/* .career-details */
.career-details .career-details-inner {
	height: 250px;
	background: #fff;
	border-radius: 15px;
	border: 1px solid var(--theme-color);
	box-shadow: 0px 0px 40px -10px rgb(0 0 0 / 29%);
	transition: all 0.5s;
	position: relative;
	z-index: 99;
	cursor: pointer;
}

.career-details .career-details-inner i {
	font-size: 35px;
}

.career-details .btn a {
	padding: 8px 10px;
	color: #111;
	background-color: transparent;
	border: 1px solid var(--theme-color);
	border-radius: 25px;
	transition: all 0.4s;
}

.career-details .btn a:hover{
	background-color: var(--theme-color);
	color: #fff;
	transition: all 0.4s;
}

.career-details-inner:before {
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	transition-duration: 0.3s;
	transition: all 0.3s;
}


/* 
.career-details-inner::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	bottom: 50%;
	right: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	z-index: -1;
	background-color: #ff8921;
	border-radius: 15px;
	transition: all 0.4s;
}

.career-details .career-details-inner:hover::after {
	width: 100%;
	height: 100%;
	background-color: #ff8921;
}

.career-details .career-details-inner:hover .career-details .career-details-inner h4,
.career-details .career-details-inner:hover .career-details .career-details-inner p {
	color: white;
} */

/* .career-details-inner:hover {
	transform: translateY(-5px);
} */

/* .career-details-inner:hover:before {
	opacity: 1;
	transform: translateY(5px);
} */