*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
	--orange: #E16127;
	--blue: #272E70;
	--white: #FFFEFE ;
	--black: #403D42;
}
/* navBar */
.blue{
    color:var(--blue);
}
.brands img{
    filter: grayscale(100%);
}
/*.navbar .navbar-brand img:hover{*/
/*    filter: grayscale(0%);*/
/*}*/
.job-item img:hover{
    filter: grayscale(0%);
}
.brands img:hover{
    filter: grayscale(0%);
}
#navbtn{
	color:var(--black);
	font-weight: 700;
	transition: 0.4s ease;
	position: relative;
	text-decoration: none;
	transition: 0.5s;
}
#navbtn::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 3px;
	background: var(--orange);
	transition: 0.5s;
}
#navbtn:hover::before{
	width: 100%;
}

h2{
	color: var(--black);
}
#jobs .job-item a{
	display: block;
	color: var(--black);
	text-decoration: none;
	margin-top: 10px;
}
.demo a{
	font-weight: 700;
}
.btn-primary{
	background: var(--blue) !important;
	border: none !important;
	color: white !important;
}
.btn-primary:hover{
	background: var(--orange) !important;
}
.btn-primary:focus{
	background: var(--orange) !important;
}
.btn-primary:active{
	background: var(--orange) !important;
}
.bg-color{
	background: var(--blue) !important;
	color: var(--white) !important;
}
.hero h1{
	color: var(--black);
}
.text-orange{
	color: var(--orange);
}

/* career header first section */

.career-header img{
	width: 100%;
	height: auto;
}
.card_sty{
	border: none;
	display: flex;
	align-items: center;
	box-shadow: 0px 0px 10px #c0bebe;
	justify-content: center;
	transition: 0.5s;
}
.ourGoal p{
	font-size: 18px;
	text-align: justify;
	letter-spacing: 3px;
}
.ourGoal h4{
	font-weight: bolder;
	font-style: italic;
	color:var(--blue);
}
.card_sty:hover{
	box-shadow: none !important;
}

/* create an account  */

.contact-form .image-holder {
	background:url('../images/cv.png');
	background-size:cover;
	width: 50%;
	height: 500px;
}
.contact-form form {
	width:50%;
	height: 500px;
	background: #F8F9FA;
	padding: 20px 20px;
}
.contact-form form h2 {
	font-size:24px;
	line-height:1.5;
	margin-bottom:30px;
}
.contact-form form input:focus{
	border: 1px solid var(--orange);
}
.submit{
	color: white;
}
#submit{
	background: var(--blue);
	font-weight: 800;
	transition: 0.5s;
}
#submit:hover{
	background-color: var(--orange);
	color: #fff;
}
#submit:active{
	background-color: var(--orange);
	color: #fff !important;
}
#submit:focus{
	background-color: var(--orange);
	color: #fff;
	border: none !important;
}
@media screen and (max-width: 767px){
	.ourGoal{
		margin-top: 2px;
	}
	#navbtn{
		margin: 5px 0;
		display: inline-block;
	}
		/* contact cv form */
	.cv form{
		background-size:cover;
		width: 100%;
		margin: auto;
	}
	.image-holder{
		display: none;
	}
	.contact-form{
		width: 100%;
	}
}
@media screen and (max-width:575px){
  .banner{
	width: 50%;
	height: auto;
  }
  #h2{
	font-weight: 600;
	font-size: 20px !important;
  }
  .card_sty{
      box-shadow: none;
  }
  footer p{
      font-size: 12px !important;
  }

}