*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins', sans-serif;
}

body {
	font-family: 'calibri', sans-serif;
	background: #f4f3f3;
}

.navbar .logo img{
  width: 50px;
  height: 50px;
  align: center;
  margin-left: 0px;
  margin-top: 3px;
}

.navbar .animation{
  position: absolute;
	height: 50%;
	/* height: 5px; */
	top: 20px;
	/* bottom: 0; */
	z-index: 0;
	background: #1abc9c;
	border-radius: 8px;
	transition: all .5s ease 0s;
}

.navbar
{
display: flex;
width: 100%;
height: 50px;
margin: 0px auto;
background: #4a7093;
align-items: center;
justify-content: space-between;
padding: 20px 0;
gap: 10px;
  box-shadow: 0 2px 3px 0 rgba(0,0,0,.1);
}

.navbar ul{
list-style-type: none;
}

.navbar ul li {
margin-top: 5px 20px;
display: inline-block;
list-style: none;
float: left;
width: 242px;
font-size: 15px;
line-height: 50px;
text-align: center;
position: relative;
}

.navbar ul li a{
text-decoration: none;
color: white;
display: block;
}

.navbar ul li a:hover {
background-color: #067766bf;
}

.navbar ul ul {
position: absolute;
background-color: #4a7093;
display: none;
}

.navbar ul ul ul {
left: 100%;
top: 0px;
}

.navbar ul li:hover > ul
{
display: block;
}



/* Hero Section */

.recruitment {
 width: 95%;
  text-align: left;
  padding: 0px 15px;
  padding-top: 15px;
  margin-left: 30px;
margin-top: 10px;
  font-size: 15px;
  color: #4a4a4a;
letter-spacing: 1px;
font-family: 'calibri', sans-serif;
margin-bottom: 20px;
  position: relative;
line-height: 10px;
}

.recruitment h5{
  margin-top: 10px;
  font-size: 3px;
  color: #4a4a4a;
  font-family: 'calibri', sans-serif;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
}

.recruitment h5::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 1px;
	box-sizing: border-box;
	width: 100px;
}

.recruitment p{
  margin-top: 12px;
  font-family: 'calibri', sans-serif;
  line-height: 20px;
  letter-spacing: 1px;
text-align: justify;
  text-justify: inter-word;
}





/* footer Section */

.container{
max-width: 1500px;
margin:auto;
}

.row{
display: flex;
flex-wrap: wrap;
gap: 10px;
}

ul{
list-style: none;
}

.footer{
text-align: left;
color: #ffffff;
font-weight: 50;
margin-bottom: 5px;
display: block;
background-color: #24262b;
margin-top: 0px;
margin-bottom: 15px;
padding: 10px 0px;
width:100%;
}

.footer-col{
   width:32%;
   padding: 0 50px;
}

.footer-col h6{
	font-size:8px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 15px;
	font-weight: 50;
	position: relative;
}

.footer-col h6::before{
	content: '';
	position: absolute;
	left:5px;
	background-color: none;
	height: 0px;
	box-sizing: border-box;
	width: 100px;
}

.footer-col ul li a{
	font-size: 12px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	color: #bbbbbb;
	display: block;
height: 25px;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 3px;
}
.footer-col .contact-links p{
font-size: 13px;
	text-align: left;
	line-height: 10px;
	color: #ffffff;
}


/*responsive*/
@media(max-width: 700px){
  .footer-col{
    width: 100%;
    margin-bottom: 30px;
}
}
@media(max-width: 500px){
  .footer-col{
    width: 100%;
}
}