@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
  --primary: #2169b0;
  --lightblue: #4B82B5;
  --orange: #fb961b;
  --icon-color:#294775;
  --title: #231f20;
  --text: #0c0a0b;
  --grey: #f3f8fe;
  --blue: #274674;
  --white: #fff;
  --hoverText: #c8c6c6;
z  --textLight:#6d6e71;
  --h1: 50px;
  --h2: 40px;
  --h3: 32px;
  --h4: 20px;
  --h5: 18px;
  --h6: 14px;
  --p:16px;
}


@media (max-width: 767px) {
  :root {
    --h1: 40px;
    --h2: 32px;
    --h3: 26px;
    --h4: 18px;
    --h5: 16px;
    --h6: 12px;
    --p:15px;
  }
}

/* width */
::-webkit-scrollbar {
 width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
 box-shadow: inset 0 0 5px grey;
 border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
 background:#0DA15C;
 border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
 background: #000;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: var(--p);
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1,h2, h3, h4, h5, h6 {
  //font-family: 'Quicksand', sans-serif;
  font-family: "Lato", sans-serif;
  display: swap;
  margin: 0;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight:700;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    margin: 0 5px; /* Adjust the margin as needed */
    color:var(--orange);
}
.font-weight-semibold{
	font-weight:600;
	}
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #000;
  background: #fff;
}
.sticky {
  z-index: 3;
}
.clearfix{
  clear: both
}

.flex-center{
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-left{
  display: flex;
  justify-content: left;
  align-items: center;
}

.flex-right{
  display: flex;
  justify-content: right;
  align-items: center;
}
.container-main{
	padding:0 50px;
}
@media(max-width:767px){
	.container-main{
		padding:0 20px;
	}
}
/*start hover-effect*/
a {
  color: var(--orange);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: var(--blue);
}
/*end hover-effect*/
#button {
  display: inline-block;
  background-color: var(--orange);
  width: 50px;
  height: 45px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  position: fixed;
  bottom: 0;
  right: 25px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  padding: 10px;
  color: #fff;
  border: 1px solid #fff;
  border-bottom: 0;
}
#button:hover {
  cursor: pointer;
  background-color: var(--blue);
}
#button:active {
  background-color: var(--blue);
}
#button.show {
  opacity: 1;
  visibility: visible;
}


.view-all{
	position: relative;
	background-color: var(--orange);
	color: var(--white);
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1;
	border-radius: 30px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 14px 50px;
	overflow: hidden;
	z-index: 1;
	text-transform: capitalize;
	cursor:pointer;
	transition: all 0.3s ease-in-out;
}
/**
.view-all:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 50%;
	background-color: var(--primary);
	transition: all .4s ease-in-out;
	z-index: -1;
}

.view-all:after {
	content: "";
	position: absolute;
	top: 0%;
	right: 0%;
	width: 0%;
	height: 50%;
	background-color: var(--primary);
	transition: all .4s ease-in-out;
	z-index: -1;
}
**/
.view-all:hover {
	color: #fff;
	background-color: var(--primary);
}

.view-all:hover:before, .view-all:hover:after {
	width: 100%;
}

.view-all:hover:before, .view-all:hover:after {
	width: 100%;
}



.orange_btn{
	position: relative;
	background-color: var(--orange);
	color: var(--white);
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1;
	border-radius: 30px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 14px 50px;
	overflow: hidden;
	z-index: 1;
	text-transform: capitalize;
}
/**
.orange_btn:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 50%;
	background-color: var(--primary);
	transition: all .4s ease-in-out;
	z-index: -1;
}

.orange_btn:after {
	content: "";
	position: absolute;
	top: 0%;
	right: 0%;
	width: 0%;
	height: 50%;
	background-color: var(--primary);
	transition: all .4s ease-in-out;
	z-index: -1;
}
**/
.orange_btn:hover {
	color: #fff;
	background-color: var(--primary);
}

.orange_btn:hover:before, .orange_btn:hover:after {
	width: 100%;
}

.orange_btn:hover:before, .orange_btn:hover:after {
	width: 100%;
}
.orange_btn.btn_small{
	    padding: 8px 15px;
    Font-size: 12px;
}

/****start top links****/

.top-address-wrap{
  background: var(--primary);
  padding: 13px 0;
  color: var(--orange);
}

.top-time span{
  padding:0 20px 0 5px;
}
.top-time span i{
	color:var(--orange);
}
.top-time a{
  color: var(--white);
}

.top-time a:hover{
  color: var(--orange);
}

.img-responsive{
  width:100%;
}

.social-links a{
  color: var(--white);
  padding: 0 0 0 15px;
}
.social-links a:hover{
  color: var(--orange);
}
.top-block{
  text-align: center;
}

.top-block a{
  color: var(--white);
  display:flex;
  align-items: center;
}
.top-block a i{
	margin-right:10px;
	font-size: 15px;
}
.search-wrapper{
  padding: 0 20px 0 0;
}

@media (max-width:767px){
	.top-address-wrap{
		padding:8px 0;
	}
	.top-block a,
	.top-time a{
		font-size:0;
	}
	.top-time a i{
		font-size:14px;
	}
	.search-wrapper{
	  padding: 0 10px 0 0;
	}

}
	
.top-block a:hover{
  cursor: pointer;
  color: var(--orange);
}

.top-menu-wapper{
	height:96px;
	overflow:hidden;
}

.top-menu-wapper .top-menu{
  padding: 20px 0;
  border-bottom:1px solid #eee;
  background:#fff;
  z-index:999999;
 
}
.top-menu-wapper .main_logo  img{
	max-width:230px;
}
.form-group{
  margin-bottom: 20px;
  position: relative;
}
@media(max-width:767px){
	.top-menu-wapper{
		height:90px;
	}
	.top-menu-wapper .top-menu{
		  padding: 15px 0 15px;
		}
	.scroll_down .main_logo  img{
		padding-top:10px;
	}
}
.form-group.sign-in-wrap i{
  position: absolute;
  left: 9px;
  top: 30%;
  z-index: 1;
}

.form-group .form-control{
  width: 100%;
  padding: 10px 15px;
  border-radius: 0;
  height: 46px;
}

.custom-select ,.custom-select-location{
  position: relative;
}

.custom-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333; /* Arrow color */
}

.custom-select .form-control {
  /* CSS properties for the select button */
  -webkit-appearance: none; /* Hide default arrow on Chrome/Safari */
  -moz-appearance: none; /* Hide default arrow on Firefox */
  appearance: none; /* Hide default arrow on other browsers */
  
}

.custom-select-location::after{
  content: "";
  position: absolute;
  top: 33%;
  right: 10px;
  width: 15px;
  height: 15px;
  background: url(../images/gps.svg) no-repeat;
}

.form-group .search{
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  padding: 8px 25px 9px ;
}

.form-group .search:hover{
  background: var(--primary);
  border: 1px solid var(--primary);
}

.form-control:focus{
  outline: none;
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.sign-in-wrap input{
  padding-left: 33px!important;
}

.float-right{
  float: right;
}

.float-left{
  float: left;
}

.create-wrapper a{
}

textarea.form-control{
  height: 200px!important;
  resize: none;
}
/****end top links****/

/****start top menu****/

.main-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.main-nav a {
  display: inline-block;
  position: relative;
  color:var(--text);
  margin: 15px 0;
  font-size: 15px;
}


.main-nav a:hover{
  color: var(--orange);
}

.main-nav a:hover::before {
  transform-origin: left center;
  -khtml-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}

.main-nav__main ul li {
  position: relative;
  display: flex;
  align-items: center;
  /* max-width: 152px; */
  margin: 0;
  right: 0;
  padding: 0 3px;
}

.main-nav__main ul li::before{
 //content: "";
  background: var(--text);
  width: 2px;
  height: 15px;
  position: absolute;
  right: 0;
}

.main-nav__main ul li:last-child:before{
  width: 0;
  height: 0;
}

.main-nav__main ul li > ul {
  max-height: 0;
  overflow: hidden;
  transform: translateX(-30px);
  transition: all 0s, opacity 0.3s ease;
}

.main-nav__main ul li > ul li {
  display: block;
  max-width: none !important;
  margin: 0;
  padding: 0;
}

.main-nav__main ul li > ul li::before{
  width: 0;
  height: 0;  
}
.main-nav__main ul li > ul li a {
  display: block;
  padding: 2px 16px;
  text-align: left;
  transition: background-color 0.3s ease;
}

.main-nav__main ul li > ul li:hover.has-sub-dropdown:after {
  color: var(--text);
} 

.main-nav__main ul li.has-sub-dropdown > ul {
  top: 0;
  left: 100%;
}

.main-nav__main .has-dropdown {
  position: relative;
}

.has-dropdown>a:after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.main-nav__main .has-dropdown:hover > ul:before {
  position: absolute;
  top: -7px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--orange);
  margin-left: 15px;
}

.main-nav__main a.btn.btn-primary {
  height: auto;
  padding: 4px 16px;
  white-space: nowrap;
  justify-content: center;
}

@media (min-width: 1200px) {
  .main-nav__main ul li.has-dropdown:after {
    margin-left: 4px;
    font-size: 12px;
  }
  
  .main-nav__main ul li.has-sub-dropdown:after {
    position: absolute;
    top: 50%;
    right: 8px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    transform: translateY(-50%);
  }
  
  .main-nav__main ul li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: block;
    width: 170px;
    overflow: visible;
    background-color: var(--white);
    border-bottom: 3px solid var(--orange);
    opacity: 0;
    transform: scale(0);
    transition: all 0s, opacity 0.3s ease;
	box-shadow:4px 4px 10px rgba(0,0,0,0.2);
  }

  .main-nav__main ul li > ul li a {
    padding: 3px 16px;
  }

  .main-nav__main ul li > ul li:hover a:hover,
	   .main-nav__main ul li > ul li.active a{
    color: var(--orange);
  }

  .main-nav__main ul li:hover > ul {
    max-height: 1000px;
    opacity: 1;
    transform: scale(1);
    transition: all 0s, opacity 0.3s 0.3s ease;
  }

  .main-nav__main .has-dropdown:hover > ul:before {
    content: "";
  }
	.menu_btn a{
		margin-left:10px;
		padding:12px 24px;
		font-size:15px;
	}
	.main-nav > ul >li a{
		background-color:var(--white);	
		padding: 7px 15px;
		font-size: 15px;
		border-radius: 30px;
		font-size: 15px;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		z-index: 1;
		cursor: pointer;
	}
	.main-nav > ul > li a:hover,
	.main-nav > ul > li.active>a{
		background-color: var(--orange);
		color: var(--white);
	}
	.main-nav > ul >li > ul> li a{
		background:none;
	}
	.main-nav > ul >li > ul> li a:hover{
		background:none;
		color:var(--orange);
	}
	.main-nav > ul >li > ul li ul{
		left: 160px;
		top:0px;
	}
}
.whatsapp_btn{
	
	padding:0 !important;
}
.whatsapp_btn i{
	color:#25D366;
	Font-size:40px;
}
.whatsapp_btn:hover i{
	color:var(--primary);
}
@media (max-width: 1199px) {
  .main-nav__main ul li {
    margin-bottom: 12px;
  }
  .main-nav__main ul li.has-dropdown:after {
    position: absolute;
    top: -2px;
    right: 0;
    bottom: 0;
    color: var(--white);
    width: 30px;
    height: 30px;
  }
  
  .main-nav__main ul li.active ul {
    max-height: 1000px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0s 0.3s, opacity 0.3s ease;
  }
  
  .main_logo{
    width:50%;
    float: left;
  }


  .job-search-section{
    width: 50%;
  }

  .main_logo .logo{
    width: 200px;
  }

  .main-nav-wrapper{
    width:50%;
    float: right;
  }

  .main-nav a:before{
    opacity: 0;
  }

  .main-nav .main-nav__burger {
    background-color: transparent !important;
    border: 1px solid var(--text);
    color:  var(--text);
    display: block;
    margin: auto;
  }

  .main-nav__burger i{
    font-size: 20px;
  }
  .main-nav__wrapper {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100vw;
    bottom: 0;
    padding: 50px;
    background: #fff;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .main-nav__wrapper .main-nav__burger {
    position: fixed;
    top: 20px;
    right: 20px;
    display: none;
    color: var(--text);
  }
  .main-nav__wrapper.active {
    z-index: 11;
    overflow-y: auto;
    opacity: 1;
    transform: translateX(-100%);
  }
  .main-nav__wrapper.active .main-nav__burger {
    display: block;
  }
  .main-nav__main {
    padding: 17px 0;
    display: flex;
    justify-content: right;
  }
  .main-nav__main ul {
    display: block;
    line-height: 2.5;
  }
  .main-nav__main ul > li {
    max-width: none;
    border-bottom: 1px solid #eee;
    display: inherit;
  }
  .main-nav__main ul > li a {
    //color: #fff;
  }
  .main-nav__main ul > li.has-dropdown.active ul {
    padding-left: 8px;
    margin-left: 0;
    //border-left: 1px solid #333;
  }
  .main-nav__main ul > li.has-dropdown.active ul li {
    border-bottom: none;
	border-top: 1px solid #eee;
  }
  .main-nav__main ul > li.has-sub-dropdown ul {
    padding-left: 8px !important;
    margin-left: 18px !important;
  }
  .top-block a{
	  Font-size:0;
  }

	.main-nav__main{
		padding:5px 0 0 5px;
		margin:0;
		display:flex !important;
	}

	.moving-border {
		 display: inline-block;
		  position: relative;
		  width: 45px;
		  height: 45px;
		  line-height: 45px;
		  background:#fff;
		  box-shadow: 0 0px 4px rgba(0, 0, 0, .2);
		  border-radius: 50%;
		  text-align: center;
		  text-decoration: none;
	}
	.moving-border::before {
	  display: block;
	  position: absolute;
	  z-index: -1;
	  width: 100%;
	  height: 100%;
	  border-radius: 50%;
	  background: #00000085;
	  opacity: 0;
	  content: '';
		animation: pulse 1.1s infinite;
	}
	.moving-border i{
		color:#000;
	}
	@keyframes pulse {
	  from {
		transform: scale(1);
		opacity: .4;
	  }
	  to {
		transform: scale(1.3);
		opacity: 0;
	  }
	}
}
@media(max-width:767px){
	
	.main-nav__main ul li > ul li a {
  color: var(--text);
}
.social-links{
	display:flex;
}
}

#signinModal form {
    display: none;
}

#signinModal[data-form="login"] .login-form,
#signinModal[data-form="register"] .register-form,
#signinModal[data-form="forgot-password"] .forgot-password-form {
  display: block;
}

.password-visibility {
  position: relative;
}

.password-visibility span {
  position: absolute;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../images/eye-slash.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.password-visibility.active span {
  background-image: url('../images/eye.svg');
}

.password-visibility span:hover {
  opacity: 0.7;
}
#searchModal.show,
#applyModal.show,
#signinModal.show{
	display:flex !important;
	justify-content:center;
	align-items:center;
}
#searchModal.show .modal-dialog,
#applyModal.show .modal-dialog,
#signinModal.show .modal-dialog{
	display:inline-block;
	    width: 100%;
}
.modal.show{
	z-index:999999;
}
/***end top menu***/

/* start slideshow */
.hero{
  position: relative;
  background: url(../images/big-banner.jpg) no-repeat;
  background-size: cover;
}

.hero::before{
  content: "";
  position: absolute;
  background: var(--text);
  opacity: .5;
  width: 100%;
  height: 100%;
}

.hero-content-wrap{
  position: relative;
  padding: 100px;
  text-align: center;
}

.hero h1{
  font-size: var(--h1);
  color: var(--white);
  margin-bottom: 50px;
  font-weight: 500;
}
@media(max-width:767px){
.hero-content-wrap{
  padding: 40px;
  border-top:1px solid #eee;

}
.hero{
	background:none;
}
.hero::before{
	opacity:0;
}
.hero h1{
	color: var(--text);
}
}
.banner{
	padding:40px 0;
	text-align:center;
	overflow:hidden;
}
.banner h1{
	line-height:1.1;
	Font-weight:600;
}
.banner h1 span{
	display: inline-block;
	font-weight:700;
}
@media(max-width:767px){
	.banner h1 span{
		//font-size: 40px;
	}
}
.banner .banner_btn i{
	margin-right:10px;
}
.banner .banner_btn a{
	margin:5px;
	padding:12px 30px;
	font-size:14px;
}
.banner .banner_btn a:hover,
.menu-search:hover{
	background:var(--primary)!important;
}
/* end slideshow */

/* start job appilcation */
.homepage-wrapper{
  padding: 50px 10px;
}

.job-application-wrapper{
  background: var(--grey);
  color: var(--text);
  padding: 20px 10px;
}
.job-application-wrapper h2{
    margin:0;
}
/* Style the custom button as needed */
#cvDropOffButton {
  background-color: var(--lightblue);
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius:0;
  cursor: pointer;
}

#cvDropOffButton:hover {
  background-color: var(--text);
}
/* end job appilcation */

/* start about us */
.bg-grey{
	background:#fafafa;
}
.aboutus-wrapper{
  padding: 60px 10px;
}

.homepage-wrapper h2{
  font-size: var(--h2);
  margin-bottom:30px;
}

.readmore{
  color: var(--lightblue);
  text-decoration: underline;
}

.readmore:hover{
  color: var(--text);
}

.counter-wrapper{
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 2;
}
.counter-wrapper.inner_counter_wrapper{
	column-count: 4;
}
@media(max-width:1200px){
	.counter-wrapper.inner_counter_wrapper{
		column-count: 2;
	}
}
.counter-wrapper .content{
	display: inline-block;
}
.counters {
  padding: 20px 0;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--hoverText);
  
}

.counter {
  font-size: var(--h3);
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 2px;
  text-align: center;
  margin-right:3px;
}
.counter-flex{
	align-items:center;
	display:flex;
}
.counter-flex spam{
	font-size:30px;
	display:inline-block;
	margin-right:10px;
}
.count-text {
  font-weight: normal;
  margin-bottom: 0;
  margin-top: -15px;
}

.counters img{
  width: 50px;
  height: 50px;
  object-fit:contain;
}
@media(max-width:767px){
	.aboutus-wrapper{
		padding: 40px 10px;
	}
	.counter {
		font-size: 24px;
	}
	.counters img{
	  width: 40px;
	  height: 40px;
	}
}
/* end about us */

/* start job category */
.gray-wrapper{
 background: var(--grey);
}

.job-category-wrapper{
  background: var(--grey);
}

.item-all-card {
  margin-bottom: 1.5rem;
  position: relative;
  padding: 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid #eee;
}

.item-all-card::before, 
.item-all-card::after {
  background: linear-gradient(135deg, var(--lightblue) 0%, var(--lightblue) 100%);
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.4s linear;
}

.item-all-card::before {
  right: 0;
  top: 0;
  transition-duration: 0.4s;
}

.item-all-card::after {
  left: 0;
  bottom: 0;
  transition-duration: 0.4s;
}


.item-all-card a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.item-all-card a::before, 
.item-all-card a::after {
  background: linear-gradient(135deg, var(--lightblue), var(--lightblue) 100%);
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.4s linear;
  
}

.item-all-card a::after{
  right: 0;
  top: 0;
  transition-duration: 0.4s;
}

.item-all-card a::before{
  left: 0;
  bottom: 0;
  transition-duration: 0.4s;
}

.item-all-card:hover a::before, 
.item-all-card:hover a::after {
  height: 100%;
}

.item-all-card.hvr-glow{
	width:100%;
	border-radius: 8px;
}
.item-all-card.hvr-glow:before,
.item-all-card.hvr-glow:after,
.item-all-card.hvr-glow:hover a::before, 
.item-all-card.hvr-glow:hover a::after {
	display:none;
}
.iteam-all-icon {
  position: relative;
  width: 60px;
  height:60px;
  margin: 0 auto;
}
.iteam-all-icon img{
	height:100%;
	width:100%;
	object-fit:cover;
}
@media(max-width:767px){
	.item-all-card{
		padding:15px;
		margin-bottom:0;
	}
	.iteam-all-icon {
	  width: 40px;
	}
}
.item-all-card::after {
  background: linear-gradient(135deg, var(--lightblue) 0%, var(--lightblue) 100%);
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.4s linear;
  
}

.item-all-card:hover::before, 
.item-all-card:hover::after {
  width: 100%;
}

.item-all-card:hover .item-all-text h5 {
  color: var(--lightblue)!important ;
}

.text-body{
  font-size: var(--p);
}

/* end job category */
/* start featured job */
.card {
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%;
  padding-bottom: 20px;
}

.card-body {
  margin: 0;
  padding: 1.5rem 1.5rem;
  position: relative;
  
}

.item-card7-desc p{
  color: #838a9c;
}

.card-body + .card-body {
  border-top: 1px solid #e8ebf3;
}

.avatar-md {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1rem;
}

.border{
  border: 1px solid var(--hoverText);
}

.brround {
  border-radius: 50%;
}

.card-body .btn-secondary {
  color: var(--white) !important;
  background-color: var(--orange) !important;
  border-color: var(--orange) !important;
}

.card-body .btn-secondary {
  color: var(--white) !important;
  background-color: var(--orange) !important;
  border-color: var(--orange) !important;
}
/* end featured job */

/* start notice */
.notice-wrap{
  background: var(--white);
  box-shadow: 0 0 10px 0 var(--hoverText);
}

.notice-wrap:hover{
  box-shadow: 0 0 10px 0 var(--text);
}

.notice-image{
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 100%;
  display: inline-block;
  margin-bottom: 0;
}

.notice-image img{
  width: 100%;
  opacity: 0;
  height: 240px;
}

.notice-content h5{
  font-weight: 700;
}

.notice-content h5 a{
  color: var(--text);
}

.notice-content span{
  color: var(--hoverText);
}

.notice-content a:hover{
  color: var(--orange);
}

.news-wrapper .notice-wrap{
  border-radius: 11px;
  overflow: hidden;
}
/* end notice */

/* start clients */
.client-wrapper{
}

.tooltip {
  position: relative;
  display: inline-block;
  opacity: 1;
  z-index: 1;
}
.tooltip .tooltiptext {
  visibility: hidden;
  position: absolute;
  width: 120px;
  background-color: #555;
  color: var(--white);
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip:hover .tooltiptext2 {
  visibility: visible;
}
.tooltip-bottom {
  top: 74%;
  left: 50%;
  margin-left: -60px;
}
.tooltip-bottom::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #555 transparent;
}

.client-wrapper .tooltip img{
  border: 1px solid #ccc;
  padding: 5px;
}

.owl-nav{
  display: none;
}
/* end clients */

/* start testimonial */
.video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 250px;
  background-color: #ccc;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 6px;
}

.video:hover{
  box-shadow: 0 0 6px var(--text);
}
.video button {
  background: transparent;
  font-size: var(--h2);
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video button:hover{
  color: var(--orange);
  border: 3px solid var(--orange);
}

.video button img {
  width: 64px;
  transition: all 0.2s ease;
}

.video button:hover img {
  scale: 1.2;
}
.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; 
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#youtube-modal .modal-dialog{
  min-width: 60%;
}
/* end testimonial */

/* start footer */
footer .main-footer{
  background:var(--blue);
  color: var(--white);
  padding:50px 10px;
}

footer .secondary-footer{
  background:#142d54;
  color: var(--white);
  padding:10px;
}

footer .main-footer ul{
	padding-left: 20px;
}
footer .main-footer ul li::marker{
	color: var(--orange);
}
footer h4{
  position: relative;
  margin-bottom: 17px;
}
@media(max-width:767px){
	footer .main-footer{

	  padding:30px 10px;
	}
}
footer h4:before{
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--orange);
  bottom: 0;
  text-align: center;
  left: 0%;
}

ul.site-info {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.site-info li {
  line-height: 2.3
}
ul.site-info li a {
  color: var(--white);
}

ul.site-info li a:hover{
  color: var(--orange);
}

ul.site-info i{
  margin-right: 5px;
}

.hvr-icon-fade:hover .hvr-icon, .hvr-icon-fade:focus .hvr-icon, .hvr-icon-fade:active .hvr-icon{
  color: var(--orange)!important;
}

footer a{
  color: var(--white)
}

footer a:hover{
  color: #ddd;
}

footer hr{
  opacity: 1;
}

.footer-logo{
  width: 300px;
}

.footer-icon{
  color: var(--orange);
  margin-right: 5px;
}

.footer-icon-add{
  display: block;
}

.footer-address p{
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.text-right{  
  text-align: right;
}
@media(max-width:767px){
	.developed{
		text-align:left;
	}
	.footer-links{
		text-align:left !important;
	}
}

.footer-links .social-links a{
	color: var(--white);
    padding: 5px;
    border: 1px solid var(--white);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
}
.footer-links .social-links a:hover{
	background: var(--white);
	color: var(--orange);
}
/**White Footer Start**/
.white-footer{
	background:#fff;
	color:var(--text);
	border-top:2px solid var(--orange);
}
.white-footer a,
.white-footer h4{
	color:var(--text);
}
.white-footer a:hover{
	color:var(--orange);
}



.subscription-form .input-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.subscription-form .form-control {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
    flex-grow: 1;
}

.subscription-form .btn {
    background-color: #2965aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscription-form .btn:hover {
    background-color: #234c85;
}

.subscription-form .subscription-message {
    margin-top: 10px;
    font-size: 14px;
    color: #28a745; /* Success color */
}

.subscription-form .subscription-message.error {
    color: #dc3545; /* Error color */
}

/**White Footer End**/
/* end footer */

/* start innerpage */
/*.innerpage-big-banner{
  background: url(../images/titlebar-bg03.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
  color: var(--white);
  height: 280px;
  display: table;
  width: 100%;
}

.innerpage-big-banner .innerpage-banenr{
  vertical-align: middle;
  display: table-cell;
}*/
.innerpage-big-banner {
	 background-image: url(../images/titlebar-bg03.jpg);
    background-position: center center;
	  background-size: cover;
 
    color: var(--white);
    height: 300px;
    display: table;
    width: 100%;
}

.innerpage-big-banner .innerpage-banenr{
  vertical-align: middle;
  display: table-cell;
}


.banner1 {
    background-image: url("/assets/images/services.png");
}

.banner2 {
    background-image: url("/assets/images/contactuss.jpg");
}
.banner3 {
    background-image: url("/assets/images/joblist.png");
}
.banner4 {
    background-image: url("/assets/images/employeers.jpg");
}
.banner5 {
    background-image: url("/assets/images/aboutuss.jpg");
}


.breadcrumb-wrapper-inner a{
  color: var(--orange);
}
.breadcrumb-wrapper-inner a:hover{
  color: var(--white);
}

.innerpage-counter-wrapper li{
  width: 50%;
  float: left;
}
@media(min-width:991px){
	.inner_counter .counter-wrapper li{
	  width: 25%;
	}
	.inner_counter .counter-wrapper li .counters{
		border-bottom:none;
	}
}
address a{
  color: var(--text);
}

address{
  border-bottom: 1px solid var(--hoverText);
}

.contact-page h3{
  font-weight: 700;
}

.innerpage-content .notice-content p{
  color: var(--textLight);
}

.post-wrapper{
  border-top: 1px solid #ccc;
}

.post-wrapper h2{
  color: var(--blue);
}

.post-wrapper .owl-dots{
  text-align: center;
}
.post-wrapper .owl-dots .owl-dot{
  background-color: var(--orange);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px 30px;
  border:none;
  padding:0;
}

.post-wrapper .owl-dots .owl-dot.active{
  background-color: var(--blue);
}

.job-list-more-wrapper{
  border-top: 1px solid #ccc;
}

.job-list-more-wrapper a{
  background-color: var(--orange);
  border: 1px solid var(--orange);
}

.job-list-more-wrapper a:hover{
  background-color: var(--blue);
  border: 1px solid var(--blue);
}

.blue{
  color: var(--blue);
}
table.job-table{
  padding: 0 15px ;
}

table.job-table tr:nth-child(even) td{
  background: var(--grey);
}

table.job-table tr {
  border: 1px solid var(--hoverText);
}

.related-jobs-wrapper h4{
  font-weight: 700;
}
 
.related-jobs-wrapper ul li:first-child .related-job-list{
  padding-top: 0;
}

.related-jobs-wrapper ul li:last-child .related-job-list{
  padding-bottom: 0;
  border: 0;
}

.related-job-list{
  display: flex;
  gap: 5px;
  align-items: center;
  border-bottom: 1px solid var(--hoverText);
  padding:20px 0;
}
.related-jobs-wrapper{
  box-shadow: 0 0 6px var(--hoverText);
  padding: 20px;
}
.related-jobs-wrapper ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-job-img img{
  width: 100px;
}

.applynow-button a{
  width: 100%;
  display: block;
  background-color: var(--orange);
  border: 1px solid var(--orange);
  padding: 10px;
}

.applynow-button a:hover{
  background-color: var(--blue);
  border: 1px solid var(--blue);
}

/* end innerpage */

.bg-blue{
	background-color: var(--primary);
	color: var(--white);
	padding:8px 15px;
	font-size: 15px;
	line-height: 1;
    border-radius: 30px;
	position: absolute;
    right: 15px;
    top: -15px;
	text-transform:capitalize;

}
.feature-job-wrapper .card{
	margin-top:30px;
}

.whatsapp-chat-box {
	position: fixed;
	bottom: 55px;
	right: 20px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #25D366;
	box-shadow: 0 2px 10px rgba(0,0,0,0.15);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index:9999;
}
.whatsapp-chat-box img {
	width: 35px;
	height: 35px;
}
/**New Test**/

/**New Menu Style**/
.main-nav__main ul li > .dropdown_menu{
    position: absolute;
    left: 0;
    z-index: 999;
    display: block;
    width: 170px;
    overflow: visible;
    background-color: var(--white);
    border-bottom: 3px solid var(--orange);
    opacity: 0;
    transform: scale(0);
    transition: all 0s, opacity 0.3s ease;
	box-shadow:4px 4px 10px rgba(0,0,0,0.2);
  }
  .main-nav__main ul li > .dropdown_menu{
	  width:80%;
	  display:flex;
	  justify-content:space-between;
	  padding:30px;
	  left:10%;
	  top:90px;
	  
  }
  .main-nav__main ul li > .dropdown_menu .menu_content{
	  text-align:right;
	  max-width:650px;
  }
    .main-nav__main ul li > .dropdown_menu ul li a{
		margin:5px 0 0;
	}
.main-nav__main ul li > .dropdown_menu .menu_content h2{
	color: var(--orange);
	line-height:1.2;
}
.main-nav__main ul li > .dropdown_menu .menu_content a.view-all{
	background-color: var(--orange);
    color: var(--white);
	border-radius: 30px;
    padding: 14px 50px;
	margin-top:80px;
}
  .main-nav__main ul li:hover > .dropdown_menu {
    max-height: 1000px;
    opacity: 1;
    transform: scale(1);
    transition: all 0s, opacity 0.3s 0.3s ease;
  }	
  top-menu-wapper .row{ 
	position:relative;
}

.testimonial-card {
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
	margin:10px 5px;
}
.feature-testimonial-wrapper .item-card7-desc{
	 display: flex;
    align-items: center;
	gap:20px;
}


.testimonial-card img.avatar-lg {
    width:60px;
	height:60px;
	border:2px solid var(--orange);
}


.testimonial-card p {
    font-size: 15px;
    line-height: 1.5;
}




.branch {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.branch:hover {
    transform: scale(1.05);
}

.branch-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.branch-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 10px 0;
}

.branch-info p {
    font-size: 1rem;
    margin: 5px 0;
    color: #555;
}

.branch-info i {
    color: var(--orange);
    margin-right: 10px;
}

.branch-info p {
    font-size: 1rem;
    margin: 5px 0;
    color: #555;
}

.branch-info a {
    color: var(--text);
    text-decoration: none;
}
.branch-info a:hover {
    color: var(--orange);
}

.vision-mission-objective-section img{
	height:200px;
	width:100%;
	object-fit:contain;
}


.highlighted {
  font-size: var(--h4);
  font-weight: bold;
  font-style: italic;
  text-align: center;
  background: linear-gradient(90deg, #fa9b27 0%, #fbd49d 100%);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

/** Contact Tab css Open**/
/* Custom styles for the tabs */
.nav-tabs {
    border-bottom: none;
    gap: 10px;
}

.nav-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #555;
    padding: 12px 22px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.nav-tabs .nav-link:hover {
    background-color: #ffa500;
    color: white;
    border-color: #ffa500;
}

.nav-tabs .nav-link.active {
    background-color:var(--orange);
    color: white;
    border-color: #ffa500;
}

.nav-tabs .nav-link:nth-child(2) {
    border: none;
}

.flag-icon {
    width: 22px;
    height: auto;
    border-radius: 4px;
}

.tab-content {
    padding: 25px;
    border-radius: 8px;
    background-color: white;
    margin-top: 12px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	border:1px solid #ccc;
}
.tab-content.tab-content-inner{
	box-shadow:none;
	border:none;
	border-top:1px solid #ccc;
	padding:0 10px;
	border-radius:0;
	margin-top:20px;
}

.tab-content h3 {
    margin-bottom: 18px;
    color: #222;
}

.tab-content p {

    line-height: 1.8;
}

/** Contact Tab css close**/